﻿/*
Theme Name: GM Nails Boutique
Theme URI: https://b-king.gr
Author: b-king.gr
Author URI: https://b-king.gr
Description: A black luxury one-page WordPress theme for GM Nails Boutique with booking request handling, reviews, services, contact details and customizer settings.
Version: 1.0.4
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gm-nails-boutique
*/
:root {
  --ink: #fff7f1;
  --ink-soft: rgba(255, 247, 241, 0.68);
  --paper: #070607;
  --pearl: #151216;
  --panel: #141114;
  --panel-soft: #1d171b;
  --line: rgba(255, 255, 255, 0.12);
  --rose: #ffb2c2;
  --wine: #b42451;
  --sage: #9ebcaa;
  --gold: #d9b26f;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(180, 36, 81, 0.16), transparent 28%),
    radial-gradient(circle at 84% 34%, rgba(217, 178, 111, 0.1), transparent 26%),
    linear-gradient(180deg, #070607 0%, #100c0f 42%, #070607 100%);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  background: rgba(7, 6, 7, 0.88);
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo,
.custom-logo {
  width: clamp(132px, 16vw, 176px);
  height: auto;
}

.custom-logo-link {
  display: inline-flex;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.76;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin: 0;
  padding: 0;
}

.site-nav li {
  list-style: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  color: var(--white);
  background: var(--paper);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(23, 19, 21, 0.72), rgba(23, 19, 21, 0.18) 58%),
    url("assets/images/gm-nails-hero-v104.jpg?ver=1.0.4") center / cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    radial-gradient(circle at 82% 20%, rgba(244, 180, 189, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 36px);
  max-width: var(--max);
  min-height: 76svh;
  margin: 0 auto;
  padding: 90px 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--rose);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(46px, 7.2vw, 96px);
  font-weight: 800;
}

h2 {
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 800;
}

h3 {
  font-size: 22px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.42;
}

.hero-actions,
.booking-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--wine);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #73172e;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--white);
  border-color: var(--line);
  background: var(--panel-soft);
}

.text-link {
  color: var(--wine);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-facts div {
  min-width: 0;
  padding: 18px 18px 18px 0;
}

.hero-facts strong,
.review-highlights strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.hero-facts span,
.review-highlights span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

section:not(.hero) {
  width: calc(100% - 36px);
  max-width: var(--max);
  margin: 0 auto;
}

.intro-section {
  padding: 78px 0 42px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro-copy p,
.section-heading p,
.lookbook-copy p,
.booking-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  color: var(--wine);
  content: "\2726";
}

.services-section,
.reviews-section,
.booking-section,
.contact-section {
  padding: 74px 0;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 14px;
  padding: 22px 0 54px;
}

.image-tile {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #100d10;
  background-image:
    linear-gradient(180deg, rgba(7, 6, 7, 0.08), rgba(7, 6, 7, 0.7)),
    var(--tile-image, linear-gradient(135deg, rgba(180, 36, 81, 0.26), rgba(7, 6, 7, 0.9)));
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.image-tile-large {
  min-height: 420px;
}

.image-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.82;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.image-tile img[hidden] {
  display: none;
}

.image-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 6, 7, 0.02), rgba(7, 6, 7, 0.68));
  content: "";
  pointer-events: none;
}

.image-tile:hover img {
  opacity: 0.94;
  transform: scale(1.035);
}

.image-tile figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-section {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding-right: 18px;
  padding-left: 18px;
  background:
    linear-gradient(90deg, rgba(7, 6, 7, 0.95), rgba(7, 6, 7, 0.74)),
    url("assets/images/gm-nails-tabletop-v104.jpg?ver=1.0.4") center / cover fixed;
}

.services-section > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.services-section .section-heading {
  padding-top: 16px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: flex;
  min-height: 258px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.service-card span {
  width: max-content;
  margin-bottom: 26px;
  color: var(--wine);
  font-weight: 900;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.service-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.service-meta strong {
  font-size: 34px;
  line-height: 1;
}

.service-meta small {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.lookbook-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: 82px 0;
}

.lookbook-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lookbook-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.lookbook-copy p {
  margin-top: 22px;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.swatches span {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--swatch);
}

.reviews-section {
  width: 100%;
  max-width: none;
  padding: 84px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 6, 7, 0.9), rgba(7, 6, 7, 0.62)),
    linear-gradient(135deg, rgba(143, 31, 58, 0.34), rgba(23, 19, 21, 0) 38%),
    url("assets/images/gm-nails-detail-v104.jpg?ver=1.0.4") center / cover,
    linear-gradient(180deg, #151114, #070607);
}

.reviews-inner {
  width: calc(100% - 36px);
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.reviews-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 30px;
}

.reviews-copy {
  max-width: 780px;
}

.reviews-copy .section-kicker {
  color: var(--rose);
}

.reviews-copy h2 {
  max-width: 860px;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.02;
}

.reviews-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.score-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.score-card span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-card strong {
  display: block;
  margin-top: 12px;
  font-size: 66px;
  line-height: 0.95;
}

.score-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 800;
}

.review-shell {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 16px;
  align-items: center;
}

.review-arrow {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.review-card {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(180, 36, 81, 0.18), rgba(255, 255, 255, 0.03) 44%),
    var(--panel);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.review-card::after {
  position: absolute;
  right: clamp(18px, 5vw, 50px);
  bottom: -34px;
  color: rgba(255, 255, 255, 0.06);
  content: "\201D";
  font-size: 190px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.review-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card-top span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
}

blockquote {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 24px 0 0;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.12;
  font-weight: 800;
}

.review-person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.review-person span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--wine);
  font-size: 15px;
  font-weight: 900;
}

.review-person p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 900;
}

.review-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.review-highlights div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.review-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.review-mini-grid article {
  min-height: 178px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(7, 6, 7, 0.58);
  backdrop-filter: blur(12px);
}

.review-mini-grid div {
  color: var(--gold);
  font-size: 13px;
}

.review-mini-grid p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.42;
}

.review-mini-grid span {
  display: block;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  padding: 90px 0;
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-copy::after {
  display: block;
  height: 300px;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 6, 7, 0.1), rgba(7, 6, 7, 0.48)),
    url("assets/images/gm-nails-interior-v104.jpg?ver=1.0.4") center / cover;
  box-shadow: var(--shadow);
  content: "";
}

.booking-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--ink);
  background: #0f0d10;
  color-scheme: dark;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 247, 241, 0.44);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(143, 31, 58, 0.12);
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-message.sent {
  color: var(--sage);
}

.form-message.error,
.form-message.missing {
  color: var(--rose);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
}

.contact-panel {
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 46px);
  color: var(--white);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(180, 36, 81, 0.34), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.contact-panel .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel h2 {
  font-size: clamp(32px, 5vw, 56px);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  font-size: 18px;
  font-weight: 900;
}

.contact-list a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hours-list {
  display: grid;
  gap: 1px;
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dd {
  font-weight: 900;
  text-align: right;
}

.map-panel {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  width: calc(100% - 36px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 0 42px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--wine);
  font-weight: 950;
}

.content-page {
  width: calc(100% - 36px);
  max-width: 920px;
  margin: 0 auto;
  padding: 150px 0 80px;
}

.content-article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 52px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.content-article .entry-content {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    color: var(--white);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .site-nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .hero-content {
    min-height: 76svh;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(23, 19, 21, 0.78), rgba(23, 19, 21, 0.28)),
      url("assets/images/gm-nails-hero-v104.jpg?ver=1.0.4") 58% center / cover;
  }

  .intro-grid,
  .section-heading,
  .reviews-top,
  .image-band,
  .lookbook-section,
  .booking-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-tile,
  .image-tile-large {
    min-height: 320px;
  }

  .review-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-copy {
    position: static;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 420px;
  }

  .reviews-top {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    align-items: end;
  }

  .score-card {
    max-width: none;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero,
  .hero-content {
    min-height: 76svh;
  }

  .hero-content {
    padding-top: 88px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-facts,
  .review-highlights,
  .review-mini-grid,
  .form-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 14px 0;
  }

  .intro-section,
  .image-band,
  .services-section,
  .reviews-section,
  .booking-section,
  .contact-section,
  .lookbook-section {
    padding: 54px 0;
  }

  .service-card {
    min-height: 230px;
  }

  .review-shell {
    grid-template-columns: 1fr 1fr;
  }

  .review-card {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 278px;
  }

  .review-arrow {
    grid-row: 2;
    width: 100%;
    border-radius: var(--radius);
  }

  blockquote {
    margin-top: 28px;
    font-size: 28px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 50px);
  }

  .reviews-copy h2 {
    font-size: 34px;
  }

  .reviews-top {
    grid-template-columns: 1fr;
  }

  .score-card strong {
    font-size: 58px;
  }

  .booking-copy::after {
    height: 240px;
  }

  .lookbook-image,
  .lookbook-image img {
    min-height: 340px;
  }

  .contact-panel h2 {
    font-size: 31px;
  }
}

