/* ─────────────────────────────────────────────────────────────
   RESET + TOKENS
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #fff4f4;
  --cream-2: #ffecec;
  --cream-3: #ffe0e0;
  --coral: #a92e28;
  --coral-deep: #8a1f1a;
  --blue: #006287;
  --yellow: #6d5a00;
  --yellow-warm: #d4a017;
  --ink: #2a0b10;
  --ink-2: #4d2128;
  --ink-soft: #824c53;
  --rule: #e9c5c8;

  --serif: 'Plus Jakarta Sans', sans-serif; /* display */
  --sans: 'Be Vietnam Pro', sans-serif;     /* body */

  /* typographic scale, 6 deliberate steps */
  --t-display: clamp(4.5rem, 13vw, 11.5rem);
  --t-h1:      clamp(2.25rem, 5vw, 4rem);
  --t-h2:      clamp(1.5rem, 2.4vw, 2.25rem);
  --t-lead:    clamp(1.125rem, 1.4vw, 1.375rem);
  --t-body:    1.0625rem;
  --t-small:   0.8125rem;
  --t-eyebrow: 0.6875rem;

  --col-gutter: clamp(16px, 2vw, 28px);
  --page-pad:   clamp(20px, 4vw, 56px);
  --page-max:   1400px;
  --r-xl: 3rem;
  --r-lg: 2rem;
  --r-md: 1.25rem;
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--t-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

/* paper grain — subtle SVG noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.2  0 0 0 0 0.22  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

::selection { background: var(--coral); color: var(--cream); }

/* ─────────────────────────────────────────────────────────────
   LAYOUT PRIMITIVES
   ───────────────────────────────────────────────────────────── */
.page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  position: relative;
  z-index: 2;
}
.full-bleed { width: 100%; position: relative; z-index: 2; }

/* 12-col grid */
.grid12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gutter);
}

/* Utility */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
  margin: 0 0.7em;
  vertical-align: middle;
}
.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.ital { font-style: italic; }
.blue-ink { color: var(--blue); }
.coral-ink { color: var(--coral); }
.yellow-ink { color: var(--yellow); }

/* ─────────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  /* Full-viewport width, matching the footer, so the nav band never looks inset */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
  box-sizing: border-box;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}
.wordmark::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
  transform: translateY(1px);
}
.nav-meta {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: none;
}
@media (min-width: 860px) {
  .nav-meta { display: inline-block; }
}
.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 11px 22px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--cream);
  text-decoration: none;
  border: 1px solid var(--coral);
  transition: transform 0.18s ease, background 0.18s ease;
}
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-1px); }
.btn-coral svg { display: block; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 11px 22px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background 0.18s ease, color 0.18s ease;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ─────────────────────────────────────────────────────────────
   HERO (58 / 42 offset, vertically staggered)
   ───────────────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(40px, 6vw, 88px);
  padding-bottom: clamp(48px, 8vw, 120px);
  position: relative;
}
.hero-masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 56px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero-masthead .issue {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-soft);
}
.hero-masthead .issue em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-left { padding-top: clamp(10px, 2vw, 28px); }
.hero-right { padding-top: clamp(0px, 4vw, 72px); } /* vertical offset */

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-eyebrow .n {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--coral);
  padding: 3px 9px;
  border: 1.5px solid var(--coral);
  border-radius: 4px;
  transform: rotate(-1.5deg);
}

.display {
  font-family: var(--serif);
  font-weight: 800;
  font-size: var(--t-display);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-wrap: balance;
}
.display .wave-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.02em;
}
.display .wave-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.12em;
  height: 0.22em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 8 Q 20 2, 40 7 T 78 7 T 116 7 T 154 7 T 198 7' fill='none' stroke='%23a92e28' stroke-width='2.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-period {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}

.hero-lead {
  font-family: var(--sans);
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 34ch;
  margin-top: 28px;
  text-wrap: pretty;
}
.hero-lead em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}
.hero-meta {
  margin-top: 18px;
  font-size: var(--t-small);
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta .star {
  color: var(--yellow-warm);
  letter-spacing: 1px;
}

/* phone mock */
.phone-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
}
.phone {
  position: relative;
  aspect-ratio: 9/19;
  background: #1a0608;
  border-radius: 44px;
  padding: 9px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.08) inset,
    0 40px 60px -20px rgba(77,33,40,0.35),
    0 12px 24px -8px rgba(77,33,40,0.2);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 22px;
  background: #0a0103;
  border-radius: 99px;
  z-index: 3;
}

/* phone — Today screen */
.pt-status {
  display: flex; justify-content: space-between;
  padding: 12px 24px 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
}
.pt-body {
  flex: 1;
  padding: 14px 18px 18px;
  display: flex; flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.pt-greet {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pt-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pt-title .ital { color: var(--blue); font-weight: 700; }
.pt-card {
  border-radius: 22px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(77,33,40,0.05);
  border: 1px solid var(--rule);
}
.pt-card.coral {
  background: var(--coral);
  color: var(--cream);
  border-color: var(--coral);
}
.pt-card .tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.85;
}
.pt-card .big {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.pt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pt-phase {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--rule);
}
.pt-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,98,135,0.12);
}
.pt-phase-label { font-family: var(--serif); font-weight: 700; font-size: 0.78rem; color: var(--ink); }
.pt-phase-sub { font-size: 0.62rem; color: var(--ink-soft); }
.pt-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 10px 12px 6px;
  border-top: 1px solid var(--rule);
}
.pt-nav span {
  font-family: var(--serif);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pt-nav span.active { color: var(--coral); }
.pt-otty {
  position: absolute;
  bottom: 64px; right: -12px;
  width: 72px; height: 72px;
  background: var(--coral);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 8px 16px rgba(77,33,40,0.15);
}
.pt-otty img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

/* mascot peeking behind the phone */
.hero-mascot {
  position: absolute;
  left: -3%; bottom: -4%;
  width: clamp(140px, 18vw, 240px);
  height: auto;
  transform-origin: bottom center;
  animation: mascot-in 1.2s cubic-bezier(.22,.9,.3,1.1) 0.2s both, mascot-sway 7s ease-in-out 1.6s infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes mascot-in {
  0% { transform: translateY(60px) rotate(-8deg); opacity: 0; }
  60% { transform: translateY(-6px) rotate(2deg); opacity: 1; }
  100% { transform: translateY(0) rotate(-1deg); opacity: 1; }
}
@keyframes mascot-sway {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(1deg); }
}

/* small hand-scrawled arrow */
.scrawl-arrow {
  position: absolute;
  width: 90px;
  height: auto;
  color: var(--coral);
}

/* ─────────────────────────────────────────────────────────────
   MANIFESTO BAND (full-bleed coral)
   ───────────────────────────────────────────────────────────── */
.manifesto {
  background: var(--coral);
  color: var(--cream);
  padding: clamp(28px, 4vw, 56px) 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  /* subtle paper grain on top of coral */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.manifesto-inner { position: relative; z-index: 2; }
.manifesto-mark {
  font-family: var(--serif);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.7;
  color: color-mix(in oklab, var(--cream) 25%, transparent);
  margin-bottom: -0.15em;
  user-select: none;
}
.manifesto h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 28ch;
  text-wrap: balance;
}
.manifesto h2 .ital {
  font-style: italic;
  font-weight: 500;
  color: color-mix(in oklab, var(--cream) 75%, var(--yellow-warm) 25%);
}
.manifesto-foot {
  margin-top: clamp(14px, 2vw, 24px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: var(--t-small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 75%, transparent);
}
.manifesto-foot .sig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: color-mix(in oklab, var(--cream) 85%, transparent);
}

/* ─────────────────────────────────────────────────────────────
   FEATURES (alternating editorial spreads)
   ───────────────────────────────────────────────────────────── */
.features { padding: clamp(60px, 8vw, 120px) 0 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
}
.section-head h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
}
.section-head h3 .ital { font-style: italic; font-weight: 600; color: var(--blue); }
.section-head .aside {
  max-width: 30ch;
  font-size: var(--t-small);
  color: var(--ink-soft);
}

.feat {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gutter);
  padding: clamp(48px, 7vw, 96px) 0;
  align-items: center;
  position: relative;
}
.feat + .feat { border-top: 1px dashed var(--rule); }
.feat-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.04em;
}
.feat-kicker {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.feat h4 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 18px;
  text-wrap: balance;
}
.feat h4 .ital { font-style: italic; font-weight: 600; color: var(--blue); }
.feat p {
  font-size: var(--t-body);
  color: var(--ink-2);
  margin-top: 14px;
  max-width: 42ch;
  line-height: 1.6;
}
.feat .pullout {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
  font-size: 1.125rem;
  margin-top: 18px;
  max-width: 36ch;
  border-left: 2px solid var(--coral);
  padding-left: 14px;
}

/* feat variants */
.feat--left .feat-text { grid-column: 1 / span 5; }
.feat--left .feat-visual { grid-column: 7 / span 6; }
.feat--right .feat-text { grid-column: 8 / span 5; order: 2; }
.feat--right .feat-visual { grid-column: 1 / span 6; order: 1; }
@media (max-width: 860px) {
  .feat--left .feat-text, .feat--right .feat-text,
  .feat--left .feat-visual, .feat--right .feat-visual {
    grid-column: 1 / -1; order: initial;
  }
  .feat--right .feat-text { order: 1; }
  .feat--right .feat-visual { order: 2; }
}

/* UI cards — hand-drawn feeling */
.ui-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: 0 30px 50px -20px rgba(77,33,40,0.18);
}

/* Feature 1 visual: cycle ring + nudge */
.ring-wrap {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 440px;
  margin: 0 auto;
}
.ring-wrap svg { width: 100%; height: 100%; overflow: visible; }
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.ring-center .day {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.ring-center .phase {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8B6F96;
  font-weight: 800;
}
.ring-sticker {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 99px;
  border: 1.5px solid var(--ink);
  font-size: 0.9rem;
  transform: rotate(-6deg);
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--ink);
}

/* Feature 2: calendar */
.cal {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 20px;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 30px 50px -20px rgba(77,33,40,0.18);
}
.cal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-head .m {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.cal-head .legend {
  display: flex; gap: 10px;
  font-size: 0.65rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cal-head .legend i {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
}
.cal-grid .dow {
  text-align: center;
  color: #c9b5ba;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 0;
}
.cal-grid .d {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9b5ba;
  position: relative;
  isolation: isolate;
  /* default organic blob shape, overridden per-nth-child for variety */
  border-radius: 52% 48% 54% 46% / 48% 54% 46% 52%;
}

/* per-cell blob variation — 10 distinct hand-drawn radii, cycled */
.cal-grid .d:nth-child(10n+1)  { border-radius: 58% 42% 52% 48% / 48% 56% 44% 52%; }
.cal-grid .d:nth-child(10n+2)  { border-radius: 46% 54% 40% 60% / 58% 44% 56% 42%; }
.cal-grid .d:nth-child(10n+3)  { border-radius: 54% 46% 60% 40% / 42% 58% 42% 58%; }
.cal-grid .d:nth-child(10n+4)  { border-radius: 52% 48% 44% 56% / 56% 40% 60% 44%; }
.cal-grid .d:nth-child(10n+5)  { border-radius: 48% 52% 56% 44% / 50% 46% 54% 50%; }
.cal-grid .d:nth-child(10n+6)  { border-radius: 56% 44% 48% 52% / 44% 56% 48% 52%; }
.cal-grid .d:nth-child(10n+7)  { border-radius: 44% 56% 52% 48% / 54% 42% 58% 46%; }
.cal-grid .d:nth-child(10n+8)  { border-radius: 60% 40% 46% 54% / 42% 58% 44% 56%; }
.cal-grid .d:nth-child(10n+9)  { border-radius: 50% 50% 56% 44% / 56% 46% 54% 44%; }
.cal-grid .d:nth-child(10n)    { border-radius: 48% 52% 42% 58% / 60% 42% 58% 40%; }

/* App phase tokens: storm #B25C6A · chill #5B8C6A · glow #C4880D · zen #3D7A8A · heads-up #8B6F96 */
.cal-grid .d.storm  { background: rgba(178, 92, 106, 0.16); color: #B25C6A; --ring: #B25C6A; }
.cal-grid .d.heads  { background: rgba(139, 111, 150, 0.16); color: #8B6F96; --ring: #8B6F96; }
.cal-grid .d.chill  { background: rgba(91, 140, 106, 0.16); color: #5B8C6A; --ring: #5B8C6A; }
.cal-grid .d.chillg { background: rgba(91, 140, 106, 0.16); color: #5B8C6A; --ring: #5B8C6A; }
.cal-grid .d.glow   { background: rgba(196, 136, 13, 0.16); color: #C4880D; --ring: #C4880D; }
.cal-grid .d.zen    { background: rgba(61, 122, 138, 0.16); color: #3D7A8A; --ring: #3D7A8A; }
.cal-grid .d.blank  { background: transparent; color: #e8d8da; font-weight: 600; border-radius: 0; }

/* today: ring in the current phase's solid color, tracing the blob exactly */
.cal-grid .d.today { font-weight: 800; }
.cal-grid .d.today::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--ring, var(--coral));
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

/* Feature 3: Today "zen zone" card */
.zen-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.zen-card {
  background: var(--blue);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.zen-card .tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; opacity: 0.75; }
.zen-card .q {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
  margin-top: 10px;
  letter-spacing: -0.015em;
}
.zen-card .sig { margin-top: 16px; font-size: 0.8rem; font-style: italic; opacity: 0.85; }
.tip-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 18px;
}
.tip-card .tag { color: var(--coral); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.tip-card h5 { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; margin-top: 6px; letter-spacing: -0.01em; }
.tip-card p { font-size: 0.9rem; color: var(--ink-2); margin-top: 6px; line-height: 1.5; }

/* Feature 4: "How it works" (editorial diagram spread) */
.feat-how {
  padding: clamp(72px, 9vw, 130px) 0;
  margin-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.feat-how::before {
  /* a faint repeating diagonal "reader's diagram" background */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(169, 46, 40, 0.035) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.feat-how > * { position: relative; }

.feat-how .how-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(36px, 5vw, 64px);
}
@media (max-width: 860px) {
  .feat-how .how-head { grid-template-columns: 1fr; align-items: start; }
}
.feat-how .how-head h4 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 14px;
  text-wrap: balance;
}
.feat-how .how-head h4 .ital {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}
.feat-how .how-head-r {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
  justify-self: end;
}
@media (max-width: 860px) {
  .feat-how .how-head-r { justify-self: start; }
}

.feat-how .how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 900px) {
  .feat-how .how-steps { grid-template-columns: 1fr; }
}
.feat-how .how-step {
  padding: 0 clamp(18px, 2.4vw, 36px);
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.feat-how .how-step:first-child {
  padding-left: 0;
  border-left: 0;
}
.feat-how .how-step:last-child { padding-right: 0; }
@media (max-width: 900px) {
  .feat-how .how-step {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .feat-how .how-step:first-child { border-top: 0; padding-top: 0; }
}

/* tiny editorial arrow joining columns */
.feat-how .how-step:not(:first-child)::before {
  content: '→';
  position: absolute;
  left: -12px;
  top: 48px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--coral);
  background: var(--cream);
  padding: 0 4px;
  line-height: 1;
}
@media (max-width: 900px) {
  .feat-how .how-step:not(:first-child)::before { display: none; }
}

.feat-how .how-step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule);
  margin-bottom: 10px;
}
.feat-how .how-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  line-height: 0.85;
  color: var(--coral);
  letter-spacing: -0.04em;
}
.feat-how .how-step-gfx {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
}
.feat-how .how-step-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.feat-how .how-step-sub {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 40ch;
}
.feat-how .how-step-sub em {
  font-style: italic;
  color: var(--coral);
}
.feat-how .how-step-meta {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.feat-how .how-foot {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}
.feat-how .how-foot-mark {
  font-family: var(--serif);
  font-weight: 800;
  font-style: normal;
  font-size: 1.3rem;
  color: var(--coral);
  line-height: 1;
}

/* Feature 5: text-only "reader's letter" + Otty in margin */
.feat-letter {
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.letter-grid { display: grid; grid-template-columns: 3fr 2fr 3fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .letter-grid { grid-template-columns: 1fr; } }
.letter-body h4 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.letter-body h4 .ital { font-style: italic; font-weight: 600; color: var(--blue); }
.letter-body p { margin-top: 16px; max-width: 42ch; line-height: 1.65; color: var(--ink-2); }
.letter-body .micro {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  font-size: var(--t-small);
  color: var(--ink-2);
}
.letter-body .micro div {
  display: flex; gap: 8px; align-items: baseline;
}
.letter-body .micro .m {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--coral);
  min-width: 24px;
}

.letter-middle { text-align: center; position: relative; }
.letter-middle img { width: 100%; max-width: 260px; height: auto; margin: 0 auto; display: block; }
.letter-middle .caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.letter-right {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.letter-right::first-letter {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 800;
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding-right: 10px;
  padding-top: 6px;
  color: var(--coral);
}

/* ─────────────────────────────────────────────────────────────
   PHASE GUIDE (editorial reference spread)
   ───────────────────────────────────────────────────────────── */
.phases {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--rule);
}
.phases .phases-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.phases .phases-intro .kicker {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.phases .phases-intro h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.phases .phases-intro h3 .ital {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}
.phases .phases-intro .aside {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  justify-self: end;
}
@media (max-width: 860px) {
  .phases .phases-intro { grid-template-columns: 1fr; align-items: start; }
  .phases .phases-intro .aside { justify-self: start; }
}

/* timeline strip */
.phase-timeline {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.phase-timeline-row {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.phase-timeline span {
  height: 10px;
  border-radius: 999px;
  display: block;
}
.phase-timeline-scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* phase card grid */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  background: var(--rule);
}
@media (max-width: 1100px) {
  .phase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .phase-grid { grid-template-columns: 1fr; }
}
.phase-card {
  background: #fffaf9;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.phase-card .pc-band {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pc);
}
.phase-card .pc-band .pc-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--pc);
}
.phase-card .pc-name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.1vw, 1.95rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.phase-card .pc-name .ital {
  font-style: italic;
  font-weight: 500;
  color: var(--pc);
  display: block;
  font-size: 0.75em;
  margin-top: 4px;
}
.phase-card .pc-meta {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.phase-card .pc-meta strong {
  color: var(--ink);
  font-weight: 700;
}
.phase-card .pc-desc {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
}
.phase-card .pc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.phase-card .pc-chips span {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--pc);
  background: var(--pc-soft);
  padding: 4px 8px;
  border-radius: 999px;
}
.phase-card .pc-tips {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase-card .pc-tip {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  align-items: baseline;
}
.phase-card .pc-tip .pc-tip-label {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pc);
}
.phase-card .pc-tip .pc-tip-text {
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--ink-2);
}

/* phase tokens */
.phase-card.p-storm  { --pc: #B25C6A; --pc-soft: rgba(178, 92, 106, 0.12); }
.phase-card.p-chill  { --pc: #5B8C6A; --pc-soft: rgba(91, 140, 106, 0.12); }
.phase-card.p-glow   { --pc: #C4880D; --pc-soft: rgba(196, 136, 13, 0.14); }
.phase-card.p-zen    { --pc: #3D7A8A; --pc-soft: rgba(61, 122, 138, 0.12); }
.phase-card.p-heads  { --pc: #8B6F96; --pc-soft: rgba(139, 111, 150, 0.14); }

.phases .phase-foot {
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.phases .phase-foot strong {
  color: var(--ink);
  font-weight: 700;
  font-style: normal;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* ─────────────────────────────────────────────────────────────
   MEET OTTY (lyrical spread)
   ───────────────────────────────────────────────────────────── */
.meet {
  background: var(--cream-2);
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.meet-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .meet-inner { grid-template-columns: 1fr; } }

.meet-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: radial-gradient(circle at 50% 40%, var(--cream-3) 0%, var(--cream-2) 55%, transparent 90%);
  border-radius: var(--r-xl);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.meet-portrait::before {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1.5px dashed var(--rule);
  border-radius: calc(var(--r-xl) * 0.7);
}
.meet-portrait img {
  width: 88%;
  height: auto;
  position: relative;
  z-index: 2;
  transform: translateY(4%);
}
.meet-sticker {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--yellow-warm);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 99px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 3;
}

.meet-copy .eyebrow { margin-bottom: 12px; }
.meet-copy h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.2vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.meet-copy h2 .ital { font-style: italic; font-weight: 600; color: var(--blue); }
.meet-copy .lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink-2);
  margin-top: 24px;
  max-width: 40ch;
}
.meet-copy p.body {
  margin-top: 18px;
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 50ch;
}
.meet-signoff {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--coral);
  letter-spacing: -0.01em;
  transform: rotate(-2deg);
  display: inline-block;
}
.meet-signoff::after {
  content: '';
  display: block;
  width: 90px;
  height: 10px;
  margin-top: 4px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'><path d='M2 6 Q 20 1, 40 5 T 98 5' fill='none' stroke='%23a92e28' stroke-width='2' stroke-linecap='round'/></svg>") no-repeat;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS (zine wall)
   ───────────────────────────────────────────────────────────── */
.quotes { padding: clamp(80px, 10vw, 140px) 0; }
.quotes-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 5vw, 56px); padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.quotes-head h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 18ch;
}
.quotes-head h3 .ital { font-style: italic; font-weight: 600; color: var(--blue); }
.quotes-head .meta {
  display: flex; gap: 24px;
  font-size: var(--t-small);
  color: var(--ink-soft);
  align-items: center;
}
.rating-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 10px;
}
.rating-mark .stars { color: var(--yellow-warm); letter-spacing: 2px; font-size: 1rem; }
.rating-mark .label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); font-weight: 700; }

.quote-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: start;
}
@media (max-width: 860px) { .quote-wall { grid-template-columns: 1fr; } }

.q {
  font-family: var(--serif);
  padding: 22px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 10px 24px -12px rgba(77,33,40,0.12);
  position: relative;
}
.q p { font-weight: 600; line-height: 1.3; color: var(--ink); letter-spacing: -0.01em; }
.q .by { margin-top: 14px; font-family: var(--sans); font-size: var(--t-small); color: var(--ink-soft); font-style: normal; font-weight: 500; }

/* the huge pulled-out one */
.q--big {
  grid-column: span 8;
  background: var(--cream-2);
  border: none;
  box-shadow: none;
  padding: clamp(18px, 3vw, 40px) 8px;
}
.q--big p {
  font-size: clamp(1.75rem, 3.8vw, 3.25rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.q--big p .coral-ink { font-style: italic; }
.q--big .by { margin-top: 24px; font-size: 0.875rem; }

.q--a { grid-column: span 4; transform: rotate(-0.6deg); }
.q--b { grid-column: span 5; }
.q--c { grid-column: span 4; transform: rotate(0.8deg); background: var(--yellow-warm); color: var(--ink); border-color: var(--yellow-warm); }
.q--c p { color: var(--ink); }
.q--c .by { color: color-mix(in oklab, var(--ink) 70%, transparent); }
.q--d { grid-column: span 3; }
.q--e { grid-column: span 5; background: var(--blue); color: var(--cream); border-color: var(--blue); transform: rotate(-0.4deg); }
.q--e p { color: var(--cream); }
.q--e .by { color: color-mix(in oklab, var(--cream) 75%, transparent); }
@media (max-width: 860px) {
  .q--big, .q--a, .q--b, .q--c, .q--d, .q--e { grid-column: 1 / -1; transform: none; }
}

/* press marks */
.press-strip {
  margin-top: clamp(32px, 5vw, 56px);
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
}
.press-strip .label {
  font-family: var(--sans);
  font-style: normal;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.press-strip .mark { font-size: 1rem; font-weight: 500; opacity: 0.85; }
.press-strip .mark strong { color: var(--ink); font-weight: 800; }

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.faq { padding: clamp(60px, 9vw, 120px) 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(24px, 4vw, 72px);
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-intro h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
}
.faq-intro h3 .ital { font-style: italic; font-weight: 600; color: var(--blue); }
.faq-intro p {
  margin-top: 20px;
  color: var(--ink-2);
  max-width: 34ch;
  font-size: 1rem;
}
.faq-intro .contact {
  margin-top: 24px;
  font-size: var(--t-small);
  color: var(--ink-soft);
}
.faq-intro .contact a {
  color: var(--coral);
  font-weight: 600;
}

.faq-list { border-top: 1px solid var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  transition: color 0.18s ease;
}
.faq-q:hover { color: var(--coral); }
.faq-q .n {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--coral);
  min-width: 28px;
  padding-top: 5px;
}
.faq-q .t { flex: 1; }
.faq-q .plus {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after  { width: 2px; height: 14px; transition: transform 0.3s ease; }
.faq-item[open] .faq-q .plus::after { transform: scaleY(0); }
.faq-item[open] .faq-q { color: var(--coral); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item[open] .faq-a { max-height: 420px; }
.faq-a-inner {
  padding: 0 48px 24px 48px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 60ch;
}
.faq-a-inner em { color: var(--blue); font-style: italic; }

/* ─────────────────────────────────────────────────────────────
   CLOSING CTA
   ───────────────────────────────────────────────────────────── */
.closing {
  padding: clamp(80px, 11vw, 160px) 0;
  text-align: center;
  position: relative;
}
.closing .stamp {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.closing h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-wrap: balance;
}
.closing h2 .ital { font-style: italic; font-weight: 600; color: var(--blue); }
.closing .sub {
  margin-top: 24px;
  max-width: 42ch;
  margin-left: auto; margin-right: auto;
  color: var(--ink-2);
  font-size: var(--t-lead);
}
.closing .cta-group {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.closing .mascot-sign {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: clamp(110px, 13vw, 180px);
  transform: rotate(6deg);
  pointer-events: none;
}
@media (max-width: 860px) {
  .closing .mascot-sign { position: static; margin: 28px auto 0; display: block; transform: none; }
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(48px, 7vw, 96px) 0 40px;
  position: relative;
  z-index: 2;
  /* Force full-viewport width even when the host theme or WP wrapper
     constrains content to a max-width. Pulls the footer to align with
     the viewport edges instead of the parent container. */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
  box-sizing: border-box;
}
.foot-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }
.foot-word {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--cream);
}
.foot-word .ital { font-style: italic; font-weight: 600; color: var(--yellow-warm); }
.foot-small { margin-top: 16px; font-size: 0.875rem; color: color-mix(in oklab, var(--cream) 65%, transparent); max-width: 36ch; }
.foot-col h5 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 60%, transparent);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.foot-col a:hover { border-color: var(--cream); }
.news {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding: 6px;
  background: color-mix(in oklab, var(--cream) 8%, transparent);
  border-radius: 99px;
  border: 1px solid color-mix(in oklab, var(--cream) 20%, transparent);
}
.news input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream);
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
}
.news input::placeholder { color: color-mix(in oklab, var(--cream) 55%, transparent); }
.news button {
  background: var(--cream);
  color: var(--ink);
  border: 0;
  border-radius: 99px;
  padding: 8px 16px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.news button:hover { background: var(--yellow-warm); }

.foot-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, var(--cream) 18%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: color-mix(in oklab, var(--cream) 55%, transparent);
}
.foot-bottom .tiny-otty {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in oklab, var(--cream) 40%, transparent);
}
.foot-bottom .tiny-otty img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL (subtle, once)
   ───────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────────────────
   MOBILE POLISH
   Mobile is the priority layout. These overrides tighten spacing,
   center stacked elements, and hide decorative items that collide
   with content on narrow viewports.
   ───────────────────────────────────────────────────────────── */

/* Tablet and below (phones + small tablets) */
@media (max-width: 860px) {
  /* Hero: center the phone instead of hugging the right edge when stacked */
  .phone-wrap { margin: 0 auto; max-width: 320px; }

  /* Hero: the big waving mascot collides with stacked content on phones.
     The phone already has a round Otty avatar, so hiding the wave reads clean. */
  .hero-mascot { display: none; }

  /* Hero CTAs stretch to full width on narrow screens so they're easy to tap. */
  .hero-ctas { width: 100%; }
  .hero-ctas .btn-coral,
  .hero-ctas .btn-ghost { flex: 1 1 220px; justify-content: center; min-height: 48px; }

  /* Hero meta line wraps more readably. */
  .hero-meta { font-size: 0.82rem; }

  /* Manifesto statement gets a bigger floor so it still feels like a headline. */
  .manifesto h2 { font-size: clamp(1.5rem, 6vw, 2.75rem); }

  /* FAQ answers: keep the number-aligned left indent, tighten the right padding. */
  .faq-a-inner { padding: 0 8px 22px 48px; }

  /* Ring visual: stickers shrink so they don't clip the phone section. */
  .ring-wrap { max-width: 340px; }
  .ring-sticker { font-size: 0.82rem; padding: 8px 12px; }

  /* Testimonials: the "big" pulled quote still feels big, but no overflow. */
  .q--big p { font-size: clamp(1.5rem, 8vw, 2.75rem); }

  /* Closing: mascot sits under the CTAs instead of tiled absolutely. */
  .closing { text-align: center; }

  /* Footer: condense the small-print column a touch. */
  .foot-col h5 { margin-bottom: 12px; }
}

/* Narrow phones (375px and under) */
@media (max-width: 400px) {
  :root { --page-pad: 18px; --col-gutter: 14px; }

  /* Section heads stack nicer when there's no room for side-by-side. */
  .section-head,
  .quotes-head,
  .phases .phases-intro,
  .feat-how .how-head { gap: 14px; }

  /* Press strip: allow tighter wrapping. */
  .press-strip { gap: 12px 18px; font-size: 0.85rem; }

  /* Ring stickers scale again on tiny screens. */
  .ring-sticker { font-size: 0.72rem; padding: 6px 10px; }

  /* Round avatar inside the phone: smaller and tucked closer. */
  .pt-otty { width: 58px; height: 58px; bottom: 52px; right: -6px; border-width: 3px; }

  /* Zen card pulled-quote headline trims a bit so it doesn't dominate. */
  .zen-card .q { font-size: 1.15rem; }

  /* Meet Otty signoff stays on one line. */
  .meet-signoff { font-size: 1.5rem; }

  /* Phase cards: inner padding tighter. */
  .phase-card { padding: 22px 18px 20px; }

  /* Nav CTA text shortens implicitly via content — make sure button wraps. */
  .nav-inner { gap: 10px; }
  .btn-coral, .btn-ghost { font-size: 0.82rem; padding: 10px 16px 11px; }
}

/* Respect the user's motion preference. */
@media (prefers-reduced-motion: reduce) {
  .hero-mascot { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ─────────────────────────────────────────────────────────────
   DOC PAGES (Privacy, Terms, Support, and any other Page that
   isn't the static front page).
   ───────────────────────────────────────────────────────────── */
.otty-doc {
  background: var(--cream);
  padding: clamp(48px, 8vw, 96px) var(--page-pad);
  min-height: 60vh;
  position: relative;
  z-index: 2;
}
.otty-doc-inner { max-width: 720px; margin: 0 auto; }
.otty-doc-back {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  margin-bottom: 32px;
}
.otty-doc-back:hover { color: var(--coral-deep); }
.otty-doc-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}
.otty-doc-head h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.otty-doc-date {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: var(--t-small);
  color: var(--ink-soft);
  font-style: italic;
}
.otty-doc-body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.otty-doc-body h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 2em 0 0.6em;
}
.otty-doc-body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 1.6em 0 0.4em;
}
.otty-doc-body p { margin-bottom: 1em; }
.otty-doc-body ul,
.otty-doc-body ol { margin: 0 0 1em 1.4em; }
.otty-doc-body li { margin-bottom: 0.4em; }
.otty-doc-body a {
  color: var(--coral);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}
.otty-doc-body a:hover { color: var(--coral-deep); }
.otty-doc-body strong { color: var(--ink); font-weight: 700; }
.otty-doc-body em { font-style: italic; }
.otty-doc-body hr { border: 0; border-top: 1px solid var(--rule); margin: 2em 0; }
.otty-doc-body blockquote {
  border-left: 3px solid var(--coral);
  margin: 1.4em 0;
  padding: 0.1em 0 0.1em 1.1em;
  font-style: italic;
  color: var(--ink);
}
.otty-doc-body .plain-english {
  background: var(--cream-2);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 0 0 28px;
  font-style: italic;
  color: var(--ink);
}
.otty-doc-body .plain-english strong {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--coral);
  display: block;
  margin-bottom: 6px;
}
