:root {
  --ink: #090907;
  --ink-soft: #15140f;
  --paper: #eae4d6;
  --paper-dim: #b9b1a1;
  --rust: #b45132;
  --sage: #a8b3a1;
  --acid: #d7e84b;
  --line: rgba(234, 228, 214, 0.18);
  --serif: Iowan Old Style, Baskerville, Times New Roman, serif;
  --sans: Helvetica Neue, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
}

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--paper-dim);
  font-size: 12px;
}

.nav-links a,
.footer-links a,
.legal-toc a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.legal-toc a:hover {
  color: var(--paper);
}

.nav-cta {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  min-height: 100svh;
  padding-top: 86px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh clamp(38px, 6vw, 98px) 64px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 700;
}

.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 10px;
  background: currentColor;
  vertical-align: middle;
  content: "";
}

h1,
h2,
p {
  text-wrap: pretty;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(58px, 7.25vw, 118px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.hero h1 em,
.section-heading h2 em,
.manifesto-line em,
.legal-aside h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.hero-intro {
  max-width: 480px;
  margin: 34px 0 0;
  color: var(--paper-dim);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--acid);
  color: var(--ink);
}

.button-primary:hover {
  background: #e5f459;
}

.availability {
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.commitment-line {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 430px);
  margin-top: auto;
  padding-top: 60px;
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 9px;
  font-weight: 700;
}

.commitment-line .line {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--line);
}

.commitment-line .line i {
  display: block;
  width: 1.333%;
  min-width: 8px;
  height: 1px;
  background: var(--acid);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--sage);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.015);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.hero-visual:hover img {
  transform: scale(1.04);
}

.visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 7, 0.12), transparent 45%, rgba(9, 9, 7, 0.6));
}

.visual-caption {
  position: absolute;
  right: 34px;
  bottom: 34px;
  margin: 0;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.6;
}

.day-stamp {
  position: absolute;
  top: 25%;
  left: -1px;
  display: grid;
  width: 148px;
  padding: 18px 20px;
  border: 1px solid rgba(234, 228, 214, 0.38);
  border-left: 0;
  background: rgba(9, 9, 7, 0.82);
  backdrop-filter: blur(10px);
}

.day-stamp span {
  letter-spacing: 0.2em;
  font-size: 8px;
}

.day-stamp strong {
  margin-left: -4px;
  font-size: 74px;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.day-stamp small {
  justify-self: end;
  color: var(--paper-dim);
  font-size: 10px;
}

.method {
  padding: clamp(90px, 12vw, 170px) clamp(24px, 6vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.5fr) 1.5fr;
  align-items: start;
  gap: 30px;
  margin-bottom: 82px;
}

.section-heading h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-card {
  min-height: 330px;
  padding: 30px 38px 38px;
  border-right: 1px solid var(--line);
}

.method-card:first-child {
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 120px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.method-card h3 {
  margin: 0 0 16px;
  font-size: clamp(23px, 2.2vw, 34px);
  letter-spacing: -0.04em;
}

.method-card p {
  max-width: 340px;
  margin: 0;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
}

.manifesto {
  display: flex;
  min-height: 78svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--rust);
  color: #f1e9da;
  text-align: center;
}

.manifesto-kicker {
  margin: 0 0 34px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 9px;
  font-weight: 700;
}

.manifesto-line {
  margin: 0;
  font-size: clamp(56px, 9vw, 144px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.button-light {
  margin-top: 54px;
  background: var(--paper);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 140px;
  padding: 28px 42px;
  color: var(--paper-dim);
  font-size: 10px;
  border-top: 1px solid var(--line);
}

.site-footer > p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.copyright {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy .reveal:nth-child(2) { transition-delay: 80ms; }
.hero-copy .reveal:nth-child(3) { transition-delay: 160ms; }
.hero-copy .reveal:nth-child(4) { transition-delay: 240ms; }
.hero-visual.reveal { transition-delay: 120ms; }

/* Legal pages */
.legal-page {
  background: #11100c;
}

.legal-header {
  position: relative;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.55fr);
  max-width: 1500px;
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-aside {
  position: sticky;
  top: 0;
  min-width: 0;
  align-self: start;
  min-height: calc(100vh - 86px);
  padding: 86px 54px 48px;
  border-right: 1px solid var(--line);
}

.legal-aside h1 {
  margin: 0;
  font-size: clamp(52px, 5.4vw, 88px);
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.legal-aside > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.legal-toc {
  display: grid;
  gap: 12px;
  margin-top: 72px;
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  font-weight: 700;
}

.legal-content {
  min-width: 0;
  padding: 82px clamp(38px, 7vw, 110px) 120px;
}

.legal-content section {
  max-width: 820px;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 30px;
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content h2 {
  margin: 0 0 26px;
  font-size: clamp(29px, 3vw, 44px);
  letter-spacing: -0.045em;
}

.legal-content h3 {
  margin: 34px 0 12px;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}

.legal-content p,
.legal-content li {
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.legal-content strong {
  color: var(--paper);
  font-weight: 700;
}

.legal-content a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(234, 228, 214, 0.35);
  text-underline-offset: 4px;
}

.legal-content a:hover {
  text-decoration-color: var(--acid);
}

.legal-lead {
  margin-bottom: 76px !important;
  color: var(--paper) !important;
  font-size: clamp(27px, 3vw, 43px) !important;
  letter-spacing: -0.025em;
  line-height: 1.24 !important;
}

.legal-table {
  margin: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  border-bottom: 1px solid var(--line);
}

.legal-row span {
  padding: 20px 18px;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.5;
}

.legal-row span + span {
  border-left: 1px solid var(--line);
}

.legal-row-head span {
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
}

.notice-box {
  margin: 30px 0;
  padding: 24px 26px 6px;
  border: 1px solid rgba(215, 232, 75, 0.45);
  background: rgba(215, 232, 75, 0.05);
}

.contact-panel {
  margin-top: 54px;
  padding: 48px !important;
  border: 1px solid var(--line) !important;
  background: var(--ink-soft);
}

.contact-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(36px, 5vw, 70px);
}

.contact-panel > a {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--acid);
  font-family: var(--sans);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
}

.contact-panel > p:last-child {
  margin-bottom: 0;
  font-size: 14px;
}

.legal-footer {
  grid-template-columns: 1fr auto;
  min-height: 92px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .site-header .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 760px;
    padding: 110px 34px 50px;
  }

  .hero h1 {
    font-size: clamp(62px, 13vw, 108px);
  }

  .hero-visual {
    height: 82svh;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-card,
  .method-card:first-child {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 72px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    border: 0;
  }

  .legal-aside {
    position: static;
    min-height: auto;
    padding: 72px 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-toc {
    grid-template-columns: repeat(4, max-content);
    max-width: 100%;
    overflow-x: auto;
    margin-top: 50px;
    padding-bottom: 6px;
  }

  .legal-content {
    padding: 64px 34px 100px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 72px;
    padding: 0 18px;
  }

  .nav-cta {
    font-size: 8px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-copy {
    min-height: calc(100svh - 72px);
    padding: 70px 22px 32px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
    line-height: 0.88;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .commitment-line {
    padding-top: 56px;
  }

  .hero-visual {
    height: 75svh;
    min-height: 560px;
  }

  .day-stamp {
    top: 20%;
    width: 126px;
  }

  .day-stamp strong {
    font-size: 62px;
  }

  .method {
    padding: 92px 18px;
  }

  .section-heading {
    margin-bottom: 52px;
  }

  .section-heading h2 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .method-card {
    padding: 26px 24px 30px;
  }

  .step-number {
    margin-bottom: 54px;
  }

  .manifesto {
    min-height: 72svh;
  }

  .manifesto-line {
    font-size: clamp(52px, 16vw, 82px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }

  .copyright {
    text-align: left;
  }

  .legal-aside {
    padding: 62px 22px;
  }

  .legal-aside h1 {
    font-size: 58px;
  }

  .legal-toc {
    grid-template-columns: repeat(7, max-content);
  }

  .legal-content {
    padding: 54px 22px 80px;
  }

  .legal-content section {
    padding: 44px 0;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
  }

  .legal-lead {
    margin-bottom: 54px !important;
    font-size: 27px !important;
  }

  .legal-row {
    grid-template-columns: 1fr;
  }

  .legal-row span + span {
    padding-top: 0;
    border-left: 0;
  }

  .legal-row-head {
    display: none;
  }

  .contact-panel {
    padding: 30px 24px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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