/* =====================================================================
   Reel & Verse Legal — Media & Entertainment law, Mumbai
   Design: "The Marquee" — editorial glam, aubergine + magenta-gold.
   Type: Fraunces (display) / Instrument Sans (body & labels).
   Hand-written; no framework.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #120817;
  --aubergine:  #1E0F26;
  --aubergine-2:#24132E;
  --plum:       #301640;
  --plum-2:     #43214F;
  --line:       #4a2857;

  --rose:       #D06A9E;
  --rose-bright:#E890B8;
  --gold:       #E4B06A;
  --gold-soft:  #F0C98C;

  --blush:      #F6EDF1;
  --blush-2:    #EFE1E9;
  --paper-ink:  #23111C;
  --paper-mute: #6b4a5c;

  --cream:      #F4E8EF;   /* text on dark */
  --mauve:      #B99BB2;   /* muted text on dark */
  --mauve-dim:  #8f6f8a;

  --grad: linear-gradient(103deg, var(--rose) 0%, var(--gold) 100%);
  --grad-soft: linear-gradient(103deg, var(--rose-bright) 0%, var(--gold-soft) 100%);

  --shadow-1: 0 1px 2px rgba(0,0,0,.4);
  --shadow-2: 0 24px 60px -28px rgba(0,0,0,.75);
  --shadow-rose: 0 30px 80px -40px rgba(208,106,158,.6);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 26px;

  --wrap: 1220px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --pad-block: clamp(4.5rem, 9vw, 8.5rem);

  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Instrument Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  background: var(--aubergine);
  color: var(--cream);
  line-height: 1.6;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--rose); color: #fff; }

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

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold); color: var(--ink);
  padding: .6rem 1rem; border-radius: 6px; z-index: 200;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--pad-block); position: relative; }
.section--paper { background: var(--blush); color: var(--paper-ink); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--rose-bright);
}
.section--paper .eyebrow { color: #b1497e; }
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
  display: inline-block;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.04; letter-spacing: -.015em; }
.display {
  font-size: clamp(2.6rem, 1.4rem + 6.4vw, 6.2rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.03em;
}
.h2 { font-size: clamp(2rem, 1.4rem + 2.9vw, 3.5rem); }
.h3 { font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem); }
.serif-italic { font-style: italic; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.lead {
  font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem);
  color: var(--mauve);
  max-width: 46ch;
}
.section--paper .lead { color: var(--paper-mute); }

/* ---------- Amp glyph ---------- */
.amp {
  font-family: var(--ff-display);
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--grad);
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .2s var(--ease);
  position: relative;
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary {
  background: var(--grad);
  color: #2a0f1e;
  box-shadow: var(--shadow-rose);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -26px rgba(208,106,158,.75); }
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--rose-bright); background: rgba(208,106,158,.08); transform: translateY(-3px); }
.section--paper .btn--ghost { color: var(--paper-ink); border-color: #d9b9cb; }
.section--paper .btn--ghost:hover { border-color: var(--rose); background: rgba(208,106,158,.1); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem;
  color: var(--rose-bright);
  letter-spacing: .01em;
}
.section--paper .link-arrow { color: #b1497e; }
.link-arrow svg { width: 1em; height: 1em; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(18,8,23,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(74,40,87,.7);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 1.05rem;
}
.brand { display: inline-flex; align-items: baseline; gap: .1rem; font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -.02em; line-height: 1; }
.brand .amp { padding-inline: .12em; font-size: 1.15em; }
.brand small { display:block; }
.brand-mark {
  display: inline-flex; align-items: center; gap: .55rem;
}
.brand-tag {
  font-family: var(--ff-body); font-size: .6rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--mauve); font-weight: 600;
  border-left: 1px solid var(--line); padding-left: .55rem; margin-left: .1rem;
}
@media (max-width: 620px){ .brand-tag { display: none; } }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-menu { display: flex; align-items: center; gap: 1.7rem; }
.nav-menu a {
  font-size: .92rem; font-weight: 500; color: var(--mauve);
  position: relative; padding-block: .2rem; transition: color .25s var(--ease);
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad); transition: width .3s var(--ease);
}
.nav-menu a:hover, .nav-menu a:focus-visible { color: var(--cream); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta { padding: .62rem 1.15rem; font-size: .9rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 12px; background: rgba(255,255,255,.02); align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--aubergine-2);
    border-left: 1px solid var(--line);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 6rem 2rem 2rem;
    transform: translateX(105%); transition: transform .4s var(--ease);
    box-shadow: var(--shadow-2); z-index: 90;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-menu a { padding-block: 1rem; border-bottom: 1px solid rgba(74,40,87,.55); font-size: 1.05rem; }
  .nav-menu a::after { display: none; }
  .nav-cta { margin-top: 1.4rem; justify-content: center; }
}

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(10,4,14,.55); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 80;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 6rem) 0;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 78% 8%, rgba(208,106,158,.30), transparent 55%),
    radial-gradient(90% 70% at 12% 95%, rgba(228,176,106,.16), transparent 55%),
    linear-gradient(180deg, rgba(18,8,23,.72) 0%, rgba(18,8,23,.86) 45%, var(--aubergine) 96%);
}
.hero-grain { position: absolute; inset: 0; z-index: -2; opacity: .5; mix-blend-mode: soft-light; pointer-events: none; }

.hero-inner { position: relative; z-index: 1; padding-top: clamp(1.5rem, 5vw, 4rem); }
.hero-eyebrow { margin-bottom: 1.6rem; }

.hero-lockup {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.035em;
  font-size: clamp(3.4rem, 1rem + 12vw, 9.5rem);
  margin-bottom: .2rem;
}
.hero-lockup .amp { font-size: .82em; padding-inline: .06em; }
.hero-headline {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 1rem + 2.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: 20ch;
  margin-top: 1.1rem;
  color: #fbf3f8;
}
.hero-sub {
  margin-top: 1.6rem; max-width: 52ch;
  color: var(--mauve); font-size: clamp(1.02rem, .98rem + .4vw, 1.2rem);
}
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

/* Hero meta row */
.hero-meta {
  margin-top: clamp(2.8rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem 2rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(74,40,87,.7);
}
.hero-meta div strong {
  display: block; font-family: var(--ff-display); font-size: clamp(1.5rem,1.2rem+1vw,2.1rem);
  font-weight: 600; letter-spacing: -.02em;
}
.hero-meta div span { font-size: .82rem; color: var(--mauve); letter-spacing: .02em; }
@media (max-width: 560px){
  .hero-meta { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ---------- Marquee ---------- */
.marquee {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  border-top: 1px solid rgba(74,40,87,.7);
  border-bottom: 1px solid rgba(74,40,87,.7);
  overflow: hidden; white-space: nowrap;
  --dur: 34s;
  background: linear-gradient(180deg, rgba(48,22,64,.35), transparent);
}
.marquee-track { display: inline-flex; align-items: center; will-change: transform; animation: marquee var(--dur) linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.5rem);
  padding: 1rem 1.6rem; color: var(--cream);
}
.marquee-track .dot { color: var(--rose); font-style: normal; -webkit-text-fill-color: initial; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; white-space: normal; }
  .marquee { white-space: normal; }
}

/* =====================================================================
   STATEMENT
   ===================================================================== */
.statement { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.statement-big {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3.4rem);
  line-height: 1.08; letter-spacing: -.02em;
}
.statement-big .grad-text { font-style: italic; }
.statement-body p + p { margin-top: 1rem; }
.statement-body { color: var(--mauve); }
@media (max-width: 820px){ .statement { grid-template-columns: 1fr; align-items: start; gap: 1.8rem; } }

/* =====================================================================
   PRACTICE — "The Docket"
   ===================================================================== */
.section-head { max-width: var(--wrap); margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 { margin-top: 1rem; max-width: 20ch; }
.section-head .lead { margin-top: 1.1rem; }

.docket { display: grid; gap: 1.2rem; }
.docket-row { display: grid; gap: 1.2rem; }
.docket-row--feature { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
.docket-row--feature.rev { direction: rtl; }
.docket-row--feature.rev > * { direction: ltr; }
@media (max-width: 860px){ .docket-row--feature { grid-template-columns: 1fr; } }

.clause {
  position: relative;
  background: linear-gradient(165deg, var(--aubergine-2), var(--plum));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.clause::before {
  content: "";
  position: absolute; inset: 0 auto auto 0; height: 3px; width: 0;
  background: var(--grad); transition: width .5s var(--ease);
}
.clause:hover { transform: translateY(-6px); border-color: var(--plum-2); box-shadow: var(--shadow-2); }
.clause:hover::before { width: 100%; }

.clause-tag {
  font-family: var(--ff-display); font-weight: 600;
  display: inline-flex; align-items: baseline; gap: .4rem;
  font-size: .95rem; color: var(--gold); letter-spacing: .04em; margin-bottom: 1.1rem;
}
.clause-tag .sec { font-size: 1.35em; line-height: 0; }
.clause h3 { margin-bottom: .7rem; }
.clause > p { color: var(--mauve); margin-bottom: 1.3rem; }
.clause-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; }
.clause-list li {
  font-size: .82rem; letter-spacing: .01em;
  padding: .38rem .8rem; border-radius: 100px;
  border: 1px solid var(--line); color: var(--cream);
  background: rgba(255,255,255,.02);
}

/* Feature card w/ image */
.clause--media { padding: 0; }
.clause--media .clause-figure { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.clause--media .clause-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.clause--media:hover .clause-figure img { transform: scale(1.06); }
.clause--media .clause-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,15,38,.05), rgba(30,15,38,.55));
}
.clause--media .clause-body { padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; flex: 1; }

/* small grid of remaining areas */
.docket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 860px){ .docket-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   CLEARANCE RUNSHEET (paper section)
   ===================================================================== */
.runsheet-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px){ .runsheet-wrap { grid-template-columns: 1fr; } }

.runsheet {
  background: #fff;
  border: 1px solid var(--blush-2);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 30px 60px -40px rgba(80,30,60,.4);
}
.runsheet-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px dashed #d9bccb; padding-bottom: .9rem; margin-bottom: .5rem;
}
.runsheet-head span:first-child { font-family: var(--ff-display); font-weight: 600; font-size: 1.15rem; color: var(--paper-ink); }
.runsheet-head span:last-child {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: var(--grad); padding: .3rem .6rem; border-radius: 100px; font-weight: 600;
}
.runsheet li {
  display: flex; align-items: center; gap: .9rem;
  padding: .85rem .2rem; border-bottom: 1px solid #f0e2e9;
  color: var(--paper-ink); font-weight: 500;
}
.runsheet li:last-child { border-bottom: 0; }
.runsheet .tick {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad); display: grid; place-items: center; box-shadow: 0 4px 10px -4px rgba(208,106,158,.6);
}
.runsheet .tick svg { width: 14px; height: 14px; color: #fff; }
.runsheet li small { margin-left: auto; color: var(--paper-mute); font-size: .78rem; letter-spacing: .04em; }

.runsheet-text h2 { color: var(--paper-ink); }
.runsheet-text .lead { margin-top: 1rem; }
.runsheet-points { margin-top: 1.6rem; display: grid; gap: 1rem; }
.runsheet-points li { display: flex; gap: .8rem; color: var(--paper-mute); }
.runsheet-points b { color: var(--paper-ink); font-family: var(--ff-display); font-weight: 600; }
.runsheet-points .n { color: #b1497e; font-weight: 700; font-variant-numeric: tabular-nums; }

/* =====================================================================
   PROCESS timeline
   ===================================================================== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
@media (max-width: 860px){ .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .process { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  color: var(--ink); background: var(--grad);
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  display: grid; place-items: center;
  position: absolute; top: 0; left: 0;
}
.step::after {
  content: ""; position: absolute; top: 1.2rem; left: 2.6rem; right: -1.2rem; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.step:last-child::after { display: none; }
@media (max-width: 860px){ .step::after { display: none; } }
.step h4 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { color: var(--mauve); font-size: .95rem; }

/* =====================================================================
   ABOUT / TEAM
   ===================================================================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px){ .about { grid-template-columns: 1fr; } }
.about-figure { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.about-figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(18,8,23,.66); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
  padding: .9rem 1.1rem; font-size: .86rem; color: var(--mauve);
}
.about-figure figcaption b { color: var(--cream); font-family: var(--ff-display); }

.people { margin-top: 1.8rem; display: grid; gap: 1rem; }
.person {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.2rem 1.3rem; background: rgba(48,22,64,.35);
}
.person h4 { font-size: 1.2rem; }
.person .role { color: var(--gold); font-size: .85rem; font-weight: 600; letter-spacing: .04em; margin-top: .1rem; }
.person p { color: var(--mauve); font-size: .92rem; margin-top: .6rem; }

.sectors { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.sectors li {
  font-size: .82rem; padding: .4rem .85rem; border-radius: 100px;
  border: 1px solid var(--line); color: var(--mauve);
}

/* =====================================================================
   QUOTE
   ===================================================================== */
.quote { max-width: 26ch; }
.quote blockquote {
  font-family: var(--ff-display); font-weight: 500; font-style: italic;
  font-size: clamp(1.6rem, 1.2rem + 2.4vw, 3rem); line-height: 1.15; letter-spacing: -.02em;
}
.quote .grad-text { font-style: italic; }
.quote-band { max-width: none; }
.quote-band blockquote { max-width: 24ch; }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; color: var(--mauve); font-size: .95rem; }
.quote cite b { color: var(--cream); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,8,23,.82), rgba(30,15,38,.92)),
    radial-gradient(80% 120% at 50% -10%, rgba(208,106,158,.35), transparent 60%);
}
.cta-band .wrap { display: grid; justify-items: center; gap: 1.4rem; }
.cta-band h2 { max-width: 16ch; }
.cta-band .lead { color: var(--mauve); max-width: 48ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: .5rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding-block: clamp(3rem,5vw,4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { font-size: 1.6rem; }
.footer-brand p { margin-top: 1rem; color: var(--mauve); max-width: 34ch; font-size: .95rem; }
.footer-col h5 {
  font-family: var(--ff-body); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mauve-dim); font-weight: 600; margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a, .footer-col address { color: var(--mauve); font-size: .95rem; font-style: normal; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-col address { line-height: 1.5; }

.footer-bottom {
  margin-top: clamp(2.4rem,5vw,3.4rem); padding-top: 1.6rem; border-top: 1px solid rgba(74,40,87,.6);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; align-items: center; justify-content: space-between;
  color: var(--mauve-dim); font-size: .84rem;
}
.footer-bottom a { color: var(--mauve); border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.footer-bottom a:hover { color: var(--cream); border-bottom-color: var(--rose); }
.footer-credit { max-width: 60ch; }
.footer-socials { display: flex; gap: .7rem; }
.footer-socials a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--mauve);
}
.footer-socials a:hover { color: var(--cream); border-color: var(--rose); background: rgba(208,106,158,.08); }
.footer-socials svg { width: 18px; height: 18px; }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.page-hero { position: relative; padding-block: clamp(3rem,6vw,5rem) clamp(2rem,4vw,3rem); overflow: hidden; }
.page-hero .eyebrow { margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2.6rem, 1.6rem + 5vw, 5rem); letter-spacing: -.03em; }
.page-hero .lead { margin-top: 1.2rem; }

.contact-grid { display: grid; grid-template-columns: 1.2fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: linear-gradient(165deg, var(--aubergine-2), var(--plum));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-2);
}
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .5rem; letter-spacing: .01em; }
.field label .req { color: var(--rose-bright); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; gap: 0; } }

.input, .select, .textarea {
  width: 100%; font: inherit; color: var(--cream);
  background: rgba(18,8,23,.5);
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.input::placeholder, .textarea::placeholder { color: var(--mauve-dim); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--rose-bright);
  box-shadow: 0 0 0 4px rgba(208,106,158,.16); background: rgba(18,8,23,.7);
}
.textarea { resize: vertical; min-height: 140px; }
.select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B99BB2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.8rem;
}
.select option { color: #111; }
.form-submit { width: 100%; justify-content: center; margin-top: .4rem; }
.form-note { margin-top: 1rem; font-size: .82rem; color: var(--mauve-dim); text-align: center; }

/* contact aside */
.contact-aside { display: grid; gap: 1rem; }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem 1.5rem; background: rgba(48,22,64,.35);
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: .9rem; }
.contact-card .row { display: flex; align-items: flex-start; gap: .8rem; padding: .55rem 0; color: var(--mauve); }
.contact-card .row a { color: var(--cream); font-weight: 500; }
.contact-card .row a:hover { color: var(--rose-bright); }
.contact-card .ic { flex: 0 0 auto; width: 22px; height: 22px; color: var(--rose-bright); margin-top: .15rem; }
.contact-card .ic svg { width: 100%; height: 100%; }
.whatsapp-card { background: linear-gradient(150deg, rgba(208,106,158,.14), rgba(228,176,106,.1)); border-color: var(--plum-2); }
.hours { margin-top: .4rem; font-size: .9rem; }
.hours div { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px solid rgba(74,40,87,.5); color: var(--mauve); }
.hours div:last-child { border-bottom: 0; }
.hours span:last-child { color: var(--cream); }

/* honeypot */
.hp { position: absolute !important; left: -9999px !important; }

/* =====================================================================
   THANK YOU PAGE
   ===================================================================== */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; }
.thanks .wrap { max-width: 640px; display: grid; justify-items: center; gap: 1.4rem; }
.thanks-badge {
  width: 92px; height: 92px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; box-shadow: var(--shadow-rose); margin-bottom: .5rem;
}
.thanks-badge svg { width: 44px; height: 44px; color: var(--ink); }
.thanks h1 { font-size: clamp(2.4rem, 1.6rem + 4vw, 4.4rem); }
.thanks p { color: var(--mauve); max-width: 46ch; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: .6rem; }
.thanks-marquee { margin-top: 2.5rem; }

/* =====================================================================
   REVEAL animation
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .clause, .btn, .marquee-track, .clause--media .clause-figure img { transition: none !important; animation: none !important; }
}

/* small decorative divider */
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); border: 0; }
