/* ═══════════════════════════════════════════════════════
   Henna by Hand — Mehndi booking site
   Palette: deep henna browns, terracotta, marigold, cream
   ═══════════════════════════════════════════════════════ */

:root {
  --ink:        #3b1f14;   /* deep henna brown  */
  --ink-soft:   #5c3a28;
  --henna:      #8a4b2a;   /* henna stain       */
  --terracotta: #b5622f;
  --marigold:   #d99a3d;
  --gold:       #c9a25e;
  --blush:      #e9c9a8;
  --cream:      #faf3e7;   /* page background   */
  --cream-2:    #f3e7d3;
  --white:      #fffdf8;
  --green:      #6b7f4e;   /* henna-leaf green  */

  --serif:  "Cormorant Garamond", Georgia, serif;
  --sans:   "Jost", "Segoe UI", sans-serif;
  --script: "Great Vibes", cursive;

  --radius: 18px;
  --shadow-soft: 0 10px 40px rgba(59, 31, 20, .10);
  --shadow-lift: 0 18px 60px rgba(59, 31, 20, .18);
  --ease-spring: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;                 /* rotated marquee must never scroll the page sideways */
  -webkit-text-size-adjust: 100%;   /* stop iOS inflating text in landscape */
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }  /* no background scroll behind the mobile menu */

/* visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--marigold); color: var(--white); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* subtle paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .35;
  background-image: radial-gradient(rgba(59,31,20,.05) 1px, transparent 1.4px);
  background-size: 26px 26px;
}

/* ══════════════ Loader ══════════════ */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  background: var(--cream);
  color: var(--henna);
  transition: opacity .7s ease, visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mandala { width: 90px; animation: spin 6s linear infinite; }
.loader-petals { transform-origin: 60px 60px; animation: spin 9s linear infinite reverse; }
.loader-text {
  font-family: var(--script);
  font-size: 1.9rem;
  animation: pulse-fade 1.6s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-fade { 0%,100% { opacity: .45; } 50% { opacity: 1; } }

/* ══════════════ Floating paisleys ══════════════ */
.floaters { position: fixed; inset: 0; pointer-events: none; z-index: 0; color: var(--henna); }
.floater { position: absolute; opacity: .10; animation: drift 16s ease-in-out infinite; }
.f1 { width: 70px;  top: 12%; left: 4%;  animation-duration: 19s; }
.f2 { width: 46px;  top: 62%; left: 8%;  animation-duration: 23s; animation-delay: -6s; transform: rotate(40deg); }
.f3 { width: 88px;  top: 30%; right: 5%; animation-duration: 26s; animation-delay: -11s; }
.f4 { width: 54px;  top: 78%; right: 9%; animation-duration: 21s; animation-delay: -3s;  transform: rotate(-30deg); }
.f5 { width: 44px;  top: 45%; left: 46%; animation-duration: 28s; animation-delay: -14s; }
.f6 { width: 64px;  top: 88%; left: 30%; animation-duration: 24s; animation-delay: -8s; }
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-26px) rotate(9deg); }
  66%      { transform: translateY(14px) rotate(-7deg); }
}

/* ══════════════ Nav ══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 5vw, 56px);
  transition: background .4s, box-shadow .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(250, 243, 231, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(59,31,20,.08);
  padding-top: 10px; padding-bottom: 10px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; min-height: 44px; }
.brand-mark { width: 34px; flex: none; color: var(--henna); }
.brand-mark svg { animation: spin 24s linear infinite; }
.brand-text {
  font-family: var(--serif); font-size: clamp(1.05rem, 3.6vw, 1.3rem);
  font-weight: 600; letter-spacing: .5px; white-space: nowrap;
}
.brand-text em { font-family: var(--script); font-size: 1.1rem; color: var(--terracotta); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 30px); }
.nav-links a {
  text-decoration: none; font-size: .92rem; font-weight: 400;
  letter-spacing: .8px; text-transform: uppercase;
  position: relative; padding: 4px 0;
  white-space: nowrap;                             /* "Service Area" must never wrap */
  display: inline-flex; align-items: center; min-height: 44px;  /* comfortable tap target */
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0;
  top: calc(50% + .72em);            /* sits under the text, not the 44px tap box */
  width: 100%; height: 1.5px; background: var(--terracotta);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-spring);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--henna); color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 100px;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.nav-cta:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(138,75,42,.35); }
.nav-burger {
  display: none; background: none; border: 0; cursor: pointer; z-index: 110;
  width: 48px; height: 48px; flex: none;          /* full 48px tap target */
  padding: 0;
  flex-direction: column; align-items: center; justify-content: center;
}
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 4px 0; transition: .35s var(--ease-spring); }

/* ══════════════ Hero ══════════════ */
.hero {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 70% 20%, rgba(217,154,61,.18), transparent 70%),
    radial-gradient(500px 400px at 20% 80%, rgba(138,75,42,.12), transparent 70%);
}
.hero-arch {
  position: absolute; top: 50%; left: 50%;
  width: min(88vw, 720px);
  transform: translate(-50%, -50%);
  color: var(--gold);
  pointer-events: none;
}
.spin-slow { transform-origin: 350px 350px; animation: spin 90s linear infinite; }
.hero-inner { position: relative; max-width: 780px; }
.hero-eyebrow {
  font-size: .85rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 18px; font-weight: 400;
}
.hero-title .line { display: block; }
.hero-title .line:first-child {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
}
.hero-title .script {
  font-family: var(--script); font-weight: 400;
  font-size: clamp(4.4rem, 13vw, 9rem);
  color: var(--henna);
  line-height: 1;
  margin-top: -8px;
  text-shadow: 0 6px 30px rgba(138,75,42,.25);
}
.hero-sub { margin: 22px auto 34px; font-size: clamp(1rem, 2vw, 1.15rem); color: var(--ink-soft); max-width: 560px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-badges { margin-top: 38px; font-size: .9rem; color: var(--ink-soft); display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-badges .dot { color: var(--gold); }

/* animated hero hand */
.hero-hand {
  position: absolute; right: clamp(0px, 6vw, 120px); bottom: 0;
  width: clamp(150px, 20vw, 260px);
  opacity: .9; pointer-events: none;
}
.hand-svg { width: 100%; color: var(--henna); }
.hand-outline { stroke: var(--ink-soft); stroke-width: 2; stroke-linecap: round; opacity: .5; }
.hand-mehndi { stroke: var(--henna); stroke-width: 2; fill: none; stroke-linecap: round; }
.draw { stroke-dasharray: 300; stroke-dashoffset: 300; animation: draw-in 2.2s var(--ease-spring) forwards; }
.dm1 { animation-delay: .6s; }  .dm2 { animation-delay: 1s; }   .dm3 { animation-delay: 1.4s; }
.dm4 { animation-delay: 1.7s; } .dm5 { animation-delay: 2s; }   .dm6 { animation-delay: 2.3s; }
.dm7 { animation-delay: 2.6s; } .dm8 { animation-delay: 2.9s; }
@keyframes draw-in { to { stroke-dashoffset: 0; } }

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 64px; text-decoration: none; color: var(--henna);
  display: flex; align-items: center; justify-content: center;
}
.scroll-hint-ring {
  position: absolute; inset: 0;
  border: 1.6px solid currentColor; border-radius: 24px; opacity: .5;
}
.scroll-hint-arrow { animation: bob 1.8s ease-in-out infinite; font-size: 1.1rem; }
@keyframes bob { 0%,100% { transform: translateY(-6px); opacity: .4; } 50% { transform: translateY(6px); opacity: 1; } }

/* ══════════════ Buttons ══════════════ */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 34px; border-radius: 100px;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  letter-spacing: .6px; text-decoration: none; cursor: pointer;
  border: 0; line-height: 1.2;
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .3s;
}
.btn em { font-style: normal; font-size: .72rem; opacity: .85; font-weight: 300; letter-spacing: 1px; }
.btn-primary { background: linear-gradient(135deg, var(--henna), var(--terracotta)); color: var(--white); box-shadow: 0 10px 26px rgba(138,75,42,.35); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px rgba(138,75,42,.45); }
.btn-ghost { border: 1.6px solid var(--henna); color: var(--henna); background: transparent; }
.btn-ghost:hover { background: var(--henna); color: var(--white); transform: translateY(-3px); }
.btn-outline { border: 1.6px solid var(--gold); color: var(--ink); background: transparent; padding: 11px 28px; font-size: .92rem; }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ══════════════ Marquee ══════════════ */
.marquee {
  position: relative; z-index: 2;
  background: var(--ink); color: var(--blush);
  overflow: hidden; padding: 14px 0;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: var(--shadow-soft);
}
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track span {
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: 2.5px;
  text-transform: uppercase; white-space: nowrap; padding-right: 24px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ══════════════ Sections ══════════════ */
.section { position: relative; z-index: 2; padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 70px); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); }
.kicker {
  font-size: .8rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500; margin-bottom: 10px;
}
.kicker.light { color: var(--marigold); }
.section-sub { color: var(--ink-soft); margin-top: 14px; }
.script-accent { font-family: var(--script); color: var(--terracotta); font-weight: 400; }
.script-accent-light { font-family: var(--script); color: var(--marigold); font-weight: 400; }

/* ══════════════ Gallery ══════════════ */
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  padding: 10px 22px; min-height: 44px; border-radius: 100px;
  border: 1.4px solid rgba(138,75,42,.35); background: transparent;
  font-family: var(--sans); font-size: .88rem; letter-spacing: .8px;
  color: var(--ink-soft); cursor: pointer;
  transition: all .3s var(--ease-spring);
}
.chip:hover { border-color: var(--henna); color: var(--henna); transform: translateY(-2px); }
.chip.active { background: var(--henna); border-color: var(--henna); color: var(--white); box-shadow: 0 8px 18px rgba(138,75,42,.3); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 1200px; margin: 0 auto;
}
.g-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .45s var(--ease-spring), box-shadow .45s, opacity .4s, scale .4s;
}
.g-card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: var(--shadow-lift); }
.g-card.hiding { opacity: 0; scale: .92; pointer-events: none; position: absolute; visibility: hidden; }
.g-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream-2); }
.g-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-spring); }
.g-media img.missing { display: none; }
.g-card:hover .g-media img { transform: scale(1.07); }
.g-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--henna);
  background:
    radial-gradient(circle at 30% 25%, rgba(217,154,61,.18), transparent 60%),
    radial-gradient(circle at 75% 80%, rgba(138,75,42,.12), transparent 55%),
    var(--cream-2);
}
.g-ph svg { width: 72%; opacity: .85; transition: transform .8s var(--ease-spring); }
.g-card:hover .g-ph svg { transform: scale(1.08) rotate(2deg); }
.g-ph-tag {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); opacity: .65; white-space: nowrap;
}
.g-price {
  position: absolute; top: 14px; right: 14px;
  background: rgba(250,243,231,.94);
  backdrop-filter: blur(6px);
  color: var(--henna); font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  padding: 6px 15px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(59,31,20,.18);
}
.g-info { padding: 16px 18px 18px; }
.g-info h3 { font-size: 1.25rem; margin-bottom: 3px; }
.g-info p { font-size: .86rem; color: var(--ink-soft); }
.g-time {
  display: inline-block; margin-top: 8px;
  font-size: .72rem; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(181,98,47,.35); border-radius: 100px; padding: 3px 12px;
}
.gallery-note { text-align: center; margin-top: 42px; color: var(--ink-soft); font-size: .95rem; }

/* ══════════════ Pricing ══════════════ */
.pricing { background: linear-gradient(180deg, transparent, rgba(233,201,168,.25) 18%, rgba(233,201,168,.25) 82%, transparent); }
.price-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 30px); max-width: 1060px; margin: 0 auto;
  align-items: stretch;
}
.price-card {
  position: relative; background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: 40px 32px 34px; text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1.4px solid rgba(201,162,94,.28);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease-spring), box-shadow .45s;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.price-card.featured {
  background: linear-gradient(160deg, #4a2717, var(--ink));
  color: var(--cream); border-color: transparent;
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-10px); }
.price-card.featured ul li { border-color: rgba(250,243,231,.14); }
.ribbon {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: var(--marigold); color: var(--ink);
  font-size: .68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
}
.price-card-icon { font-size: 2rem; margin-bottom: 10px; }
.price-card h3 { font-size: 1.45rem; }
.price-amt { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--terracotta); margin: 8px 0 18px; }
.price-card.featured .price-amt { color: var(--marigold); }
.price-amt span { font-size: 1.3rem; font-weight: 500; opacity: .75; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 26px; flex: 1; }
.price-card ul li { padding: 9px 0 9px 26px; position: relative; font-size: .93rem; border-bottom: 1px dashed rgba(59,31,20,.12); }
.price-card ul li::before { content: "✿"; position: absolute; left: 0; color: var(--marigold); font-size: .8rem; }
.pricing-fineprint { text-align: center; margin-top: 40px; color: var(--ink-soft); font-size: .95rem; }

/* ══════════════ Service area ══════════════ */
.area-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  max-width: 1060px; margin: 0 auto; align-items: center;
}
.area-map { color: var(--henna); }
.zone { stroke-width: 1.6; }
.z1 { color: var(--terracotta); animation: zone-pulse 3.2s ease-in-out infinite; transform-origin: 200px 200px; }
.z2 { color: var(--gold); opacity: .8; animation: zone-pulse 3.2s ease-in-out infinite .5s; transform-origin: 200px 200px; }
.z3 { color: var(--gold); opacity: .5; animation: zone-pulse 3.2s ease-in-out infinite 1s; transform-origin: 200px 200px; }
@keyframes zone-pulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.03); opacity: .5; } }
.map-pin { color: var(--terracotta); animation: pin-bounce 2.4s ease-in-out infinite; transform-origin: 200px 228px; }
@keyframes pin-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.map-label { font-family: var(--serif); font-size: 15px; font-weight: 600; fill: var(--ink); }
.map-label.sm { font-size: 11.5px; font-family: var(--sans); font-weight: 400; fill: var(--ink-soft); letter-spacing: .6px; }
.area-tiers { display: flex; flex-direction: column; gap: 16px; }
.tier {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--gold);
  transition: transform .35s var(--ease-spring), box-shadow .35s;
}
.tier:hover { transform: translateX(6px); box-shadow: var(--shadow-lift); }
.tier h4 { font-size: 1.15rem; margin-bottom: 2px; }
.tier p { font-size: .92rem; color: var(--ink-soft); }
.tier-badge {
  flex-shrink: 0;
  font-family: var(--serif); font-weight: 700; font-size: .95rem;
  background: var(--cream-2); color: var(--henna);
  border-radius: 100px; padding: 6px 14px; margin-top: 2px;
  min-width: 74px; text-align: center;
}
.tier-badge.free { background: var(--green); color: var(--white); letter-spacing: 1px; }
.tier-badge.alt { background: var(--marigold); color: var(--ink); }
.tier.note { border-left-color: var(--marigold); background: rgba(217,154,61,.1); box-shadow: none; }

/* ══════════════ About ══════════════ */
.about { background: linear-gradient(180deg, transparent, rgba(233,201,168,.2) 20%, rgba(233,201,168,.2) 80%, transparent); }
.about-wrap {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 80px);
  max-width: 1040px; margin: 0 auto; align-items: center;
}
.about-frame {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 160px 160px var(--radius) var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  border: 1.6px solid rgba(201,162,94,.5);
  box-shadow: var(--shadow-lift);
  display: flex; align-items: center; justify-content: center;
}
.about-frame::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px dashed rgba(138,75,42,.4);
  border-radius: 150px 150px 12px 12px;
  pointer-events: none;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; }
.about-photo.missing { display: none; }
.about-placeholder { width: 70%; color: var(--henna); opacity: .8; }
.about-photo:not(.missing) + .about-placeholder { display: none; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); margin-bottom: 14px; max-width: 480px; }
.about-stats { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: 28px; flex-wrap: wrap; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--serif); font-size: 1.7rem; color: var(--terracotta); }
.about-stats span { font-size: .8rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-soft); }

/* ══════════════ How it works ══════════════ */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(16px, 3vw, 28px); max-width: 1100px; margin: 0 auto;
}
.step {
  text-align: center; padding: 34px 22px 28px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta), var(--marigold));
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(181,98,47,.35);
}
.step h4 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--ink-soft); }

/* ══════════════ Booking ══════════════ */
.book { padding-top: 30px; }
.book-card {
  display: grid; grid-template-columns: .9fr 1.1fr;
  max-width: 1080px; margin: 0 auto;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(59,31,20,.28);
}
.book-left {
  background:
    radial-gradient(500px 300px at 20% 0%, rgba(217,154,61,.2), transparent 60%),
    linear-gradient(160deg, #4a2717, var(--ink));
  color: var(--cream);
  padding: clamp(36px, 5vw, 60px);
  display: flex; flex-direction: column;
}
.book-left h2 { margin-bottom: 24px; }
.book-points { list-style: none; margin-bottom: 34px; }
.book-points li { padding: 8px 0; font-size: .97rem; border-bottom: 1px dashed rgba(250,243,231,.16); }
.book-contact p { font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .75; margin-bottom: 12px; }
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-links a {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: .98rem;
  color: var(--blush);
  min-height: 44px;                   /* easy to tap; email/phone are the money links */
  word-break: break-word;             /* long addresses must not push the card wide */
  transition: color .3s, transform .3s;
}
.contact-links a:hover { color: var(--marigold); transform: translateX(5px); }
.book-form { background: var(--white); padding: clamp(36px, 5vw, 56px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: .78rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--cream);
  border: 1.4px solid rgba(138,75,42,.22);
  border-radius: 12px; padding: 13px 16px;
  transition: border-color .3s, box-shadow .3s, background .3s;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(181,98,47,.14);
}
.form-hint { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: 12px; }
.form-success {
  margin-top: 14px; text-align: center;
  background: rgba(107,127,78,.12); border: 1px solid rgba(107,127,78,.4);
  color: #4c5c36; border-radius: 12px; padding: 12px 16px; font-size: .92rem;
}

/* ══════════════ FAQ ══════════════ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1.2px solid rgba(201,162,94,.25);
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-list details:hover { box-shadow: var(--shadow-lift); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  padding: 20px 26px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.4px solid var(--gold); color: var(--terracotta);
  font-family: var(--sans); font-size: 1.1rem; font-weight: 400;
  transition: transform .35s var(--ease-spring), background .3s, color .3s;
}
.faq-list details[open] .faq-icon { transform: rotate(45deg); background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.faq-list details p { padding: 0 26px 22px; color: var(--ink-soft); font-size: .96rem; }

/* ══════════════ Footer ══════════════ */
.footer {
  position: relative; z-index: 2;
  text-align: center;
  background: var(--ink); color: var(--blush);
  padding: 60px 20px 40px;
  margin-top: 40px;
}
.footer-flourish { width: 220px; color: var(--gold); margin: 0 auto 18px; }
.footer-brand { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--cream); }
.footer-brand em { font-family: var(--script); color: var(--marigold); }
.footer-tag { font-size: .9rem; opacity: .75; margin-top: 6px; }
.footer-links { display: flex; gap: 22px; justify-content: center; margin: 22px 0; flex-wrap: wrap; }
.footer-links a {
  color: var(--blush); text-decoration: none; font-size: .92rem;
  display: inline-flex; align-items: center; min-height: 44px;
  transition: color .3s;
}
.footer-links a:hover { color: var(--marigold); }
.footer-fine { font-size: .78rem; opacity: .5; }

/* ══════════════ Lightbox ══════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(35,17,9,.9);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade-in .3s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fade-in { from { opacity: 0; } }
.lightbox-body {
  max-width: min(520px, 92vw); width: 100%;
  background: var(--cream); border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  animation: pop-in .45s var(--ease-spring);
  max-height: 88vh; overflow-y: auto;
}
@keyframes pop-in { from { transform: scale(.85) translateY(24px); opacity: 0; } }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  background: rgba(250,243,231,.14); color: var(--cream);
  border: 0; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  transition: background .3s, transform .3s;
}
.lightbox-close:hover { background: rgba(250,243,231,.3); transform: rotate(90deg); }
.lb-media { width: 100%; height: min(48vh, 420px); position: relative; background: var(--cream-2); display: flex; align-items: center; justify-content: center; color: var(--henna); }
.lb-media img { width: 100%; height: 100%; object-fit: cover; }
.lb-media svg { width: 60%; }
.lb-info { padding: 22px 28px 28px; }
.lb-info h3 { font-size: 1.6rem; }
.lb-info .lb-price { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--terracotta); margin: 4px 0 10px; }
.lb-info p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 18px; }

/* ══════════════ Reveal-on-scroll ══════════════ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-spring), transform .9s var(--ease-spring); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; } .d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; } .d4 { transition-delay: .48s; } .d5 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ══════════════ Responsive ══════════════ */
@media (max-width: 900px) {
  .area-wrap, .about-wrap, .book-card { grid-template-columns: 1fr; }
  .area-map { max-width: 340px; margin: 0 auto; }
  .about-frame { max-width: 320px; margin: 0 auto; }
  .hero-hand { display: none; }
}

/* Burger menu stays on until the full nav genuinely fits (~1024px).
   Below that the desktop row wrapped and collided with the logo. */
@media (max-width: 1023px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column; justify-content: center; align-items: center;
    gap: clamp(14px, 4vh, 30px); font-size: 1.2rem;
    padding: 88px 24px 40px;
    overflow-y: auto;                 /* menu scrolls on short/landscape screens */
    overscroll-behavior: contain;
    transform: translateY(-100%);
    visibility: hidden;               /* keep links out of tab order when closed */
    transition: transform .5s var(--ease-spring), visibility .5s;
    z-index: 105;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { font-size: 1.05rem; min-height: 48px; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-burger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
}

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .hide-sm { display: none; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-10px); }
}

/* Very small phones (≤360px) — tighten type so nothing crowds the edges */
@media (max-width: 360px) {
  .nav { padding-left: 14px; padding-right: 14px; }
  .brand-text { font-size: 1rem; }
  .brand-mark { width: 28px; }
  .hero-badges { gap: 8px; font-size: .84rem; }
  .hero-badges .dot { display: none; }
  .btn { width: 100%; justify-content: center; }
}

/* Short/landscape phones — don't let the hero lock content off-screen */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 96px; padding-bottom: 56px; }
  .hero-badges { margin-top: 22px; }
}
