/* ============================================================
   Heather's Boutique — Bridal Booking Funnel
   Premium 2026 redesign
   Palette: Warm ivory #fdf8f4 · Blush #f1e3d7 · Charcoal #1a1614
   Fonts: Cormorant Garamond (display) · Inter (body)
   ============================================================ */

:root {
  --ivory:      #fdf8f4;
  --ivory-2:    #f7efe6;
  --blush:      #f1e3d7;
  --blush-2:    #e8d0c2;
  --blush-3:    #d9bba8;
  --champagne:  #e8d4be;
  --gold:       #a8722a;
  --gold-light: #c9983e;
  --gold-pale:  #e8d4a8;
  --charcoal:   #1a1614;
  --charcoal-2: #2c2219;
  --ink:        #3a2e27;
  --ink-2:      #5a4d45;
  --ink-3:      #8a7a70;
  --line:       #d8c8b8;
  --line-soft:  #ece0d4;
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:     4px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --gutter:     clamp(20px, 5vw, 80px);
  --section-y:  clamp(72px, 10vw, 140px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
iframe { display: block; }

/* ── Container ── */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ── Shared typography ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow.light { color: var(--champagne); }
.section-eyebrow.light::before { background: var(--champagne); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 500; }
.section-title.light { color: #ffffff; }
.section-title.light em { color: var(--gold-pale); }

.section-body {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 60ch;
  margin-top: 16px;
}
.section-body.light { color: rgba(255,255,255,0.75); }

.section-intro {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
/* Ensure all children of a centered section-intro are truly centered */
.section-intro .section-eyebrow,
.section-intro .section-title,
.section-intro .section-body {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Buttons ── */
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--charcoal);
  color: #fff;
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  min-height: 50px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(168,114,42,0.4);
}
.btn-primary-pill.large { padding: 20px 40px; font-size: 12px; }

.btn-ghost-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  min-height: 50px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost-pill:hover {
  background: var(--charcoal);
  color: #fff;
}
.btn-ghost-pill.light {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-pill.light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
  padding: 0;
  background: rgba(253,248,244,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,22,20,0.07);
}
.hdr-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 0;
}
.site-header.scrolled .hdr-inner { height: 58px; }

/* Logo */
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: auto;  /* push nav + right to the right */
}
.hdr-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.hdr-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.hdr-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.hdr-sub {
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 1px;
}

/* Desktop nav — hidden on mobile */
.hdr-nav {
  display: none;
  align-items: center;
  gap: 28px;
  margin: 0 28px;
}
.hdr-nav a {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.25s;
}
.hdr-nav a:hover { color: var(--charcoal); }

/* Desktop right group — hidden on mobile */
.hdr-desktop-right {
  display: none;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.hdr-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.25s;
}
.hdr-phone:hover { color: var(--gold); }
.hdr-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s var(--ease);
}
.hdr-book-btn:hover { background: var(--gold); }

/* Mobile right group — hidden on desktop */
.hdr-mobile-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.hdr-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--charcoal);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.hdr-call-icon:hover { background: var(--ivory-2); color: var(--gold); }
.hdr-book-mobile {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s;
}
.hdr-book-mobile:hover { background: var(--gold); }
.hdr-menu-btn {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  flex-shrink: 0;
}
.hdr-menu-btn span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hdr-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hdr-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Desktop breakpoint: swap groups */
@media (min-width: 900px) {
  .hdr-logo { margin-right: 0; }
  .hdr-nav { display: flex; }
  .hdr-desktop-right { display: flex; }
  .hdr-mobile-right { display: none; }
}

/* ── Mobile Drawer ── */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--ivory);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,22,20,0.5);
  backdrop-filter: blur(4px);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-backdrop.show { opacity: 1; pointer-events: all; }
.drawer-inner {
  padding: 56px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}
.drawer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.drawer-logo-img { width: 36px; height: 36px; object-fit: contain; }
.drawer-brand-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.drawer-nav a {
  padding: 13px 0;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line-soft);
  display: block;
  transition: color 0.3s;
  letter-spacing: 0.01em;
}
.drawer-nav a:hover { color: var(--gold); }
.drawer-cta-single {
  flex-shrink: 0;
}
.drawer-cta-single .btn-primary-pill {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 11px;
}
.drawer-hours {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.6;
}
.drawer-hours svg { flex-shrink: 0; margin-top: 2px; }
.drawer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: -8px;
}
.drawer-address svg { flex-shrink: 0; margin-top: 2px; }
.drawer-address a { color: var(--ink-3); text-decoration: underline; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* Mobile: full-bleed photo with overlay */
.hero-photo-side {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  /* Mobile: strong bottom-weighted gradient + overall tint for text legibility */
  background:
    linear-gradient(to bottom, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0.72) 60%, rgba(10,8,6,0.88) 100%),
    linear-gradient(160deg, rgba(10,8,6,0.30) 0%, rgba(10,8,6,0.0) 50%);
}

.hero-content-side {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 72svh;
  padding: 96px var(--gutter) 64px;
  box-sizing: border-box;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(48px, 11vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 500;
}
.hero-body {
  font-size: clamp(16px, 4vw, 17px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-cta { align-self: flex-start; }
.hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  align-self: flex-start;
}
.hero-call-link:hover { color: #fff; border-color: #fff; }
.hero-trust-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}
.hero-trust-icon {
  color: var(--gold-pale);
  font-size: 11px;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 55fr 45fr;
    grid-template-rows: 1fr;
    align-items: stretch;
    min-height: 0;
  }
  .hero-photo-side {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }
  .hero-photo-side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
  }
  .hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,8,6,0) 0%, rgba(10,8,6,0.10) 100%);
  }
  .hero-content-side {
    background: var(--ivory);
    padding: 100px var(--gutter) 72px;
    align-items: flex-start;
    min-height: 0;
  }
  .hero-headline { color: var(--charcoal); }
  .hero-headline em { color: var(--gold); }
  .hero-eyebrow { color: var(--gold); }
  .hero-body { color: var(--ink-2); }
  .hero-trust-row { border-top-color: var(--line-soft); }
  .hero-trust-item { color: var(--ink-3); }
  .hero-trust-icon { color: var(--gold); }
  .hero-call-link { color: var(--ink-2); border-bottom-color: var(--line); }
  .hero-call-link:hover { color: var(--charcoal); border-color: var(--charcoal); }
  .hero-actions { flex-direction: row; align-items: center; }
}

/* ============================================================
   BOOKING MODULE
============================================================ */
.booking-section {
  background: var(--ivory-2);
  padding: var(--section-y) 0;
  position: relative;
  overflow-x: hidden; /* prevent stepper labels overflowing viewport on mobile */
}
.booking-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,163,148,0.12), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(200,168,126,0.08), transparent 60%);
  pointer-events: none;
}
.booking-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.booking-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.booking-header .section-title { font-size: clamp(32px, 4.5vw, 60px); }
.booking-header .section-eyebrow,
.booking-header .section-title,
.booking-header .section-body {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Stepper */
.booking-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 0;
  /* prevent stepper labels from blowing out mobile width */
  max-width: 100%;
  overflow: hidden;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}
.bstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.bstep-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  background: var(--ivory);
  transition: all 0.4s var(--ease);
}
.bstep-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  transition: color 0.4s;
}
.bstep.active .bstep-num {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.bstep.active .bstep-label { color: var(--charcoal); }
.bstep.done .bstep-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.bstep-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  min-width: 24px;
  max-width: 80px;
  margin: 0 4px;
  margin-bottom: 22px;
}
/* Stepper — small mobile: shrink everything to fit 4 steps + labels */
@media (max-width: 479px) {
  .booking-stepper { gap: 0; padding: 0 12px; }
  .bstep-num  { width: 30px; height: 30px; font-size: 11px; }
  .bstep-label {
    font-size: 7.5px;
    letter-spacing: 0.06em;
    white-space: normal;      /* allow wrap so text doesn't overflow */
    text-align: center;
    max-width: 52px;          /* constrain each label column */
    line-height: 1.2;
  }
  .bstep-line { flex: 1; min-width: 8px; max-width: 32px; margin: 0 2px; margin-bottom: 20px; }
}
@media (min-width: 480px) and (max-width: 599px) {
  .bstep-num  { width: 34px; height: 34px; font-size: 12px; }
  .bstep-label { font-size: 8.5px; letter-spacing: 0.08em; white-space: normal; text-align: center; max-width: 58px; line-height: 1.2; }
  .bstep-line { min-width: 16px; max-width: 60px; margin-bottom: 20px; }
}
@media (min-width: 600px) {
  .bstep-num { width: 40px; height: 40px; font-size: 13px; }
  .bstep-label { font-size: 10px; }
  .bstep-line { min-width: 40px; max-width: 120px; }
}

/* Booking card */
.booking-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow:
    0 2px 8px rgba(26,22,20,0.04),
    0 20px 60px rgba(26,22,20,0.08);
  overflow: hidden;
}

/* Panel */
.bpanel { padding: clamp(16px, 4vw, 52px); }
@media (min-width: 600px) { .bpanel { padding: clamp(24px, 5vw, 52px); } }
.bpanel-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}
.bpanel-step {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.bpanel-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.bpanel-head h3 em { font-style: italic; color: var(--gold); }
.bpanel-head p {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 52ch;
}

/* Appointment type cards — always 2-column grid, compact on mobile */
.appt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .appt-grid { gap: 14px; }
}

.appt-card {
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  text-align: left;
  width: 100%;
  min-height: 88px;
  display: flex;
  flex-direction: column;
}
.appt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.appt-card:hover {
  border-color: var(--blush-3);
  box-shadow: 0 8px 30px rgba(26,22,20,0.08);
  transform: translateY(-2px);
}
.appt-card:hover::before { transform: scaleX(1); }
.appt-card.selected {
  border-color: var(--charcoal);
  background: var(--charcoal);
}
.appt-card.selected::before { transform: scaleX(1); }
.appt-card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.appt-card.selected .appt-card-num { color: var(--gold-pale); }
.appt-card-title {
  font-family: var(--font-serif);
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 5px;
}
.appt-card.selected .appt-card-title { color: #ffffff; }
.appt-card-title em { font-style: italic; }
.appt-card-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-3);
  margin-bottom: 8px;
  line-height: 1.45;
  display: none; /* hidden on mobile to keep cards compact */
}
@media (min-width: 600px) {
  .appt-card-sub { display: block; }
}
.appt-card.selected .appt-card-sub { color: rgba(255,255,255,0.65); }
.appt-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.appt-card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  background: #fff;
  white-space: nowrap;
}
@media (min-width: 600px) {
  .appt-card { padding: 20px 18px; }
  .appt-card-title { font-size: clamp(16px, 2vw, 24px); }
  .appt-card-tag { font-size: 10px; padding: 4px 10px; }
  .appt-card-meta { gap: 10px; }
}
.appt-card.selected .appt-card-tag {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
}
.appt-card-tag.popular {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.appt-card-tag.vip {
  background: var(--blush-3);
  border-color: var(--blush-3);
  color: var(--charcoal);
}

/* Calendar */
.cal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .cal-layout { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.cal-box {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
  position: relative;
}
.cal-month-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.cal-month-title:hover { background: var(--blush); color: var(--gold); }
/* Jump picker */
.cal-jump-picker {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(26,22,20,0.14);
  z-index: 50;
  width: min(340px, 90vw);
  padding: 16px;
}
.cal-jump-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.cal-jump-btn {
  padding: 8px 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  transition: all 0.2s;
}
.cal-jump-btn:hover { background: var(--blush); border-color: var(--blush-3); }
.cal-jump-btn.current { background: var(--charcoal); color: #fff; }
.cal-jump-btn.past { color: var(--ink-3); opacity: 0.4; pointer-events: none; }
.cal-jump-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cal-jump-year button {
  padding: 4px 10px;
  font-size: 16px;
  color: var(--ink-2);
  background: none;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s;
}
.cal-jump-year button:hover { background: var(--blush); border-color: var(--blush-3); }
.cal-nav-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: all 0.3s;
  background: #fff;
}
.cal-nav-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.cal-grid-wrap { padding: 12px 16px; }
.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.cal-dow-row span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
  padding: 4px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  color: var(--charcoal);
  border: 1px solid transparent;
}
.cal-day.empty { cursor: default; }
.cal-day.past {
  color: var(--line);
  cursor: not-allowed;
  opacity: 0.45;
  text-decoration: line-through;
  pointer-events: none;
}
.cal-day.closed {
  color: var(--line);
  cursor: not-allowed;
  opacity: 0.35;
  pointer-events: none;
}
.cal-day.available:hover {
  background: var(--blush);
  border-color: var(--blush-3);
}
.cal-day.selected {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.cal-day.today {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
}
.cal-day.today.selected {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.cal-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.5;
}
.times-box {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.times-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  color: var(--ink-3);
  text-align: center;
  padding: 40px 20px;
}
.times-placeholder svg { opacity: 0.4; }
.times-placeholder p { font-size: 13px; line-height: 1.5; }
.times-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.times-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 16px;
}
.time-slot {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s;
  background: #fff;
}
.time-slot:hover { border-color: var(--charcoal); background: var(--ivory); }
.time-slot.selected {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.time-slot.taken {
  opacity: 0.38;
  cursor: not-allowed;
  color: var(--ink-3);
  text-decoration: line-through;
}
.slot-taken-label { display: none; }
.appt-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.appt-card.selected .appt-card-meta span { color: rgba(255,255,255,0.6); }

/* Form */
.form-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.form-section {}
.form-section-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-hint {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (min-width: 580px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--ivory);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--charcoal);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: #c0392b; }
.form-field textarea { resize: vertical; min-height: 110px; }
.field-hint {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.5;
}
/* ── SMS Consent Section ── */
.consent-section {
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 16px 18px;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
}
.consent-item:hover { border-color: var(--gold-pale); background: #fdf9f4; }
.consent-check-col {
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}
.consent-checkbox {
  width: 17px;
  height: 17px;
  accent-color: var(--charcoal);
  cursor: pointer;
  display: block;
}
.consent-body-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.consent-type-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}
.consent-type-required {
  background: rgba(139,34,82,0.08);
  color: #8B2252;
  border: 1px solid rgba(139,34,82,0.18);
}
.consent-type-optional {
  background: rgba(168,114,42,0.07);
  color: var(--ink-3);
  border: 1px solid var(--line-soft);
}
.consent-text {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.consent-text strong { color: var(--ink); font-weight: 700; }
.style-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.style-chip {
  padding: 8px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.25s;
  background: #fff;
}
.style-chip:hover { border-color: var(--charcoal); color: var(--charcoal); }
.style-chip.selected {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

/* Confirmation */
.confirm-wrap {
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.confirm-icon {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: #fff;
  /* Pulse rings */
  animation: confirmPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.confirm-icon::before,
.confirm-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  animation: confirmPulse 2.2s ease-out infinite;
  opacity: 0;
}
.confirm-icon::after {
  animation-delay: 1.1s;
}
@keyframes confirmPop {
  0%   { transform: scale(0.4); opacity: 0; }
  70%  { transform: scale(1.12); }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes confirmPulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0; }
}
.confirm-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.confirm-title em { font-style: italic; color: var(--gold); }
.confirm-body {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.confirm-card {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 0 auto 36px;
  max-width: 480px;
  text-align: left;
}
.confirm-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.confirm-card-row:last-child { border-bottom: none; }
.confirm-card-row .ck { font-weight: 700; color: var(--ink); }
.confirm-card-row .cv { color: var(--ink-2); }
.confirm-next {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
  margin: 0 auto 40px;
  text-align: left;
}
.confirm-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.confirm-step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.confirm-step strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.confirm-step p { font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Booking nav */
.booking-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 52px);
  border-top: 1px solid var(--line-soft);
  gap: 12px;
}
.bnav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s;
}
.bnav-back:hover { border-color: var(--charcoal); color: var(--charcoal); }
.bnav-note {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (min-width: 500px) { .bnav-note { display: flex; } }
.bnav-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.bnav-next:hover { background: var(--gold); }
.bnav-next.shake {
  animation: shake 0.5s var(--ease);
  background: #c0392b;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* Mobile sticky bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;
  display: flex;
  background: var(--charcoal);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  safe-area-inset-bottom: env(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-sticky-bar.show { transform: translateY(0); }
.msb-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--charcoal);
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s;
}
.msb-book:hover { background: var(--gold); }
.msb-call {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  gap: 6px;
}
@media (min-width: 900px) { .mobile-sticky-bar { display: none !important; } }

/* ============================================================
   APPOINTMENT TYPES SECTION
============================================================ */
.appt-section {
  background: var(--ivory);
  padding: var(--section-y) 0;
}
.appt-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Alternating light / dark rows */
.appt-detail-card {
  display: block;
  padding: 0;
  border-bottom: none;
}
.adc-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keep num+badges left-aligned on mobile */
  gap: 20px;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 56px);
}
.appt-detail-card:nth-child(odd) {
  background: var(--ivory);
}
.appt-detail-card:nth-child(even) {
  background: rgba(44, 34, 25, 0.78);
}
/* Flip text colours on dark rows */
.appt-detail-card:nth-child(even) .adc-num {
  color: var(--gold-light);
}
.appt-detail-card:nth-child(even) .adc-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
}
.appt-detail-card:nth-child(even) .adc-badge.popular {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.appt-detail-card:nth-child(even) .adc-badge.vip {
  background: var(--blush-2);
  border-color: var(--blush-3);
  color: var(--charcoal);
}
.appt-detail-card:nth-child(even) .adc-body h3 {
  color: #ffffff;
}
.appt-detail-card:nth-child(even) .adc-body h3 em {
  color: var(--gold-pale);
}
.appt-detail-card:nth-child(even) .adc-who {
  color: rgba(255,255,255,0.5);
}
.appt-detail-card:nth-child(even) .adc-desc {
  color: rgba(255,255,255,0.75);
}
.appt-detail-card:nth-child(even) .adc-details {
  border-top-color: rgba(255,255,255,0.1);
}
.appt-detail-card:nth-child(even) .adc-detail-row {
  border-bottom-color: rgba(255,255,255,0.08);
}
.appt-detail-card:nth-child(even) .adc-detail-label {
  color: var(--gold-pale);
}
.appt-detail-card:nth-child(even) .adc-detail-row span:last-child {
  color: rgba(255,255,255,0.65);
}
.appt-detail-card:nth-child(even) .adc-cta {
  background: var(--gold);
  color: var(--charcoal);
}
.appt-detail-card:nth-child(even) .adc-cta:hover {
  background: #fff;
  color: var(--charcoal);
}
@media (min-width: 768px) {
  .adc-inner {
    flex-direction: row;
    gap: clamp(32px, 5vw, 64px);
    align-items: flex-start;
  }
}
.adc-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  width: 100%; /* full width on mobile so all cards align identically */
}
@media (min-width: 768px) {
  .adc-left {
    flex-direction: column;
    align-items: flex-start;
    width: 120px;
  }
}
.adc-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 42px;
  color: var(--blush-3);
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
}
@media (min-width: 768px) { .adc-num { font-size: 64px; } }
.adc-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.adc-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  background: var(--ivory);
}
.adc-badge.popular { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.adc-badge.vip { background: var(--blush-2); border-color: var(--blush-3); color: var(--charcoal); }
.adc-body { flex: 1; min-width: 0; }
.adc-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.adc-body h3 em { font-style: italic; color: var(--gold); }
.adc-who {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.adc-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 64ch;
}
.adc-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line-soft);
}
.adc-detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
@media (min-width: 500px) {
  .adc-detail-row {
    flex-direction: row;
    gap: 16px;
    align-items: baseline;
  }
}
.adc-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 80px;
}
.adc-detail-row span:last-child { color: var(--ink-2); }
.adc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
}
.adc-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* ============================================================
   EXPERIENCE SECTION
============================================================ */
.experience-section {
  background: var(--charcoal);
  padding: var(--section-y) 0;
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .exp-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
  }
}
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.exp-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}
.exp-item-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
  padding-top: 2px;
  line-height: 1;
}
.exp-item-body strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.exp-item-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
}
.exp-item-body em { font-style: italic; color: var(--gold-pale); }
.exp-cta-row { margin-top: 40px; }
.exp-visual {
  position: relative;
  overflow: hidden;
}
.exp-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.exp-img-main img { width: 100%; height: 100%; object-fit: cover; }
.exp-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 44%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.exp-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.exp-quote-card {
  position: absolute;
  top: 32px;
  right: -16px;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  max-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.exp-quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 8px;
}
.exp-quote-card p em { color: var(--gold); }
.exp-quote-card span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 899px) {
  .exp-img-accent { display: none; }
  .exp-quote-card { position: relative; top: auto; right: auto; margin-top: 20px; max-width: 100%; }
}

/* ============================================================
   COLLECTIONS
============================================================ */
.collections-section {
  background: var(--blush-2);
  padding: var(--section-y) 0;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
@media (min-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.coll-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.coll-card.coll-feature {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
@media (min-width: 768px) {
  .coll-card.coll-feature {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}
.coll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
/* Portrait photos in the wide 16/7 feature card — keep subject in upper frame */
.coll-card.coll-feature img { object-position: center 15%; }
.coll-card:hover img { transform: scale(1.04); }
.coll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,13,11,0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}
@media (min-width: 768px) {
  .coll-card.coll-feature .coll-overlay { padding: 32px; }
}
.coll-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
  display: block;
}
.coll-overlay h4 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #fff;
}
.coll-overlay h4 em { font-style: italic; }
.coll-arrow {
  font-size: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.4s var(--ease);
}
.coll-card:hover .coll-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   WHY HEATHER'S
============================================================ */
.why-section {
  background: #141210;
  padding: var(--section-y) 0;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
}
@media (min-width: 900px) {
  .why-layout { grid-template-columns: 340px 1fr; align-items: start; gap: clamp(48px, 7vw, 80px); }
}
/* sticky only activates on desktop where 2-col layout exists */
.why-intro { position: static; }
@media (min-width: 900px) {
  .why-intro { position: sticky; top: 100px; }
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 600px) { .why-cards { grid-template-columns: repeat(2, 1fr); } }
.why-card {
  background: rgba(255,255,255,0.04);
  padding: clamp(24px, 3.5vw, 36px);
  transition: background 0.4s;
}
.why-card:hover { background: rgba(255,255,255,0.07); }
.why-card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.why-card h4 em { font-style: italic; color: var(--gold-pale); }
.why-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

/* ============================================================
   SERVICE AREA — LOCAL SEO SECTION
============================================================ */
.service-area-section {
  background: var(--ivory-2);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.sva-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
}
@media (min-width: 768px) {
  .sva-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}
.sva-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 10px 0 20px;
}
.sva-heading em { font-style: italic; color: var(--gold); }
.sva-text p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 58ch;
}
.sva-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.sva-text strong { color: var(--charcoal); font-weight: 600; }
.sva-areas-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.sva-areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sva-areas-list li {
  border-bottom: 1px solid var(--line-soft);
}
.sva-areas-list li a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s;
}
.sva-areas-list li a:hover { color: var(--gold); }



   GALLERY — LUXURY LOOKBOOK
============================================================ */

/* ── Section shell ── */
.gallery-section {
  background: var(--charcoal);
  padding: var(--section-y) 0 0;
  overflow: hidden;
}
.gallery-section .section-body.light {
  color: rgba(255,255,255,0.78);
}
/* Gallery section-intro text — hard black/dark for maximum readability */
.gallery-section .section-intro {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) clamp(20px, 4vw, 32px);
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  margin: 0 var(--gutter) clamp(20px,4vw,36px);
}
.gallery-section .section-eyebrow.light {
  color: var(--gold) !important;
  opacity: 1;
}
.gallery-section .section-eyebrow.light::before {
  background: var(--gold) !important;
}
.gallery-section .section-title.light {
  color: var(--charcoal) !important;
  text-shadow: none;
}
.gallery-section .section-title.light em {
  color: var(--gold) !important;
  text-shadow: none;
}
.gallery-section .section-body.light {
  color: var(--ink-2) !important;
  text-shadow: none;
}

/* ── Category filters ── */
.glk-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
  margin-bottom: 48px;
  padding: 0 var(--gutter);
}
.glk-filter {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: rgba(255,255,255,0.80);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.glk-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198,158,80,0.07);
}
.glk-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* ── Grid wrapper ── */
.glk-grid-wrap {
  padding-bottom: var(--section-y);
}
.glk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media (min-width: 640px) {
  .glk-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .glk-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
}

/* ── Individual items ── */
.glk-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--charcoal-2);
}
.glk-item.glk-tall {
  aspect-ratio: 2/3;
  grid-row: span 2;
}
@media (min-width: 640px) {
  .glk-item.glk-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}

/* ── Image ── */
.glk-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
  /* will-change removed — avoids unnecessary composite layers on mobile */
}
.glk-item:hover img {
  transform: scale(1.07);
}

/* ── Hover overlay ── */
.glk-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(10,7,5,0.88) 0%,
    rgba(10,7,5,0.45) 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.glk-item:hover .glk-overlay,
.glk-item:focus-within .glk-overlay {
  opacity: 1;
  pointer-events: auto;
}
.glk-cat-pill {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(198,158,80,0.55);
  background: rgba(198,158,80,0.15);
  color: var(--gold-pale);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.glk-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(12px, 1.5vw, 15px);
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin: 0 0 12px;
}
.glk-book-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.glk-book-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ── Heart & Expand icon buttons ── */
.glk-heart,
.glk-expand {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10,7,5,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  opacity: 0;
}
.glk-heart svg,
.glk-expand svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.8);
  transition: stroke 0.25s, fill 0.25s;
}
.glk-item:hover .glk-heart,
.glk-item:hover .glk-expand {
  opacity: 1;
}
/* Always show heart on touch devices */
@media (hover: none) {
  .glk-heart { opacity: 1; }
  .glk-overlay { opacity: 1; }
}
.glk-heart {
  top: 10px;
  right: 10px;
}
.glk-expand {
  top: 10px;
  right: 52px;
}
.glk-heart:hover,
.glk-expand:hover {
  border-color: var(--gold);
  background: rgba(198,158,80,0.25);
}
.glk-heart.saved svg {
  fill: var(--blush-3);
  stroke: var(--blush-3);
}
.glk-heart.saved {
  opacity: 1;
  border-color: var(--blush-3);
}
@keyframes heartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.glk-heart-pop { animation: heartPop 0.35s var(--ease) forwards; }

/* ── CTA cards in grid ── */
.glk-cta-card {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush) 0%, var(--gold-pale) 100%);
  padding: 28px 20px;
}
.glk-cta-card.glk-cta-dark {
  background: linear-gradient(135deg, #1c1410 0%, #2e2018 100%);
}
.glk-cta-inner {
  text-align: center;
  max-width: 220px;
}
.glk-cta-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.glk-cta-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.glk-cta-dark .glk-cta-text { color: rgba(255,255,255,0.8); }
.glk-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.glk-cta-btn:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-1px); }
.glk-cta-btn.glk-cta-btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.glk-cta-btn.glk-cta-btn-gold:hover { background: #fff; color: var(--charcoal); }

/* ── Scroll reveal — only animate after JS marks the grid ready ── */
.glk-js .glk-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.glk-js .glk-reveal.glk-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger each item — only when JS is active */
.glk-js > *:nth-child(1)  { transition-delay: 0.00s; }
.glk-js > *:nth-child(2)  { transition-delay: 0.06s; }
.glk-js > *:nth-child(3)  { transition-delay: 0.12s; }
.glk-js > *:nth-child(4)  { transition-delay: 0.18s; }
.glk-js > *:nth-child(5)  { transition-delay: 0.06s; }
.glk-js > *:nth-child(6)  { transition-delay: 0.12s; }
.glk-js > *:nth-child(7)  { transition-delay: 0.00s; }
.glk-js > *:nth-child(8)  { transition-delay: 0.09s; }
.glk-js > *:nth-child(9)  { transition-delay: 0.18s; }
.glk-js > *:nth-child(10) { transition-delay: 0.06s; }
.glk-js > *:nth-child(11) { transition-delay: 0.12s; }
.glk-js > *:nth-child(12) { transition-delay: 0.00s; }

/* ── Favourites tray ── */
.glk-fav-tray {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  animation: traySlideUp 0.4s var(--ease);
}
@keyframes traySlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.glk-fav-tray-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.glk-fav-tray-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-pale);
}
.glk-fav-tray-label svg { fill: var(--blush-3); }
.glk-fav-book {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.glk-fav-book:hover { background: #fff; }
.glk-fav-clear {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.glk-fav-clear:hover { border-color: #fff; color: #fff; }

/* ── Lightbox ── */
.glk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8,6,4,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  outline: none;
  animation: lbFadeIn 0.3s var(--ease);
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.glk-lightbox[hidden] { display: none; }
.glk-lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}
.glk-lb-close svg { width: 18px; height: 18px; stroke: currentColor; }
.glk-lb-close:hover { border-color: var(--gold); background: rgba(198,158,80,0.15); }
.glk-lb-prev,
.glk-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}
.glk-lb-prev svg,
.glk-lb-next svg { width: 20px; height: 20px; stroke: currentColor; }
.glk-lb-prev { left: 16px; }
.glk-lb-next { right: 16px; }
.glk-lb-prev:hover,
.glk-lb-next:hover { border-color: var(--gold); background: rgba(198,158,80,0.15); }
.glk-lb-stage {
  position: relative;
  max-width: min(85vw, 700px);
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glk-lb-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.glk-lb-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10,7,5,0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.glk-lb-heart svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.8); fill: none; transition: fill 0.2s, stroke 0.2s; }
.glk-lb-heart.saved svg { fill: var(--blush-3); stroke: var(--blush-3); }
.glk-lb-heart.saved { border-color: var(--blush-3); }
.glk-lb-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px 16px;
  text-align: center;
  max-width: min(85vw, 700px);
}
.glk-lb-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.glk-lb-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}
.glk-lb-appt {
  margin-top: 6px;
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.glk-lb-appt:hover { background: #fff; transform: translateY(-1px); }

/* ── Mobile: horizontal scroll strip ── */
@media (max-width: 639px) {
  /* Hide category filters entirely on mobile */
  .glk-filters { display: none; }

  /* Grid-wrap becomes a horizontal scroll container */
  .glk-grid-wrap {
    padding-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;        /* Firefox */
    padding-bottom: 12px;         /* room for scroll momentum */
  }
  .glk-grid-wrap::-webkit-scrollbar { display: none; } /* Chrome/Safari */

  /* Single-row horizontal strip — all items same fixed height */
  .glk-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
    width: max-content;           /* let it grow as wide as needed */
    padding: 0 16px;
  }

  /* Each card: fixed square tile that snaps into place */
  .glk-item,
  .glk-item.glk-tall,
  .glk-item.glk-wide {
    flex: 0 0 auto;
    width: 58vw;                  /* ~2.5 visible at once */
    max-width: 240px;
    aspect-ratio: 3/4;
    grid-row: unset;
    grid-column: unset;
    scroll-snap-align: start;
  }

  /* Always show overlay on mobile (no hover) */
  .glk-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10,7,5,0.75) 0%, transparent 55%);
  }

  /* Show heart, hide expand on mobile */
  .glk-heart  { opacity: 1; }
  .glk-expand { display: none; }

  /* Lightbox adjustments */
  .glk-lb-prev  { left: 6px; width: 38px; height: 38px; }
  .glk-lb-next  { right: 6px; width: 38px; height: 38px; }
  .glk-lb-stage { max-width: 94vw; }
  .glk-lb-img   { max-height: 55vh; }

  /* Favorites tray */
  .glk-fav-tray       { bottom: 90px; left: 12px; right: 12px; transform: none; }
  .glk-fav-tray-inner { border-radius: 16px; justify-content: space-between; }

  /* Tighten section padding on mobile */
  .gallery-section { padding-top: clamp(40px, 8vw, 72px); }
  .glk-grid-wrap   { padding-bottom: clamp(32px, 6vw, 56px); }
}

/* ── Swipe hint — mobile only ── */
.glk-swipe-hint { display: none; }
@media (max-width: 639px) {
  .glk-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 0 16px 28px;
  }
}



/* ============================================================
   BRIDAL PREP GUIDE
============================================================ */
.prep-section {
  background: var(--ivory);
  padding: var(--section-y) 0;
}
.prep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .prep-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .prep-grid { grid-template-columns: repeat(3, 1fr); } }
.prep-card {
  background: var(--ivory-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: all 0.4s var(--ease);
}
.prep-card:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(26,22,20,0.07);
  transform: translateY(-2px);
}
.prep-icon {
  display: block;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}
.prep-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.prep-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.75;
}

/* ============================================================
   MID-PAGE CTA
============================================================ */
.midcta-section {
  background: var(--blush-2);
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid var(--blush-3);
  border-bottom: 1px solid var(--blush-3);
}
.midcta-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .midcta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.midcta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.midcta-text h2 em { font-style: italic; color: var(--gold); }
.midcta-text p {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 44ch;
}
.midcta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   CLIENT EXPERIENCE (Stories)
============================================================ */
.stories-section {
  background: var(--ivory-2);
  padding: var(--section-y) 0;
}
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 700px) { .stories-grid { grid-template-columns: repeat(3, 1fr); } }
/* Stories — horizontal scroll strip on mobile */
@media (max-width: 699px) {
  .stories-section .container { overflow: visible; }
  .stories-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px var(--gutter) 16px;
    margin: 0 calc(-1 * var(--gutter)) 24px;
    width: calc(100% + 2 * var(--gutter));
    box-sizing: border-box;
  }
  .stories-grid::-webkit-scrollbar { display: none; }
  .story-card {
    flex: 0 0 auto;
    width: 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
}
.story-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s;
}
.story-card:hover { box-shadow: 0 12px 40px rgba(26,22,20,0.08); transform: translateY(-2px); }
.story-quote {
  font-family: var(--font-serif);
  font-size: 52px;
  color: var(--gold-pale);
  line-height: 0.7;
  font-weight: 400;
}
.story-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
}
.story-footer { padding-top: 12px; border-top: 1px solid var(--line-soft); }
.story-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.stories-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.stories-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}
.stories-disclaimer a:hover { text-decoration-color: var(--gold); }

/* Google reviews button */
.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1.5px solid var(--line-soft);
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.google-reviews-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(168,114,42,0.14);
  color: var(--charcoal);
}

/* ============================================================
   TRUST & PROOF STRIP
============================================================ */
.proof-section {
  background: var(--ivory);
  padding: 56px 0 64px;
  border-top: 1px solid var(--line-soft);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}
@media (max-width: 699px) {
  .proof-strip { grid-template-columns: 1fr; gap: 28px; }
}
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.proof-icon {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.proof-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.proof-body strong {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.proof-body p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  background: var(--ivory);
  padding: var(--section-y) 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 340px 1fr;
    align-items: start;
    gap: clamp(40px, 7vw, 80px);
  }
}
.faq-intro {
  position: sticky;
  top: 100px;
  padding-bottom: clamp(32px, 5vw, 48px);
}
@media (max-width: 899px) {
  .faq-intro {
    position: static;
    padding-bottom: 40px;
    margin-bottom: 16px;
    border-bottom: 3px solid var(--charcoal);
    /* More visually distinct separator than a soft line */
  }
  .faq-intro .section-title {
    font-size: clamp(30px, 7vw, 48px);
  }
}
@media (min-width: 900px) {
  .faq-intro { padding-bottom: 0; }
}
.faq-intro .section-body { margin-bottom: 24px; }
.faq-contact-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--ivory-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}
.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s;
}
.faq-contact-link:hover { color: var(--gold); }
.faq-list {
  display: flex;
  flex-direction: column;
}
@media (max-width: 899px) {
  .faq-list { margin-top: 8px; }
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: all 0.3s;
  min-height: 64px;
}
.faq-q span:first-child {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.faq-q:hover span:first-child { color: var(--gold); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.35s var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  transition: all 0.35s var(--ease);
  border-radius: 2px;
}
.faq-toggle::before { width: 10px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-toggle {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.faq-item.open .faq-toggle::before { background: #fff; }
.faq-item.open .faq-toggle::after { transform: scaleY(0); background: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  padding: 0 0 22px 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 64ch;
}

/* ============================================================
   LOCATION
============================================================ */
.location-section {
  background: var(--champagne);
  padding: var(--section-y) 0;
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 72px);
}
@media (min-width: 900px) {
  .loc-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.loc-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.loc-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.loc-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.loc-detail strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 3px;
}
.loc-detail p, .loc-detail a {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.loc-detail a:hover { color: var(--gold); }
.loc-areas-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.loc-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
}
.loc-areas-grid span {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 5px 0;
  border-bottom: 1px solid rgba(168,114,42,0.18);
}
.loc-map-side { display: flex; flex-direction: column; gap: 20px; }

/* ── Premium Location Card (replaces SVG map) ── */
.loc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #fff;
  box-shadow: 0 4px 24px rgba(26,22,20,0.06);
}
/* Google Maps iframe embed */
.loc-map-embed-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
@media (min-width: 900px) { .loc-map-embed-wrap { height: 300px; } }
.loc-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Directions button — normal flow inside .loc-card-details */
.loc-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--charcoal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.2s;
  margin-top: 4px;
  white-space: nowrap;
}
.loc-directions-btn:hover {
  background: #8B2252;
  transform: translateY(-1px);
}

/* Location card bottom info rows */
.loc-card-details {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
}
.loc-card-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.loc-card-row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.loc-card-row strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1px;
}
.loc-card-row span {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

.loc-cta-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-cta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}

/* ============================================================
   FINAL CTA
============================================================ */
.finalcta-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.finalcta-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.finalcta-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.finalcta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,0.78) 0%, rgba(10,8,6,0.45) 100%);
}
.finalcta-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  text-align: center;
}
.finalcta-content .section-eyebrow,
.finalcta-content .section-title,
.finalcta-content .section-body {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.finalcta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}
@media (min-width: 500px) {
  .finalcta-actions { flex-direction: row; justify-content: center; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--charcoal-2);
  padding: clamp(56px, 8vw, 96px) 0 0;
}
/* Prevent mobile sticky bar from covering footer content */
@media (max-width: 899px) {
  .site-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand {}
.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 16px;
  mix-blend-mode: screen;
  opacity: 0.9;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: 16px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--gold-pale); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links h6 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-addr, .footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   MOBILE SECTION FIT  (max-width: 767px)
   Goal: every section fits within one viewport height on scroll
============================================================ */
@media (max-width: 767px) {

  /* ── Global spacing tokens ── */
  :root {
    --section-y: 40px;
    --gutter: 20px;
  }

  /* ── Section typography ── */
  .section-title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.1;
  }
  .section-body {
    font-size: 15px;
    margin-top: 12px;
  }
  .section-eyebrow {
    font-size: 9px;
    margin-bottom: 10px;
  }
  .section-intro {
    margin-bottom: 28px;
  }

  /* ── Booking ── */
  .booking-header { margin-bottom: 28px; }
  .booking-header .section-title { font-size: clamp(26px, 8vw, 38px); }
  .bpanel { padding: 20px 16px; }
  .bpanel-head { margin-bottom: 20px; }
  .bpanel-head h3 { font-size: clamp(22px, 7vw, 32px); }
  .adc-inner { align-items: flex-start; gap: 10px; padding-top: 24px; padding-bottom: 24px; }
  .appt-card { padding: 16px; }
  .appt-card-title { font-size: 15px; }
  .appt-card-desc { font-size: 13px; }
  .time-grid { gap: 8px; }
  .form-field label { font-size: 12px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 15px; padding: 10px 12px; }
  .form-field textarea { min-height: 80px; }
  .form-section-title { font-size: 13px; }

  /* ── Experience ── */
  .exp-grid { gap: 28px; }
  .exp-list { margin-top: 20px; }
  .exp-item { padding: 14px 0; gap: 14px; }
  .exp-item-body h4 { font-size: 15px; }
  .exp-item-body p { font-size: 13.5px; }

  /* ── Collections ── */
  .coll-grid { gap: 10px; }
  .coll-card { min-height: 180px; }
  .coll-card.coll-feature { min-height: 220px; }
  .coll-name { font-size: 18px; }
  .coll-desc { font-size: 13px; }

  /* ── Why section ── */
  .why-layout { gap: 32px; }
  .why-cards { gap: 8px; }
  .why-card { padding: 18px 16px; }
  .why-card h4 { font-size: 17px; margin-bottom: 8px; }
  .why-card p { font-size: 13px; line-height: 1.65; }
  .why-card-num { font-size: 12px; margin-bottom: 10px; }
  .why-intro .section-title { font-size: clamp(26px, 8vw, 36px); }

  /* ── Testimonials ── */
  .test-card { padding: 20px 16px; }
  .test-quote { font-size: 15px; line-height: 1.6; }
  .test-name { font-size: 13px; }

  /* ── Prep (What to bring) ── */
  .prep-grid { gap: 10px; }
  .prep-card { padding: 16px; }
  .prep-card h4 { font-size: 18px; }
  .prep-card p { font-size: 13px; }

  /* ── FAQ ── */
  .faq-item { padding: 0; }
  .faq-question { font-size: 14px; padding: 16px 0; }
  .faq-answer p { font-size: 13.5px; }
  .faq-intro .section-title { font-size: clamp(24px, 7vw, 36px); }

  /* ── Location ── */
  .loc-grid { gap: 32px; }
  .loc-info-card { padding: 20px 16px; }
  .loc-map-embed-wrap { height: 220px; }

  /* ── Final CTA ── */
  .finalcta-section { min-height: 50vh; }
  .finalcta-content { padding: 40px var(--gutter); }
  .finalcta-content .section-title { font-size: clamp(26px, 8vw, 40px); }

  /* ── Confirmation panel ── */
  .conf-card { padding: 24px 20px; }
  .conf-title { font-size: 22px; }
}
