/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --pink:      #ea0071;
  --pink-pale: #fdf0f7;
  --gold:      #a09080;
  --dark:      #1a1a1a;
  --mid:       #555555;
  --muted:     #999999;
  --border:    #e6e0d8;
  --cream:     #faf8f5;
  --white:     #ffffff;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Lato', sans-serif;
  --max:   1120px;
  --ease:  0.3s ease;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SHARED ─────────────────────────────────────────────── */
.pre-heading {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
.pre-heading--light { color: rgba(255,255,255,0.65); }

h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--pink); font-weight: 400; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
}
.btn--lg { padding: 1.1rem 3rem; }

.btn--pink  { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn--pink:hover { background: #c8005f; border-color: #c8005f; }

.btn--outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }

.btn--white { background: var(--white); color: var(--pink); border-color: var(--white); }
.btn--white:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn--white-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--white-ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn--nav {
  background: var(--pink); color: var(--white);
  border-color: var(--pink); padding: 0.55rem 1.3rem;
  font-size: 0.62rem;
}
.btn--nav:hover { background: var(--dark); border-color: var(--dark); }

/* ─── ANNOUNCE BAR ───────────────────────────────────────── */
.announce-bar {
  background: var(--pink);
  text-align: center;
  padding: 0.7rem 2rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
}
.announce-bar a {
  color: var(--white);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: border-color var(--ease);
}
.announce-bar a:hover { border-color: var(--white); }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 4rem;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav__logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-right: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--pink); }

.nav__right { display: flex; align-items: center; gap: 1rem; }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--dark);
}

/* ─── HERO — full bleed image + text overlay ─────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* fallback gradient shown before image loads */
  background-color: #2a1a22;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,5,10,0.45) 0%,
    rgba(15,5,10,0.55) 50%,
    rgba(15,5,10,0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 4rem 2rem;
}

.hero__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.hero__content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__content h1 em {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero credentials row */
.hero__creds {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__creds span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.cred-dot {
  color: var(--pink) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0 !important;
  opacity: 0.7;
}

/* Hero social proof snippet */
.hero__proof {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 3px solid var(--pink);
  padding: 0.9rem 1.25rem;
  max-width: 560px;
  margin: 2rem auto 1.25rem;
  text-align: left;
}
.hero__proof-icon {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.hero__proof p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0;
}
.hero__proof p strong { color: var(--white); }

/* Hero soft CTA link */
.hero__soft-cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color var(--ease), border-color var(--ease);
}
.hero__soft-cta:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.5); }

/* ─── TAGLINE STRIP ──────────────────────────────────────── */
.tagline-strip {
  background: var(--pink);
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
}
.tagline-strip span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  flex-shrink: 0;
}
.tagline-strip .dot {
  color: rgba(255,255,255,0.35);
  font-size: 0.45rem;
  letter-spacing: 0;
}

/* ─── PRESS ──────────────────────────────────────────────── */
.press {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 4rem;
  text-align: center;
}
.press__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 3.5rem;
}
.press__logos span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  opacity: 0.28;
  transition: opacity var(--ease);
}
.press__logos span:hover { opacity: 0.65; }
.press__note {
  margin-top: 0.6rem;
  font-size: 0.62rem;
  color: var(--pink);
  font-style: italic;
  opacity: 0.6;
}

/* ─── ABOUT — Cultivate collage layout ───────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem 4rem;
}

/* Collage: two overlapping images */
.about__collage {
  position: relative;
  height: 620px;
}

.collage__large {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 78%;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.collage__large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.collage__large--fallback {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #e8ddd4, #cfc4b8);
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(100,80,60,0.45);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}
.collage__large:not(:has(img[src])) .collage__large--fallback,
.collage__large img[src=""] ~ .collage__large--fallback { display: flex; }

.collage__small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 50%;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  border: 6px solid var(--white);
}
.collage__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.collage__small--fallback {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #d4c8bc, #bfb3a8);
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(100,80,60,0.45);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

/* Pink accent line on collage */
.about__collage::before {
  content: '';
  position: absolute;
  bottom: 3.5rem;
  left: 2.5rem;
  width: 2px;
  height: 80px;
  background: var(--pink);
}

.about__content h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); }

/* Credential tags in about section */
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.about__tags span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
}

.about__content p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about__content p strong { color: var(--dark); }
.about__content .btn { margin-top: 1rem; }

/* ─── SCRIPTURE ──────────────────────────────────────────── */
.scripture {
  background: var(--dark);
  padding: 6rem 2rem;
  text-align: center;
}
.scripture__inner {
  max-width: 760px;
  margin: 0 auto;
}
.scripture blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin: 0.5rem 0 1.5rem;
}
.scripture blockquote em { color: var(--pink); }
.scripture cite {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── STATS ──────────────────────────────────────────────── */
.stats {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 4rem;
}
.stats__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat {
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--border);
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── PAIN ───────────────────────────────────────────────── */
.pain {
  background: var(--dark);
  padding: 7rem 4rem;
}
.pain__header {
  text-align: center;
  max-width: var(--max);
  margin: 0 auto 3.5rem;
}
.pain__header h2 { color: var(--white); }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  max-width: var(--max);
  margin: 0 auto 3.5rem;
}
.pain__item {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background var(--ease);
}
.pain__item:hover { background: rgba(234,0,113,0.08); }
.pain__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.pain__item p { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.75; }
.pain__footer {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.5rem;
}
.pain__footer p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.55;
}

/* ─── OFFERINGS ──────────────────────────────────────────── */
.offerings {
  background: var(--cream);
  padding: 7rem 4rem;
  border-top: 1px solid var(--border);
}
.offerings__header {
  text-align: center;
  max-width: var(--max);
  margin: 0 auto 4rem;
}
.offerings__sub {
  font-size: 1rem;
  color: var(--mid);
  margin-top: 0.5rem;
  line-height: 1.75;
}
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
.offer {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.offer:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(0,0,0,0.08); border-color: var(--pink); }
.offer--featured { border: 2px solid var(--pink); }
.offer--featured:hover { box-shadow: 0 18px 48px rgba(234,0,113,0.14); }
.offer__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.offer__badge {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--pink); color: var(--white); padding: 0.26rem 0.85rem; border-radius: 999px;
}
.offer__num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 700;
  color: var(--pink); opacity: 0.15; line-height: 1;
}
.offer h3 {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.25rem; line-height: 1.2;
}
.offer__type {
  display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.offer p { font-size: 0.88rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.5rem; flex-grow: 1; }
.offer ul { margin-bottom: 2rem; }
.offer ul li {
  font-size: 0.84rem; color: var(--dark); padding: 0.42rem 0 0.42rem 1.1rem;
  border-bottom: 1px solid #f0ece8; position: relative; line-height: 1.45;
}
.offer ul li::before { content: '✦'; position: absolute; left: 0; top: 0.55rem; color: var(--gold); font-size: 0.45rem; }
.offer--featured .btn--outline { color: var(--pink); border-color: var(--pink); }
.offer--featured .btn--outline:hover { background: var(--pink); color: var(--white); }
.offerings__note { text-align: center; max-width: var(--max); margin: 2.5rem auto 0; font-size: 0.9rem; color: var(--mid); }
.offerings__note a { color: var(--pink); font-weight: 700; border-bottom: 1px solid var(--pink); }

/* ─── FLAGSHIP OFFER — full-width horizontal card ────────── */
.offer--flagship {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto 2rem;
  border: 2px solid var(--pink);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(234,0,113,0.1);
  transform: none;
}
.offer--flagship:hover {
  transform: none;
  box-shadow: 0 24px 72px rgba(234,0,113,0.16);
  border-color: var(--pink);
}
.offer--flagship__text {
  padding: 3.25rem 3rem;
  display: flex;
  flex-direction: column;
}
.offer--flagship__text .offer__top { margin-bottom: 1.25rem; }
.offer--flagship__text h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
  line-height: 1.15;
}
.offer--flagship__text .offer__type { margin-bottom: 1.25rem; }
.offer--flagship__text p { font-size: 0.92rem; flex-grow: 0; margin-bottom: 1.5rem; }
.offer--flagship__text ul { margin-bottom: 2rem; }

.flagship__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}
.flagship__note {
  font-size: 0.68rem;
  color: var(--muted);
  font-style: italic;
}

/* Aside panel — pink-tinted dark */
.offer--flagship__aside {
  background: var(--dark);
  padding: 3.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.flagship__quote {
  border-left: 3px solid var(--pink);
  padding-left: 1.25rem;
}
.flagship__quote p {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.flagship__quote span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.flagship__trust {
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.flagship__trust p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}
.flagship__trust p strong { color: rgba(255,255,255,0.85); }
.flagship__trust-label {
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 0.75rem !important;
}
.flagship__trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.flagship__trust-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88) !important;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
  border-bottom: none !important;
}
.flagship__trust-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--pink);
  font-size: 0.38rem;
}
.flagship__trust-list li strong { color: rgba(255,255,255,0.88); }

/* Secondary offerings grid (below flagship) */
.offerings__secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

/* Responsive: flagship stacks on smaller screens */
@media (max-width: 860px) {
  .offer--flagship {
    grid-template-columns: 1fr;
  }
  .offer--flagship__aside {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .offerings__secondary {
    grid-template-columns: 1fr;
  }
}

/* ─── FREEBIE ────────────────────────────────────────────── */
.freebie {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.freebie__image {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3rem; background: rgba(255,255,255,0.03);
}
.freebie__image img {
  max-width: 280px; width: 100%; height: auto; object-fit: contain;
  box-shadow: 0 28px 70px rgba(0,0,0,0.35); border-radius: 3px;
}
.freebie__content {
  padding: 5rem 5rem 5rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.freebie__content h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.freebie__content h2 em { font-style: italic; color: var(--pink); font-weight: 400; }
.freebie__content > p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2rem; }
.freebie__form { display: flex; flex-direction: column; gap: 0.7rem; max-width: 380px; margin-bottom: 0.75rem; }
.freebie__form input {
  padding: 0.85rem 1.2rem; border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06); color: var(--white);
  font-family: var(--sans); font-size: 0.88rem; outline: none;
  transition: border-color var(--ease); border-radius: 2px;
}
.freebie__form input::placeholder { color: rgba(255,255,255,0.3); }
.freebie__form input:focus { border-color: var(--pink); }
.freebie__fine { font-size: 0.7rem; color: rgba(255,255,255,0.28); }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--white); padding: 7rem 4rem; border-top: 1px solid var(--border); }
.testimonials__header { text-align: center; max-width: var(--max); margin: 0 auto 4rem; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max); margin: 0 auto; align-items: start; }
.tcard { background: var(--cream); border: 1px solid var(--border); padding: 2.5rem 2rem; transition: box-shadow var(--ease), transform var(--ease); }
.tcard:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.07); transform: translateY(-3px); }
.tcard--accent { background: var(--dark); border-color: var(--dark); }
.tcard__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 1.25rem; }
.tcard p { font-family: var(--serif); font-size: 1.05rem; font-style: italic; line-height: 1.75; color: var(--dark); margin-bottom: 1.75rem; }
.tcard--accent p { color: rgba(255,255,255,0.88); }
.tcard__author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.tcard--accent .tcard__author { border-top-color: rgba(255,255,255,0.1); }
.tcard__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.tcard__author strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.tcard--accent .tcard__author strong { color: var(--white); }
.tcard__author span { font-size: 0.72rem; color: var(--muted); }
.tcard--accent .tcard__author span { color: rgba(255,255,255,0.4); }
.testimonials__note { text-align: center; max-width: var(--max); margin: 2rem auto 0; font-size: 0.68rem; color: var(--pink); font-style: italic; opacity: 0.7; }

/* ─── CTA — full bleed with overlay ─────────────────────── */
.cta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  background-color: #1a0a14;
}
.cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,5,10,0.55) 0%, rgba(15,5,10,0.72) 100%);
}
.cta__content {
  position: relative; z-index: 2;
  max-width: 640px; padding: 4rem 2rem;
}
.cta__content h2 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
.cta__content h2 em { color: var(--pink); }
.cta__content p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 2.5rem; }
.cta__fine { margin-top: 1.25rem; font-size: 0.7rem; color: rgba(255,255,255,0.38); line-height: 1.6; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 4rem 4rem 2rem; border-top: 4px solid var(--pink); }
.footer__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer__logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.footer__tagline { font-size: 0.7rem; color: rgba(255,255,255,0.3); line-height: 1.75; margin-top: 0.4rem; max-width: 280px; }
.footer__col-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a, .footer__social a { font-size: 0.76rem; color: rgba(255,255,255,0.4); transition: color var(--ease); }
.footer__nav a:hover, .footer__social a:hover { color: var(--white); }
.footer__bottom { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.66rem; color: rgba(255,255,255,0.2); }
.footer__bottom a { color: rgba(255,255,255,0.3); transition: color var(--ease); }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 1rem 2.5rem; }
  .about { grid-template-columns: 1fr; padding: 5rem 2.5rem; gap: 3rem; }
  .about__collage { height: 480px; }
  .stats { padding: 3.5rem 2.5rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .pain { padding: 5rem 2.5rem; }
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .pain__footer { flex-direction: column; align-items: flex-start; }
  .offerings { padding: 5rem 2.5rem; }
  .offerings__grid { grid-template-columns: 1fr; }
  .freebie { grid-template-columns: 1fr; }
  .freebie__content { padding: 4rem 2.5rem; }
  .testimonials { padding: 5rem 2.5rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer { padding: 3.5rem 2.5rem 2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .press { padding: 2rem 2.5rem; }
}

@media (max-width: 640px) {
  .nav { padding: 0.9rem 1.5rem; }
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .about__collage { height: 360px; }
  .collage__large { width: 80%; height: 72%; }
  .collage__small { width: 55%; height: 48%; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .pain { padding: 4.5rem 1.5rem; }
  .pain__grid { grid-template-columns: 1fr; }
  .offerings { padding: 4.5rem 1.5rem; }
  .testimonials { padding: 4.5rem 1.5rem; }
  .freebie__content { padding: 3rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .press { padding: 2rem 1.5rem; }
}

/* ─── FADE ANIMATIONS ────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
