/* =====================================================
   AUREUS, Site stylesheet (v3.1)
   Removed: cursor dot, marquee, in-content image dividers.
   Pattern: wall-to-wall hero image at top of every page,
   text content below. No images thereafter on each page.
   ===================================================== */

@font-face {
  font-family: 'Switzer';
  src: url('assets/fonts/Switzer-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Switzer';
  src: url('assets/fonts/Switzer-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

:root {
  --cream: #F5F1E8;
  --cream-pale: #FAF7F0;
  --cream-deep: #ECE6D7;
  --cream-edge: #D9D2BF;
  --ink: #0E0E0C;
  --ink-soft: #2A2926;
  --ink-medium: #4D4B45;
  --ink-muted: #807E76;
  --ink-faint: #B0AEA4;
  --vermillion: #C4453A;
  --rule: rgba(14, 14, 12, 0.12);
  --rule-light: rgba(14, 14, 12, 0.06);
  --rule-strong: rgba(14, 14, 12, 0.32);
  --serif: 'Fraunces', 'Times New Roman', Times, serif;
  --sans: 'Switzer', -apple-system, system-ui, 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga", "calt";
}

/* Vermillion period, brand signature */
.dot {
  color: var(--vermillion);
  font-weight: 700;
  font-size: 1.15em;
  vertical-align: baseline;
  line-height: 0;
}
.dot::before { content: '.'; }

/* =====================================================
   SCROLL FADE-IN SYSTEM
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =====================================================
   NAV (with wordmark, replacing icon)
   ===================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(245, 241, 232, 0.86);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--rule);
}
.nav-left { display: flex; align-items: center; position: relative; }
.nav-mark {
  height: 28px;
  width: auto;
  display: block;
  transition: opacity 0.4s ease;
}
/* Two wordmark images stacked; cross-fade based on nav scroll state */
.nav-mark.over-hero { position: absolute; top: 0; left: 0; opacity: 1; }
.nav-mark.scrolled-mark { position: relative; opacity: 0; }
nav.scrolled .nav-mark.over-hero { opacity: 0; }
nav.scrolled .nav-mark.scrolled-mark { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-right a {
  font-size: 14px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.4s ease;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
nav.scrolled .nav-right a {
  color: var(--ink-soft);
  text-shadow: none;
}
.nav-right a:hover { color: var(--vermillion); }
nav.scrolled .nav-right a:hover { color: var(--vermillion); }
.nav-right a.current { color: var(--vermillion); }
nav.scrolled .nav-right a.current { color: var(--vermillion); }

/* =====================================================
   LAYOUT
   ===================================================== */
section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* =====================================================
   WALL-TO-WALL HERO IMAGE
   Same structure on every page: full-bleed image at
   top, content below.
   ===================================================== */
.hero, .page-hero {
  padding: 0;
  background: var(--cream);
  position: relative;
}

.hero-image-fullbleed {
  width: 100%;
  height: 70vh;
  min-height: 520px;
  max-height: 760px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-image-fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Subtle dark gradient at the top of every hero image,
   so the nav remains readable against any photograph */
.hero-image-fullbleed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* =====================================================
   HERO CONTENT (text below image)
   ===================================================== */
.hero-text {
  padding-top: 120px;
  padding-bottom: 140px;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.018em;
  max-width: 920px;
  font-variation-settings: "opsz" 144;
}

/* =====================================================
   PAGE HERO CONTENT (interior pages, below image)
   ===================================================== */
.page-hero-content {
  padding-top: 120px;
  padding-bottom: 140px;
  border-bottom: 1px solid var(--rule);
}
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.page-hero-eyebrow .num {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--vermillion);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}
.page-hero-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 200px;
}
.page-hero-statement {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.15;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 1000px;
  font-variation-settings: "opsz" 144;
}

/* =====================================================
   SECTION SHARED
   ===================================================== */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.section-eyebrow .num {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--vermillion);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 200px;
}
.h-section {
  font-family: var(--serif);
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}

/* =====================================================
   OVERVIEW / PROPOSITION
   ===================================================== */
.overview {
  padding: 140px 0 160px;
  background: var(--cream-pale);
  border-top: 1px solid var(--rule);
}
.overview-body { max-width: 760px; }
.overview-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.overview-body p:last-child { margin-bottom: 0; }
.overview-body p strong { color: var(--ink); font-weight: 500; }
.overview-body a {
  color: var(--vermillion);
  text-decoration: none;
  border-bottom: 1px solid var(--vermillion);
  padding-bottom: 1px;
  font-weight: 500;
}
.overview-body a:hover { opacity: 0.7; }

.proposition {
  padding: 140px 0 160px;
  background: var(--cream-pale);
  border-top: 1px solid var(--rule);
}
.proposition-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.proposition-single { max-width: 760px; }
.proposition-right p, .proposition-single p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.proposition-right p:last-child, .proposition-single p:last-child { margin-bottom: 0; }
.proposition-right strong, .proposition-single strong { color: var(--ink); font-weight: 500; }

.principle-deep {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.principle-deep:last-child { border-bottom: 1px solid var(--rule); }
.principle-deep .num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--vermillion);
  font-weight: 400;
}
.principle-deep h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.principle-deep p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 660px;
}
.principle-deep p:last-child { margin-bottom: 0; }

/* =====================================================
   MECHANICS
   ===================================================== */
.mechanics {
  padding: 140px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.mechanics-head { max-width: 760px; margin-bottom: 80px; }
.mechanics-head .h-section { margin-bottom: 24px; }
.mechanics-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 620px;
}
.steps { display: grid; grid-template-columns: 1fr; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr 1.6fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step-index {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.step-index::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vermillion);
  display: inline-block;
}
.step-name {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.step-body { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.step-body p { margin-bottom: 16px; }
.step-body p:last-child { margin-bottom: 0; }

/* =====================================================
   FAQ
   ===================================================== */
.faq { padding: 140px 0; background: var(--cream-deep); border-top: 1px solid var(--rule); }
.faq-head { max-width: 720px; margin-bottom: 80px; }
.faq-list { max-width: 920px; }
.faq-item { border-top: 1px solid var(--rule-strong); transition: background 0.25s; }
.faq-item:last-child { border-bottom: 1px solid var(--rule-strong); }
.faq-item:hover { background: rgba(196, 69, 58, 0.02); }
.faq-q {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 32px;
  padding: 32px 0;
  align-items: baseline;
  cursor: pointer;
}
.faq-q:hover .faq-q-text { color: var(--vermillion); }
.faq-q-num { font-family: var(--serif); color: var(--vermillion); font-size: 16px; font-weight: 400; }
.faq-q-text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.faq-q-toggle { position: relative; width: 20px; height: 20px; align-self: center; }
.faq-q-toggle::before, .faq-q-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink-soft);
  transition: transform 0.35s ease;
}
.faq-q-toggle::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-q-toggle::after { top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-q-toggle::after { transform: translateX(-50%) rotate(90deg); }
.faq-a {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 36px; }
.faq-a p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 620px; }

/* =====================================================
   CLOSING LINK
   ===================================================== */
.closing-link {
  padding: 140px 0;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.closing-link-inner { max-width: 640px; margin: 0 auto; padding: 0 32px; }
.closing-link-inner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.2;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 144;
}
.closing-link-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.25s, color 0.25s, border-color 0.25s;
}
.closing-link-button:hover {
  gap: 20px;
  color: var(--vermillion);
  border-bottom-color: var(--vermillion);
}

/* =====================================================
   LETTER (closing block)
   ===================================================== */
.letter {
  padding: 160px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.letter-inner { max-width: 680px; margin: 0 auto; padding: 0 32px; }
.letter-mark { height: 32px; width: auto; margin-bottom: 56px; display: block; }
.letter-head {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 144;
}
.letter p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; }
.letter p a {
  color: var(--vermillion);
  text-decoration: none;
  border-bottom: 1px solid var(--vermillion);
  padding-bottom: 2px;
  font-weight: 500;
}
.letter-form { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--rule); }
.letter-form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.letter-form-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
}
.letter-form-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 6px 0;
  font-family: inherit;
  font-size: 17px;
  color: var(--ink);
}
.letter-form-input::placeholder { color: var(--ink-faint); }
.letter-form-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  padding: 6px 0 6px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.letter-form-btn:hover { color: var(--vermillion); }
.letter-form-btn .arrow { width: 18px; height: 1px; background: currentColor; position: relative; }
.letter-form-btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -2px;
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
}
.letter-form-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--serif);
  font-weight: 300;
}

/* =====================================================
   FOUNDERS / BIO
   ===================================================== */
.bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 100px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.bio:last-of-type { border-bottom: 1px solid var(--rule); }
.bio-photo {
  width: 280px;
  height: 360px;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--cream-pale) 100%);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.bio-photo-initial {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 300;
  color: var(--ink-faint);
  font-variation-settings: "opsz" 144;
}
.bio-photo-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.bio-photo::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  background: var(--vermillion);
  border-radius: 50%;
}
.bio-info .bio-name {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144;
}
.bio-info .bio-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 32px;
}
.bio-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 620px;
}
.bio-info p:last-of-type { margin-bottom: 0; }
.bio-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 32px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.bio-meta a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.bio-meta a:hover { color: var(--vermillion); border-bottom-color: var(--vermillion); }

/* =====================================================
   JOURNAL
   ===================================================== */
.journal-block { padding: 100px 0; border-top: 1px solid var(--rule); }
.journal-block:last-of-type { border-bottom: 1px solid var(--rule); }
.journal-block-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.journal-block-left .h-section { margin-bottom: 0; }
.journal-block-right p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.journal-block-right p:last-child { margin-bottom: 0; }
.journal-block-right strong { color: var(--ink); font-weight: 500; }
.social-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.social-card {
  padding: 32px 36px;
  border: 1px solid var(--rule);
  border-bottom: none;
  border-right: none;
  text-decoration: none;
  color: var(--ink);
  background: var(--cream-pale);
  transition: background 0.25s, transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 140px;
}
.social-grid .social-card:nth-child(odd) { border-left: 1px solid var(--rule); }
.social-grid .social-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
.social-grid .social-card:last-child { border-right: 1px solid var(--rule); }
.social-grid .social-card:nth-child(2n) { border-right: 1px solid var(--rule); }
.social-card:hover { background: var(--cream); transform: translateY(-3px); }
.social-card:hover .social-name { color: var(--vermillion); }
.social-platform {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.social-name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
  letter-spacing: -0.015em;
}
.social-handle { font-size: 13px; color: var(--ink-medium); margin-top: auto; }
.future-note {
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--cream-pale);
  border-left: 2px solid var(--vermillion);
}
.future-note p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-medium);
  font-weight: 300;
  margin: 0;
  font-variation-settings: "opsz" 144;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}
.contact-left p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 420px;
}
.contact-reasons { display: flex; flex-direction: column; }
.contact-reason {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  align-items: baseline;
  transition: background 0.25s;
}
.contact-reason:hover { background: rgba(196, 69, 58, 0.02); }
.contact-reason:last-child { border-bottom: 1px solid var(--rule); }
.contact-reason h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.contact-reason p { font-size: 14px; line-height: 1.6; color: var(--ink-muted); }
.contact-reason a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  text-align: right;
  justify-self: end;
  transition: color 0.2s, border-color 0.2s;
}
.contact-reason a:hover { color: var(--vermillion); border-bottom-color: var(--vermillion); }
.contact-form-wrap {
  padding: 100px 0;
  background: var(--cream-pale);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.contact-form { max-width: 640px; margin: 0 auto; padding: 0 32px; }
.contact-form h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 40px;
  font-variation-settings: "opsz" 144;
}
.contact-form-row { margin-bottom: 32px; padding-bottom: 8px; border-bottom: 1px solid var(--rule-strong); }
.contact-form-row label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.contact-form-row input,
.contact-form-row textarea,
.contact-form-row select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 17px;
  color: var(--ink);
  padding: 6px 0;
  resize: vertical;
}
.contact-form-row textarea { min-height: 100px; line-height: 1.5; }
.contact-form-submit {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 16px 36px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s;
}
.contact-form-submit:hover { background: var(--vermillion); }
.contact-meta-strip { padding: 100px 56px; background: var(--cream); }
.contact-meta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-meta-block-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 16px;
}
.contact-meta-block-content {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}
.contact-meta-block-content a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  display: inline-block;
  margin-right: 12px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-meta-block-content a:hover { color: var(--vermillion); border-bottom-color: var(--vermillion); }
.contact-meta-block-content .sub {
  font-size: 14px;
  color: var(--ink-muted);
  font-family: var(--sans);
  display: block;
  margin-top: 6px;
}

/* =====================================================
   PROSE
   ===================================================== */
.prose-page { padding: 100px 0 140px; }
.prose { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.prose h2 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 72px 0 24px;
  font-variation-settings: "opsz" 144;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 40px 0 16px;
  letter-spacing: -0.005em;
}
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 20px; }
.prose p strong { color: var(--ink); font-weight: 500; }
.prose ul { list-style: none; margin: 20px 0 28px; padding: 0; }
.prose ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vermillion);
}
.prose .callout { margin: 40px 0; padding: 28px 32px; border-left: 2px solid var(--vermillion); background: var(--cream-pale); }
.prose .callout p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--ink-medium);
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.prose .updated {
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--serif);
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: var(--ink); color: var(--ink-faint); padding: 80px 56px 40px; }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}
.footer-left .wordmark { height: 32px; width: auto; margin-bottom: 24px; display: block; }
.footer-left p { font-size: 13px; color: rgba(245, 241, 232, 0.55); line-height: 1.7; max-width: 320px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.footer-col-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 241, 232, 0.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(245, 241, 232, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--vermillion); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(245, 241, 232, 0.4);
  letter-spacing: 0.04em;
}
.footer-bottom .legal { font-size: 12px; max-width: 540px; text-align: right; line-height: 1.6; }

/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-mark { height: 22px; }
  .nav-right a:nth-child(n+4) { display: none; }
  .nav-right { gap: 18px; }
  .nav-right a { font-size: 13px; }

  .hero-image-fullbleed { height: 50vh; min-height: 360px; }
  .hero-text, .page-hero-content { padding: 80px 24px 100px; }

  .container { padding: 0 24px; }
  .overview, .proposition, .mechanics, .faq, .letter, .closing-link, .contact-form-wrap { padding: 80px 0; }

  .proposition-grid { grid-template-columns: 1fr; gap: 32px; }
  .principle-deep { grid-template-columns: 60px 1fr; gap: 16px; padding: 40px 0; }
  .principle-deep h3 { font-size: 24px; }

  .step { grid-template-columns: 80px 1fr; gap: 16px; padding: 36px 0; }
  .step-body { grid-column: 1 / -1; }
  .step-name { font-size: 24px; }

  .faq-q { grid-template-columns: 40px 1fr 30px; gap: 16px; }
  .faq-q-text { font-size: 18px; }
  .faq-a { grid-template-columns: 40px 1fr 30px; gap: 16px; }

  .bio { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .bio-photo { width: 100%; height: 320px; max-width: 280px; }

  .journal-block-inner { grid-template-columns: 1fr; gap: 24px; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card { border-bottom: none; }
  .social-card:last-child { border-bottom: 1px solid var(--rule); }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
  .contact-reason { grid-template-columns: 1fr; gap: 12px; }
  .contact-reason a { justify-self: start; text-align: left; }
  .contact-meta-strip { padding: 60px 24px; }
  .contact-meta-strip-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom .legal { text-align: left; }
}

/* =====================================================
   PRODUCT PAGE
   ===================================================== */

/* Pricing card, centrepiece of the product page */
.product-pricing {
  padding: 140px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.pricing-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--cream-pale);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
}
.pricing-card-left {
  padding: 56px;
  border-right: 1px solid var(--rule);
}
.pricing-card-right {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--cream);
}
.pricing-card-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 28px;
}
.pricing-card-title {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144;
}
.pricing-card-blurb {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 380px;
}
.pricing-card-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.pricing-card-includes li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.pricing-card-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vermillion);
}
.pricing-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.pricing-card-price {
  font-family: var(--serif);
  font-size: 76px;
  line-height: 1;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.pricing-card-period {
  font-size: 15px;
  color: var(--ink-muted);
  font-weight: 400;
}
.pricing-card-annual {
  font-size: 14px;
  color: var(--ink-medium);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.pricing-card-annual strong {
  color: var(--ink);
  font-weight: 500;
}
.pricing-card-annual .saving {
  color: var(--vermillion);
  font-weight: 500;
  margin-left: 4px;
}
.pricing-card-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  padding: 18px 32px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.25s, gap 0.25s;
}
.pricing-card-button:hover {
  background: var(--vermillion);
  gap: 18px;
}
.pricing-card-cta-note {
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--serif);
  font-weight: 300;
  text-align: center;
  margin-top: 4px;
  font-variation-settings: "opsz" 96;
}

/* Frequency note, framed as a feature */
.product-frequency {
  padding: 140px 0;
  background: var(--cream-pale);
  border-top: 1px solid var(--rule);
}
.product-frequency-inner {
  max-width: 760px;
}
.product-frequency p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.product-frequency p:last-child { margin-bottom: 0; }
.product-frequency p strong { color: var(--ink); font-weight: 500; }

/* Future range, subtle, lower down */
.product-future {
  padding: 140px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
}
.product-future-inner {
  max-width: 760px;
}
.product-future p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.product-future p:last-child { margin-bottom: 0; }
.product-future p strong { color: var(--ink); font-weight: 500; }
.product-future-table {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.product-future-cell {
  padding: 20px 24px 20px 0;
  border-right: 1px solid var(--rule);
}
.product-future-cell:last-child { border-right: none; padding-left: 24px; padding-right: 0; }
.product-future-cell:not(:first-child) { padding-left: 24px; }
.product-future-cell-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.product-future-cell-value {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.product-future-cell-value .small {
  font-size: 14px;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

/* Get notified form (closing) */
.product-notify {
  padding: 160px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.product-notify-inner { max-width: 680px; margin: 0 auto; padding: 0 32px; }
.product-notify-mark { height: 32px; width: auto; margin-bottom: 56px; display: block; }
.product-notify-head {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 144;
}
.product-notify p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* Mobile */
@media (max-width: 900px) {
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-card-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 40px 32px; }
  .pricing-card-right { padding: 40px 32px; }
  .pricing-card-price { font-size: 56px; }
  .pricing-card-title { font-size: 28px; }

  .product-pricing, .product-frequency, .product-future, .product-notify { padding: 80px 0; }

  .product-future-table { grid-template-columns: 1fr; gap: 0; }
  .product-future-cell { border-right: none; border-bottom: 1px solid var(--rule); padding: 20px 0 !important; }
  .product-future-cell:last-child { border-bottom: none; }
}
