/* ============================================================
   OiAmor — "Golden Hour Editorial"
   Fraunces (display serif) + Instrument Sans (body)
   Sunset-rose · Atlantic teal · golden-hour gold · warm cream
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* hex fallbacks */
  --rose: #e85d6f;
  --rose-deep: #c93e56;
  --rose-soft: #fbe3e2;
  --teal: #20666e;
  --teal-ink: #0d2b30;
  --teal-soft: #ddecec;
  --gold: #e9a23b;
  --gold-soft: #f8e8cc;
  --cream: #faf4ea;
  --cream-deep: #f3e9d8;
  --ink: #33231f;
  --ink-soft: #6d5a53;
  --white: #fffdf9;

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

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 2px 6px rgba(51, 35, 31, 0.04), 0 18px 44px -18px rgba(51, 35, 31, 0.18);
  --shadow-lift: 0 4px 10px rgba(51, 35, 31, 0.05), 0 30px 60px -22px rgba(201, 62, 86, 0.28);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

@supports (color: oklch(0.5 0.1 20)) {
  :root {
    --rose: oklch(0.67 0.17 18);
    --rose-deep: oklch(0.58 0.19 14);
    --rose-soft: oklch(0.93 0.04 20);
    --teal: oklch(0.47 0.07 205);
    --teal-ink: oklch(0.27 0.045 210);
    --teal-soft: oklch(0.93 0.025 200);
    --gold: oklch(0.76 0.13 75);
    --gold-soft: oklch(0.93 0.05 85);
    --cream: oklch(0.968 0.017 85);
    --cream-deep: oklch(0.93 0.03 82);
    --ink: oklch(0.28 0.035 40);
    --ink-soft: oklch(0.48 0.035 40);
  }
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 560; line-height: 1.08; margin: 0; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

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

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

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--teal-ink);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus-visible { top: 1rem; }

/* ---------- Type helpers ---------- */
.kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}
.kicker-light { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.4rem);
  letter-spacing: -0.015em;
}
.section-title em {
  font-style: italic;
  font-weight: 420;
  color: var(--rose-deep);
}
.section-sub, .section-note {
  max-width: 56ch;
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-note { font-size: 0.9rem; font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(120deg, var(--rose) 10%, var(--rose-deep) 90%);
  color: var(--white);
  box-shadow: 0 10px 26px -10px var(--rose-deep);
}
.btn-primary:hover { box-shadow: 0 16px 34px -12px var(--rose-deep); }

.btn-ghost {
  background: transparent;
  border-color: color-mix(in srgb, var(--ink) 22%, transparent);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--rose-deep); color: var(--rose-deep); background: color-mix(in srgb, var(--rose-soft) 45%, transparent); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold) 0%, #d4881f 100%);
  color: var(--teal-ink);
  box-shadow: 0 12px 28px -10px rgba(212, 136, 31, 0.7);
}
.btn-light {
  background: var(--white);
  color: var(--rose-deep);
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.45);
}
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.btn-block { width: 100%; margin-top: auto; }

/* ---------- Grain texture ---------- */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 55%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  border-bottom-color: color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: 0 8px 30px -18px rgba(51, 35, 31, 0.25);
}
.header-inner {
  width: min(1240px, 100% - 2rem);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.brand-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 620;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-word em {
  font-style: italic;
  font-weight: 460;
  color: var(--rose-deep);
}
.brand-heart { flex-shrink: 0; }
.brand:hover .brand-heart { animation: heartbeat 0.9s var(--ease-out); }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.14); }
  45% { transform: scale(0.96); }
  65% { transform: scale(1.08); }
}

.site-nav {
  display: flex;
  gap: 1.9rem;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Language switcher */
.lang-switch {
  position: relative;
  display: inline-flex;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 9%, transparent);
  border-radius: var(--radius-pill);
  padding: 3px;
  isolation: isolate;
}
.lang-switch button {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  padding: 0.32rem 0.72rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.lang-switch button[aria-pressed="true"] { color: var(--white); }
.lang-pill {
  position: absolute;
  z-index: 0;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: 44px;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--rose), var(--rose-deep));
  transition: transform 0.35s var(--ease-out), width 0.35s var(--ease-out);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 12px;
  background: transparent;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.5rem, 8vh, 6.5rem) 0 clamp(2.5rem, 6vh, 4.5rem);
}
.hero-sky {
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.blob-rose {
  width: 55vw; height: 55vw;
  min-width: 480px; min-height: 480px;
  background: radial-gradient(circle at 35% 35%, var(--rose), transparent 70%);
  top: -8%; right: -12%;
  animation: drift-a 26s ease-in-out infinite alternate;
}
.blob-gold {
  width: 42vw; height: 42vw;
  min-width: 380px; min-height: 380px;
  background: radial-gradient(circle at 60% 40%, var(--gold), transparent 70%);
  top: 34%; left: -14%;
  opacity: 0.45;
  animation: drift-b 32s ease-in-out infinite alternate;
}
.blob-teal {
  width: 36vw; height: 36vw;
  min-width: 320px; min-height: 320px;
  background: radial-gradient(circle at 50% 50%, var(--teal), transparent 70%);
  bottom: -18%; right: 22%;
  opacity: 0.28;
  animation: drift-c 38s ease-in-out infinite alternate;
}
.hero-sheen {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 210deg at 70% 20%, transparent 0deg, rgba(255, 236, 210, 0.55) 60deg, transparent 130deg);
}
@keyframes drift-a { to { transform: translate(-7%, 9%) scale(1.12); } }
@keyframes drift-b { to { transform: translate(9%, -7%) scale(1.08); } }
@keyframes drift-c { to { transform: translate(-6%, -9%) scale(1.15); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-title {
  font-size: clamp(2.75rem, 1.4rem + 6.2vw, 5.4rem);
  font-weight: 640;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
.hero-title em {
  font-style: italic;
  font-weight: 420;
  background: linear-gradient(100deg, var(--rose-deep) 20%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 1.4rem;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.22rem);
  color: var(--ink-soft);
}
.hero-ctas {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.trust-line {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  font-size: 0.87rem;
  color: var(--ink-soft);
}
.trust-line li { display: inline-flex; align-items: center; gap: 0.45rem; }
.trust-line svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(400px, 100%);
}
.arch {
  margin: 0;
  aspect-ratio: 4 / 5.1;
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 15%, var(--gold-soft), transparent 60%),
    linear-gradient(165deg, var(--rose) 0%, var(--rose-deep) 45%, var(--teal-ink) 115%);
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
}
.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.95rem;
  border-radius: 16px;
  background: color-mix(in srgb, var(--white) 82%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--white) 70%, transparent);
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  line-height: 1.25;
  animation: floaty 6s ease-in-out infinite alternate;
}
.float-card-1 { left: -14%; top: 16%; }
.float-card-2 { right: -10%; bottom: 13%; animation-delay: -3s; }
.float-text { display: flex; flex-direction: column; }
.float-text strong { font-weight: 600; }
.float-text small { color: var(--ink-soft); font-size: 0.76rem; }
.float-heart { color: var(--rose); animation: heartbeat 2.4s var(--ease-out) infinite; }
.chat-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #3fae72;
  box-shadow: 0 0 0 4px rgba(63, 174, 114, 0.18);
  flex-shrink: 0;
}
@keyframes floaty { to { transform: translateY(-12px); } }

.avatar {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.avatar-m, .avatar-rose { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); }
.avatar-teal { background: linear-gradient(135deg, var(--teal), var(--teal-ink)); }
.avatar-gold { background: linear-gradient(135deg, var(--gold), #c17d1a); }

/* Hero stats */
.hero-stats {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 2rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--white) 65%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 80%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.stat { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
  font-weight: 600;
  color: var(--rose-deep);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.stat-sep {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--ink) 16%, transparent), transparent);
}

/* ============================================================
   WORD RIBBON
   ============================================================ */
.ribbon {
  overflow: hidden;
  padding: 1.1rem 0;
  border-block: 1px solid color-mix(in srgb, var(--ink) 9%, transparent);
  background: var(--cream-deep);
}
.ribbon-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: ribbon-scroll 36s linear infinite;
}
.ribbon-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 420;
  color: var(--ink-soft);
  white-space: nowrap;
}
.ribbon-track i {
  font-style: normal;
  color: var(--rose);
  font-size: 0.8rem;
}
@keyframes ribbon-scroll { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(4rem, 10vh, 7rem) 0; }
.section-tinted {
  background:
    radial-gradient(80% 60% at 85% 0%, color-mix(in srgb, var(--teal-soft) 60%, transparent), transparent 70%),
    var(--white);
}
.section-head { margin-bottom: clamp(2.4rem, 5vh, 3.8rem); max-width: 760px; }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

/* Audience cards */
.audience-card { position: relative; overflow: hidden; padding-top: 2.4rem; }
.audience-arc {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px; height: 150px;
  border-radius: 50%;
  opacity: 0.85;
  transition: transform 0.45s var(--ease-out);
}
.audience-card:hover .audience-arc { transform: scale(1.25); }
.arc-rose { background: radial-gradient(circle at 30% 70%, var(--rose-soft), color-mix(in srgb, var(--rose) 45%, transparent)); }
.arc-teal { background: radial-gradient(circle at 30% 70%, var(--teal-soft), color-mix(in srgb, var(--teal) 40%, transparent)); }
.arc-gold { background: radial-gradient(circle at 30% 70%, var(--gold-soft), color-mix(in srgb, var(--gold) 45%, transparent)); }
.card-tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.audience-card h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.audience-card p:last-child { color: var(--ink-soft); font-size: 0.97rem; }

/* Feature cards */
.feature-card h3 { font-size: 1.22rem; margin: 1.2rem 0 0.6rem; }
.feature-card p:last-child { color: var(--ink-soft); font-size: 0.93rem; }
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 18px;
}
.feature-icon svg { width: 30px; height: 30px; }
.icon-rose { background: var(--rose-soft); color: var(--rose-deep); }
.icon-teal { background: var(--teal-soft); color: var(--teal); }
.icon-gold { background: var(--gold-soft); color: #b0731a; }
.icon-ink  { background: var(--cream-deep); color: var(--ink); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 1rem;
  border-top: 2px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(3.6rem, 2.4rem + 4.5vw, 6rem);
  line-height: 1;
  background: linear-gradient(160deg, var(--rose) 10%, var(--gold) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.step p { color: var(--ink-soft); font-size: 0.97rem; max-width: 34ch; }

/* ============================================================
   INTERLUDE
   ============================================================ */
.interlude {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal-ink) 0%, #14343b 55%, #3c2030 120%);
  color: var(--white);
  padding: clamp(5rem, 14vh, 9rem) 0;
  text-align: center;
}
.interlude-media {
  position: absolute;
  inset: 0;
  margin: 0;
}
.interlude-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.interlude-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 43, 48, 0.55), rgba(13, 43, 48, 0.25) 45%, rgba(13, 43, 48, 0.7));
}
.interlude-quote {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.interlude-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1rem + 3.4vw, 3.2rem);
  font-weight: 420;
  line-height: 1.25;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.interlude-quote em {
  font-style: italic;
  color: var(--gold);
}
.interlude-quote cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 72%, transparent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quote-mark { width: 30px; height: 22px; color: var(--gold); }
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.45;
  flex: 1;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 1.1rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}
.quote-who { display: flex; flex-direction: column; line-height: 1.3; }
.quote-who strong { font-size: 0.95rem; }
.quote-who small { color: var(--ink-soft); font-size: 0.8rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 1.6rem;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2.2rem;
}
.price-name { font-size: 1.35rem; }
.price-amount {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-amount small {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.price-tag { margin-top: 0.4rem; color: var(--ink-soft); font-style: italic; font-family: var(--font-display); }
.price-list {
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.price-list svg {
  width: 17px; height: 17px;
  margin-top: 0.22rem;
  color: var(--teal);
  flex-shrink: 0;
}

.price-premium {
  position: relative;
  background: linear-gradient(165deg, var(--teal-ink) 0%, #143940 60%, #35202c 130%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 30px 70px -25px rgba(13, 43, 48, 0.65);
}
.price-premium .price-tag,
.price-premium .price-amount small { color: color-mix(in srgb, var(--white) 68%, transparent); }
.price-premium .price-list svg { color: var(--gold); }
.price-badge {
  position: absolute;
  top: -14px;
  right: 2rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--gold), #d4881f);
  color: var(--teal-ink);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(212, 136, 31, 0.8);
}
.price-premium .btn-ghost { border-color: rgba(255,255,255,0.35); color: var(--white); }
.pricing-note {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ============================================================
   SAFETY
   ============================================================ */
.safety {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--teal-ink) 0%, #10333a 70%, #2c1d29 130%);
  color: var(--white);
  padding: clamp(4rem, 10vh, 7rem) 0;
}
.safety .section-title em { color: var(--gold); }
.safety-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.safety-body {
  margin-top: 1.2rem;
  color: color-mix(in srgb, var(--white) 78%, transparent);
  max-width: 52ch;
}
.safety-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.safety-points li {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background-color 0.3s, transform 0.3s var(--ease-out);
}
.safety-points li:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-3px); }
.safety-points strong { font-family: var(--font-display); font-size: 1.08rem; font-weight: 560; }
.safety-points span { font-size: 0.85rem; color: color-mix(in srgb, var(--white) 68%, transparent); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { padding: clamp(4rem, 10vh, 7rem) 0; }
.final-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
  color: var(--white);
  box-shadow: 0 40px 90px -30px rgba(201, 62, 86, 0.55);
}
.final-sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 120% at 15% 0%, var(--gold) 0%, transparent 55%),
    radial-gradient(80% 120% at 90% 100%, var(--teal) 0%, transparent 60%),
    linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 60%, #a12e48 100%);
  animation: sky-shift 14s ease-in-out infinite alternate;
}
@keyframes sky-shift { to { transform: scale(1.12) rotate(1.5deg); } }
.final-title {
  font-size: clamp(2.2rem, 1.3rem + 4.4vw, 4rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.25);
}
.final-title em { font-style: italic; font-weight: 420; color: var(--gold-soft); }
.final-sub {
  margin: 1.2rem auto 2.2rem;
  max-width: 46ch;
  font-size: 1.08rem;
  color: rgba(255, 253, 249, 0.92);
}
.final-note {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: rgba(255, 253, 249, 0.8);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2.5rem;
}
.footer-brand .brand-word { font-size: 1.3rem; }
.footer-blurb {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 34ch;
}
.footer-made {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--rose-deep);
}
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.footer-col a {
  text-decoration: none;
  font-size: 0.93rem;
  color: var(--ink);
  width: fit-content;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose-deep); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--ink-soft);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
    box-shadow: 0 30px 40px -20px rgba(51, 35, 31, 0.25);
    padding: 0.5rem 1.25rem 1rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease-out), opacity 0.3s, visibility 0.3s;
  }
  body.nav-open .site-nav {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .site-nav a {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 6%, transparent);
  }
  .site-nav a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(330px, 82%); margin-top: 1rem; }
  .float-card-1 { left: -6%; }
  .float-card-2 { right: -4%; }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1.6rem 1.4rem;
  }
  .stat-sep { width: auto; height: 1px; background: linear-gradient(to right, transparent, color-mix(in srgb, var(--ink) 16%, transparent), transparent); }

  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-points { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .cards-4 { grid-template-columns: 1fr; }
  .safety-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { width: 100%; }
  .lang-switch button { padding: 0.3rem 0.58rem; }
  .float-card { font-size: 0.76rem; padding: 0.5rem 0.75rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ribbon-track { animation: none; }
  .blob, .float-card, .final-sky, .float-heart { animation: none; }
}

/* ============================================================
   ABOUT PAGE — additive extension (append-only)
   Everything below reuses the existing design system; nothing
   above this line was modified.
   ============================================================ */

/* Current-page state in the main nav (all pages) */
.site-nav a[aria-current="page"] { color: var(--rose-deep); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.footer-col a[aria-current="page"] { color: var(--rose-deep); }

/* --- About hero: centered editorial opener --- */
.about-hero {
  text-align: center;
  padding: clamp(4rem, 10vh, 7.5rem) 0 clamp(3rem, 8vh, 5.5rem);
}
.about-hero-inner { max-width: 860px; margin-inline: auto; }
.about-hero .hero-title {
  font-size: clamp(2.6rem, 1.3rem + 5.6vw, 5rem);
}
.about-hero .hero-sub {
  margin-inline: auto;
  max-width: 58ch;
}

/* --- Origin story --- */
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.story-media {
  position: relative;
  justify-self: center;
  width: min(380px, 100%);
}
.story-media .arch {
  aspect-ratio: 4 / 4.8;
}
.story-p {
  margin-top: 1.15rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 58ch;
}
.story-sign {
  margin-top: 1.7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--rose-deep);
  max-width: 46ch;
}

/* --- "Who we're building for" manifesto band --- */
.about-manifesto .interlude-quote { max-width: 920px; }
.about-manifesto .kicker { margin-bottom: 1.8rem; }
.manifesto-line {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.35rem, 0.95rem + 2vw, 2.15rem);
  line-height: 1.35;
  margin-top: 1.05rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.manifesto-close {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.8rem, 1.2rem + 3vw, 3rem);
  letter-spacing: -0.015em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.manifesto-close em {
  font-style: italic;
  font-weight: 420;
  color: var(--gold);
}

/* --- Stat band section wrapper (reuses .hero-stats card) --- */
.about-stats { padding: clamp(3rem, 8vh, 5.5rem) 0; }

/* --- About page responsive --- */
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-media { width: min(320px, 82%); order: 2; margin-top: 1.5rem; }
  .story-copy { order: 1; }
}

/* ============================================================
   SAFETY PAGE — additive extension (append-only)
   Reuses the design system; nothing above this line was modified.
   ============================================================ */

/* --- Safety hero: shield badge above the kicker --- */
.safety-hero-badge {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: var(--white);
  color: var(--teal);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.3rem;
}
.safety-hero-badge svg { width: 34px; height: 34px; }

/* --- Meeting-safely tips: 2×2 grid built on the .step system --- */
.safety-tips { grid-template-columns: repeat(2, 1fr); }
.safety-tips .step p { max-width: 44ch; }

/* --- Romance-scam callout --- */
.scam-section { padding-top: 0; }
.scam-callout {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: clamp(2.4rem, 6vw, 4.2rem);
  background: linear-gradient(150deg, var(--teal-ink) 0%, #10333a 65%, #2c1d29 135%);
  color: var(--white);
  box-shadow: 0 34px 80px -30px rgba(13, 43, 48, 0.6);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.scam-callout .section-title { font-size: clamp(1.8rem, 1.1rem + 2.8vw, 2.9rem); }
.scam-callout .section-title em { color: var(--gold); }
.scam-copy { position: relative; z-index: 1; }
.scam-flag {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(233, 162, 59, 0.16);
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.scam-flag svg { width: 26px; height: 26px; }
.scam-body {
  margin-top: 1.1rem;
  color: color-mix(in srgb, var(--white) 78%, transparent);
  max-width: 52ch;
}
.scam-note {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-soft);
  max-width: 46ch;
}
.scam-signs {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}
.scam-sign {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--white) 84%, transparent);
  transition: background-color 0.3s, transform 0.3s var(--ease-out);
}
.scam-sign:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-3px); }
.scam-sign svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* --- Reporting & blocking --- */
.report-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.report-visual {
  margin: 0;
  justify-self: center;
  width: min(400px, 100%);
}
.chat-mock {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-lift);
}
.chat-bubble {
  align-self: flex-start;
  background: var(--cream-deep);
  border-radius: 18px 18px 18px 6px;
  padding: 0.85rem 1.05rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 36ch;
}
.report-menu {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--ink) 9%, transparent);
  border-radius: 16px;
  padding: 0.55rem;
  box-shadow: var(--shadow-soft);
  min-width: 210px;
}
.report-action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}
.report-action svg { width: 17px; height: 17px; flex-shrink: 0; }
.report-action.danger { background: var(--rose-soft); color: var(--rose-deep); }
.report-action.neutral { background: var(--cream); color: var(--ink); }
.report-status {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- Trust band --- */
.safety-band { padding: clamp(3rem, 8vh, 5.5rem) 0; }
.trust-band {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 2rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--white) 65%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 80%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
}
.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  flex-shrink: 0;
}
.trust-icon svg { width: 25px; height: 25px; }
.trust-text { display: flex; flex-direction: column; line-height: 1.35; }
.trust-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 560;
}
.trust-text small { color: var(--ink-soft); font-size: 0.8rem; }

/* --- Safety page responsive --- */
@media (max-width: 860px) {
  .scam-callout { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .report-visual { width: min(360px, 92%); }
  .trust-band {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1.5rem 1.3rem;
  }
  .trust-item { justify-content: flex-start; }
}
@media (max-width: 700px) {
  .safety-tips { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING PAGE — additive extension (append-only)
   Reuses the design system (incl. the existing .pricing-grid /
   .price-card components); nothing above this line was modified.
   ============================================================ */

/* --- Visually-hidden utility (screen-reader only text) --- */
.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --- Pricing hero: heart-price badge above the kicker --- */
.price-hero-badge {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: var(--white);
  color: var(--rose-deep);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.3rem;
}
.price-hero-badge svg { width: 34px; height: 34px; }

/* --- Premium reassurance line under the CTA --- */
.price-reassure {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--white) 72%, transparent);
}
.price-reassure svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Feature-comparison table: tasteful, not a spreadsheet --- */
.compare-wrap {
  max-width: 880px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1.8rem 1.2rem;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare-table thead th {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding: 1.05rem 0.9rem 0.85rem;
}
.compare-table thead th:first-child {
  text-align: left;
  padding-left: 0.4rem;
}
.compare-table thead th.col-prem { color: var(--teal); }
.compare-table tbody th,
.compare-table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
  padding: 0.85rem 0.9rem;
}
.compare-table tbody th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.93rem;
  text-align: left;
  color: var(--ink);
  padding-left: 0.4rem;
}
.compare-table tbody td {
  text-align: center;
  min-width: 96px;
}
.compare-table .col-prem {
  background: color-mix(in srgb, var(--teal-soft) 42%, transparent);
}
.cmp-yes {
  display: inline-grid;
  place-items: center;
}
.cmp-yes svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}
.cmp-no {
  color: color-mix(in srgb, var(--ink) 32%, transparent);
  font-weight: 500;
}
.cmp-text {
  display: inline-block;
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.col-prem .cmp-text {
  background: var(--teal);
  color: var(--white);
}

/* --- FAQ accordion --- */
.faq-head {
  margin-inline: auto;
  text-align: center;
}
.faq-head .section-sub { margin-inline: auto; }
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: color-mix(in srgb, var(--rose) 40%, transparent);
}
.faq-q { margin: 0; }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  width: 100%;
  padding: 1.15rem 1.35rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 560;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--rose-deep); }
.faq-trigger:focus-visible {
  outline-offset: -3px;
  border-radius: 18px;
}
.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--rose-deep);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out), background-color 0.3s;
}
.faq-icon svg { width: 15px; height: 15px; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--rose-soft);
}
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.4s var(--ease-out), visibility 0.4s;
}
.faq-item.open .faq-panel {
  grid-template-rows: 1fr;
  visibility: visible;
}
.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-panel-inner p {
  padding: 0 1.35rem 1.3rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  max-width: 64ch;
}

/* --- Pricing page responsive --- */
@media (max-width: 560px) {
  .compare-wrap { padding: 0.5rem 0.9rem 0.8rem; }
  .compare-table tbody th { font-size: 0.86rem; }
  .compare-table tbody td { min-width: 74px; padding: 0.8rem 0.5rem; }
  .compare-table thead th { padding: 0.95rem 0.5rem 0.75rem; letter-spacing: 0.1em; }
  .cmp-text { padding: 0.2rem 0.55rem; font-size: 0.72rem; }
  .faq-trigger { padding: 1rem 1.1rem; font-size: 1.05rem; }
  .faq-panel-inner p { padding: 0 1.1rem 1.15rem; }
}

/* ============================================================
   STORIES PAGE — additive extension (append-only)
   Editorial success-stories gallery. Reuses the design system
   (.arch, .card, .interlude, .reveal…); nothing above this
   line was modified.
   ============================================================ */

/* --- Stories hero: twin-hearts badge above the kicker --- */
.stories-hero-badge {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: var(--white);
  color: var(--rose-deep);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.3rem;
}
.stories-hero-badge svg { width: 34px; height: 34px; }

/* --- Illustrative-composites disclaimer --- */
.stories-disclaimer {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* --- Featured story: editorial spread --- */
.feat-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.feat-media {
  position: relative;
  justify-self: center;
  width: min(400px, 100%);
}
.feat-arch { aspect-ratio: 4 / 5.1; }
.feat-quote {
  margin: 1.6rem 0 0;
  position: relative;
}
.feat-quote .quote-mark {
  width: 34px;
  height: 25px;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.feat-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.18rem, 1rem + 0.9vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 54ch;
}
.feat-who {
  margin-top: 1.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 46ch;
}
.feat-who strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 560;
  color: var(--rose-deep);
}
.feat-who span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* --- Story gallery cards --- */
.stories-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.story-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.story-photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  /* gradient fallback shows if the remote portrait can't load */
  background:
    radial-gradient(120% 90% at 30% 15%, var(--gold-soft), transparent 60%),
    linear-gradient(165deg, var(--rose) 0%, var(--rose-deep) 60%, var(--teal-ink) 130%);
}
.photo-fall-teal {
  background:
    radial-gradient(120% 90% at 30% 15%, var(--teal-soft), transparent 60%),
    linear-gradient(165deg, var(--teal) 0%, var(--teal-ink) 75%, #35202c 140%);
}
.photo-fall-gold {
  background:
    radial-gradient(120% 90% at 30% 15%, var(--gold-soft), transparent 60%),
    linear-gradient(165deg, var(--gold) 0%, #c17d1a 60%, var(--rose-deep) 140%);
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.story-card:hover .story-photo img { transform: scale(1.045); }
.story-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.5rem 1.5rem;
}
.story-names {
  font-size: 1.28rem;
  color: var(--ink);
}
.story-meta {
  margin-top: 0.3rem;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal);
}
.story-quote {
  margin: 0.9rem 0 0;
  flex: 1;
}
.story-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.5;
  color: var(--ink);
}
.story-time {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-deep);
}
.story-time svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Quote band (reuses .interlude, no photo — pure gradient) --- */
.stories-band { padding: clamp(4rem, 11vh, 7rem) 0; }

/* --- Stories page responsive --- */
@media (max-width: 1020px) {
  .stories-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-media { width: min(330px, 82%); order: 2; margin-top: 1.5rem; }
  .feat-copy { order: 1; }
}
@media (max-width: 640px) {
  .stories-gallery { grid-template-columns: 1fr; }
  .story-photo { aspect-ratio: 16 / 10; }
}

/* ============================================================
   JOIN PAGE — additive extension (append-only)
   Early-access form + "what happens next" panel. Reuses the
   design system (.about-hero, .section-tinted, .interlude,
   .trust-line, .reveal…); nothing above this line was modified.
   ============================================================ */

/* [hidden] must win over any display rules inside the join section */
.join-section [hidden] { display: none !important; }

/* --- Join hero: heart-with-sparkle badge above the kicker --- */
.join-hero-badge {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: var(--white);
  color: var(--rose-deep);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.3rem;
}
.join-hero-badge svg { width: 34px; height: 34px; }

/* --- Layout: form card + aside --- */
.join-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

/* --- The form card --- */
.join-card {
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
  border-radius: 32px;
  box-shadow: var(--shadow-lift);
  padding: clamp(1.7rem, 4vw, 2.8rem);
}
.join-card-title { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); }
.join-card-sub {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.99rem;
  max-width: 46ch;
}

/* --- Fields --- */
.join-form {
  margin-top: 1.7rem;
  display: grid;
  gap: 1.3rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.field-label {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
}
.field-optional {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.join-form input[type="text"],
.join-form input[type="email"],
.join-form select {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
  background: var(--cream);
  border: 1.5px solid color-mix(in srgb, var(--ink) 15%, transparent);
  border-radius: 14px;
  padding: 0.78rem 1rem;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.join-form input::placeholder { color: color-mix(in srgb, var(--ink-soft) 68%, transparent); }
.join-form input:hover,
.join-form select:hover { border-color: color-mix(in srgb, var(--ink) 28%, transparent); }
.join-form input:focus-visible,
.join-form select:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  background: var(--white);
  border-color: var(--teal);
}
.join-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 8l5 5 5-5' fill='none' stroke='%236d5a53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 16px;
  cursor: pointer;
}

/* Invalid state */
.join-form input[aria-invalid="true"] {
  border-color: var(--rose-deep);
  background: color-mix(in srgb, var(--rose-soft) 38%, var(--white));
}
.field-error {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: var(--rose-deep);
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.4;
}
.field-error svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.18rem;
}

/* --- "I'm interested in" pills --- */
.interest-options { display: grid; gap: 0.55rem; }
.interest-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.95rem;
  border: 1.5px solid color-mix(in srgb, var(--ink) 13%, transparent);
  border-radius: 14px;
  background: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s var(--ease-out);
}
.interest-pill:hover { border-color: color-mix(in srgb, var(--rose) 55%, transparent); }
.interest-pill input {
  width: 17px;
  height: 17px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--rose-deep);
  cursor: pointer;
}
.interest-pill:has(input:checked) {
  border-color: var(--rose);
  background: color-mix(in srgb, var(--rose-soft) 48%, var(--white));
}
.interest-pill:has(input:focus-visible) {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* --- 18+ confirmation --- */
.age-field {
  background: color-mix(in srgb, var(--gold-soft) 55%, var(--white));
  border: 1.5px solid color-mix(in srgb, var(--gold) 45%, transparent);
  border-radius: 14px;
  padding: 0.95rem 1.05rem;
}
.age-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
  cursor: pointer;
}
.age-check input {
  width: 19px;
  height: 19px;
  margin: 0.12rem 0 0;
  flex-shrink: 0;
  accent-color: var(--rose-deep);
  cursor: pointer;
}
.age-field .field-error { margin-top: 0.6rem; }

/* --- Submit + honesty line --- */
.join-form .btn-block { margin-top: 0.3rem; }
.join-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-inline: auto;
}

/* --- Error summary --- */
.error-summary {
  margin-top: 1.5rem;
  padding: 1.05rem 1.25rem;
  border-radius: 16px;
  border: 1.5px solid color-mix(in srgb, var(--rose) 45%, transparent);
  background: color-mix(in srgb, var(--rose-soft) 55%, var(--white));
}
.error-summary h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--rose-deep);
}
.error-summary ul {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.35rem;
}
.error-summary a {
  color: var(--rose-deep);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* --- Success state --- */
.join-success {
  text-align: center;
  padding: clamp(1.2rem, 3vw, 2rem) 0.5rem;
}
.join-success:not([hidden]) { animation: join-fade 0.6s var(--ease-out) both; }
.join-success-heart {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  box-shadow: 0 18px 40px -14px var(--rose-deep);
  animation: join-pop 0.7s var(--ease-out) 0.15s both;
}
.join-success-heart svg { width: 40px; height: 40px; }
.join-success-title {
  margin-top: 1.3rem;
  font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.15rem);
  letter-spacing: -0.015em;
}
.join-success-body {
  margin: 0.95rem auto 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 44ch;
}
.join-success-note {
  margin: 1.05rem auto 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 44ch;
}
.join-success .btn { margin-top: 1.6rem; }
@keyframes join-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes join-pop {
  0% { transform: scale(0.35); opacity: 0; }
  65% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Aside: what happens next + trust --- */
.join-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.6rem);
}
.join-aside-title { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); }
.join-steps {
  margin-top: 1.7rem;
  display: grid;
  gap: 1.25rem;
}
.join-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.join-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: 2.1rem;
  line-height: 1;
  min-width: 1.6rem;
  text-align: center;
  background: linear-gradient(160deg, var(--rose) 10%, var(--gold) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  transform: translateY(0.1rem);
}
.join-step h3 { font-size: 1.18rem; }
.join-step p {
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 42ch;
}
.join-trust {
  margin-top: 2.1rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--white) 65%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 80%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.join-trust h3 {
  font-size: 1.12rem;
  font-weight: 560;
}
.join-trust .trust-line {
  margin-top: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.join-safety-link {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1.5px solid color-mix(in srgb, var(--teal) 35%, transparent);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.join-safety-link:hover { color: var(--teal-ink); border-color: var(--teal-ink); }
.join-safety-link svg { flex-shrink: 0; transition: transform 0.25s var(--ease-out); }
.join-safety-link:hover svg { transform: translateX(3px); }

/* --- Quote band (reuses .interlude, pure gradient) --- */
.join-band { padding: clamp(4rem, 11vh, 7rem) 0; }

/* --- Join page responsive --- */
@media (max-width: 860px) {
  .join-grid { grid-template-columns: 1fr; }
  .join-aside { position: static; margin-top: 0.5rem; }
}

/* --- Join page reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .join-success:not([hidden]),
  .join-success-heart { animation: none; }
}

/* ============================================================
   JOURNAL — additive extension (append-only)
   Editorial magazine layer: the Journal index (hero + featured
   essay + article-card grid) and long-form article pages
   (lede, drop cap, pull-quotes, keep-reading, progress bar).
   Reuses the design system (.about-hero, .card, .interlude,
   .final, .reveal…); nothing above this line was modified.
   ============================================================ */

/* --- Journal hero: open-book badge above the kicker --- */
.journal-hero-badge {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: var(--white);
  color: var(--rose-deep);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.3rem;
}
.journal-hero-badge svg { width: 34px; height: 34px; }

/* --- Shared editorial atoms: category chip + meta row --- */
.jcat {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jmeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.jmeta .jdot { color: var(--gold); font-weight: 700; }

/* --- Featured essay: editorial spread card --- */
.jfeat {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
  border-radius: 36px;
  box-shadow: var(--shadow-lift);
}
.jfeat-media {
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  /* gradient fallback shows if the remote photo can't load */
  background:
    radial-gradient(120% 90% at 30% 15%, var(--gold-soft), transparent 60%),
    linear-gradient(165deg, var(--rose) 0%, var(--rose-deep) 55%, var(--teal-ink) 130%);
}
.jfeat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.jfeat:hover .jfeat-media img { transform: scale(1.035); }
.jfeat-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.jfeat-tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b0731a;
}
.jfeat-title {
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
  letter-spacing: -0.015em;
}
.jfeat-title a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.25s;
}
.jfeat-title a:hover { color: var(--rose-deep); }
.jfeat-dek {
  color: var(--ink-soft);
  font-size: 1.01rem;
  max-width: 52ch;
}
.jfeat-cta {
  margin-top: auto;
  padding-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--rose-deep);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1.5px solid color-mix(in srgb, var(--rose-deep) 35%, transparent);
  padding-bottom: 0.12rem;
  transition: color 0.2s, border-color 0.2s;
}
.jfeat-cta:hover { color: var(--teal); border-color: var(--teal); }
.jfeat-cta svg { flex-shrink: 0; transition: transform 0.25s var(--ease-out); }
.jfeat-cta:hover svg { transform: translateX(3px); }

/* --- Journal card grid --- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.jcard {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.jcard-photo {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 15%, var(--gold-soft), transparent 60%),
    linear-gradient(165deg, var(--rose) 0%, var(--rose-deep) 60%, var(--teal-ink) 130%);
}
.jcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.jcard:hover .jcard-photo img { transform: scale(1.045); }
/* decorative art panel for coming-soon cards (no photo) */
.jcard-art {
  display: grid;
  place-items: center;
}
.jcard-art span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: 5.5rem;
  line-height: 0.6;
  color: color-mix(in srgb, var(--white) 55%, transparent);
  transform: translateY(0.28em);
}
.jcard-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  padding: 1.4rem 1.5rem 1.5rem;
}
.jcard-title {
  font-size: 1.32rem;
  line-height: 1.18;
}
.jcard-title a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.25s;
}
.jcard-title a:hover { color: var(--rose-deep); }
.jcard-dek {
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.jcard-foot {
  margin-top: auto;
  padding-top: 1rem;
  width: 100%;
  border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}
.jsoon-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: #8a5a12;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.jcard-soon .jcard-title { color: var(--ink); }

/* --- Article page: hero --- */
.article-hero {
  text-align: center;
  padding: clamp(3.5rem, 8vh, 6rem) 0 clamp(2rem, 5vh, 3.2rem);
}
.article-hero-inner {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1.5px solid color-mix(in srgb, var(--teal) 35%, transparent);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.article-back:hover { color: var(--teal-ink); border-color: var(--teal-ink); }
.article-back svg { flex-shrink: 0; transition: transform 0.25s var(--ease-out); }
.article-back:hover svg { transform: translateX(-3px); }
.article-title {
  font-size: clamp(2.3rem, 1.3rem + 4.4vw, 4.2rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.article-dek {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.12rem, 1rem + 0.7vw, 1.38rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}
.article-byline { justify-content: center; }

/* --- Article page: hero figure --- */
.article-figure {
  width: min(1020px, 100% - 2.5rem);
  margin: 0 auto;
}
.article-img {
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 16 / 8.2;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
  background:
    radial-gradient(120% 90% at 30% 15%, var(--gold-soft), transparent 60%),
    linear-gradient(165deg, var(--rose) 0%, var(--rose-deep) 55%, var(--teal-ink) 130%);
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-figure figcaption {
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* --- Article body: readable measure, editorial rhythm --- */
.article-body {
  width: min(700px, 100% - 2.5rem);
  margin-inline: auto;
  padding: clamp(2.4rem, 6vh, 4rem) 0 clamp(3rem, 7vh, 4.5rem);
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--ink);
}
.article-body p + p { margin-top: 1.35em; }
.dropcap::first-letter {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 3.9em;
  line-height: 0.76;
  float: left;
  padding: 0.08em 0.14em 0 0;
  color: var(--rose-deep);
}
.article-h2 {
  margin: 2.1em 0 0.9em;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  letter-spacing: -0.01em;
}
.article-h2::before {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin-bottom: 0.95rem;
}
.article-h2 + p { margin-top: 0; }

/* Pull-quotes: centered, serif, gold mark */
.pullquote {
  margin: 2.4em auto;
  padding: 0;
  border: 0;
  text-align: center;
  max-width: 34ch;
}
.pullquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 340;
  line-height: 0.4;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.4rem, 1.15rem + 1.2vw, 1.85rem);
  line-height: 1.35;
  color: var(--teal-ink);
  text-wrap: balance;
}
.pullquote + p { margin-top: 0; }

/* End-of-essay mark */
.article-end {
  margin-top: 3rem;
  text-align: center;
  color: var(--rose);
}
.article-end svg { width: 26px; height: 26px; display: inline-block; }

/* --- Keep reading: horizontal next-article card --- */
.keep-reading-inner { max-width: 780px; margin-inline: auto; }
.keep-reading-inner .kicker { margin-bottom: 1.4rem; }
.jnext {
  flex-direction: row;
  align-items: stretch;
}
.jnext .jcard-photo {
  aspect-ratio: auto;
  flex: 0 0 38%;
  min-height: 200px;
}
.jnext .jcard-body { padding: 1.5rem 1.6rem; }

/* --- Reading progress bar (article pages) --- */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
}
.read-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
}

/* --- Journal responsive --- */
@media (max-width: 1020px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .jfeat { grid-template-columns: 1fr; }
  .jfeat-media { min-height: 0; aspect-ratio: 16 / 9; }
  .article-body { font-size: 1.04rem; }
}
@media (max-width: 640px) {
  .journal-grid { grid-template-columns: 1fr; }
  .jnext { flex-direction: column; }
  .jnext .jcard-photo { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
  .dropcap::first-letter { font-size: 3.3em; }
}

/* --- Journal reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .jfeat:hover .jfeat-media img,
  .jcard:hover .jcard-photo img { transform: none; }
}

/* ============================================================
   LEGAL PAGES — additive extension (append-only)
   terms.html + privacy.html. Reuses the article layer
   (.article-hero, .article-body, .article-h2) and adds only:
   a "pending legal review" notice, disc lists for clauses,
   and an anchor-offset helper. Nothing above this line was
   modified.
   ============================================================ */

/* --- Placeholder notice: impossible to miss, on-palette --- */
.legal-notice {
  margin: 0 0 2.4rem;
  padding: 1.25rem 1.45rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--gold-soft);
  border: 1.5px dashed color-mix(in srgb, #8a5a12 50%, transparent);
  color: #6d4610;
  font-size: 0.95rem;
  line-height: 1.55;
}
.legal-notice p + p { margin-top: 0.5em; }
.legal-notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: #8a5a12;
  color: var(--white);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

/* --- Clause lists (global reset removes bullets; restore) --- */
.legal-list {
  list-style: disc;
  padding-left: 1.35rem;
  margin: 1.15em 0 1.35em;
}
.legal-list li + li { margin-top: 0.55em; }
.legal-list li::marker { color: var(--rose-deep); }

/* --- In-page anchors (#cookies, #contact) clear the header --- */
.article-body .article-h2[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
