/* ==========================================================================
   Gold Nails Maui — styles.css
   Design system extracted from the Claude Design mockup (cream + gold, luxe).
   Fonts via Google Fonts <link> (Playfair Display + Inter) — no embedded woff2.
   Two backgrounds via CSS-var switch: [data-theme="B"] cream (default),
   [data-theme="A"] charcoal.  Mobile-first.
   ========================================================================== */

:root {
  /* palette */
  --cream:    #faf6ef;
  --cream-2:  #f8f1e0;
  --cream-3:  #f5ebd2;
  --panel:    #ffffff;
  --panel-2:  #faf6ef;
  --charcoal: #1a1a1a;
  --text:     #2a2a2a;
  --muted:    #6b6b6b;
  --gold:     #d4af37;
  --gold-lt:  #f5e6a8;
  --gold-dk:  #b8932a;
  --gold-dkr: #8a6d1f;
  --line:     rgba(212,175,55,.28);
  --line-2:   rgba(212,175,55,.5);
  --err:      #a04030;

  --grad-gold: linear-gradient(135deg, var(--gold), var(--gold-lt));
  --grad-hero: linear-gradient(165deg, #faf6ef 0%, #f8f1e0 55%, #f5ebd2 100%);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1100px;
  --radius: 12px;
  --shadow-card: 0 2px 12px rgba(42,42,42,.05);
  --shadow-hover: 0 8px 26px rgba(212,175,55,.18);
}

/* Optional dark background variant (Invariant: cream default kept) */
[data-theme="A"] {
  --cream:   #1a1a1a;
  --cream-2: #201f1c;
  --cream-3: #262420;
  --panel:   #232019;
  --panel-2: #201d17;
  --text:    #faf6ef;
  --muted:   #b6ad98;
  --line:    rgba(212,175,55,.35);
  --grad-hero: linear-gradient(165deg,#1a1a1a 0%,#201d17 60%,#26210f 100%);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.has-sticky { padding-bottom: 84px; }

a { color: var(--gold-dk); text-decoration: none; }
a:hover { color: var(--gold); }
img, svg { max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--text); margin: 0; line-height: 1.12; }
p { margin: 0; }
input, select, textarea, button { font-family: var(--sans); }

.wrap, .container { max-width: var(--wrap); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.gold-grad {
  background: linear-gradient(115deg, var(--gold-dk), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-dk); margin: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--charcoal); color: var(--gold-lt); padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}

/* ---------- brand lockup (logo) ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; }
.brand__petals { display: flex; gap: 4px; align-items: flex-end; }
.brand__petals i {
  display: block; width: 9px; height: 22px; border-radius: 50% 50% 42% 42%/62% 62% 38% 38%;
  background: linear-gradient(160deg,#e2c565,var(--gold-lt)); opacity: .65;
}
.brand__petals i:nth-child(2) {
  height: 28px; background: linear-gradient(160deg,var(--gold),var(--gold-lt));
  opacity: 1; box-shadow: 0 3px 7px rgba(212,175,55,.35);
}
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: .02em; color: var(--text); }
.brand__sub { display: flex; align-items: center; gap: 7px; margin-top: 5px; }
.brand__sub i { height: 1px; width: 20px; display: block; background: linear-gradient(90deg,transparent,var(--gold-dk)); }
.brand__sub i + i { background: linear-gradient(90deg,var(--gold-dk),transparent); }
.brand__sub span {
  font-size: 9px; font-weight: 600; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-dk); text-indent: .42em;
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,239,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
[data-theme="A"] .site-header { background: rgba(26,26,26,.9); }
.nav {
  max-width: var(--wrap); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 8px 12px; font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--text); }
.nav__links a[aria-current="page"] { color: var(--text); border-bottom-color: var(--gold); }
.nav__cta { margin-left: 4px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--panel); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span { width: 18px; height: 2px; background: var(--gold-dk); border-radius: 2px; }
.nav__mobile { display: none; flex-direction: column; padding: 8px 20px 16px; gap: 2px; border-bottom: 1px solid var(--line); }
.nav__mobile a {
  padding: 12px 6px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: none; }

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.open { display: flex; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; text-decoration: none;
  padding: 14px 30px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: box-shadow .18s ease, transform .18s ease, background .18s ease, color .18s ease;
}
.btn--gold { background: var(--grad-gold); color: var(--charcoal); box-shadow: 0 6px 22px rgba(212,175,55,.32); }
.btn--gold:hover { color: var(--charcoal); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(212,175,55,.45); }
.btn--outline {
  background: rgba(255,255,255,.5); border: 1px solid rgba(184,147,42,.55); color: var(--gold-dkr);
  font-weight: 600; letter-spacing: .08em;
}
.btn--outline:hover { background: rgba(212,175,55,.14); color: var(--gold-dkr); }
.btn--ghost {
  background: none; border: 1px solid var(--line-2); color: var(--gold-dk); font-weight: 700;
}
.btn--ghost:hover { background: rgba(212,175,55,.08); color: var(--gold-dk); }
.btn--sm { padding: 10px 22px; font-size: 11.5px; }
.btn--block { width: 100%; }
.btn--link { background: none; border: none; padding: 0; color: var(--gold-dk); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; font-weight: 700; }
.btn--link:hover { color: var(--gold); }
[data-theme="A"] .btn--outline { background: rgba(255,255,255,.05); color: var(--gold-lt); }

/* On dark sections, outline buttons go light */
.on-dark .btn--outline, .btn--outline.on-dark {
  border-color: rgba(212,175,55,.55); color: var(--gold-lt); background: rgba(255,255,255,.03);
}
.on-dark .btn--outline:hover { background: rgba(212,175,55,.12); color: var(--gold-lt); }

/* ---------- decorative botanicals ---------- */
.deco { position: absolute; pointer-events: none; }
.deco--plumeria-tr { top: -46px; right: -46px; width: 220px; height: 220px; opacity: .5; }
.deco--plumeria-tl { top: -50px; left: -50px; width: 190px; height: 190px; opacity: .4; }
.deco--monstera-bl { bottom: -60px; left: -70px; width: 320px; height: 320px; opacity: .45; }

/* ---------- section / hero ---------- */
.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .eyebrow { color: var(--gold); }

.hero {
  position: relative; overflow: hidden; background: var(--grad-hero); color: var(--text);
}
.hero__inner {
  position: relative; max-width: 760px; margin: 0 auto; padding: 72px 24px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.hero__petals { display: flex; gap: 6px; align-items: flex-end; margin-bottom: 18px; }
.hero__petals i { display: block; width: 12px; height: 30px; border-radius: 50% 50% 42% 42%/62% 62% 38% 38%; background: linear-gradient(160deg,#e2c565,var(--gold-lt)); opacity: .6; }
.hero__petals i:nth-child(2) { height: 38px; background: linear-gradient(160deg,var(--gold),var(--gold-lt)); opacity: 1; box-shadow: 0 4px 12px rgba(212,175,55,.4); }
.hero h1 { font-size: clamp(40px, 8vw, 64px); margin-top: 18px; }
.hero h1 em { font-style: italic; }
.hero .tagline { margin-top: 18px; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 420px; text-wrap: pretty; }
.hero__cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.hero__badges { display: flex; gap: 28px; margin-top: 22px; flex-wrap: wrap; justify-content: center; font-size: 13px; color: var(--muted); }
.hero__badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero__badges span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* page hero (subpages) */
.page-hero { position: relative; overflow: hidden; text-align: center; padding: 52px 24px 44px; background: var(--grad-hero); }
.page-hero--dark { background: var(--charcoal); color: var(--cream); }
.page-hero--dark h1 { color: var(--cream); }
.page-hero--dark .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(32px, 6vw, 48px); margin-top: 14px; }
.page-hero p { margin: 14px auto 0; font-size: 14.5px; color: var(--muted); max-width: 460px; text-wrap: pretty; }
.page-hero--dark p { color: rgba(250,246,239,.72); }

/* divider with sparkle */
.divider { display: flex; align-items: center; gap: 12px; margin: 20px auto 0; width: 240px; max-width: 78%; }
.divider i { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider i + i { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-line { border: none; height: 1px; width: 80px; margin: 16px auto; background: var(--grad-gold); }

/* section head */
.sec-head { text-align: center; }
.sec-head h2 { font-size: clamp(28px, 4.5vw, 38px); margin-top: 12px; }
.sec-head p { margin: 12px auto 0; max-width: 460px; color: var(--muted); font-size: 14px; text-wrap: pretty; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 18px; }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-card);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover { box-shadow: var(--shadow-hover); border-color: rgba(212,175,55,.6); }
.card h3 { font-size: 20px; }
.icoc {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(245,230,168,.3));
  display: flex; align-items: center; justify-content: center; color: var(--gold-dk);
}
.icoc--sm { width: 40px; height: 40px; }

/* about story split */
.split { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }
.split > * { flex: 1 1 300px; min-width: 280px; }
.photo-frame {
  aspect-ratio: 4/3; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden;
  background: repeating-linear-gradient(45deg,#f3ede1 0,#f3ede1 14px,#efe6d4 14px,#efe6d4 28px);
  display: flex; align-items: center; justify-content: center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-note {
  font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: .12em;
  color: #8a7b4f; border: 1px dashed rgba(138,123,79,.5); padding: 6px 12px; border-radius: 6px;
  background: rgba(250,246,239,.7); text-align: center;
}
.signature { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.signature i { height: 1px; width: 36px; display: block; background: var(--grad-gold); }
.signature span { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold-dk); }

/* ---------- home gallery preview tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-top: 24px; }
.tile {
  position: relative; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: repeating-linear-gradient(45deg,#f3ede1 0,#f3ede1 14px,#efe6d4 14px,#efe6d4 28px); display: block;
}
.tile:hover { border-color: var(--gold); box-shadow: 0 6px 18px rgba(212,175,55,.25); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 10px 8px;
  background: linear-gradient(180deg, rgba(42,42,42,0), rgba(42,42,42,.5));
  font-family: var(--serif); font-size: 13.5px; font-weight: 600; color: #fff; text-align: center;
}

/* ---------- reviews (dark) ---------- */
.reviews { text-align: center; }
.reviews h2 { color: var(--cream); }
.reviews p { color: rgba(250,246,239,.7); max-width: 420px; margin: 12px auto 0; font-size: 14px; }

/* ---------- location / hours ---------- */
.hours-row { display: flex; justify-content: space-between; gap: 16px; max-width: 340px; padding-bottom: 6px; border-bottom: 1px dotted var(--line-2); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--muted); }
.hours-row span:last-child { font-weight: 600; }
.map-embed { width: 100%; min-height: 300px; height: 100%; border: 0; border-radius: 10px; display: block; }
.map-frame { flex: 1 1 300px; min-width: 280px; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; min-height: 300px; }

/* ---------- services menu ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.menu-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; scroll-margin-top: 90px; }
.menu-card__top { height: 3px; background: var(--grad-gold); }
.menu-card__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.menu-card__head { display: flex; align-items: center; gap: 12px; }
.menu-card__head h2, .menu-card__head h3 { font-size: 20px; }
.menu-card__head small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.price-list { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-row { display: flex; align-items: baseline; gap: 8px; font-size: 14px; }
.price-row .nm { color: var(--text); }
.price-row .dots { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-3px); }
.price-row .pr { font-weight: 600; color: var(--text); white-space: nowrap; }

/* ---------- special polish combo tables ---------- */
.combo { margin-top: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.combo__head { padding: 14px 18px; background: linear-gradient(135deg, var(--cream), var(--cream-3)); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.combo__head--gel { background: linear-gradient(135deg, var(--cream-3), #f0e0b4); }
.combo__head i { width: 8px; height: 20px; border-radius: 50% 50% 42% 42%/62% 62% 38% 38%; background: linear-gradient(160deg, var(--gold), var(--gold-lt)); display: block; }
.combo__head--gel i { background: linear-gradient(160deg, var(--gold-dk), var(--gold)); }
.combo__head span { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--text); }
.combo__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.combo__grid { min-width: 700px; display: grid; grid-template-columns: 132px repeat(4, 1fr); }
.combo__grid .c-svc-head { padding: 14px; background: var(--cream); display: flex; align-items: flex-end; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
.combo__grid .c-tier { padding: 14px 10px; border-left: 1px solid rgba(212,175,55,.16); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.combo__grid .c-tier.lux { background: linear-gradient(165deg,#fffdf6,#faf3dd); }
.combo__grid .c-tier .t-name { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dkr); }
.combo__grid .c-tier .t-price { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--text); }
.combo__grid .c-tier.lux .t-price { background: linear-gradient(115deg,#a8851f,#c9a52e); -webkit-background-clip: text; background-clip: text; color: transparent; }
.combo__grid .c-tier .t-note { font-size: 12px; font-weight: 600; color: var(--muted); }
.combo__grid .c-rowlabel { padding: 12px 14px; background: #f5ecd8; border-top: 1px solid rgba(212,175,55,.38); display: flex; align-items: center; font-size: 13px; font-weight: 700; color: var(--text); }
.combo__grid .c-cell { padding: 12px; border-top: 1px solid rgba(212,175,55,.38); border-left: 1px solid var(--line); display: flex; align-items: center; justify-content: center; text-align: center; font-size: 14px; font-weight: 600; line-height: 1.5; color: var(--text); }
.combo__grid .c-cell.dash { font-weight: 400; color: rgba(107,107,107,.5); }
.combo__grid .c-cell.lux { background: linear-gradient(165deg,#fffdf6,#faf3dd); }
.span2 { grid-column: span 2; }
.span3 { grid-column: span 3; }
.span4 { grid-column: span 4; }
.combo-notes { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 20px; font-size: 12.5px; color: var(--muted); }
.combo-notes span { display: inline-flex; align-items: center; gap: 7px; }
.combo-notes span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 24px; }
.filter-btn {
  cursor: pointer; padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  min-height: 36px; border: 1px solid rgba(107,107,107,.3); background: var(--panel); color: var(--muted);
}
.filter-btn[aria-pressed="true"] { border-color: var(--gold); background: var(--grad-gold); color: var(--charcoal); }
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 26px; }
.gal-item { display: flex; flex-direction: column; gap: 8px; }
.gal-item.is-hidden { display: none; }
.gal-thumb { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 1px solid var(--line-2); background: repeating-linear-gradient(45deg,#f3ede1 0,#f3ede1 14px,#efe6d4 14px,#efe6d4 28px); display: flex; align-items: center; justify-content: center; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-zoom {
  position: absolute; top: 8px; right: 8px; z-index: 5; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,.6); background: rgba(26,26,26,.55); color: var(--gold-lt); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gal-zoom:hover { background: rgba(26,26,26,.8); color: var(--gold-lt); }
.gal-cap { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.gal-cap .nm { font-family: var(--serif); font-size: 14.5px; font-weight: 600; color: var(--text); }
.gal-cap .tag { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dk); white-space: nowrap; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 100; background: rgba(26,26,26,.94); display: none; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 24px; }
.lb.open { display: flex; }
.lb__img { width: min(680px, 92vw); height: min(640px, 76vh); border: 1px solid var(--line-2); border-radius: 10px; background:#111 center/contain no-repeat; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lb__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lb__cap { font-family: var(--serif); font-size: 16px; color: var(--gold-lt); }
.lb__btn { position: absolute; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(26,26,26,.7); color: var(--gold-lt); font-size: 18px; cursor: pointer; }
.lb__btn:hover { color: var(--gold-lt); background: rgba(26,26,26,.9); }
.lb__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 12px; top: 50%; transform: translateY(-50%); }
.lb__close { top: 16px; right: 16px; font-size: 16px; }

/* ---------- contact cards ---------- */
.info-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.info-card .lbl { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 8px; }

/* ---------- booking wizard ---------- */
.wizard { max-width: 640px; margin: 0 auto; padding: 32px 20px 24px; }
.steps { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.step-pill { padding: 7px 13px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; background: rgba(107,107,107,.1); color: var(--muted); }
.step-pill.done { background: rgba(212,175,55,.18); color: var(--gold-dkr); }
.step-pill.active { background: var(--grad-gold); color: var(--charcoal); }

.wiz-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 24px 20px; box-shadow: 0 4px 20px rgba(42,42,42,.06); display: flex; flex-direction: column; gap: 18px; }
.wiz-step { display: none; flex-direction: column; gap: 18px; }
.wiz-step.active { display: flex; }
.wiz-step h2 { font-size: 22px; }
.wiz-step .lead { font-size: 13px; color: var(--muted); margin-top: 2px; }
.wiz-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 16px; }

/* accordion (step 1) */
.acc { display: flex; flex-direction: column; gap: 10px; }
.acc__grp { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.acc__head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 16px; border: none; background: var(--panel-2); cursor: pointer; text-align: left; }
.acc__head:hover { background: #f5ecd8; }
.acc__title { display: flex; flex-direction: column; gap: 2px; }
.acc__title .t { font-family: var(--serif); font-size: 16.5px; font-weight: 600; color: var(--text); }
.acc__title .s { font-size: 11.5px; color: var(--muted); }
.acc__meta { display: flex; align-items: center; gap: 10px; }
.acc__badge { padding: 3px 10px; border-radius: 999px; background: var(--grad-gold); font-size: 11px; font-weight: 700; color: var(--charcoal); display: none; }
.acc__badge.show { display: inline-block; }
.acc__chev { font-size: 12px; color: var(--gold-dk); }
.acc__body { display: none; flex-direction: column; border-top: 1px solid rgba(212,175,55,.2); }
.acc__grp.open .acc__body { display: flex; }
.svc-opt { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 16px; border: none; border-bottom: 1px solid rgba(212,175,55,.12); cursor: pointer; text-align: left; width: 100%; background: var(--panel); }
.svc-opt:last-child { border-bottom: none; }
.svc-opt.sel { background: rgba(212,175,55,.10); }
.svc-opt .l { display: flex; align-items: center; gap: 12px; min-width: 0; }
.svc-opt .ck { flex: none; width: 20px; height: 20px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; background: var(--panel); border: 1px solid rgba(107,107,107,.35); color: transparent; }
.svc-opt.sel .ck { background: var(--grad-gold); color: var(--charcoal); border-color: var(--gold); }
.svc-opt .nm { font-size: 14px; color: var(--text); }
.svc-opt .pr { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; }
.sel-summary { font-size: 13.5px; color: var(--muted); }

/* calendar (step 2) */
.cal-wrap { display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-start; }
.cal { flex: 1 1 280px; min-width: 266px; border: 1px solid var(--line-2); border-radius: 12px; padding: 14px; background: var(--panel); }
.cal__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal__nav button { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--panel-2); color: var(--gold-dk); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.cal__nav button:hover:not(:disabled) { background: rgba(212,175,55,.15); }
.cal__nav button:disabled { opacity: .3; cursor: default; }
.cal__label { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--text); }
.cal__dow { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: 6px; }
.cal__dow span { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--gold-dk); }
.cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal__cell { aspect-ratio: 1; border-radius: 50%; font-size: 13px; display: flex; align-items: center; justify-content: center; padding: 0; border: 1px solid var(--line-2); background: var(--panel); color: var(--text); font-weight: 600; cursor: pointer; }
.cal__cell:hover:not(.is-sel):not(.is-past):not(.is-out) { background: rgba(212,175,55,.12); }
.cal__cell.is-out { border: none; background: none; color: rgba(107,107,107,.28); cursor: default; }
.cal__cell.is-past { border: none; background: rgba(107,107,107,.10); color: rgba(107,107,107,.45); text-decoration: line-through; cursor: default; }
.cal__cell.is-today:not(.is-sel) { box-shadow: 0 0 0 2px rgba(212,175,55,.3); }
.cal__cell.is-sel { border-color: var(--gold); background: var(--grad-gold); color: var(--charcoal); font-weight: 700; }

.times { flex: 1 1 300px; min-width: 270px; display: flex; flex-direction: column; gap: 16px; }
.times__hd { font-size: 13.5px; color: var(--muted); }
.times__hd strong { color: var(--text); }
.time-group .tg-name { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--gold-dk); margin-bottom: 8px; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 8px; }
.slot { padding: 10px 4px; border-radius: 8px; font-size: 12.5px; font-weight: 600; cursor: pointer; border: 1px solid rgba(107,107,107,.3); background: var(--panel-2); color: var(--text); }
.slot:hover:not(.sel) { border-color: var(--gold); }
.slot.sel { border-color: var(--gold); background: var(--grad-gold); color: var(--charcoal); }
.no-date { padding: 22px; border: 1px dashed var(--line-2); border-radius: 10px; text-align: center; font-size: 13.5px; color: var(--muted); }

/* details (step 3) */
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  padding: 12px 14px; border: 1px solid rgba(107,107,107,.3); border-radius: 8px; font-size: 15px;
  background: var(--panel-2); color: var(--text); width: 100%;
}
.field textarea { resize: vertical; }
.field.err input, .field.err textarea { border-color: var(--err) !important; }

/* review (step 4) */
.review-box { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.review-box__hd { padding: 12px 16px; background: var(--panel-2); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dk); }
.review-line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 16px; font-size: 14px; }
.review-line .g { color: var(--muted); font-size: 12px; }
.review-line.total { border-top: 1px dotted var(--line-2); padding: 10px 16px; }
.review-line.total .amt { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--gold-dk); }
.review-meta { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--text); }
.review-meta > div { display: flex; gap: 10px; }
.review-meta .k { width: 80px; flex: none; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dk); padding-top: 2px; }
.fine { font-size: 12px; color: var(--muted); }

.form-error { font-size: 13px; color: var(--err); background: rgba(160,64,48,.08); border: 1px solid rgba(160,64,48,.25); border-radius: 8px; padding: 10px 14px; display: none; }
.form-error.show { display: block; }

/* thank-you */
.thankyou { max-width: 520px; margin: 0 auto; padding: 32px 20px 24px; text-align: center; display: none; }
.thankyou.show { display: block; }
.thankyou .card { align-items: center; padding: 44px 28px; }
.thankyou h2 { font-size: 28px; margin-top: 18px; }
.thankyou p { margin-top: 14px; font-size: 14.5px; line-height: 1.7; color: var(--muted); max-width: 360px; }
.thankyou .note { font-size: 13px; }

/* ---------- footer ---------- */
.site-footer { margin-top: 48px; background: var(--charcoal); color: rgba(250,246,239,.75); }
.footer-grid { max-width: var(--wrap); margin: 0 auto; padding: 44px 24px 32px; display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.footer-grid .brand__name { color: var(--cream); }
.footer-grid .brand__sub i { background: linear-gradient(90deg,transparent,var(--gold)); }
.footer-grid .brand__sub i + i { background: linear-gradient(90deg,var(--gold),transparent); }
.footer-grid .brand__sub span { color: var(--gold); }
.footer-col { min-width: 150px; }
.footer-col h4 { color: var(--gold); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; }
.footer-col p, .footer-col a, .footer-col span { font-size: 13px; line-height: 1.9; }
.footer-links a, .footer-links button { color: rgba(250,246,239,.75); display: block; background: none; border: none; padding: 0; text-align: left; font-size: 13px; cursor: pointer; font-family: var(--sans); }
.footer-links a:hover, .footer-links button:hover { color: var(--gold-lt); }
.footer-contact { font-size: 13px; line-height: 1.9; color: rgba(250,246,239,.75); }
.footer-contact a { color: var(--gold-lt); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(212,175,55,.2); padding: 16px 24px; text-align: center; font-size: 11.5px; color: rgba(250,246,239,.45); }

/* ---------- sticky mobile bar ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none; gap: 10px;
  background: rgba(26,26,26,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line-2);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); max-width: 100vw;
}
.sticky-bar .btn { flex: 1; min-height: 48px; }
.sticky-bar .btn--outline { background: rgba(255,255,255,.03); color: var(--gold-lt); border-color: rgba(212,175,55,.55); }
@media (max-width: 760px) { .sticky-bar { display: flex; } }

/* ---------- admin (kept minimal, themed) ---------- */
.badge { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.badge--new { background: rgba(212,175,55,.2); color: var(--gold-dkr); }
.badge--confirmed { background: rgba(40,140,70,.15); color: #1f7a44; }
.badge--cancelled { background: rgba(160,64,48,.12); color: var(--err); }
.booking-card { gap: 4px; }
.booking-actions { display: flex; gap: 8px; margin-top: 10px; }

/* ---------- animation ---------- */
@keyframes gnm-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
main { animation: gnm-fade .4s ease both; }
@media (prefers-reduced-motion: reduce) { *, main { animation: none !important; transition: none !important; scroll-behavior: auto; } }

@media (max-width: 520px) {
  .hero__inner { padding: 56px 20px; }
  .section { padding: 48px 0; }
  .wizard { padding: 24px 14px; }
  .wiz-card { padding: 20px 14px; }
}
