/* ==========================================================================
   MV Caretaking — studio editorial
   Fraunces (display, roman, optical axis) + Inter (text)
   Palette: sea-ink / warm paper / brass
   Type scale: 10 / 11 / 12 / 14 / 15 / 16 / 18 + display clamps
   ========================================================================== */

:root {
  --ink: #101c26;
  --ink-2: #33424f;
  --ink-3: #6c7883;
  --paper: #f4efe5;
  --paper-2: #ede6d6;
  --white: #fbf8f2;
  --brass: #a97f3c;
  --brass-dark: #8c6528;
  --gold: #cfa864;
  --sea: #3e6d85;
  --sea-pale: #dfe8ea;
  --line: rgba(16, 28, 38, 0.16);
  --line-soft: rgba(16, 28, 38, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-text: "Inter", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quick: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-color: var(--brass) var(--paper-2); /* Firefox */
}

::-webkit-scrollbar { width: 12px; }

::-webkit-scrollbar-track { background: var(--paper-2); }

::-webkit-scrollbar-thumb {
  background: var(--brass);
  border: 3px solid var(--paper-2);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover { background: var(--brass-dark); }

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* one material: paper grain over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.menu-open { overflow: hidden; }

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

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

.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* no italics anywhere — brand rule */
em, i, cite { font-style: normal; }

.accent { color: var(--brass-dark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  z-index: 100;
}

.skip-link:focus { left: 12px; top: 12px; }

/* ---------- micro-labels: exactly two tokens ---------- */

.meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.meta-label-b {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ==========================================================================
   Reveal — section heads and the form only
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-line-inner { animation: none !important; transform: none; }
  .lantern { animation: none !important; }
  .px { transform: none !important; }
  .service-row::after { transition: none !important; transform: scaleX(1) !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease,
              backdrop-filter 0.35s ease,
              transform 0.45s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(244, 239, 229, 0.9);
  backdrop-filter: blur(12px);
  border-color: var(--line-soft);
}

.site-header.hidden { transform: translateY(-100%); }

@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
  .site-header.hidden { transform: none; }
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 74px;
}

/* ---------- brand lockup ---------- */

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark { width: 40px; height: 40px; flex: 0 0 auto; display: block; }

.brand-text { display: flex; flex-direction: column; gap: 2px; }

.brand-text b {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.brand-text small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.site-nav { display: flex; gap: 28px; justify-self: center; }

.site-nav a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.15s var(--ease-quick);
}

.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.site-nav a.active { color: var(--ink); }

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-clock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.clock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

.header-cta {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.15s var(--ease-quick);
}

.header-cta:hover { background: var(--brass-dark); }

/* ---------- mobile toggle ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 11px 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .site-nav, .header-clock { display: none; }
  .header-inner { display: flex; justify-content: space-between; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}

/* ---------- mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 36px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-nav { display: flex; flex-direction: column; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 350;
  color: var(--paper);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 239, 229, 0.12);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
              color 0.2s ease;
  transition-delay: calc(var(--i) * 70ms);
}

.mobile-menu.open .mobile-nav a { opacity: 1; transform: none; }

.mobile-nav a:hover { color: var(--gold); }

.mobile-menu-foot {
  position: absolute;
  bottom: 30px;
  left: 36px;
  right: 36px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.4);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s var(--ease-quick), color 0.15s var(--ease-quick),
              border-color 0.15s var(--ease-quick), transform 0.15s ease;
}

.btn:active { transform: scale(0.98); }

.btn-solid { background: var(--ink); color: var(--paper); }

.btn-solid:hover { background: var(--brass-dark); }

.btn-full { width: 100%; }

.btn:disabled { opacity: 0.55; cursor: default; }

.btn-arrow { display: inline-block; transition: transform 0.3s var(--ease-out); }

.btn:hover .btn-arrow { transform: translateX(5px); }

.btn.loading { color: transparent; position: relative; }

.btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(244, 239, 229, 0.35);
  border-top-color: var(--paper);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.15s var(--ease-quick), border-color 0.15s var(--ease-quick);
}

.arrow-link:hover { color: var(--brass-dark); border-color: var(--brass-dark); }

.arrow-link,
.back-link { position: relative; }

.arrow-link::after,
.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--brass-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.arrow-link:hover::after,
.back-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a::after,
  .footer-col a::after,
  .arrow-link::after,
  .back-link::after { transition: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 100% at 70% -10%, #e7edee 0%, var(--sea-pale) 40%, var(--paper) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 130px;
  padding-bottom: 230px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: clamp(28px, 4vh, 48px);
}

.hero-meta {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  text-align: right;
}

.hero-meta dt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
}

.hero-meta dd {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 720px) {
  .hero-meta div:nth-child(3) { display: none; }
}

.hero-title {
  font-size: clamp(50px, 9.6vw, 140px);
  font-weight: 380;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  margin-bottom: clamp(30px, 4.5vh, 52px);
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.09em;
  margin-bottom: -0.06em;
}

.hero-line .hero-line-inner {
  display: block;
  transform: translateY(102%);
  animation: line-up 1s var(--ease-out) forwards;
}

.hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.14s; }

.hero-title .indent { padding-left: clamp(48px, 12vw, 220px); }

@keyframes line-up {
  to { transform: translateY(0); }
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-2);
  max-width: 440px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-foot { flex-direction: column; }
  .hero-top { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-meta { text-align: left; }
}

.hero-scene {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 1;
  pointer-events: none;
}

.hero-scene svg { display: block; width: 100%; height: auto; overflow: visible; }

.hero-scene .px { will-change: transform; }

/* single living detail: the lantern breathes */
.lantern { animation: lantern-glow 5.5s ease-in-out infinite; }

@keyframes lantern-glow {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.9; }
}

/* ==========================================================================
   Towns band (static)
   ========================================================================== */

.band {
  background: var(--ink);
  color: var(--paper);
  padding: 15px 0;
}

.band-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
}

.band-inner span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.band-inner span.g { color: var(--gold); }

@media (max-width: 720px) {
  .band-inner { justify-content: flex-start; }
}

/* ==========================================================================
   Section head
   ========================================================================== */

.section { padding: clamp(90px, 12vh, 150px) 0; }

.sec-head { margin-bottom: clamp(44px, 7vh, 80px); }

.sec-head-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: clamp(28px, 4vh, 44px);
}

.sec-index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brass-dark);
  font-variant-numeric: tabular-nums;
}

.sec-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.sec-rule { flex: 1; }

.sec-head h2 {
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  max-width: 760px;
  margin-left: clamp(0px, 7vw, 130px);
}

.sec-lead {
  position: relative;
  margin-top: 20px;
  margin-left: clamp(0px, 14vw, 260px);
  font-size: 16px;
  color: var(--ink-3);
  max-width: 520px;
}

.sec-lead::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: calc(clamp(24px, 3vw, 48px) * -1);
  width: clamp(16px, 2vw, 32px);
  height: 1px;
  background: var(--brass);
}

@media (max-width: 760px) {
  .sec-head h2, .sec-lead { margin-left: 0; }
  .sec-lead::before { display: none; }
}

/* ==========================================================================
   Ghost section numerals
   ========================================================================== */

.services-section,
.promise-section,
.signup-section {
  position: relative;
  z-index: 0;
  overflow: clip; /* clip, not hidden — keeps position:sticky children alive */
}

.services-section > .shell,
.promise-section > .shell,
.signup-section > .shell { position: relative; }

.sec-ghost {
  position: absolute;
  z-index: -1;
  top: -0.16em;
  right: clamp(-60px, -3vw, -12px);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(160px, 24vw, 340px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  color: rgba(16, 28, 38, 0.055);
  pointer-events: none;
  user-select: none;
}

@supports (-webkit-text-stroke: 1px black) {
  .sec-ghost {
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(16, 28, 38, 0.13);
  }
}

.promise-section .sec-ghost { color: rgba(244, 239, 229, 0.05); }

@supports (-webkit-text-stroke: 1px black) {
  .promise-section .sec-ghost {
    color: transparent;
    -webkit-text-stroke-color: rgba(244, 239, 229, 0.11);
  }
}

/* ==========================================================================
   Manifesto — offset editorial column
   ========================================================================== */

.manifesto {
  position: relative;
  z-index: 0;
  padding: clamp(100px, 14vh, 170px) 0 clamp(70px, 9vh, 110px);
}

/* drafting-grid moment: faint baselines behind the big paragraph */
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(
    180deg,
    var(--line-soft) 0,
    var(--line-soft) 1px,
    transparent 1px,
    transparent 56px
  );
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
  pointer-events: none;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(12px, 2vw, 28px);
  align-items: start;
}

.manifesto-side {
  grid-column: 1 / 4;
  position: sticky;
  top: 130px;
}

.manifesto-text {
  grid-column: 5 / 13;
  font-family: var(--font-display);
  font-size: clamp(25px, 3.2vw, 42px);
  font-weight: 350;
  line-height: 1.34;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  margin-right: clamp(-48px, -3vw, -12px); /* breaks past the shell padding */
}

.manifesto-text strong { font-weight: 500; color: var(--ink); }

@media (max-width: 760px) {
  .manifesto-grid { display: block; }
  .manifesto-side { position: static; margin-bottom: 18px; }
  .manifesto-text { margin-right: 0; }
}

/* ==========================================================================
   Services — full-bleed rows, honest links
   ========================================================================== */

.services-section {
  background: var(--white);
  padding: clamp(110px, 14vh, 150px) 0 clamp(70px, 9vh, 100px);
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  transition: background 0.35s ease;
}

.service-row:hover { background: var(--ink); }

/* border draws itself in when the row enters the viewport */
.service-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
  transition-delay: var(--row-delay, 0s);
}

.service-row.drawn::after { transform: scaleX(1); }

.service-link {
  display: grid;
  grid-template-columns: clamp(56px, 6vw, 100px) 44px 1fr auto 40px;
  gap: clamp(14px, 2.5vw, 32px);
  align-items: center;
  padding: clamp(26px, 4vh, 40px) clamp(20px, 4vw, 48px);
  text-decoration: none;
  color: inherit;
}

.service-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(16, 28, 38, 0.22);
  font-variant-numeric: tabular-nums;
  transition: color 0.35s ease;
}

/* deliberate asymmetry — every other entry steps in */
.service-row:nth-child(even) .service-link {
  padding-left: calc(clamp(20px, 4vw, 48px) + clamp(20px, 4vw, 80px));
}

.service-row:hover .service-num { color: var(--gold); }

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--ink-2);
  align-self: start;
  transition: color 0.35s ease;
}

.service-icon svg { display: block; width: 100%; height: 100%; }

.service-row:hover .service-icon { color: var(--gold); }

.service-body h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.35s ease;
}

.service-row:hover .service-body h3 { color: var(--paper); }

.service-body p {
  color: var(--ink-3);
  max-width: 620px;
  font-size: 15px;
  transition: color 0.35s ease;
}

.service-row:hover .service-body p { color: rgba(244, 239, 229, 0.65); }

.service-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  justify-self: end;
  transition: color 0.35s ease;
}

.service-row:hover .service-tag { color: var(--gold); }

.service-arrow {
  justify-self: end;
  font-size: 22px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}

.service-row:hover .service-arrow { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .service-link { grid-template-columns: 36px 1fr; align-items: start; }
  .service-tag, .service-arrow, .service-num { display: none; }
  .service-icon { width: 36px; height: 36px; }
  .service-row:nth-child(even) .service-link {
    padding-left: clamp(20px, 4vw, 48px);
  }
}

/* ==========================================================================
   Split sections
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
}

.split-left { position: sticky; top: 120px; }

.split-left h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  margin: 18px 0;
}

.split-left p { color: var(--ink-3); font-size: 16px; max-width: 380px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-left { position: static; }
}

/* ---------- Approach ---------- */

.method-list { list-style: none; }

.method-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.method-item:first-child { padding-top: 6px; }

.method-diagram { width: 120px; color: var(--ink-2); }

.method-diagram svg { display: block; width: 100%; height: auto; }

.method-item h3 {
  font-size: 22px;
  font-weight: 450;
  font-variation-settings: "opsz" 28;
  margin-bottom: 10px;
}

.method-item p { color: var(--ink-3); font-size: 15px; max-width: 520px; }

@media (max-width: 560px) {
  .method-item { grid-template-columns: 1fr; }
  .method-diagram { width: 96px; }
}

/* ==========================================================================
   About / status (dark)
   ========================================================================== */

.promise-section {
  background: var(--ink);
  color: rgba(244, 239, 229, 0.8);
  padding: clamp(100px, 14vh, 160px) 0;
}

.promise-section .sec-head-top { border-color: rgba(244, 239, 229, 0.18); }

.promise-section .sec-name { color: var(--paper); }

.promise-section .sec-index { color: var(--gold); }

.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.promise-title {
  color: var(--paper);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  margin-bottom: 36px;
}

.promise-body p {
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 560px;
}

.promise-body strong { color: var(--paper); }

/* roadmap */

.roadmap {
  border: 1px solid rgba(244, 239, 229, 0.18);
  border-radius: 2px;
  padding: 10px 26px;
  position: sticky;
  top: 120px;
}

.road-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 239, 229, 0.1);
}

.road-row:last-child { border-bottom: none; }

.road-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(244, 239, 229, 0.4);
  align-self: center;
}

.road-row.current .road-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.road-row h4 {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 239, 229, 0.85);
}

.road-row.current h4 { color: var(--paper); font-weight: 600; }

.road-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.35);
}

.road-row.current .road-status { color: var(--gold); }

@media (max-width: 860px) {
  .promise-grid { grid-template-columns: 1fr; }
  .roadmap { position: static; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section {
  background: var(--white);
  padding: clamp(70px, 9vh, 100px) 0 clamp(110px, 14vh, 150px);
}

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 420;
  font-variation-settings: "opsz" 28;
  color: var(--ink);
  transition: color 0.15s var(--ease-quick);
}

.faq-q:hover { color: var(--brass-dark); }

.faq-q .qt { flex: 1; }

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.4px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), background 0.3s ease;
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item.open .faq-icon { background: var(--ink); border-color: var(--ink); }

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--paper); }

.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a-inner { overflow: hidden; }

.faq-a-inner p {
  color: var(--ink-3);
  font-size: 15px;
  max-width: 560px;
  padding: 0 48px 26px 4px;
}

/* ==========================================================================
   Signup
   ========================================================================== */

.signup-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--sea-pale) 100%);
}

.signup-copy .sec-head-top { margin-bottom: 30px; }

.signup-copy h2 {
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  margin-bottom: 20px;
}

.signup-copy > p { color: var(--ink-3); font-size: 16px; max-width: 400px; }

.signup-points {
  list-style: none;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.signup-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}

.signup-points li::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  flex: 0 0 auto;
}

.interest-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 48px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.form-field { margin-bottom: 26px; }

.form-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 4px;
}

.optional, .required {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: none;
}

.required { color: var(--brass-dark); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 2px;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-size: 16px;
  font-family: var(--font-text);
  color: var(--ink);
  background: transparent;
  transition: border-color 0.15s var(--ease-quick);
}

.form-field select { cursor: pointer; }

.form-field textarea::placeholder { color: #b3b9bf; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.form-field input.invalid {
  border-bottom-color: #ab4a2f;
  box-shadow: 0 1px 0 #ab4a2f;
}

.field-error {
  margin-top: 7px;
  font-size: 12px;
  color: #ab4a2f;
  font-weight: 500;
}

.form-field textarea { resize: vertical; min-height: 46px; }

.hp-field { position: absolute; left: -9999px; }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  min-height: 22px;
}

.form-status.ok { color: #2c7a4e; font-weight: 600; }
.form-status.err { color: #ab4a2f; font-weight: 600; }

.form-fineprint {
  margin-top: 14px;
  font-size: 12px;
  text-align: center;
  color: var(--ink-3);
}

.interest-form.success .form-row,
.interest-form.success .form-field,
.interest-form.success #submit-btn,
.interest-form.success .form-fineprint { display: none; }

.form-success { text-align: center; padding: 28px 8px; }

.form-success .success-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 24px;
  animation: pop-in 0.5s var(--ease-out);
}

@keyframes pop-in {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.form-success h3 { font-size: 25px; margin-bottom: 10px; }

.form-success p { color: var(--ink-3); font-size: 15px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(244, 239, 229, 0.65);
  overflow: hidden;
}

.footer-top {
  padding: clamp(80px, 10vh, 120px) 0 60px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.12);
}

.footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-title {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  color: var(--paper);
  max-width: 640px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  white-space: nowrap;
  transition: color 0.15s var(--ease-quick);
}

.footer-cta:hover { color: var(--gold); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding: 52px 0;
}

@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: grid; gap: 8px; }

.footer-col a {
  position: relative;
  padding-bottom: 2px;
  color: rgba(244, 239, 229, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s var(--ease-quick);
}

.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.footer-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-col a:hover { color: var(--gold); }

.footer-col p { font-size: 14px; line-height: 1.8; }

.footer-col .tab { font-variant-numeric: tabular-nums; }

@media (max-width: 720px) {
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
}

/* outlined wordmark — descenders deliberately sliced by the rule below */
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(58px, 15vw, 236px);
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: rgba(244, 239, 229, 0.09);
  white-space: nowrap;
  user-select: none;
  text-align: left;
  margin: clamp(30px, 7vh, 70px) 0 -0.12em;
}

@supports (-webkit-text-stroke: 1px black) {
  .footer-wordmark {
    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 239, 229, 0.22);
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(244, 239, 229, 0.12);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 229, 0.4);
}

.footer-bottom .disclaimer { max-width: 520px; line-height: 1.7; }

/* ==========================================================================
   Subpages (contact, privacy, terms)
   ========================================================================== */

.subpage-header {
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}

.subpage-header .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

.back-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s var(--ease-quick);
}

.back-link:hover { color: var(--brass-dark); }

.subpage-main {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 80px) clamp(20px, 4vw, 48px) 100px;
}

.subpage-main h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  margin: 10px 0 10px;
}

.subpage-updated { margin-bottom: 44px; }

.subpage-main h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-variation-settings: "opsz" 28;
  margin: 40px 0 12px;
}

.subpage-main p,
.subpage-main li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 12px;
}

.subpage-main ul { padding-left: 22px; margin-bottom: 14px; }

.subpage-main li { margin-bottom: 6px; }

.subpage-main a { color: var(--brass-dark); }

.subpage-main .lead {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 560px;
  margin-bottom: 36px;
}

.subpage-footer {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0 40px;
}

.subpage-footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-3);
}

.subpage-footer a { color: var(--ink-3); text-decoration: none; margin-left: 18px; }

.subpage-footer a:hover { color: var(--brass-dark); }

.contact-form-wrap { margin-top: 40px; }

/* ==========================================================================
   Film grain — dark surfaces (white-noise variant of the page texture)
   ========================================================================== */

.site-footer,
.band { position: relative; z-index: 0; }

.promise-section::after,
.site-footer::after,
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='ng'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23ng)'/%3E%3C/svg%3E");
}
