/* ============================================================
   AURA BEAUTY LOUNGE — Core Design System
   Author: CreativeGraft
   Structure:
   1. Design Tokens (CSS Custom Properties)
   2. Reset & Base
   3. Typography
   4. Layout Primitives (container, section, grid)
   5. Buttons
   6. Reusable Components (eyebrow, cards, forms, pills)
   7. Header & Navigation
   8. Sections (hero → footer)
   9. Floating / Sticky Utilities
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette */
  --ivory:        #FAF7F2;
  --ivory-deep:   #F1EAE0;
  --ink:          #1E1B18;
  --ink-soft:     #2C2823;
  --gold:         #C8A96A;
  --gold-deep:    #A9884B;
  --rose:         #E4C7BE;
  --rose-soft:    #F3E6E0;
  --plum:         #5A2A3B;
  --plum-deep:    #43202C;
  --taupe:        #8B8177;
  --taupe-light:  #B9AEA2;
  --line:         #E6DED3;
  --wa-green:     #25D366;

  /* Semantic */
  --bg:           var(--ivory);
  --fg:           var(--ink);
  --muted:        var(--taupe);
  --accent:       var(--gold);

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-body:    1.0625rem;
  --fs-small:   0.9rem;
  --fs-h1: clamp(3rem, 7vw, 5.75rem);
  --fs-h2: clamp(2.25rem, 4.5vw, 3.6rem);
  --fs-h3: clamp(1.5rem, 2.4vw, 2rem);
  --fs-h4: 1.25rem;

  /* Spacing scale (8px base) */
  --sp-1: 0.5rem;   --sp-2: 1rem;    --sp-3: 1.5rem;
  --sp-4: 2rem;     --sp-5: 3rem;    --sp-6: 4rem;
  --sp-7: 6rem;     --sp-8: 8rem;

  /* Structure */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(30,27,24,0.05);
  --shadow:    0 18px 50px -20px rgba(30,27,24,0.22);
  --shadow-lg: 0 40px 80px -30px rgba(30,27,24,0.30);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.5s;

  --header-h: 66px;
  --nav-ink: #1D1D1F;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 600; letter-spacing: 0; }

p { color: var(--ink-soft); }
.lead { font-size: 1.2rem; color: var(--taupe); line-height: 1.7; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--gold);
}
.eyebrow.center::after {
  content: ""; width: 30px; height: 1px; background: var(--gold);
}
.eyebrow.center { justify-content: center; }

.script-accent { font-style: italic; color: var(--gold-deep); }

/* ---------- 4. LAYOUT PRIMITIVES ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--sp-8); position: relative; }
.section--tight { padding-block: var(--sp-6); }

.section-head { max-width: 640px; margin-bottom: var(--sp-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: var(--sp-2); }
.section-head p { margin-top: var(--sp-2); color: var(--taupe); }

.grid { display: grid; gap: var(--sp-4); }

/* ---------- 5. BUTTONS ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--ivory);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 54px;
  padding: 0 2rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color .4s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn:hover::before { transform: translateY(0); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn--gold::before { background: var(--ink); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: var(--ivory); }
.btn--light {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--light::before { background: #fff; }
.btn--light:hover { color: var(--ink); }
.btn--wa { --btn-bg: var(--wa-green); --btn-fg: #fff; }
.btn--wa::before { background: #128C7E; }
.btn--sm { min-height: 46px; padding: 0 1.4rem; font-size: 0.8rem; }

/* text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; color: var(--ink);
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.link-arrow svg { transition: transform .35s var(--ease); }
.link-arrow:hover { gap: 0.85rem; color: var(--gold-deep); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- 6. REUSABLE COMPONENTS ---------- */

/* Trust / stat strip */
.trust {
  background: var(--ink);
  color: var(--ivory);
  padding-block: var(--sp-4);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; gap: var(--sp-3);
}
.trust__num { font-family: var(--font-display); font-size: 2.6rem; color: #fff; line-height: 1; }
.trust__num .u { color: var(--gold); }
.trust__label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe-light); margin-top: 0.5rem; }
.trust__div { width: 1px; background: rgba(255,255,255,0.12); }

/* Service card */
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card__media { position: absolute; inset: 0; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,27,24,0.82) 0%, rgba(30,27,24,0.15) 55%, transparent 100%);
}
.service-card__body { position: relative; padding: var(--sp-3); color: #fff; z-index: 1; }
.service-card__index {
  font-family: var(--font-display); font-size: 0.9rem; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 0.4rem; display: block;
}
.service-card__body h3 { color: #fff; margin-bottom: 0.5rem; }
.service-card__body p { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin-bottom: 1rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s var(--ease), opacity .5s var(--ease), margin .5s var(--ease); }
.service-card:hover .service-card__body p,
.service-card:focus-within .service-card__body p { max-height: 120px; opacity: 1; }
.service-card .link-arrow { color: #fff; }
.service-card .link-arrow:hover { color: var(--gold); }

/* alt service card (no image) */
.service-card--plain { background: var(--ink); }
.service-card--plain .service-card__media { display: none; }

/* Pillar (why choose us) */
.pillar { text-align: left; padding-right: var(--sp-2); }
.pillar__icon {
  width: 56px; height: 56px; margin-bottom: var(--sp-3);
  display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%;
  color: var(--gold-deep);
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h4 { margin-bottom: 0.5rem; }
.pillar p { font-size: 0.95rem; color: var(--taupe); }

/* Package card */
.pkg {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-5) var(--sp-4);
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color .4s;
  position: relative;
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pkg--featured {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
  transform: scale(1.02);
}
.pkg--featured:hover { transform: scale(1.02) translateY(-8px); }
.pkg--featured h3, .pkg--featured .pkg__price { color: #fff; }
.pkg--featured .pkg__feat li { color: rgba(255,255,255,0.82); }
.pkg--featured .pkg__feat li::before { color: var(--gold); }
.pkg__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.45rem 1.1rem; border-radius: var(--radius-pill);
  font-weight: 600;
}
.pkg__name { font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.pkg--featured .pkg__name { color: var(--gold); }
.pkg__price { font-family: var(--font-display); font-size: 3rem; line-height: 1; margin: var(--sp-2) 0 0.3rem; }
.pkg__price span { font-size: 1rem; color: var(--taupe); font-family: var(--font-body); }
.pkg__desc { font-size: 0.92rem; color: var(--taupe); margin-bottom: var(--sp-3); }
.pkg__feat { flex: 1; margin-bottom: var(--sp-4); display: grid; gap: 0.8rem; }
.pkg__feat li { position: relative; padding-left: 1.7rem; font-size: 0.95rem; color: var(--ink-soft); }
.pkg__feat li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 6px; border-left: 1.5px solid var(--gold-deep); border-bottom: 1.5px solid var(--gold-deep);
  transform: rotate(-45deg);
}

/* Package grid (desktop: 3 equal columns — matches original inline layout) */
.pkg-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }

/* Testimonial */
.testi-track { display: flex; transition: transform 0.7s var(--ease); }
.testi {
  min-width: 100%; padding: 0 clamp(0.5rem, 5vw, 4rem); text-align: center;
}
.testi__stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: var(--sp-3); font-size: 1.1rem; }
.testi__quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.35; color: var(--ink); font-weight: 500; }
.testi__author { margin-top: var(--sp-4); font-weight: 600; letter-spacing: 0.05em; }
.testi__role { font-size: 0.85rem; color: var(--taupe); letter-spacing: 0.1em; text-transform: uppercase; }

/* Form */
.field { position: relative; margin-bottom: var(--sp-3); }
.field label {
  display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 0.6rem; font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.95rem 1.1rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,106,0.18);
}
.field.error input, .field.error select { border-color: #c0553f; }
.field__msg { font-size: 0.8rem; color: #c0553f; margin-top: 0.4rem; min-height: 1em; }
.form-note { font-size: 0.85rem; color: var(--taupe); display: flex; align-items: center; gap: 0.5rem; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: var(--sp-3) 0; font-family: var(--font-display); font-size: 1.35rem; color: var(--ink);
}
.faq-q .plus { position: relative; width: 20px; height: 20px; flex: none; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--gold-deep); transition: transform .4s var(--ease);
}
.faq-q .plus::before { top: 9px; left: 0; width: 20px; height: 1.5px; }
.faq-q .plus::after  { left: 9px; top: 0; width: 1.5px; height: 20px; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding-bottom: var(--sp-3); color: var(--taupe); max-width: 60ch; }

/* Gallery */
.gallery-grid { columns: 3; column-gap: var(--sp-3); }
.gallery-item {
  break-inside: avoid; margin-bottom: var(--sp-3);
  border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; transition: transform 1s var(--ease); }
.gallery-item::after {
  content: "＋"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 1.8rem; background: rgba(30,27,24,0.35);
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(20,18,16,0.94);
  display: grid; place-items: center; padding: 5vw;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; color: #fff; font-size: 2rem; width: 54px; height: 54px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,0.08); transition: background .3s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__close { top: 4vh; right: 4vw; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 3vw; }
.lightbox__nav--next { right: 3vw; }

/* Before/After slider */
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; user-select: none; box-shadow: var(--shadow);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff;
  transform: translateX(-50%); z-index: 3; cursor: ew-resize;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--ink); font-size: 0.9rem;
}
.ba__tag {
  position: absolute; bottom: 1rem; z-index: 2; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff; background: rgba(30,27,24,0.55);
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill); backdrop-filter: blur(4px);
}
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; }

/* Instagram */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.ig-cell { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 6px; }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ig-cell::after {
  content: ""; position: absolute; inset: 0; background: rgba(90,42,59,0.35);
  opacity: 0; transition: opacity .4s;
}
.ig-cell:hover img { transform: scale(1.08); }
.ig-cell:hover::after { opacity: 1; }

/* ---------- 7. HEADER & NAV ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  min-height: var(--header-h);
  padding-block: 18px;
  display: flex; align-items: center;
  /* Premium translucent ivory from first paint (no transparent-over-hero state) */
  background: rgba(252,250,247,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  transition: padding .4s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
/* On scroll: subtly condense + deepen the border for extra polish */
.header.scrolled {
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(30,27,24,0.35);
}

.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand__mark { width: 30px; height: 30px; color: var(--gold); transition: transform .6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(90deg); }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.28em; padding-left: 0.28em; font-weight: 500; color: var(--nav-ink); }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__links { display: flex; gap: 1.5rem; }
.nav__links a {
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 0.3rem 0; color: var(--nav-ink);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav-toggle span { width: 26px; height: 2.5px; border-radius: 2px; background: var(--nav-ink); transition: transform .4s var(--ease), opacity .3s, height .2s; }
.header.menu-open .nav-toggle span { background: var(--ink); height: 3px; }
.header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 8. SECTIONS ---------- */

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: var(--sp-6); width: 100%; }
.hero__content { max-width: 560px; }
.hero__title { margin: var(--sp-3) 0; }
.hero__title em { font-style: italic; color: var(--gold-deep); }
.hero__sub { font-size: 1.15rem; color: var(--taupe); max-width: 44ch; margin-bottom: var(--sp-4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }
.hero__rating { margin-top: var(--sp-4); display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; color: var(--taupe); }
.hero__rating .stars { color: var(--gold); letter-spacing: 0.15em; }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.hero__media .float-card {
  position: absolute; bottom: -24px; left: -24px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1rem 1.3rem; display: flex; align-items: center; gap: 0.9rem;
}
.hero__media .float-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--wa-green); box-shadow: 0 0 0 4px rgba(37,211,102,0.18); }
.hero__media .float-card b { font-family: var(--font-display); font-size: 1.1rem; }
.hero__media .float-card small { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll .rail { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }

/* Why choose us */
.why { background: var(--ivory-deep); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }

/* Bridal */
.bridal { background: var(--plum); color: var(--ivory); overflow: hidden; }
.bridal__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: var(--sp-6); }
.bridal h2, .bridal .eyebrow { color: #fff; }
.bridal .eyebrow { color: var(--rose); }
.bridal .eyebrow::before { background: var(--rose); }
.bridal p { color: rgba(250,247,242,0.8); }
.bridal__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.bridal__stats { display: flex; gap: var(--sp-5); margin: var(--sp-4) 0; }
.bridal__stats b { font-family: var(--font-display); font-size: 2.4rem; color: #fff; display: block; line-height: 1; }
.bridal__stats span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); }

/* Before after */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

/* Booking */
.booking { background: var(--ink); color: var(--ivory); }
.booking h2, .booking .eyebrow { color: #fff; }
.booking .eyebrow { color: var(--gold); }
.booking__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-6); align-items: start; }
.booking__panel { background: #fff; border-radius: var(--radius-lg); padding: var(--sp-5); color: var(--ink); }
.booking__aside p { color: rgba(250,247,242,0.75); }
.booking__contacts { margin-top: var(--sp-4); display: grid; gap: var(--sp-2); }
.booking__contacts a { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); transition: border-color .3s, background .3s; }
.booking__contacts a:hover { border-color: var(--gold); background: rgba(255,255,255,0.04); }
.booking__contacts .ic { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.06); color: var(--gold); flex: none; }
.booking__contacts small { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe-light); }
.booking__contacts b { font-family: var(--font-display); font-size: 1.2rem; color: #fff; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

.form-success {
  display: none; text-align: center; padding: var(--sp-4) 0;
}
.form-success.show { display: block; }
.form-success .check {
  width: 72px; height: 72px; border-radius: 50%; background: var(--rose-soft); color: var(--gold-deep);
  display: grid; place-items: center; margin: 0 auto var(--sp-3); font-size: 2rem;
}

/* Location */
.map__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map__info { padding: var(--sp-5); background: #fff; }
.map__info h3 { margin-bottom: var(--sp-3); }
.map__info dl { display: grid; gap: var(--sp-2); }
.map__info dt { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.map__info dd { color: var(--ink-soft); margin-bottom: var(--sp-2); }
.map__embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ---------- 9. FLOATING / STICKY ---------- */
.footer { background: var(--ink); color: #D8D2CA; padding-block: var(--sp-6) var(--sp-4); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--sp-4); }
.footer .brand__name, .footer h4 { color: #fff; }
.footer h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--sp-3); }
.footer__about { max-width: 34ch; margin-top: var(--sp-2); font-size: 0.95rem; color: #CFC7BE; line-height: 1.7; }
.footer__links { display: grid; gap: 0.7rem; }
.footer__links a { font-size: 0.92rem; color: #D8D2CA; transition: color .3s; }
.footer__links a:hover { color: #C7A16A; }
.footer__social { display: flex; gap: 0.7rem; margin-top: var(--sp-2); }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: grid; place-items: center; color: #fff; transition: background .3s, border-color .3s, transform .3s; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__bottom { margin-top: var(--sp-5); padding-top: var(--sp-3); border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 1rem; font-size: 0.82rem; }

/* Floating WhatsApp (desktop) */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa-green); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform .4s var(--ease);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Sticky mobile CTA bar */
.mobile-cta {
  position: fixed; left: 0; bottom: 0; width: 100%; z-index: 95;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: #fff; box-shadow: 0 -6px 30px -12px rgba(30,27,24,0.3);
  border-top: 1px solid var(--line);
}
.mobile-cta a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 0.7rem 0; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  color: var(--ink);
}
.mobile-cta a svg { width: 22px; height: 22px; }
.mobile-cta a.is-book { background: var(--ink); color: #fff; }
.mobile-cta a.is-wa { color: var(--wa-green); }

/* Back to top */
.to-top {
  position: fixed; right: 24px; bottom: 96px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease); transform: translateY(10px);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Mobile nav panel — refined (tighter, calmer, Apple/Aesop-inspired) */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--ivory);
  padding: calc(var(--header-h) + 1.15rem) var(--gutter)
           calc(var(--gutter) + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column;
  transform: translateX(100%); opacity: 0; visibility: hidden;
  /* smooth slide-from-right + fade (~250ms) */
  transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s var(--ease);
}
.mobile-nav.open { transform: translateX(0); opacity: 1; visibility: visible; }

/* Primary links — smaller type, ~37% tighter rhythm */
.mobile-nav__links { display: flex; flex-direction: column; gap: 0.9rem; }
.mobile-nav__links a {
  font-family: var(--font-display); font-size: 1.72rem; line-height: 1.15;
  color: var(--ink); position: relative; width: max-content;
  padding: 0.32rem 0 0.32rem 0.9rem;
  transition: color .25s var(--ease);
}
/* Gold active indicator */
.mobile-nav__links a::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 3px; height: 1.35rem; border-radius: 2px; background: var(--gold);
  transform: translateY(-50%) scaleY(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.mobile-nav__links a:hover { color: var(--gold-deep); }
.mobile-nav__links a.is-active { color: var(--gold-deep); }
.mobile-nav__links a.is-active::before { transform: translateY(-50%) scaleY(1); }

/* Footer actions — divider + primary CTA + two secondary actions */
.mobile-nav__foot {
  margin-top: 1.35rem; padding-top: 1.35rem;
  border-top: 1px solid rgba(30,27,24,0.16);   /* slightly more visible divider */
  display: flex; flex-direction: column; gap: 0.7rem;
}
.mobile-nav__cta { width: 100%; min-height: 64px; white-space: nowrap; }
.mobile-nav__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.mobile-nav__actions .btn { width: 100%; min-height: 50px; white-space: nowrap; }
