/* =========================================================
   Service Starters · Option B · Long-form Essay
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --bg: #FAFAF7;
  --ink: #181818;
  --ink-soft: #6B6B6B;
  --ink-faint: #9A9A92;
  --rule: #DDD8CF;
  --rule-soft: #ECE8DF;
  --accent: #2D4A3E;
  --accent-hover: #1F3429;
  --accent-soft: #E8EEEA;
  --photo-bg: #ECE8DF;

  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --col-read: 680px;
  --col-wide: 920px;

  --pad: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

@media (min-width: 1024px) {
  body { font-size: 17px; }
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 150ms ease; }
a:hover { color: var(--accent); }

::selection { background: var(--accent-soft); color: var(--ink); }

/* ---------- LAYOUT CONTAINERS ---------- */
.read,
.wide {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.read { max-width: calc(var(--col-read) + (var(--pad) * 2)); }
.wide { max-width: calc(var(--col-wide) + (var(--pad) * 2)); }

/* ---------- TABLE OF CONTENTS ---------- */
/* Mobile: full-screen overlay below topbar, toggled by button */
.toc {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  background: var(--bg);
  padding: 28px var(--pad) 32px;
  z-index: 60;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
  counter-reset: toc;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .toc { top: 64px; }
}

/* Lock body scroll and slide bottombar out when the mobile TOC is open */
@media (max-width: 1279px) {
  body:has(.toc.is-open) { overflow: hidden; }
  body:has(.toc.is-open) .bottombar { transform: translateY(110%); }
}

.toc.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Desktop: fixed sidebar, scroll-driven visibility */
@media (min-width: 1280px) {
  .toc {
    top: 112px;
    left: max(40px, calc((100vw - 1280px) / 2 + 24px));
    right: auto;
    width: 200px;
    background: transparent;
    border-bottom: 0;
    border-left: 0;
    padding: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    transform: translateY(-6px);
  }
  .toc.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  /* Desktop ignores is-open (toggle is hidden) */
  .toc.is-open:not(.is-visible) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }
}

.toc-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
  font-weight: 500;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  position: relative;
  border-bottom: 1px solid var(--rule-soft);
}
.toc-list li:last-child { border-bottom: 0; }

@media (min-width: 1280px) {
  .toc-list li {
    padding: 4px 0;
    border-bottom: 0;
    gap: 10px;
  }
}

.toc-list li::before {
  content: counter(toc, lower-roman) ".";
  counter-increment: toc;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  min-width: 26px;
  flex-shrink: 0;
  transition: color 200ms ease;
  line-height: 1;
}
@media (min-width: 1280px) {
  .toc-list li::before {
    font-size: 12px;
    min-width: 22px;
  }
}

.toc-list a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.4;
  transition: color 180ms ease, transform 180ms ease;
  border: 0;
  padding-bottom: 0;
  display: inline-block;
}
@media (min-width: 1280px) {
  .toc-list a { font-size: 13px; }
}
.toc-list a:hover {
  color: var(--ink);
}
@media (min-width: 1280px) {
  .toc-list a:hover { transform: translateX(2px); }
}

.toc-list li.is-active a {
  color: var(--accent);
  font-weight: 500;
}
.toc-list li.is-active::before {
  color: var(--accent);
}

/* ---------- TOC TOGGLE BUTTON (mobile) ---------- */
.toc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 4px 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color 150ms ease;
  letter-spacing: 0.005em;
}
.toc-toggle:hover {
  color: var(--accent);
}
.toc-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease;
  width: 11px;
  height: 7px;
}
.toc-toggle[aria-expanded="true"] .toc-toggle-icon {
  transform: rotate(180deg);
}

@media (min-width: 1280px) {
  .toc-toggle { display: none; }
}

/* ---------- TOP BAR ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-brand {
  margin-right: auto;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.topbar-cta {
  display: none;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--accent);
  letter-spacing: 0.005em;
  line-height: 1.4;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.topbar-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 74, 62, 0.18);
}

@media (min-width: 768px) {
  .topbar-cta { display: inline-block; }
}

@media (min-width: 1280px) {
  .topbar-inner {
    max-width: none;
    padding-left: max(40px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(40px, calc((100vw - 1280px) / 2 + 24px));
  }
}

/* ---------- BOTTOM CTA BAR (mobile only) ---------- */
.bottombar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  padding: 12px var(--pad);
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(0);
  transition: transform 280ms ease;
}
.bottombar.is-hidden {
  transform: translateY(110%);
}
.bottombar-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.4;
}
.bottombar-cta {
  display: inline-block;
  padding: 9px 20px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--accent);
  letter-spacing: 0.005em;
  line-height: 1.4;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.bottombar-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 74, 62, 0.18);
}

body { padding-bottom: 76px; }
@media (min-width: 768px) {
  .bottombar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.018em;
  font-weight: 400;
}

h1 {
  font-size: clamp(40px, 5.6vw, 60px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) { h1 { font-size: 62px; } }
@media (min-width: 1280px) { h1 { font-size: 68px; } }

h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

p { margin-bottom: 1.1em; }
em { font-style: italic; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}

/* ---------- SECTIONS ---------- */
section { padding: 56px 0; }
@media (min-width: 1024px) { section { padding: 96px 0; } }

/* Section dividers */
.ornament {
  text-align: center;
  color: var(--ink-faint);
  font-size: 18px;
  letter-spacing: 1.2em;
  padding: 8px 0 0 8px;
  margin: 56px 0;
  user-select: none;
}
@media (min-width: 1024px) { .ornament { margin: 80px 0; } }

/* ---------- HERO ---------- */
.hero {
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (min-width: 1024px) {
  .hero { padding-top: 112px; padding-bottom: 96px; }
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 14ch;
}
@media (min-width: 768px) { .hero h1 { max-width: 18ch; } }

.hero h1 .title-mark {
  font: inherit;
  color: inherit;
}

.hero-deck {
  font-family: var(--sans);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 40px;
  max-width: 56ch;
}
@media (min-width: 1024px) {
  .hero-deck { margin-bottom: 56px; }
}

.hero-caption {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  margin-bottom: 32px;
  display: flex; flex-wrap: wrap; align-items: baseline;
}
.hero-caption .sep { margin: 0 8px; color: var(--ink-faint); }

.hero-cta {
  margin-top: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--accent);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  letter-spacing: 0.005em;
  cursor: pointer;
}
.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(45, 74, 62, 0.18);
}

/* ---------- PHOTO BOXES ---------- */
.photo {
  background: var(--photo-bg);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 24px;
  text-align: center;
  border-radius: 2px;
  position: relative;
}
.photo-caption {
  font-family: var(--sans);
  font-size: 11px;
  font-style: italic;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 380px;
}
.photo.tall { aspect-ratio: 4 / 5; }
.photo.wide { aspect-ratio: 16 / 9; }
.photo.square { aspect-ratio: 1 / 1; }

.figure {
  margin: 32px auto;
  max-width: var(--col-wide);
  padding: 0 var(--pad);
}
@media (min-width: 1024px) { .figure { margin: 56px auto; } }
@media (min-width: 1280px) { .figure { max-width: 720px; } }

/* Collapse adjacent section padding so figure margins handle the spacing */
section:has(+ .figure) { padding-bottom: 0; }
.figure + section { padding-top: 32px; }
@media (min-width: 1024px) {
  .figure + section { padding-top: 56px; }
}

.figure-caption {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.005em;
}

/* ---------- INLINE CATEGORY LIST ---------- */
.cat-list {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .cat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }
}
.cat-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 20px;
  row-gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  align-content: start;
}
@media (min-width: 768px) {
  .cat-item {
    grid-template-columns: 96px 1fr;
    column-gap: 24px;
    padding: 28px 0;
  }
}
.cat-photo {
  grid-column: 1;
  grid-row: 1 / span 2;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--photo-bg);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 8px;
}
.cat-photo-label {
  font-family: var(--sans);
  font-size: 9px;
  font-style: italic;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 768px) {
  .cat-photo-label { font-size: 10px; }
}
.cat-title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.012em;
}
.cat-desc {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.cat-foot {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 28px;
  padding-left: 0;
}

/* ---------- WEEK LIST ---------- */
.week-list {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  list-style: none;
  padding: 0;
}
.week-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.week-head {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.week-head .week-date {
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin-left: 6px;
}
.week-body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  margin-top: 6px;
}

/* ---------- ABOUT NIK — framed portrait floated inside the prose ---------- */
.nik-photo {
  float: right;
  width: 240px;
  margin: 4px 0 20px 32px;
  shape-outside: margin-box;
}
@media (max-width: 600px) {
  .nik-photo {
    float: none;
    width: 200px;
    margin: 0 0 24px 0;
  }
}
.nik-photo .photo {
  background: #FFFFFF;
  padding: 6px;
}
.nik-photo .photo::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--photo-bg);
  border: 1px solid var(--rule);
  z-index: 0;
}
.nik-photo .photo-caption {
  position: relative;
  z-index: 1;
  font-size: 11px;
  line-height: 1.45;
  max-width: 180px;
  padding: 0 8px;
}

/* ---------- PULL QUOTE / TESTIMONIAL ---------- */
.pullquote {
  margin: 56px auto;
  max-width: 720px;
  padding: 0 var(--pad);
  text-align: center;
}
@media (min-width: 1024px) { .pullquote { margin: 80px auto; } }

.pullquote-marks {
  text-align: center;
  color: var(--ink-faint);
  font-size: 16px;
  letter-spacing: 1.2em;
  margin-bottom: 24px;
  user-select: none;
}
.pullquote q {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
  quotes: '"' '"';
}
.pullquote-attribution {
  font-family: var(--sans);
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  letter-spacing: 0.01em;
}
.pullquote-attribution strong {
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}

/* ---------- WHAT YOU GET ---------- */
.get-list {
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.get-list li {
  font-family: var(--sans);
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  font-size: 16px;
  line-height: 1.55;
}
.get-list li:last-child { border-bottom: 1px solid var(--rule); }
.get-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 18px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 500;
}

/* ---------- THE PROMISE — editorial headline ---------- */
.promise-headline {
  color: var(--accent);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  margin-bottom: 28px;
}
@media (min-width: 1024px) {
  .promise-headline { margin-bottom: 36px; }
}

/* ---------- PERSONAL COMMITMENT — signed letter ---------- */
.commit-letter {
  max-width: 56ch;
  border-left: 1px solid var(--accent);
  padding-left: 22px;
}
@media (min-width: 768px) {
  .commit-letter {
    margin-left: 40px;
    padding-left: 28px;
  }
}
.commit-letter .eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
}
.commit-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 0.9em;
}
.commit-body:last-of-type {
  margin-bottom: 0;
}
.commit-body em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}
.commit-sign {
  font-family: var(--serif);
  margin-top: 32px;
  margin-bottom: 0;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  text-align: right;
  letter-spacing: -0.005em;
}

/* Collapse padding between Promise and Commitment — the ornament handles the visual break */
#promise { padding-bottom: 0; }
#commitment { padding-top: 0; }
#commitment .ornament { margin: 8px 0 16px; }
@media (min-width: 1024px) {
  #commitment .ornament { margin: 12px 0 20px; }
}
/* ---------- WHAT THIS ISN'T ---------- */
.isnt p {
  font-style: italic;
  color: var(--ink-soft);
}
.isnt p strong { color: var(--ink); font-style: normal; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 32px; border-top: 1px solid var(--rule); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-item summary.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 0;
}
.faq-item summary.faq-q::-webkit-details-marker { display: none; }
.faq-item summary.faq-q::marker { content: ''; }

.faq-q-text {
  flex: 1;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.015em;
  transition: color 150ms ease;
}
@media (min-width: 768px) {
  .faq-q-text { font-size: 24px; line-height: 1.25; }
}
.faq-q-text .faq-num {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  margin-right: 10px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .faq-q-text .faq-num { font-size: 22px; }
}

.faq-icon {
  font-family: var(--sans);
  font-size: 24px;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform 240ms ease, color 200ms ease;
  line-height: 1;
  font-weight: 300;
  margin-top: 2px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item summary.faq-q:hover .faq-q-text {
  color: var(--accent);
}

.faq-a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding: 0 0 28px;
  margin: 0;
  max-width: 60ch;
}

/* ---------- FINAL PITCH ---------- */
.final {
  text-align: center;
}
.final .ornament { margin-top: 0; margin-bottom: 40px; }
.final p {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.012em;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.7em;
}
.final p:last-of-type { margin-bottom: 0; }
.final .sign {
  font-family: var(--serif);
  margin-top: 36px;
  font-size: 22px;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.005em;
}

/* ---------- APPLY FORM ---------- */
.apply {
  background: #F4F0E7;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 14px;
  padding: 9px 12px;
  border: 1px solid var(--rule);
  background: #FFFFFF;
  border-radius: 3px;
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 88px; resize: vertical; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}

.checkbox {
  font-family: var(--sans);
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.form-submit {
  margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
}
.form-disclaimer {
  font-family: var(--sans);
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.55;
}
/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

/* Display area — massive brand wordmark with horizontal staff lines */
.footer-display {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-display { padding: 72px 0 60px; }
}
.footer-staff {
  position: absolute;
  left: 0;
  right: 0;
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
  width: 100%;
  z-index: 0;
}
.footer-staff:nth-of-type(1) { top: 22%; }
.footer-staff:nth-of-type(2) { top: 50%; }
.footer-staff:nth-of-type(3) { top: 78%; }
.footer-display-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(56px, 14vw, 180px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0 var(--pad);
}

/* 3-column utility area — middle col wider so the sitemap can split into two */
.footer-cols {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 56px var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-top: 1px solid var(--rule);
}
@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    padding: 64px var(--pad);
  }
}
.footer-col--stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  background: #FFFFFF;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.footer-subscribe:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.footer-subscribe input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 9px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.footer-subscribe input::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}
.footer-subscribe button {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}
.footer-subscribe button:hover {
  background: var(--accent-hover);
  transform: translateX(1px);
}
.footer-col-meta {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .footer-nav {
    columns: 2;
    column-gap: 32px;
  }
}
.footer-nav li {
  display: block;
  break-inside: avoid;
  margin-bottom: 8px;
}
.footer-nav li:last-child { margin-bottom: 0; }
.footer-nav a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color 150ms ease, transform 150ms ease;
  display: inline-block;
}
.footer-nav a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-contact-row {
  font-family: var(--sans);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.footer-contact-row a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  letter-spacing: 0.005em;
  transition: color 150ms ease, text-decoration-color 150ms ease;
  overflow-wrap: anywhere;
  hyphens: none;
}
.footer-contact-row a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* Bottom strip */
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 18px var(--pad);
  max-width: var(--col-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: var(--ink-soft);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--accent);
}
.footer-legal span {
  margin: 0 8px;
  color: var(--ink-faint);
}

/* ---------- UTILITIES ---------- */
.muted { color: var(--ink-soft); }

/* Reading-column body prose adjustments */
.prose p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.15em;
}
@media (min-width: 1024px) {
  .prose p { font-size: 17px; }
}
.prose p:last-child { margin-bottom: 0; }

.prose-lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
