/* ============================================================
   VENUS GLOW MIAMI — Where Beauty Meets Energy
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Manrope:wght@300;400;500;600&family=Pinyon+Script&display=swap');

:root {
  --cream:        #faf3eb;
  --cream-deep:   #f3e6d6;
  --blush:        #f4e2d5;
  --pink-quartz:  #efc9b8;
  --rose-mist:    #e8d4c8;
  --gold:         #b88b5a;
  --gold-deep:    #8c6740;
  --gold-light:   #d9b78c;
  --ink:          #2a1c14;
  --ink-soft:     #4a352a;
  --white:        #fffdfa;

  --serif-display:  'Cinzel', 'Cormorant Garamond', serif;
  --serif-body:     'Cormorant Garamond', Georgia, serif;
  --sans:           'Manrope', system-ui, sans-serif;
  --script:         'Pinyon Script', cursive;

  --max:    1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 4px;

  --shadow-soft: 0 30px 80px -40px rgba(140, 103, 64, 0.25);
  --shadow-card: 0 24px 60px -30px rgba(74, 53, 42, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  position: relative;
}

/* atmospheric grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.4  0 0 0 0 0.25  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* ───────── Typography ───────── */
h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); letter-spacing: 0.08em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: 0.18em; }
h4 { font-size: 0.85rem; letter-spacing: 0.32em; font-weight: 500; }

.script   { font-family: var(--script); text-transform: none; font-size: 1.6em; color: var(--gold); letter-spacing: 0; line-height: 0.9; font-weight: 400; }
.italic   { font-family: var(--serif-body); font-style: italic; font-weight: 300; text-transform: none; letter-spacing: 0.02em; }
.eyebrow  { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 14px; }
.eyebrow::before, .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.only-after::before { display: none; }
.eyebrow.only-before::after { display: none; }

p { font-size: 1.02rem; color: var(--ink-soft); max-width: 62ch; }
p.lead { font-family: var(--serif-body); font-size: clamp(1.2rem, 1.6vw, 1.45rem); font-style: italic; font-weight: 300; line-height: 1.55; color: var(--ink); }

a { color: var(--gold-deep); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--ink); }

/* ───────── Layout ───────── */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); position: relative; z-index: 2; }
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }

/* ───────── Navigation ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  background: rgba(250, 243, 235, 0.92);
  border-bottom: 1px solid rgba(184, 139, 90, 0.18);
}
@supports not (backdrop-filter: blur(1px)) { .nav { background: var(--cream); } }
.nav-inner { position: relative; }
.nav-logo { position: relative; z-index: 2; flex-shrink: 0; }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif-display);
  font-size: 1.05rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-logo img { height: 68px; width: auto; }
.nav-logo span small { display: block; font-family: var(--script); font-size: 1.6rem; line-height: 0.5; letter-spacing: 0; color: var(--gold); margin-top: 2px; text-transform: none; }
.nav-links { display: flex; gap: 38px; align-items: center; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
  transition: width .35s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-deep); }

.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(184, 139, 90, 0.4);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.lang-toggle button {
  border: 0; background: transparent;
  padding: 7px 14px;
  color: var(--ink-soft);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: all .25s ease;
}
.lang-toggle button.active { background: var(--gold); color: var(--cream); }

.menu-btn { display: none; border: 0; background: transparent; cursor: pointer; width: 30px; height: 30px; position: relative; }
.menu-btn span { position: absolute; left: 4px; right: 4px; height: 1.5px; background: var(--ink); transition: .3s; }
.menu-btn span:nth-child(1) { top: 9px; }
.menu-btn span:nth-child(2) { top: 14px; }
.menu-btn span:nth-child(3) { top: 19px; }
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--gold-deep);
  background: var(--gold-deep);
  color: var(--cream);
  cursor: pointer;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→"; font-family: serif; font-size: 1.1rem; letter-spacing: 0;
  transition: transform .3s ease;
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:hover::after { transform: translateX(4px); }

.btn-ghost { background: transparent; color: var(--gold-deep); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ───────── Hero ───────── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding: 60px var(--gutter) 80px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; position: relative; }
.hero-copy .eyebrow { animation: fadeUp .9s .1s both; }
.hero-title {
  font-family: var(--serif-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
  animation: fadeUp .9s .25s both;
}
.hero-title .script { display: block; margin: -10px 0 -10px 40px; font-size: 1.05em; color: var(--gold); }
.hero-copy p.lead { animation: fadeUp .9s .4s both; max-width: 48ch; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; animation: fadeUp .9s .55s both; }
.hero-meta {
  display: flex; gap: 30px; margin-top: 20px;
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep);
  animation: fadeUp .9s .7s both;
}
.hero-meta strong { display: block; font-family: var(--serif-display); font-size: 1.1rem; color: var(--ink); letter-spacing: 0.12em; font-weight: 500; margin-bottom: 6px; }

.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  animation: fadeIn 1.3s .2s both;
}
.hero-art img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  filter: saturate(1.05);
}
.hero-art::before {
  content: ""; position: absolute; inset: -22px -22px 22px 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}
.hero-art::after {
  content: "✦";
  position: absolute; top: -36px; right: -20px;
  font-size: 28px; color: var(--gold);
  animation: twinkle 3s infinite;
}

/* ───────── Decorative SVG accents ───────── */
.crystal-divider {
  display: flex; align-items: center; gap: 22px;
  color: var(--gold);
  margin: 0 auto;
  width: fit-content;
}
.crystal-divider hr { width: 80px; border: 0; border-top: 1px solid var(--gold); }
.crystal-divider svg { width: 28px; height: 28px; }

/* ───────── Service Cards ───────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(184, 139, 90, 0.22);
  border-radius: var(--radius);
  padding: 44px 32px 36px;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  display: flex; flex-direction: column; gap: 18px;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, var(--blush), transparent 60%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-card); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 2; }
.service-card .price {
  position: absolute; top: 22px; right: 22px;
  width: 78px; height: 78px;
  border-radius: 999px;
  border: 1px dashed var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif-display); font-weight: 500;
  font-size: 1.3rem; color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.service-card .price small { display: block; font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.24em; color: var(--ink-soft); margin-top: 2px; }
.service-card h3 { font-size: 1.25rem; letter-spacing: 0.16em; padding-right: 90px; min-height: 64px; }
.service-card .subtitle { font-family: var(--serif-body); font-style: italic; color: var(--gold-deep); font-size: 1rem; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.service-card li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--ink-soft); }
.service-card li::before { content: "✦"; color: var(--gold); flex-shrink: 0; }
.service-card .card-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(184, 139, 90, 0.2); display: flex; justify-content: space-between; align-items: center; }
.service-card .card-foot small { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); }
.service-card .card-foot a { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--sans); }

/* ───────── Philosophy band ───────── */
.philosophy {
  background: linear-gradient(180deg, var(--blush), var(--cream-deep));
  position: relative;
  overflow: hidden;
}
.philosophy::before, .philosophy::after {
  content: ""; position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 201, 184, 0.6), transparent 70%);
  filter: blur(40px);
}
.philosophy::before { top: -180px; left: -120px; }
.philosophy::after  { bottom: -200px; right: -160px; background: radial-gradient(circle, rgba(217, 183, 140, 0.45), transparent 70%); }
.philosophy .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.philosophy-art { position: relative; aspect-ratio: 4/5; }
.philosophy-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-card); }
.philosophy-art .tag {
  position: absolute; bottom: 22px; left: -28px;
  background: var(--cream); color: var(--ink);
  padding: 14px 22px; border: 1px solid var(--gold);
  font-family: var(--script); font-size: 1.8rem; color: var(--gold-deep);
  line-height: 1;
}
.philosophy-text h2 .script { display: block; color: var(--gold); margin: -4px 0 0 -4px; font-size: 1.1em; line-height: 1; }
.philosophy-quote {
  margin-top: 30px;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  max-width: 50ch;
}

/* ───────── Energy / 4-pillar grid ───────── */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; margin-top: 50px;
}
.pillar {
  text-align: center; padding: 32px 20px;
  border-top: 1px solid var(--gold);
  position: relative;
}
.pillar .icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
  display: grid; place-items: center;
}
.pillar h4 { color: var(--ink); margin-bottom: 10px; }
.pillar p { font-size: 0.88rem; margin: 0 auto; }

/* ───────── Skincare teaser ───────── */
.teaser {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.teaser .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; }
.teaser h2, .teaser h4 { color: var(--cream); }
.teaser h2 .script { color: var(--gold-light); }
.teaser p { color: rgba(250, 243, 235, 0.75); }
.teaser .eyebrow { color: var(--gold-light); }
.teaser .eyebrow::before, .teaser .eyebrow::after { background: var(--gold-light); }
.teaser-art { position: relative; aspect-ratio: 3/4; }
.teaser-art img { width: 100%; height: 100%; object-fit: cover; }
.countdown { display: flex; gap: 14px; margin-top: 30px; }
.countdown-cell {
  flex: 1; padding: 16px 0; text-align: center;
  border: 1px solid rgba(217, 183, 140, 0.4);
  background: rgba(184, 139, 90, 0.08);
}
.countdown-cell strong {
  display: block; font-family: var(--serif-display); font-size: 1.8rem;
  color: var(--gold-light); font-weight: 500; line-height: 1;
}
.countdown-cell small { display: block; margin-top: 6px; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(250, 243, 235, 0.55); }

/* ───────── Locations strip ───────── */
.locations { background: var(--blush); }
.locations .wrap { text-align: center; }
.location-list {
  display: flex; justify-content: center; gap: 60px; margin-top: 30px; flex-wrap: wrap;
  font-family: var(--serif-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--gold-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.location-list span { position: relative; }
.location-list span + span::before {
  content: "✦"; position: absolute; left: -38px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 0.7em;
}

/* ───────── Contact / Footer CTA ───────── */
.cta-band {
  text-align: center;
  background: linear-gradient(180deg, var(--cream), var(--cream-deep));
  position: relative;
}
.cta-band h2 .script { color: var(--gold); display: block; line-height: 1; }

/* ───────── Footer ───────── */
footer {
  background: var(--ink);
  color: rgba(250, 243, 235, 0.7);
  padding: 80px var(--gutter) 30px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(217, 183, 140, 0.2);
}
.footer-grid h5 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: rgba(250, 243, 235, 0.75); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .nav-logo { color: var(--cream); }
.footer-brand .nav-logo img { filter: brightness(0) invert(1) sepia(0.2) saturate(2) hue-rotate(-10deg) brightness(1.05); opacity: 0.95; }
.footer-brand p { color: rgba(250, 243, 235, 0.6); font-size: 0.9rem; margin-top: 16px; max-width: 38ch; }
.footer-copy {
  max-width: var(--max); margin: 30px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250, 243, 235, 0.5);
}

/* ───────── Service detail rows ───────── */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(184, 139, 90, 0.18);
}
.service-row:last-child { border-bottom: 0; }
.service-row.flip { grid-template-columns: 1.1fr 1fr; }
.service-row.flip .service-row-art { order: 2; }
.service-row-art { position: relative; aspect-ratio: 4/5; }
.service-row-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-card); }
.service-row-art .num {
  position: absolute; top: -22px; left: -22px;
  font-family: var(--serif-display); font-size: 5rem; color: var(--gold);
  background: var(--cream); padding: 0 12px; line-height: 1;
}
.service-row-content { display: flex; flex-direction: column; gap: 22px; }
.service-row .price-tag {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--serif-display); font-weight: 500; color: var(--gold-deep);
  font-size: 2.4rem; letter-spacing: 0.04em;
}
.service-row .price-tag small { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--sans); margin-left: 6px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; margin-top: 10px; }
.benefits-grid > div { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); }
.benefits-grid > div::before { content: ""; width: 6px; height: 6px; background: var(--gold); margin-top: 8px; flex-shrink: 0; transform: rotate(45deg); }

/* ───────── About page hero ───────── */
.page-hero {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) var(--gutter) 60px;
  max-width: 880px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.page-hero h1 { margin: 24px 0; }
.page-hero .script { display: block; line-height: 0.9; margin-top: -6px; }
.page-hero p.lead { margin: 0 auto; }

/* ───────── Contact ───────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-block { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid rgba(184, 139, 90, 0.18); }
.contact-block .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-deep);
}
.contact-block h4 { color: var(--ink); margin-bottom: 6px; letter-spacing: 0.24em; }
.contact-block p, .contact-block a { font-size: 0.95rem; color: var(--ink-soft); }
.contact-block a { display: block; }
.contact-form {
  background: var(--white);
  border: 1px solid rgba(184, 139, 90, 0.25);
  padding: 44px;
  border-radius: var(--radius);
  position: relative;
}
.contact-form::before {
  content: "✦"; position: absolute; top: -14px; left: 36px;
  background: var(--cream); color: var(--gold); padding: 0 8px;
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); }
.field input, .field select, .field textarea {
  border: 0; border-bottom: 1px solid rgba(184, 139, 90, 0.4);
  background: transparent;
  font-family: var(--serif-body); font-size: 1.05rem;
  padding: 10px 0; color: var(--ink);
  transition: border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold-deep); }
.field textarea { resize: vertical; min-height: 100px; font-family: var(--serif-body); }

/* ───────── Animations ───────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes twinkle { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ───────── Responsive ───────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 50px; min-height: auto; padding-top: 40px; }
  .hero-art { max-width: 480px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .philosophy .wrap, .teaser .wrap, .contact-grid,
  .philosophy-art-row { grid-template-columns: 1fr !important; gap: 50px !important; }
  .service-row, .service-row.flip { grid-template-columns: 1fr; gap: 40px; }
  .service-row.flip .service-row-art { order: 0; }
  .service-row-art .num { font-size: 3.4rem; top: -14px; left: -10px; padding: 0 8px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .menu-btn { display: block; }
  /* Mobile dropdown — fully overrides desktop nav-links flex/pill styles */
  .nav-links {
    position: absolute !important;
    top: 100% !important; left: 0 !important; right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
    background: var(--cream);
    padding: 16px var(--gutter) 24px;
    margin: 0;
    border-bottom: 1px solid rgba(184, 139, 90, 0.2);
    box-shadow: 0 20px 40px -20px rgba(74, 53, 42, 0.3);
    transform: translateY(-150%);
    transition: transform .35s ease;
    z-index: 30;
  }
  body.menu-open .nav-links { transform: none; }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    display: block !important;
    padding: 16px 0 !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(184, 139, 90, 0.12) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--ink) !important;
    box-shadow: none !important;
    text-align: left;
    transform: none !important;
  }
  .nav-links a::after { display: none !important; }
  .nav-links li:last-child a { border-bottom: 0 !important; }
  /* Book pill at the bottom of the mobile menu */
  .nav-links a.nav-book {
    margin-top: 18px;
    padding: 14px 22px !important;
    background: var(--gold-deep) !important;
    color: var(--cream) !important;
    border-radius: 999px !important;
    text-align: center !important;
    letter-spacing: 0.28em;
    box-shadow: 0 8px 24px -10px rgba(140, 103, 64, 0.5) !important;
  }
  .nav-links a.nav-book.active {
    background: var(--ink) !important;
    color: var(--cream) !important;
  }
  .hero-meta { gap: 20px; flex-wrap: wrap; }
  .page-hero { padding-top: 60px; }
  .teaser-art, .hero-art { aspect-ratio: 4/5; }
  /* Booking layout collapses */
  .booking-grid { grid-template-columns: 1fr !important; }
  .booking-summary { position: static !important; }
}
@media (max-width: 640px) {
  /* tighter nav on small phones */
  .nav-inner { padding: 10px var(--gutter); gap: 12px; }
  .nav-logo img { height: 54px; }
  .nav-logo { font-size: 0.92rem; letter-spacing: 0.28em; gap: 10px; }
  .nav-logo span small { font-size: 1.3rem; }
  .lang-toggle button { padding: 6px 10px; font-size: 0.65rem; letter-spacing: 0.18em; }
  /* Hero title slightly tighter */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); line-height: 1.05; }
  h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  /* Service card price chip — slightly smaller */
  .service-card .price { width: 64px; height: 64px; top: 18px; right: 18px; font-size: 1.05rem; }
  .service-card .price small { font-size: 0.46rem; }
  .service-card h3 { padding-right: 72px; min-height: auto; }
  /* Service detail header price tag */
  .service-row .price-tag { font-size: 1.9rem; }
  /* Booking step buttons full width on phones */
  .step-buttons { flex-direction: column-reverse; }
  .step-buttons .btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .location-list { gap: 40px; }
  .location-list span + span::before { left: -26px; }
  .contact-form { padding: 30px 22px; }
  .hero-title .script { margin-left: 0; }
  .hero-art::before { inset: -12px -12px 12px 12px; }
  .footer-copy { font-size: 0.66rem; text-align: center; justify-content: center; }
  .nav-logo span { display: none; } /* leave only crest on tiny phones */
}
@media (max-width: 380px) {
  .lang-toggle { display: none; } /* prevents nav overflow on very narrow */
}

/* ────────────────────────────────────────────────
   NAV — Book pill (desktop)
   ──────────────────────────────────────────────── */
.nav-links a.nav-book {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 22px;
  color: var(--cream); background: var(--gold-deep);
  border-radius: 999px; border: 1px solid var(--gold-deep);
  transition: all .25s ease;
}
.nav-links a.nav-book::after { display: none; }
.nav-links a.nav-book:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); transform: translateY(-1px); }
.nav-links a.nav-book.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* ────────────────────────────────────────────────
   SERVICE DETAIL PAGE
   ──────────────────────────────────────────────── */
.svc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 60px var(--gutter) 80px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative; z-index: 2;
}
.svc-hero-copy { display: flex; flex-direction: column; gap: 22px; }
.svc-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
.svc-hero .script { display: block; line-height: 0.95; }
.svc-hero-art { position: relative; aspect-ratio: 4/5; }
.svc-hero-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-soft); }
.svc-hero-art::after {
  content: ""; position: absolute; inset: -20px -20px 20px 20px;
  border: 1px solid var(--gold); border-radius: 2px; pointer-events: none;
}
.svc-price-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
  padding: 18px 22px;
  background: var(--blush);
  border-radius: var(--radius);
  border: 1px solid rgba(184, 139, 90, 0.3);
}
.svc-price-bar .price-tag { margin: 0; }
.svc-price-bar small.note {
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-deep);
}

.svc-section { padding: clamp(60px, 8vw, 100px) 0; border-top: 1px solid rgba(184, 139, 90, 0.15); }
.svc-section h2 { margin-bottom: 14px; }
.svc-section .lead { max-width: 60ch; margin-bottom: 30px; }

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 30px; }
.process-step {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid rgba(184, 139, 90, 0.2);
  border-radius: var(--radius);
  position: relative;
}
.process-step .step-num {
  position: absolute; top: -16px; left: 24px;
  font-family: var(--serif-display); font-weight: 500;
  background: var(--gold-deep); color: var(--cream);
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.95rem;
}
.process-step h4 { margin-bottom: 10px; color: var(--ink); letter-spacing: 0.22em; }
.process-step p { font-size: 0.92rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 30px auto 0; }
.faq {
  border-bottom: 1px solid rgba(184, 139, 90, 0.25);
  padding: 22px 0;
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--serif-display); font-size: 1.05rem; letter-spacing: 0.08em;
  color: var(--ink); text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--serif-body); font-size: 1.6rem; color: var(--gold-deep);
  transition: transform .25s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 14px; padding-right: 30px; }

/* Other rituals strip */
.other-svcs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px;
}
.other-svc-card {
  padding: 30px;
  background: var(--white); border: 1px solid rgba(184,139,90,0.2);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  transition: all .35s ease;
}
.other-svc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.other-svc-card h3 { font-size: 1.1rem; letter-spacing: 0.16em; }
.other-svc-card .row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(184,139,90,0.18); }
.other-svc-card .row strong { font-family: var(--serif-display); color: var(--gold-deep); font-size: 1.2rem; font-weight: 500; }

@media (max-width: 960px) {
  .svc-hero { grid-template-columns: 1fr; gap: 50px; }
  .svc-hero-art { max-width: 480px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .other-svcs-grid { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────
   BOOKING FLOW
   ──────────────────────────────────────────────── */
.booking-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px var(--gutter) 60px;
  position: relative; z-index: 2;
  overflow: hidden;          /* keeps inner overflow from pushing the page wide */
}
.booking-wrap > * { min-width: 0; }

/* ─── Compact booking screen — fit above the fold ─── */
.stepper { margin: 8px 0 22px !important; }
.booking-step h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important; margin-bottom: 4px !important; }
.booking-step .step-intro { font-size: 0.86rem; margin-bottom: 18px !important; }
.step-buttons { margin-top: 18px !important; padding-top: 18px !important; }

/* Tighter service picker */
.service-picker { gap: 10px !important; }
.service-pick { padding: 10px !important; gap: 14px !important; }
.service-pick .pick-thumb { width: 64px !important; height: 64px !important; }
.service-pick .pick-body { gap: 2px !important; }
.service-pick h3 { font-size: 0.95rem !important; letter-spacing: 0.12em !important; }
.service-pick p {
  font-size: 0.78rem !important;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-pick .pick-price { font-size: 1.25rem !important; padding-left: 12px !important; }

/* Tighter summary sidebar */
.booking-summary { padding: 22px 22px !important; }
.booking-summary h4 { margin-bottom: 14px !important; }
.summary-row { padding: 7px 0 !important; font-size: 0.82rem; }
.summary-total { margin-top: 12px !important; padding-top: 12px !important; }
.summary-total span:last-child { font-size: 1.55rem !important; }

/* Step 2 — tighter */
.location-pick { margin-bottom: 16px !important; }
.loc-card { padding: 12px !important; }
.date-pill { padding: 10px 8px !important; min-width: 60px; }
.date-pill strong { font-size: 1.15rem !important; margin: 2px 0 !important; }
.time-slot { padding: 9px 6px !important; font-size: 0.88rem !important; }

/* Step 3 — tighter */
.booking-fields { gap: 14px 24px !important; }
.booking-fields .field { margin-bottom: 0 !important; }

@media (min-width: 961px) {
  /* extra compaction on desktop so step 1 sits above the fold */
  .booking-wrap { padding-top: 12px; padding-bottom: 40px; }
  .stepper { margin: 4px 0 16px !important; }
  .stepper li { gap: 6px; }
  .stepper li .dot { width: 30px; height: 30px; font-size: 0.85rem; }
  .stepper li:not(:last-child)::after { top: 15px; }
  .booking-step h2 { font-size: 1.5rem !important; }
  .booking-step .step-intro { margin-bottom: 14px !important; font-size: 0.82rem; }

  /* Align the step heading horizontally with the "YOUR BOOKING" header in the right card.
     Right card has 22px top padding before its h4 — match that on the left. */
  .booking-step { padding-top: 22px; }
}

/* Stepper */
.stepper {
  display: flex; justify-content: space-between; align-items: center;
  gap: 6px; margin: 30px 0 50px;
  list-style: none;
  width: 100%;
}
.stepper li {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: relative;
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(74, 53, 42, 0.4);
  text-align: center;
}
.stepper li span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%;
}
@media (max-width: 640px) {
  .stepper li span { display: none; }   /* dots only on small phones */
  .stepper { margin-bottom: 36px; }
}
.stepper li .dot {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(184, 139, 90, 0.4);
  display: grid; place-items: center;
  background: var(--cream);
  font-family: var(--serif-display); font-size: 0.95rem;
  color: var(--gold-deep);
  position: relative; z-index: 2;
  transition: all .3s ease;
}
.stepper li:not(:last-child)::after {
  content: ""; position: absolute;
  top: 17px; left: 50%; right: -50%;
  height: 1px; background: rgba(184, 139, 90, 0.3);
  z-index: 1;
}
.stepper li.done .dot { background: var(--gold); color: var(--cream); border-color: var(--gold); }
.stepper li.done::after { background: var(--gold); }
.stepper li.done { color: var(--gold-deep); }
.stepper li.active { color: var(--ink); }
.stepper li.active .dot {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
  transform: scale(1.1);
  box-shadow: 0 8px 24px -8px rgba(42, 28, 20, 0.5);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}
.booking-grid > * { min-width: 0; }

/* Steps */
.booking-step { display: none; animation: fadeUp .5s both; }
.booking-step.active { display: block; }
.booking-step h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.booking-step .step-intro { font-family: var(--serif-body); font-style: italic; color: var(--gold-deep); margin-bottom: 30px; }

/* Step 1 — service picker */
.service-picker { display: grid; grid-template-columns: 1fr; gap: 16px; }
.service-pick {
  display: flex; align-items: stretch; gap: 18px;
  padding: 18px;
  background: var(--white); border: 1px solid rgba(184, 139, 90, 0.22);
  border-radius: var(--radius); cursor: pointer;
  transition: all .25s ease; position: relative;
}
.service-pick:hover { border-color: var(--gold); }
.service-pick input { position: absolute; opacity: 0; }
.service-pick input:checked + .pick-card { border-color: var(--gold-deep); box-shadow: 0 0 0 1px var(--gold-deep) inset; }
.service-pick .pick-thumb {
  width: 96px; height: 96px; flex-shrink: 0;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
}
.service-pick .pick-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.service-pick h3 { font-size: 1.05rem; letter-spacing: 0.14em; margin: 0; }
.service-pick p { font-size: 0.86rem; color: var(--ink-soft); margin: 0; }
.service-pick .pick-price {
  font-family: var(--serif-display); color: var(--gold-deep); font-weight: 500;
  font-size: 1.5rem; align-self: center; padding-left: 14px;
  border-left: 1px solid rgba(184,139,90,0.25);
}
.service-pick.is-selected { border-color: var(--gold-deep); background: var(--blush); }
.service-pick.is-selected .pick-thumb { box-shadow: 0 0 0 2px var(--gold-deep); }

/* Step 2 — date/time/location */
.location-pick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 26px; }
.loc-card {
  padding: 18px;
  background: var(--white); border: 1px solid rgba(184, 139, 90, 0.22);
  border-radius: var(--radius); cursor: pointer;
  text-align: center; transition: all .25s ease;
}
.loc-card.is-selected { border-color: var(--gold-deep); background: var(--blush); }
.loc-card h4 { color: var(--ink); margin-bottom: 4px; }
.loc-card p { font-size: 0.78rem; color: var(--ink-soft); margin: 0; }

.date-strip {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 16px;
  scrollbar-width: thin;
}
.date-strip::-webkit-scrollbar { height: 6px; }
.date-strip::-webkit-scrollbar-thumb { background: rgba(184,139,90,0.3); border-radius: 3px; }
.date-pill {
  flex-shrink: 0;
  min-width: 70px;
  padding: 14px 8px;
  background: var(--white); border: 1px solid rgba(184,139,90,0.22);
  border-radius: var(--radius); cursor: pointer;
  text-align: center;
  transition: all .25s ease;
  font-family: var(--sans);
}
.date-pill small { display: block; font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
.date-pill strong { display: block; font-family: var(--serif-display); font-size: 1.4rem; color: var(--ink); font-weight: 500; margin: 4px 0; }
.date-pill span { display: block; font-size: 0.7rem; color: var(--gold-deep); letter-spacing: 0.16em; text-transform: uppercase; }
.date-pill.is-selected { background: var(--ink); border-color: var(--ink); }
.date-pill.is-selected small, .date-pill.is-selected strong, .date-pill.is-selected span { color: var(--cream); }
.date-pill.disabled { opacity: 0.35; cursor: not-allowed; }

.time-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px; margin-top: 18px;
}
.time-slot {
  padding: 12px 6px;
  background: var(--white); border: 1px solid rgba(184,139,90,0.22);
  border-radius: var(--radius); cursor: pointer;
  text-align: center; font-family: var(--serif-display);
  font-size: 0.95rem; color: var(--ink);
  transition: all .25s ease;
}
.time-slot:hover { border-color: var(--gold); }
.time-slot.is-selected { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.time-slot.disabled { opacity: 0.3; cursor: not-allowed; }

/* Step 3 — info form */
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.booking-fields .field-full { grid-column: 1 / -1; }
@media (max-width: 560px) { .booking-fields { grid-template-columns: 1fr; } }

/* Step 4 — payment */
.pay-tabs { display: flex; gap: 0; margin-bottom: 30px; border-bottom: 1px solid rgba(184,139,90,0.25); }
.pay-tab {
  padding: 14px 22px;
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: all .25s ease;
}
.pay-tab.is-active { color: var(--ink); border-bottom-color: var(--gold-deep); }
.pay-panel { display: none; }
.pay-panel.is-active { display: block; }
.pay-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.pay-card-row .field-full { grid-column: 1 / -1; }
@media (max-width: 560px) {
  .pay-card-row { grid-template-columns: 1fr; }
}

.pay-security {
  margin-top: 24px; padding: 16px 18px;
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream-deep);
  border-left: 2px solid var(--gold);
  font-size: 0.82rem; color: var(--ink-soft);
}
.pay-security svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-deep); margin-top: 2px; }

/* Step 5 — confirmation */
.confirm-card {
  text-align: center;
  padding: 60px 30px;
  background: var(--white); border: 1px solid rgba(184,139,90,0.25);
  border-radius: var(--radius);
}
.confirm-check {
  width: 78px; height: 78px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gold-deep); color: var(--cream);
  display: grid; place-items: center;
  font-size: 2.2rem;
  animation: scaleIn .5s .1s both;
}
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: none; opacity: 1; } }
.confirm-ref { font-family: var(--serif-display); font-size: 1.05rem; letter-spacing: 0.3em; color: var(--gold-deep); margin: 18px 0 30px; }

/* Step buttons */
.step-buttons {
  display: flex; gap: 14px; justify-content: space-between;
  margin-top: 36px; padding-top: 30px;
  border-top: 1px solid rgba(184, 139, 90, 0.18);
}
.btn-prev {
  background: transparent; color: var(--ink-soft); border: 1px solid rgba(184,139,90,0.4);
}
.btn-prev::after { content: "←"; }
.btn-prev:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* Summary sidebar */
.booking-summary {
  background: var(--white);
  border: 1px solid rgba(184, 139, 90, 0.25);
  border-radius: var(--radius);
  padding: 30px;
  position: sticky; top: 110px;
}
.booking-summary h4 {
  font-size: 0.72rem; letter-spacing: 0.32em; color: var(--gold-deep);
  margin-bottom: 22px;
}
.summary-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0;
  font-family: var(--sans); font-size: 0.86rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed rgba(184, 139, 90, 0.2);
}
.summary-row span:first-child { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); align-self: center; }
.summary-row span:last-child { text-align: right; color: var(--ink); font-family: var(--serif-body); font-style: italic; font-size: 0.98rem; }
.summary-row span.empty { color: rgba(74, 53, 42, 0.35); font-style: normal; font-family: var(--sans); font-size: 0.78rem; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--gold);
}
.summary-total span:first-child { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink); }
.summary-total span:last-child { font-family: var(--serif-display); font-size: 2rem; font-weight: 500; color: var(--gold-deep); }
