/* Promura, public/marketing design system.
 * One file, every public page imports this. Page-specific tweaks go inline.
 * Two-sided positioning: discovery for fans, business for creators.
 * Magazine-grade typography: Fraunces for editorial display, Inter for UI/body.
 */

:root {
  --white: #ffffff;
  --cream: #faf4eb;
  --cream-deep: #f4ece0;
  --cream-shade: #ede4d4;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-dim: #8a8a8a;
  --pink: #ff3daa;
  --pink-deep: #d63d75;
  --pink-hover: #e91e92;
  --pink-soft: #ffe5f2;
  --rule: #ece3d2;
  --rule-strong: #d8cdb8;
  --rule-on-dark: rgba(255,255,255,0.12);
  --shadow-sm: 0 1px 2px rgba(10,10,10,0.04);
  --shadow-md: 0 8px 28px rgba(10,10,10,0.10);
  --shadow-lg: 0 22px 60px rgba(10,10,10,0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* =============================================================
   LAYOUT WRAPPERS
   ============================================================= */
.wrap, .container { max-width: 1340px; margin: 0 auto; padding: 0 56px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 56px; }

@media (max-width: 880px) {
  .wrap, .container, .wrap-narrow { padding: 0 24px; }
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 22px;
}
.eyebrow-ink { color: var(--ink); }
.eyebrow-light { color: var(--cream); }

.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.h-hero { font-size: clamp(56px, 8vw, 124px); }
.h-1    { font-size: clamp(48px, 6vw, 88px);  }
.h-2    { font-size: clamp(36px, 4.6vw, 64px); }
.h-3    { font-size: clamp(28px, 3.2vw, 44px); }
.display .pink { color: var(--pink); }

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}
.lede-lg { font-size: 22px; line-height: 1.45; }
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }

/* Editorial caption / kicker */
.kicker {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.kicker-pink { color: var(--pink); }

/* Magazine drop-cap for editorial paragraphs */
.dropcap::first-letter {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--pink);
}

/* =============================================================
   BUTTONS / CTAs
   ============================================================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-hover); transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 12px 28px; }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border: 2px solid var(--white); padding: 12px 28px; }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* =============================================================
   TOP NAV (sticky, with mobile drawer)
   Markup is injected by marketing-nav.js, these styles dress it.
   ============================================================= */
.preview-banner {
  background: var(--ink);
  color: var(--white);
  padding: 9px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
.preview-banner .pink { color: var(--pink); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 56px;
  max-width: 1500px;
  margin: 0 auto;
}
.site-nav .brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}
.site-nav .brand .pink { color: var(--pink); margin-left: -2px; }
.site-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
.site-nav-links a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.site-nav-links a:hover { color: var(--pink); }
.site-nav-links a.active { color: var(--pink); }
.site-nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--pink);
}
.site-nav-cta { display: flex; gap: 10px; align-items: center; }
.site-nav-cta .signin {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  text-decoration: none;
}
.site-nav-cta .signin:hover { color: var(--pink); }
.site-nav-cta .cta-pill {
  background: var(--pink); color: var(--white);
  padding: 11px 22px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 800; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.site-nav-cta .cta-pill:hover { background: var(--pink-hover); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle:hover { background: var(--cream-deep); }
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 200;
}
.nav-drawer.open { display: block; }
.nav-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  max-width: 86vw;
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-drawer-panel .brand { font-family: 'Fraunces', Georgia, serif; font-weight: 700; letter-spacing: -0.04em; font-size: 42px; line-height: 1; margin-bottom: 24px; display: inline-flex; align-items: baseline; color: var(--ink); }
.nav-drawer-panel .brand .pink { color: var(--pink); margin-left: -2px; }
.nav-drawer-panel a {
  display: block;
  padding: 14px 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  border-radius: var(--radius-md);
}
.nav-drawer-panel a:hover { background: var(--cream-deep); color: var(--pink); }
.nav-drawer-panel .cta-row { margin-top: auto; display: grid; gap: 10px; }

@media (max-width: 980px) {
  .site-nav-links { display: none; }
  /* Keep "Sign in" visible next to "Become a creator" on mobile so returning
     users don't have to dig into the hamburger drawer. */
  .nav-toggle { display: flex; }
  .site-nav-inner { padding: 16px 24px; gap: 10px; }
  .site-nav-cta { gap: 6px; }
  .site-nav-cta .signin { font-size: 14px; padding: 6px 8px; }
  .site-nav-cta .cta-pill { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 420px) {
  /* On very narrow phones tighten further so brand + Sign in + Become a
     creator + hamburger all stay on one row without overlapping. */
  .site-nav-cta .signin { padding: 4px 6px; font-size: 13px; }
  .site-nav-cta .cta-pill { padding: 7px 12px; font-size: 12px; }
  .site-nav-inner { padding: 14px 16px; }
}

/* =============================================================
   HERO PATTERNS
   ============================================================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: var(--cream-deep) center/cover no-repeat;
}
.hero-photo .photo-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-meta .dot {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

@media (max-width: 880px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { max-width: 100%; }
}

/* Page hero (smaller than landing hero, for sub pages) */
.page-hero {
  padding: 110px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
.page-hero h1 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(48px, 7vw, 96px); line-height: 1; letter-spacing: -0.025em; color: var(--ink); }
.page-hero .pink { color: var(--pink); }
@media (max-width: 880px) {
  .page-hero { padding: 64px 0 50px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* =============================================================
   STATS BAR
   ============================================================= */
.stats-bar {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* =============================================================
   STATEMENT BANNERS (hero-typographic blocks)
   ============================================================= */
.statement {
  padding: 110px 0;
  background: var(--white);
}
.statement.dark {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.statement.dark::before {
  content: '';
  position: absolute;
  top: -180px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,61,170,0.18) 0%, transparent 65%);
  filter: blur(60px);
}
.statement.dark::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,61,170,0.12) 0%, transparent 65%);
  filter: blur(60px);
}
.statement-inner { position: relative; z-index: 2; }
.statement h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: inherit;
  max-width: 1100px;
}
.statement h2 .pink { color: var(--pink); }
.statement.center { text-align: center; }
.statement.center h2 { margin: 0 auto; }

/* =============================================================
   CARD GRIDS
   ============================================================= */
.section { padding: 110px 0; }
.section.cream { background: var(--cream); }
.section.dark { background: var(--ink); color: var(--white); }
.section.dark .display { color: var(--white); }
.section.dark .lede { color: rgba(255,255,255,0.7); }
.section.dark .kicker { color: rgba(255,255,255,0.55); }

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.02em; line-height: 1.02; }
.section-head h2 .pink { color: var(--pink); }
@media (max-width: 880px) {
  .section { padding: 70px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
}

/* Cover-style creator/issue cards */
.cover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cover-card {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--cream-deep) center/cover no-repeat;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: block;
}
.cover-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cover-card .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--pink);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cover-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.18) 50%, transparent 75%);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.cover-card .name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 4px;
}
.cover-card .meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
@media (max-width: 980px) { .cover-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .cover-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* Feature card (3-up grid for value props, services, etc.) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card .num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 600;
}
.feature-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.feature-card.dark {
  background: rgba(255,255,255,0.03);
  border-color: var(--rule-on-dark);
}
.feature-card.dark h3 { color: var(--white); }
.feature-card.dark p { color: rgba(255,255,255,0.65); }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }

/* Two-track cards (For Fans / For Creators) */
.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.track-card {
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.track-card.fans { background: var(--cream); border: 1px solid var(--rule); color: var(--ink); }
.track-card.creators { background: var(--ink); color: var(--white); }
.track-card .eyebrow { color: var(--pink); }
.track-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.track-card.fans h3 { color: var(--ink); }
.track-card.creators h3 { color: var(--white); }
.track-card .pink { color: var(--pink); }
.track-card p { font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.track-card.fans p { color: var(--text); }
.track-card.creators p { color: rgba(255,255,255,0.78); }
.track-card ul { list-style: none; margin-bottom: 32px; }
.track-card ul li { padding: 8px 0; font-size: 15px; padding-left: 26px; position: relative; }
.track-card ul li::before {
  content: '→';
  position: absolute;
  left: 0; top: 8px;
  color: var(--pink);
  font-weight: 800;
}
.track-card.fans ul li { color: var(--text); border-bottom: 1px solid var(--rule); }
.track-card.creators ul li { color: rgba(255,255,255,0.85); border-bottom: 1px solid var(--rule-on-dark); }
@media (max-width: 880px) { .track-grid { grid-template-columns: 1fr; } }

/* =============================================================
   PLATFORM SHOWCASE, embed of the actual app UI
   ============================================================= */
.platform-showcase {
  background: var(--cream);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.platform-frame {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.platform-frame .browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--rule);
}
.platform-frame .browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--rule-strong); }
.platform-frame .browser-bar .url {
  flex: 1; margin-left: 12px;
  background: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
}
.platform-frame .preview-img {
  width: 100%;
  display: block;
}

/* =============================================================
   TESTIMONIAL / QUOTE
   ============================================================= */
.quote-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.quote-card.dark { background: rgba(255,255,255,0.04); border-color: var(--rule-on-dark); }
.quote-card .quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--pink);
  font-size: 56px;
  line-height: 0.5;
  margin-bottom: 18px;
}
.quote-card blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
}
.quote-card.dark blockquote { color: var(--white); }
.quote-attr {
  display: flex; align-items: center; gap: 12px;
}
.quote-attr .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-deep) center/cover no-repeat;
}
.quote-attr .name { font-weight: 800; font-size: 14px; }
.quote-attr .role { font-size: 12px; color: var(--text-muted); }
.quote-card.dark .quote-attr .role { color: rgba(255,255,255,0.55); }

/* =============================================================
   COMPARE TABLE (Promura vs Other Agencies / Other Platforms)
   ============================================================= */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.compare-col { padding: 40px 36px; }
.compare-col.us { background: var(--ink); color: var(--white); }
.compare-col.them { background: var(--white); }
.compare-col .compare-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.compare-col.us .compare-label { color: var(--pink); }
.compare-col.them .compare-label { color: var(--text-muted); }
.compare-col h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: inherit;
}
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.compare-col.us li { border-bottom: 1px solid var(--rule-on-dark); color: rgba(255,255,255,0.9); }
.compare-col.them li { border-bottom: 1px solid var(--rule); color: var(--text); }
.compare-col li:last-child { border-bottom: 0; }
.compare-col .icon { font-size: 16px; line-height: 1.4; flex-shrink: 0; font-weight: 800; }
.compare-col.us .icon { color: var(--pink); }
.compare-col.them .icon { color: var(--text-dim); }
@media (max-width: 880px) { .compare-grid { grid-template-columns: 1fr; } }

/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.faq-q:hover { color: var(--pink); }
.faq-q .mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-q .mark { transform: rotate(45deg); background: var(--pink); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 0 26px 0; }

/* =============================================================
   CTA SECTION
   ============================================================= */
.cta-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.cta-section::before { background: var(--pink); top: -260px; left: -200px; }
.cta-section::after  { background: var(--pink); bottom: -260px; right: -200px; opacity: 0.18; }
.cta-section .cta-inner { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-section h2 .pink { color: var(--pink); }
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 36px;
}
.cta-section .btn-row { justify-content: center; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-on-dark);
}
.site-footer .brand-col .brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 22px;
}
.site-footer .brand-col .brand .pink { color: var(--pink); margin-left: -3px; }
.site-footer .brand-col p { font-size: 14px; max-width: 320px; line-height: 1.6; }
.site-footer h6 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 700; margin-bottom: 16px;
}
.site-footer .col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.site-footer .col a:hover { color: var(--pink); }
.site-footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer-bottom .legal { display: flex; gap: 22px; }
.site-footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.site-footer-bottom a:hover { color: var(--pink); }
@media (max-width: 980px) {
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-footer-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   UTILITIES
   ============================================================= */
.center { text-align: center; }
.divider { height: 1px; background: var(--rule); border: 0; margin: 0; }
.divider-dark { height: 1px; background: var(--rule-on-dark); border: 0; margin: 0; }
.spacer-sm { height: 28px; }
.spacer-md { height: 56px; }
.spacer-lg { height: 96px; }
.pink { color: var(--pink); }
.serif { font-family: 'Fraunces', Georgia, serif; }
.font-sans { font-family: 'Inter', sans-serif; }

/* Reveal-on-scroll (progressive enhancement) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
