/* ============================================================
   9astrology — Sindoor & Ivory
   Heritage palette · Cormorant + Marcellus + Tiro Devanagari
   ============================================================ */

:root {
  --ivory:       #F2EAD8;
  --ivory-deep:  #E8DCC4;
  --ivory-soft:  #EFE5CF;
  --sindoor:     #5A1A1F;
  --sindoor-dim: #4A1518;
  --brass:       #9C7A3C;
  --brass-dim:   #806230;
  --brass-soft:  #C9A96A;
  --ink:         #1F1612;
  --ink-soft:    #4A3F36;
  --ink-mute:    #7A6A5C;
  --midnight:    #1A1F2E;
  --midnight-2:  #14182A;

  --serif-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --serif-body:    'Marcellus', 'Cormorant Garamond', Georgia, serif;
  --deva:          'Tiro Devanagari Hindi', 'Cormorant Garamond', serif;

  --maxw: 1180px;
  --pad-x: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; padding: 0; cursor: pointer; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- base ---------- */
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

::selection { background: var(--sindoor); color: var(--ivory); }

:focus-visible {
  outline: 1.5px solid var(--brass);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- typography ---------- */
.display {
  font-family: var(--serif-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.012em;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  color: var(--ink);
  margin: 0 0 1.4rem;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--sindoor);
}
.display--md {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.1;
}

h2, h3, h4 { font-family: var(--serif-display); font-weight: 500; letter-spacing: -0.005em; margin: 0; }

.invocation {
  font-family: var(--deva);
  font-size: 0.95rem;
  color: var(--brass-dim);
  letter-spacing: 0.04em;
  margin: 0 0 2.4rem;
  opacity: 0.85;
}

/* ---------- paper grain (SVG noise overlay) ---------- */
.paper-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.3  0 0 0 0 0.22  0 0 0 0 0.14  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.paper-grain--dark {
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* page-wide subtle grain */
body::before {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(242, 234, 216, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: rgba(156, 122, 60, 0.25);
  padding: 12px 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; gap: 28px;
}

.brand {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--serif-display);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.brand__nine {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
  font-size: 1.35em;
  line-height: 1;
}
.brand__word { font-style: normal; }
.brand__word em { font-style: italic; font-weight: 400; }

.brand--lg { font-size: 2.2rem; }

.nav__links {
  margin-left: auto;
  display: flex; gap: 28px;
  font-family: var(--serif-body);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--brass);
  transition: right .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  font-family: var(--serif-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ivory);
  background: var(--sindoor);
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--sindoor);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.nav__cta:hover { background: var(--sindoor-dim); transform: translateY(-1px); }

.nav__menu {
  display: none;
  margin-left: auto;
  width: 36px; height: 28px;
  position: relative;
}
.nav__menu span {
  position: absolute; left: 4px; right: 4px; height: 1.4px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav__menu span:nth-child(1) { top: 6px; }
.nav__menu span:nth-child(2) { top: 13px; }
.nav__menu span:nth-child(3) { top: 20px; }
.nav__menu[aria-expanded="true"] span:nth-child(1) { top: 13px; transform: rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu[aria-expanded="true"] span:nth-child(3) { top: 13px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(96px, 11vh, 124px) 0 clamp(96px, 12vh, 130px);
  overflow: hidden;
  min-height: 84vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 78% 50%, rgba(156, 122, 60, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(90, 26, 31, 0.06), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  width: 100%;
}

.lede {
  font-family: var(--serif-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 2.4rem;
  max-width: 28em;
}

.cred {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin: 0 0 2.4rem;
  padding: 12px 0;
  border-top: 1px solid rgba(156, 122, 60, 0.3);
  border-bottom: 1px solid rgba(156, 122, 60, 0.3);
  max-width: 36em;
}
.cred__name { color: var(--sindoor); font-weight: 400; }
.cred__sep { color: var(--brass); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif-body);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--sindoor); color: var(--ivory); border-color: var(--sindoor);
}
.btn--primary:hover { background: var(--sindoor-dim); transform: translateY(-1px); }
.btn--ghost {
  color: var(--ink); border-color: var(--brass);
}
.btn--ghost:hover { background: var(--brass); color: var(--ivory); border-color: var(--brass); }
.btn--brass {
  background: var(--brass); color: var(--ivory); border-color: var(--brass);
}
.btn--brass:hover { background: var(--brass-dim); transform: translateY(-1px); }

/* ---------- hero portrait (floating cutout + mandala backdrop) ---------- */
.hero__portrait {
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: end;
  justify-self: end;
  max-width: 520px;
  width: 100%;
  padding-bottom: 0;
}
/* Mandala lives inside the figure so it stays centred on her */
.hero__mandala {
  position: absolute;
  width: 165%;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  color: var(--brass);
  animation: mandala-spin 240s linear infinite;
}
@keyframes mandala-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__portrait img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(31, 22, 18, 0.22)) drop-shadow(0 4px 6px rgba(31, 22, 18, 0.12));
  /* gentle fade only at the very last few pixels — keeps her clothing intact */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 94%, rgba(0,0,0,0.7) 98%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 94%, rgba(0,0,0,0.7) 98%, transparent 100%);
}


/* ---------- about portrait frame (still boxed) ---------- */
.frame {
  position: relative; z-index: 2;
  border: 1px solid var(--brass);
  padding: 10px;
  background: var(--ivory-soft);
  box-shadow:
    0 1px 0 rgba(156, 122, 60, 0.15),
    0 30px 60px -30px rgba(31, 22, 18, 0.3);
}
.frame img {
  display: block;
  filter: saturate(0.92) contrast(0.98);
}
.frame--tall { max-width: 420px; }

.frame__back {
  position: absolute;
  top: 22px; left: 22px; right: -22px; bottom: -22px;
  background: var(--ivory-deep);
  border: 1px solid rgba(156, 122, 60, 0.3);
  z-index: 1;
}
.frame__back--soft { top: 18px; left: -18px; right: 18px; bottom: -18px; }

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--serif-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  animation: drift 2.4s ease-in-out infinite;
  z-index: 3;
}
@keyframes drift {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  display: flex; align-items: center; gap: 24px;
  max-width: var(--maxw);
  margin: 60px auto;
  padding: 0 var(--pad-x);
  color: var(--brass);
}
.divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
  opacity: 0.5;
}
.divider__glyph { flex-shrink: 0; opacity: 0.85; }

/* ============================================================
   SECTION HEAD (numeral + kicker)
   ============================================================ */
.section__head {
  max-width: var(--maxw);
  margin: 0 auto 36px;
  padding: 0 var(--pad-x);
  display: flex; align-items: baseline; gap: 18px;
}
.section__num {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--brass);
  line-height: 1;
}
.section__kicker {
  font-family: var(--serif-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brass);
}
.section__head--invert .section__num { color: var(--brass-soft); }
.section__head--invert .section__kicker { color: rgba(242, 234, 216, 0.75); border-bottom-color: var(--brass-soft); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 60px 0;
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__portrait { position: relative; margin: 0; max-width: 420px; }
.about__copy p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}
.about__copy p:first-of-type::first-letter {
  font-family: var(--serif-display);
  font-size: 3.6em;
  float: left;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  color: var(--sindoor);
  font-style: italic;
  font-weight: 300;
}

.creds {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(156, 122, 60, 0.35);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
.creds li { display: flex; flex-direction: column; gap: 4px; }
.creds__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass);
}
.creds__value {
  font-family: var(--serif-display);
  font-size: 1.05rem;
  color: var(--ink);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 80px 0; }
.services__title {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  padding: 0 var(--pad-x);
  max-width: 16ch;
}
.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(156, 122, 60, 0.4);
  border: 1px solid rgba(156, 122, 60, 0.4);
}

.service {
  padding: 44px 38px;
  background: var(--ivory);
  display: flex; flex-direction: column;
  position: relative;
  transition: background-color .35s var(--ease);
  cursor: pointer;
}
.service::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(156, 122, 60, 0.06), transparent 60%);
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.service:hover { background: var(--ivory-soft); }
.service:hover::before { opacity: 1; }
.service:hover .service__link { color: var(--sindoor-dim); }
.service:hover .service__link::after { right: 0; }
.service:hover .service__link span { transform: translateX(4px); }

.service__glyph {
  color: var(--brass);
  margin-bottom: 24px;
}
.service__name {
  font-family: var(--serif-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink);
}
.service__desc {
  flex: 1;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}
.service__link {
  align-self: flex-start;
  font-family: var(--serif-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sindoor);
  padding: 4px 0;
  position: relative;
  z-index: 2;
}
.service__link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--sindoor);
  transition: right .35s var(--ease);
}
.service__link:hover::after { right: 0; }
.service__link span { display: inline-block; transition: transform .3s var(--ease); margin-left: 4px; }
.service__link:hover span { transform: translateX(4px); }
/* full-card hit target */
.service__link__stretch {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: 80px 0; }
.process__title {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  padding: 0 var(--pad-x);
  max-width: 16ch;
}
.process__steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  position: relative;
}
.process__steps::before {
  content: ''; position: absolute;
  top: 38px; left: calc(var(--pad-x) + 60px); right: calc(var(--pad-x) + 60px);
  height: 1px; background: linear-gradient(90deg, var(--brass), transparent 50%, var(--brass));
  opacity: 0.4;
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step__num {
  display: inline-block;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: 3.2rem;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 18px;
  background: var(--ivory);
  padding-right: 18px;
}
.step__name {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.step__desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 28ch;
}

/* ============================================================
   QUOTES
   ============================================================ */
.quotes { padding: 80px 0 100px; background: var(--ivory-soft); position: relative; }
.quotes::before, .quotes::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.3;
}
.quotes::before { top: 0; }
.quotes::after  { bottom: 0; }

.quotes__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.quote {
  position: relative;
  margin: 0;
  padding: 24px 0 0 8px;
}
.quote--offset { transform: translateY(40px); }
.quote__mark {
  position: absolute;
  top: -28px; left: -8px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.55;
}
.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--ink);
}
.quote figcaption {
  font-family: var(--serif-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}

/* ============================================================
   BOOKING (midnight contrast)
   ============================================================ */
.booking {
  position: relative;
  background: var(--midnight);
  color: var(--ivory);
  padding: 100px 0 110px;
  overflow: hidden;
}
.booking::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(156, 122, 60, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(90, 26, 31, 0.25), transparent 60%);
  pointer-events: none;
}
.booking__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.booking__inner .section__head { justify-content: center; margin-bottom: 28px; }
.booking__title { color: var(--ivory); margin: 0 auto 1.2rem; max-width: 18ch; }
.booking__title em { color: var(--brass-soft); }
.booking__lede {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  color: rgba(242, 234, 216, 0.78);
  max-width: 38em;
  margin: 0 auto 3rem;
}

.booking__embed {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.booking__embed iframe {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
  background: #ffffff;
}

.booking__alt {
  margin-top: 40px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 18px;
  width: 100%;
}
.booking__alt > span {
  font-family: var(--serif-display);
  font-style: italic;
  color: rgba(242, 234, 216, 0.5);
  font-size: 0.9rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 80px 0 100px; }
.faq__title {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  padding: 0 var(--pad-x);
  max-width: 16ch;
}
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.qa {
  border-top: 1px solid rgba(156, 122, 60, 0.35);
  padding: 0;
}
.qa:last-child { border-bottom: 1px solid rgba(156, 122, 60, 0.35); }

.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--serif-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--sindoor); }

.qa__chev {
  flex-shrink: 0;
  width: 16px; height: 16px;
  position: relative;
  transition: transform .35s var(--ease);
}
.qa__chev::before, .qa__chev::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--brass);
  transition: transform .35s var(--ease);
}
.qa__chev::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.qa__chev::after  { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.qa[open] .qa__chev::after { transform: translate(-50%, -50%) scaleY(0); }

.qa__body {
  padding: 0 4px 28px;
  max-width: 60ch;
}
.qa__body p { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }

/* native details slide animation (subtle) */
.qa[open] summary { color: var(--sindoor); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ivory-deep);
  border-top: 1px solid rgba(156, 122, 60, 0.35);
  padding: 70px 0 30px;
  position: relative;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}
.foot__col h4 {
  font-family: var(--serif-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin: 0 0 18px;
  font-weight: 400;
}
.foot__col ul li { padding: 6px 0; }
.foot__col a {
  color: var(--ink-soft);
  font-size: 0.98rem;
  position: relative;
  transition: color .25s var(--ease);
}
.foot__col a:hover { color: var(--sindoor); }
.foot__tag {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 14px 0 18px;
  max-width: 28em;
}
.foot__addr {
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.6;
}
.foot__soon {
  color: var(--ink-mute);
  font-size: 0.92rem;
  font-style: italic;
}

.foot__bottom {
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding: 24px var(--pad-x) 0;
  border-top: 1px solid rgba(156, 122, 60, 0.3);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
.foot__deva {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--deva);
  font-size: 0.95rem;
  color: var(--brass);
  letter-spacing: 0.04em;
}
.foot__deva__sep { color: rgba(156, 122, 60, 0.5); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ultrawide: leave the mandala alone — it's now centred on the portrait */

/* tablet polish */
@media (max-width: 1024px) {
  .quotes__grid { gap: 32px; }
  .process__steps::before { left: calc(var(--pad-x) + 50px); right: calc(var(--pad-x) + 50px); }
  .hero__inner { gap: 36px; }
  .display { font-size: clamp(2.2rem, 6vw, 3.6rem); }
}

/* phone + small tablet */
@media (max-width: 880px) {
  body { font-size: 16px; }

  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: block; }
  .nav__inner { gap: 12px; }
  .nav { padding: 14px 0; }
  .nav.is-scrolled { padding: 10px 0; }

  /* mobile menu drawer */
  .nav.is-open {
    background: var(--ivory);
    border-bottom: 1px solid rgba(156, 122, 60, 0.25);
  }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory);
    padding: 28px var(--pad-x);
    gap: 22px;
    text-align: center;
    border-bottom: 1px solid rgba(156, 122, 60, 0.25);
  }
  .nav.is-open .nav__links a { font-size: 1rem; padding: 4px 0; }
  .nav.is-open .nav__cta {
    display: inline-flex;
    position: absolute; top: 100%; left: var(--pad-x); right: var(--pad-x);
    margin-top: 268px;
    justify-content: center;
  }

  .hero { padding: 100px 0 50px; min-height: 0; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    text-align: center;
  }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .lede { margin-left: auto; margin-right: auto; }
  .cred { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__portrait {
    justify-self: center;
    align-self: center;
    max-width: min(360px, 76vw);
  }
  .hero__mandala { width: 150%; opacity: 0.85; }
  .hero__scroll { display: none; }

  .frame__back { right: -14px; bottom: -14px; top: 14px; left: 14px; }
  .frame__back--soft { left: -10px; right: 10px; top: 10px; bottom: -10px; }

  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__portrait { justify-self: center; max-width: min(380px, 80vw); }

  .services__grid { grid-template-columns: 1fr; }
  .service { padding: 36px 28px; }

  .process__steps { grid-template-columns: 1fr; gap: 36px; }
  .process__steps::before { display: none; }
  .step__num { background: transparent; padding-right: 0; }

  .quotes__grid { grid-template-columns: 1fr; gap: 48px; }
  .quote--offset { transform: none; }

  .booking { padding: 70px 0 80px; }
  .booking__embed { padding: 8px; }
  .booking__embed iframe { min-height: 1180px; }

  .faq { padding: 60px 0 80px; }

  .foot { padding: 56px 0 24px; }
  .foot__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .foot__col h4 { margin-top: 8px; }
  .foot__bottom {
    flex-direction: column-reverse;
    text-align: center;
    gap: 14px;
    padding-top: 20px;
    margin-top: 40px;
  }
  .foot__deva { flex-wrap: wrap; justify-content: center; }

  .display { font-size: clamp(2.2rem, 9vw, 3rem); }
  .display--md { font-size: clamp(1.9rem, 6vw, 2.4rem); }
  .qa summary { font-size: 1.1rem; }
}

/* small phones */
@media (max-width: 480px) {
  :root { --pad-x: 18px; }
  .section__head { flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
  .section__num { font-size: 1.7rem; }
  .section__kicker { font-size: 0.7rem; letter-spacing: 0.24em; }
  .creds { grid-template-columns: 1fr; gap: 0.9rem; }
  .hero__ctas { width: 100%; flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .quote__mark { font-size: 4.5rem; top: -18px; }
  .quote blockquote { font-size: 1.12rem; }
  .display { font-size: clamp(2rem, 10vw, 2.6rem); }
  .lede { font-size: 1.04rem; }
  .nav__inner { padding: 0 18px; }
  .brand { font-size: 1.35rem; }
  .booking__lede { font-size: 1.02rem; }
  .qa summary { font-size: 1rem; padding: 20px 4px; gap: 14px; }
  .service__name { font-size: 1.5rem; }
  .step__num { font-size: 2.6rem; }
  .step__name { font-size: 1.35rem; }
  .foot__deva { font-size: 0.85rem; gap: 8px; }
}

/* very narrow */
@media (max-width: 360px) {
  :root { --pad-x: 14px; }
  .cred { font-size: 0.74rem; letter-spacing: 0.14em; }
}

/* short viewports (landscape phones) */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { padding: 86px 0 36px; min-height: 0; }
  .hero__portrait { max-width: 260px; }
  .hero__inner { gap: 22px; }
}
