/* =========================================================
   New Nails & Spa — site styles
   Built and maintained by Astra POS
   Brand tokens live in :root — change colors/fonts here only.
   ========================================================= */

:root {
  /* Brand palette (from Logo 7 + jade accent) */
  --ivory: #fbf7f0;
  --ivory-2: #f4ecdf;
  --ivory-3: #ebdfcc;
  --espresso: #34251e;
  --espresso-2: #5b463b;
  --gold: #c9a46a;          /* champagne gold — fills, borders */
  --gold-light: #e3cfa6;
  --gold-text: #86622c;     /* gold for text on ivory (AA contrast) */
  --jade: #1d6a5a;          /* deep jade — links, dropdown text, bands */
  --jade-dark: #134a3f;
  --jade-soft: #e3efeb;
  --rose: #b98088;          /* dusty rose accent */
  --rose-soft: #f5e7e6;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(52, 37, 30, .07);
  --shadow: 0 12px 34px rgba(52, 37, 30, .12);
  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--ivory);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--jade); text-underline-offset: 3px; }
a:hover { color: var(--jade-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--espresso); letter-spacing: .005em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--espresso); color: var(--ivory); padding: 10px 18px; border-radius: 8px; text-decoration: none; font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 12px; color: var(--ivory); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tint { background: var(--ivory-2); }
.section--rose { background: var(--rose-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-head p { color: var(--espresso-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: .8rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow--left::before { display: none; }
.divider { width: 64px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--rose)); margin: 18px auto 0; border: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold); --btn-fg: var(--espresso); --btn-bd: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 28px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  color: var(--btn-fg); background: var(--btn-bg); border: 1.5px solid var(--btn-bd); border-radius: 999px;
  cursor: pointer; transition: transform .25s var(--ease), background-color .25s, color .25s, box-shadow .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(52,37,30,.18); color: var(--btn-fg); }
.btn--gold:hover { --btn-bg: var(--gold-light); --btn-bd: var(--gold-light); }
.btn--jade { --btn-bg: var(--jade); --btn-fg: var(--white); --btn-bd: var(--jade); }
.btn--jade:hover { --btn-bg: var(--jade-dark); --btn-bd: var(--jade-dark); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: rgba(255,255,255,.85); }
.btn--outline-light:hover { --btn-bg: var(--white); --btn-fg: var(--espresso); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--jade); --btn-bd: var(--jade); }
.btn--outline:hover { --btn-bg: var(--jade); --btn-fg: var(--white); }
.btn--sm { min-height: 42px; padding: 8px 20px; font-size: .82rem; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Header / navigation ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; border-radius: 12px; transition: background-color .35s, padding .35s, box-shadow .35s; }
.brand img { width: auto; height: 50px; }

/* Transparent state (over hero): nav text light, logo sits on a soft ivory plate for legibility */
.site-header.is-transparent .brand { background: rgba(251, 247, 240, .9); padding: 6px 14px; box-shadow: 0 6px 22px rgba(0,0,0,.18); backdrop-filter: blur(6px); }
.site-header.is-transparent .nav-link, .site-header.is-transparent .dd-toggle { color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.site-header.is-transparent .menu-toggle { color: var(--white); border-color: rgba(255,255,255,.7); }

/* Solid state (after scroll, or inner pages without a photo hero) */
.site-header.is-solid { background: rgba(251, 247, 240, .96); box-shadow: 0 4px 22px rgba(52,37,30,.1); backdrop-filter: saturate(140%) blur(10px); }
.site-header.is-solid .brand img { height: 46px; }

.primary-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-row { display: flex; align-items: center; }
.nav-link, .dd-toggle {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 500; letter-spacing: .03em;
  color: var(--espresso); text-decoration: none; background: none; border: 0; cursor: pointer; border-radius: 8px;
  transition: color .2s;
}
.nav-link { position: relative; }
.nav-link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.has-dropdown > .nav-row .nav-link { padding-right: 2px; }
.dd-toggle { padding: 8px 8px 8px 2px; }
.dd-toggle svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav-item.is-open .dd-toggle svg { transform: rotate(180deg); }
.nav-cta { margin-left: 14px; }

/* Dropdown panel */
.dropdown {
  position: absolute; top: 100%; left: 50%; min-width: 250px;
  padding: 12px 0 10px; margin-top: 10px;
  background: var(--ivory); border: 1px solid var(--ivory-3); border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
  z-index: 120;
}
/* invisible bridge so the menu stays open while the cursor travels into it */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.dropdown a {
  display: flex; align-items: center; min-height: 44px; padding: 8px 24px;
  color: var(--jade); font-size: .95rem; font-weight: 500; text-decoration: none; text-shadow: none;
  border-left: 3px solid transparent; transition: background-color .18s, border-color .18s, color .18s, padding .18s;
}
.dropdown a:hover, .dropdown a:focus-visible { background: var(--ivory-2); border-left-color: var(--gold); color: var(--jade-dark); padding-left: 28px; outline-offset: -3px; }
.dropdown .dd-all { border-bottom: 1px solid var(--ivory-3); margin-bottom: 6px; font-weight: 600; color: var(--gold-text); }

@media (min-width: 1100px) {
  .nav-item.has-dropdown:hover > .dropdown,
  .nav-item.has-dropdown:focus-within > .dropdown,
  .nav-item.is-open > .dropdown {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s;
  }
  .nav-item.has-dropdown:hover .dd-toggle svg { transform: rotate(180deg); }
  .menu-toggle, .mobile-book { display: none; }
}

/* Mobile / tablet navigation */
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  color: var(--espresso); background: transparent; border: 1.5px solid var(--ivory-3); border-radius: 12px; cursor: pointer;
}
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-actions { display: flex; align-items: center; gap: 10px; }

@media (max-width: 1099.98px) {
  :root { --header-h: 74px; }
  .brand img { height: 42px; }
  .site-header.is-solid .brand img { height: 40px; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
    display: block; overflow-y: auto; overscroll-behavior: contain;
    background: var(--ivory); padding: 12px 16px 40px;
    transform: translateX(100%); visibility: hidden;
    transition: transform .35s var(--ease), visibility 0s linear .35s;
  }
  .nav-open .primary-nav { transform: none; visibility: visible; transition: transform .35s var(--ease), visibility 0s; }
  .nav-open { overflow: hidden; }
  .nav-open .site-header { background: var(--ivory); box-shadow: 0 2px 12px rgba(52,37,30,.08); }
  .nav-open .site-header .brand { background: transparent; box-shadow: none; }
  .nav-open .site-header .menu-toggle { color: var(--espresso); border-color: var(--ivory-3); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--ivory-3); }
  .nav-row { justify-content: space-between; }
  .primary-nav .nav-link, .primary-nav .dd-toggle { color: var(--espresso) !important; text-shadow: none !important; font-size: 1.1rem; min-height: 56px; }
  .primary-nav .nav-link { flex: 1; padding-left: 4px; }
  .primary-nav .nav-link::after { display: none; }
  .primary-nav .dd-toggle { width: 56px; justify-content: center; padding: 0; }
  .primary-nav .dd-toggle svg { width: 18px; height: 18px; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; margin: 0; min-width: 0;
    border: 0; border-radius: 0; box-shadow: none; background: var(--ivory-2); padding: 0;
    display: none;
  }
  .dropdown::before { display: none; }
  .nav-item.is-open > .dropdown { display: block; }
  .dropdown a { min-height: 50px; padding-left: 22px; font-size: 1rem; }
  .nav-cta { margin: 24px 0 0; display: flex; }
  .nav-cta .btn { width: 100%; }
}
@media (max-width: 420px) {
  .mobile-book { padding: 8px 14px; font-size: .74rem; letter-spacing: .05em; }
  .brand img { height: 36px; }
  .site-header.is-transparent .brand { padding: 5px 10px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; display: flex; align-items: center;
  min-height: min(100svh, 900px); min-height: max(620px, min(100svh, 900px));
  padding: calc(var(--header-h) + 48px) 0 72px; color: var(--white); overflow: hidden;
  background: var(--espresso);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media picture { display: contents; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 35%; transform: scale(1.04); animation: heroZoom 14s var(--ease) forwards; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,14,11,.55) 0%, rgba(20,14,11,0) 26%),
    linear-gradient(90deg, rgba(30,21,16,.8) 0%, rgba(30,21,16,.66) 30%, rgba(30,21,16,.34) 52%, rgba(30,21,16,0) 70%);
}
.hero-content { max-width: 640px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--white); margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 540px; color: rgba(255,255,255,.92); margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 30px; font-size: .95rem; color: rgba(255,255,255,.9); }
.hero-trust a { color: var(--white); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.hero-trust a:hover { color: var(--gold-light); }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-light); }
@keyframes heroZoom { to { transform: scale(1); } }

@media (max-width: 760px) {
  .hero { align-items: flex-end; min-height: 100svh; min-height: max(640px, 100svh); padding-bottom: 56px; }
  .hero-media img { object-position: 50% 25%; }
  .hero::after { background: linear-gradient(180deg, rgba(20,14,11,.55) 0%, rgba(20,14,11,.25) 30%, rgba(20,14,11,.72) 62%, rgba(20,14,11,.9) 100%); }
  .hero .btn-row .btn { flex: 1 1 100%; }
}

/* Inner-page hero */
.page-hero {
  position: relative; isolation: isolate; color: var(--white); overflow: hidden; background: var(--espresso);
  padding: calc(var(--header-h) + clamp(56px, 8vw, 96px)) 0 clamp(56px, 8vw, 88px); text-align: center;
}
.page-hero .hero-media img { object-position: center 45%; animation: none; transform: none; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,14,11,.72), rgba(20,14,11,.58)); }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 10px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,.9); }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero--plain { background: var(--ivory-2); color: var(--espresso); }
.page-hero--plain::after { display: none; }
.page-hero--plain h1 { color: var(--espresso); }
.page-hero--plain p { color: var(--espresso-2); }
.page-hero--plain .eyebrow { color: var(--gold-text); }

.breadcrumbs { font-size: .85rem; margin-bottom: 14px; }
.breadcrumbs ol { display: flex; justify-content: center; gap: 8px; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; opacity: .6; }
.breadcrumbs a { color: inherit; opacity: .9; }
.breadcrumbs [aria-current] { opacity: .8; }

/* ---------- Welcome / split ---------- */
.split { display: grid; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split-media { order: 2; } }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media::before { content: ""; position: absolute; inset: 22px -18px -18px 22px; border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.split-body h2 { margin-bottom: 18px; }
.split-body p { color: var(--espresso-2); }
.signature-line { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--rose); margin: 8px 0 24px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.service-card {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--ivory-3); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--ivory-2); }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { color: var(--espresso-2); font-size: .98rem; flex: 1; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: var(--jade); text-decoration: none; }
.text-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }
.stretched::after { content: ""; position: absolute; inset: 0; }
.service-card { position: relative; }

/* Pedicure feature cards */
.pedi-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.pedi-card {
  position: relative; background: var(--ivory); border-radius: var(--radius-lg); padding: 34px 30px 30px;
  border: 1px solid var(--gold-light); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.pedi-card:nth-child(2) { background: var(--rose-soft); }
.pedi-card:nth-child(3) { background: linear-gradient(160deg, #fffdf8, var(--ivory-2)); border-color: var(--gold); }
.pedi-card h3 { color: var(--espresso); margin-bottom: 6px; }
.pedi-tier { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); font-weight: 500; }
.price-pair { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 16px; }
.price-chip { display: inline-flex; align-items: baseline; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--gold-light); font-weight: 600; color: var(--espresso); }
.price-chip small { font-weight: 500; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-text); }
.price-chip--gel { background: var(--jade); color: var(--white); border-color: var(--jade); }
.price-chip--gel small { color: var(--gold-light); }
.pedi-card p { font-size: .96rem; color: var(--espresso-2); margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-grid--full { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--ivory-2); aspect-ratio: 1; padding: 0; border: 0; cursor: zoom-in; width: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.08); }
.gallery-item::after { content: ""; position: absolute; inset: 0; border: 2px solid transparent; border-radius: inherit; transition: border-color .3s; }
.gallery-item:hover::after { border-color: var(--gold-light); }
.gallery-note { text-align: center; font-size: .9rem; color: var(--espresso-2); margin-top: 18px; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1100px); max-height: 90vh; }
.lightbox::backdrop { background: rgba(20,14,11,.86); }
.lightbox img { max-height: 84vh; width: auto; margin: 0 auto; border-radius: var(--radius); }
.lightbox-close {
  position: fixed; top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--ivory); color: var(--espresso); font-size: 1.6rem; line-height: 1; box-shadow: var(--shadow);
}
.lightbox-caption { color: var(--ivory); text-align: center; margin-top: 10px; font-size: .95rem; }

/* ---------- Why choose (jade band) ---------- */
.band-jade { background: radial-gradient(1200px 500px at 85% -10%, rgba(201,164,106,.18), transparent 60%), var(--jade-dark); color: var(--ivory); }
.band-jade h2, .band-jade h3 { color: var(--ivory); }
.band-jade .eyebrow { color: var(--gold-light); }
.band-jade .section-head p { color: rgba(251,247,240,.85); }
.benefit-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.benefit { text-align: center; padding: 30px 20px; border-radius: var(--radius-lg); background: rgba(255,255,255,.05); border: 1px solid rgba(227,207,166,.25); transition: background-color .3s, transform .3s var(--ease); }
.benefit:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.benefit-icon { width: 58px; height: 58px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-light); }
.benefit-icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.4rem; margin-bottom: 6px; }
.benefit p { font-size: .95rem; color: rgba(251,247,240,.82); margin: 0; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--ivory-3); box-shadow: var(--shadow-sm); }
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.review-card blockquote { margin: 0 0 14px; font-family: var(--font-display); font-size: 1.3rem; line-height: 1.35; }
.review-card cite { font-style: normal; font-weight: 500; color: var(--jade); }
.review-empty {
  max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(32px, 5vw, 52px);
  background: var(--white); border: 1px solid var(--gold-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.review-empty .g-mark { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--espresso-2); margin-bottom: 8px; }
.review-empty .g-mark svg { width: 22px; height: 22px; }

/* ---------- Booking CTA ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; background: var(--jade); color: var(--white); text-align: center; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background: radial-gradient(600px 300px at 10% 110%, rgba(185,128,136,.45), transparent 70%), radial-gradient(700px 360px at 95% -20%, rgba(201,164,106,.45), transparent 70%);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 28px; }
.cta-band .btn--outline-light:hover { --btn-fg: var(--jade-dark); }

/* ---------- Location & hours ---------- */
.location-grid { display: grid; gap: 32px; }
@media (min-width: 960px) { .location-grid { grid-template-columns: 5fr 7fr; align-items: stretch; } }
.info-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); border: 1px solid var(--ivory-3); box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.5rem; margin: 26px 0 10px; }
.info-card h3:first-child { margin-top: 0; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.info-list svg { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--jade); }
.info-list a { color: var(--espresso); text-decoration: none; }
.info-list a:hover { color: var(--jade); text-decoration: underline; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.hours-table th, .hours-table td { padding: 9px 0; border-bottom: 1px dashed var(--ivory-3); text-align: left; }
.hours-table th { font-weight: 500; }
.hours-table td { text-align: right; color: var(--espresso-2); }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--jade); font-weight: 600; }
.hours-note { font-size: .82rem; color: var(--espresso-2); margin-top: 10px; font-style: italic; }
.map-frame { position: relative; min-height: 380px; height: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--ivory-3); background: var(--ivory-2); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Services page ---------- */
.subnav { position: sticky; top: var(--header-h); z-index: 50; background: rgba(251,247,240,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--ivory-3); }
.subnav ul { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.subnav a {
  display: inline-flex; align-items: center; white-space: nowrap; min-height: 40px; padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--ivory-3); background: var(--white); color: var(--jade); font-size: .9rem; font-weight: 500; text-decoration: none;
  transition: background-color .2s, color .2s, border-color .2s;
}
.subnav a:hover, .subnav a.is-active { background: var(--jade); border-color: var(--jade); color: var(--white); }
.service-block { padding: clamp(48px, 7vw, 88px) 0; border-bottom: 1px solid var(--ivory-3); }
.service-block:nth-of-type(even) { background: var(--ivory-2); }
.service-block .split-media img { aspect-ratio: 4 / 3; }
.mini-menu { margin: 18px 0 26px; background: var(--white); border-radius: var(--radius); padding: 8px 22px; border: 1px solid var(--ivory-3); }
.mini-menu li { display: flex; align-items: baseline; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--ivory-2); }
.mini-menu li:last-child { border-bottom: 0; }
.mini-menu .leader { flex: 1; border-bottom: 1px dotted var(--gold); transform: translateY(-4px); min-width: 20px; }
.mini-menu .price { font-weight: 600; white-space: nowrap; }
.mini-menu .price small { font-weight: 500; color: var(--jade); }

/* ---------- Menu page ---------- */
.menu-toolbar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 8px; }
.menu-layout { display: grid; gap: clamp(28px, 4vw, 44px); }
@media (min-width: 900px) { .menu-layout { grid-template-columns: 1fr 1fr; align-items: start; } .menu-cat--wide { grid-column: 1 / -1; } }
.menu-cat { background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 36px); border: 1px solid var(--ivory-3); box-shadow: var(--shadow-sm); }
.menu-cat h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--rose); padding-bottom: 12px; margin-bottom: 8px; border-bottom: 1.5px solid var(--gold); }
.menu-cat--wide h2 { text-align: left; }
.menu-items li { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--ivory-2); }
.menu-items li:last-child { border-bottom: 0; }
.menu-items .name { font-weight: 500; }
.menu-items .leader { flex: 1; border-bottom: 1px dotted var(--gold); transform: translateY(-5px); min-width: 16px; }
.menu-items .price { font-weight: 600; font-size: 1.08rem; white-space: nowrap; color: var(--espresso); }
.menu-empty { margin: 14px 0 0; padding: 18px 20px; border-radius: var(--radius); background: var(--jade-soft); color: var(--jade-dark); font-weight: 500; }
.menu-empty a { color: var(--jade-dark); font-weight: 600; }
.menu-pedi-grid { display: grid; gap: 20px; margin-top: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.menu-pedi-grid .pedi-card { box-shadow: none; }
.menu-notes { margin-top: clamp(28px, 4vw, 44px); display: grid; gap: 14px; text-align: center; }
.menu-note { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--rose); margin: 0; }
.menu-note--bar { font-family: var(--font-body); font-style: normal; font-size: .95rem; font-weight: 600; letter-spacing: .06em; color: var(--ivory); background: var(--espresso); padding: 16px 20px; border-radius: var(--radius); }

@media (max-width: 520px) {
  .menu-items li, .mini-menu li { flex-wrap: wrap; }
  .menu-items .name { flex: 1 1 60%; }
}

/* ---------- Prose (policy pages) ---------- */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.4em; }
.prose ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1em; }
.prose li { margin-bottom: .4em; }
.draft-banner { border: 2px dashed var(--rose); background: var(--rose-soft); color: var(--espresso); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 32px; }
.draft-banner strong { color: #8a3f4a; }
.placeholder { background: #fff3cd; padding: 0 4px; border-radius: 4px; font-weight: 500; }

/* ---------- Booking page ---------- */
.book-options { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.book-option { text-align: center; background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--ivory-3); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; }
.book-option .benefit-icon { color: var(--jade); border-color: var(--gold); }
.book-option p { color: var(--espresso-2); flex: 1; }
.notice { max-width: 760px; margin: 0 auto 36px; padding: 16px 22px; border-radius: var(--radius); background: var(--jade-soft); color: var(--jade-dark); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ivory-2); color: var(--espresso); border-top: 3px solid var(--gold); }
.footer-main { display: grid; gap: 40px; padding: clamp(56px, 7vw, 80px) 0 44px; }
@media (min-width: 760px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .footer-main { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }
.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--espresso-2); font-size: .98rem; max-width: 340px; }
.footer-col h2 { font-family: var(--font-body); font-size: .85rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 16px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--espresso); text-decoration: none; font-size: .98rem; display: inline-block; padding: 3px 0; }
.footer-col a:hover { color: var(--jade); text-decoration: underline; }
.footer-hours { width: 100%; font-size: .92rem; border-collapse: collapse; }
.footer-hours th { text-align: left; font-weight: 500; padding: 3px 12px 3px 0; }
.footer-hours td { text-align: right; color: var(--espresso-2); padding: 3px 0; }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--jade); transition: background-color .2s, color .2s; }
.social a:hover { background: var(--jade); color: var(--white); border-color: var(--jade); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { background: var(--espresso); color: rgba(251,247,240,.82); font-size: .88rem; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-bottom a { color: var(--ivory); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.astra-credit { font-size: .82rem; color: rgba(251,247,240,.7); }
.astra-credit a { color: var(--gold-light); text-decoration: underline; }

/* ---------- Preview badge (remove by setting preview_mode false) ---------- */
.preview-badge {
  position: fixed; left: 12px; bottom: 12px; z-index: 90; max-width: min(420px, calc(100vw - 24px));
  background: rgba(52,37,30,.94); color: var(--ivory); font-size: .78rem; line-height: 1.4; padding: 10px 14px; border-radius: 12px;
  box-shadow: var(--shadow); border-left: 4px solid var(--gold);
}
.preview-badge button { background: none; border: 0; color: var(--gold-light); cursor: pointer; font: inherit; text-decoration: underline; padding: 0; margin-left: 6px; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Print (menu) ---------- */
@media print {
  @page { margin: 12mm; }
  body { background: #fff; font-size: 10.5pt; color: #000; }
  .site-header, .site-footer, .subnav, .menu-toolbar, .preview-badge, .cta-band, .page-hero .hero-media, .skip-link { display: none !important; }
  .page-hero { padding: 0 0 8pt; background: #fff !important; color: #000; }
  .page-hero::after { display: none; }
  .page-hero h1 { color: #000; font-size: 22pt; }
  .page-hero p, .page-hero .eyebrow, .breadcrumbs { display: none; }
  .print-logo { display: block !important; height: 56px; width: auto; margin: 0 auto 6pt; }
  .section { padding: 0; }
  .menu-layout { grid-template-columns: 1fr 1fr; gap: 10pt; }
  .menu-cat { box-shadow: none; border: 1px solid #ccc; padding: 10pt; break-inside: avoid; }
  .menu-cat h2 { font-size: 14pt; }
  .menu-items li { padding: 3pt 0; }
  .menu-pedi-grid { grid-template-columns: repeat(3, 1fr); gap: 6pt; }
  .pedi-card { padding: 8pt; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
.print-logo { display: none; }

/* ---------- Late overrides (order-sensitive) ---------- */
@media (min-width: 1100px) {
  .mobile-actions { display: none; }
  .brand img { height: 56px; }
  .site-header.is-solid .brand img { height: 50px; }
}
@media (max-width: 899.98px) {
  .split-media::before { inset: 14px -8px -10px 14px; }
}
@media (max-width: 600px) {
  .eyebrow--left::after { display: none; }
  .preview-badge { font-size: .72rem; padding: 8px 12px; }
}

/* ---------- Back-to-top button (bottom-center, all pages) ---------- */
.to-top {
  position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); z-index: 95;
  width: 56px; height: 56px; display: grid; place-items: center; padding: 0; cursor: pointer;
  color: var(--ivory); background: var(--jade); border: 2px solid var(--gold-light); border-radius: 50%;
  box-shadow: 0 10px 26px rgba(19, 74, 63, .32);
  opacity: 0; visibility: hidden; transform: translate(-50%, 14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s, background-color .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s, background-color .2s; }
.to-top:hover { background: var(--jade-dark); transform: translate(-50%, -3px); }
.to-top:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.to-top svg { width: 24px; height: 24px; }
@media (max-width: 760px) {
  .to-top { width: 48px; height: 48px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .to-top svg { width: 22px; height: 22px; }
  /* sits above the preview note while it is showing (preview only) */
  .to-top--raised { bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
}
.nav-open .to-top { display: none; }
@media print { .to-top { display: none !important; } }

/* ---------- Hero (phones): photo on top, text below the client's face ---------- */
@media (max-width: 760px) {
  .hero { min-height: 0; align-items: flex-end; padding-top: calc(var(--header-h) + 34svh); padding-bottom: 44px; background: #2a1e18; }
  .hero-media { bottom: auto; height: calc(var(--header-h) + 50svh); }
  .hero-media img { object-position: 50% 18%; }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(20,14,11,.55) 0, rgba(20,14,11,0) 14%, rgba(20,14,11,0) 30%,
      rgba(42,30,24,.78) 47%, #2a1e18 60%, #2a1e18 100%);
  }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.6rem); }
  .hero-lead { font-size: 1.02rem; margin-bottom: 24px; }
  .hero-trust { margin-top: 22px; }
}

/* ---------- Header logo swap: Logo 9 over photo heroes, Logo 7 on ivory header ---------- */
.brand { position: relative; }
.brand picture { display: block; transition: opacity .35s var(--ease); }
.brand .logo-hero { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0; pointer-events: none; }
.brand .logo-hero img { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .45)); }
/* transparent state: no plate, show Logo 9 */
.site-header.is-transparent .brand { background: none; box-shadow: none; padding: 0; backdrop-filter: none; }
.site-header.is-transparent .brand .logo-solid { opacity: 0; }
.site-header.is-transparent .brand .logo-hero { opacity: 1; }
/* phone menu open (ivory panel): back to Logo 7 */
.nav-open .site-header .brand .logo-solid { opacity: 1; }
.nav-open .site-header .brand .logo-hero { opacity: 0; }
/* sizes */
@media (min-width: 1100px) {
  .site-header.is-transparent .brand img { height: 64px; }
}
@media (max-width: 1099.98px) {
  .site-header.is-transparent .brand img { height: 46px; }
}
@media (max-width: 420px) {
  .site-header.is-transparent .brand img { height: 42px; }
}
