:root {
  color-scheme: dark;
  --stage: #11110f;
  --ink: #f2f0e9;
  --muted: #b2b0a7;
  --line: rgba(242, 240, 233, 0.17);
  --paper: #ece9df;
  --paper-ink: #1b1a17;
  --red: #ed4a3b;
  --aqua: #8dd8d3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--stage);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 5vw, 72px);
}
.wordmark {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 29px;
  text-decoration: none;
}
.header-link {
  border-bottom: 1px solid rgba(242, 240, 233, 0.55);
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(880px, 94vh);
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(22px, 7vw, 110px) 90px;
}
.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 9, 0.98) 0%, rgba(10, 10, 9, 0.88) 36%, rgba(10, 10, 9, 0.24) 73%, rgba(10, 10, 9, 0.45) 100%);
}
.hero-content { position: relative; width: min(680px, 100%); }
.status, .eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.status { display: flex; align-items: center; gap: 9px; color: var(--aqua); }
.status span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; }
.hero h1 {
  margin: 30px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(88px, 13vw, 196px);
  font-weight: 400;
  line-height: 0.78;
}
.headline {
  margin: 38px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}
.headline em { color: var(--red); font-weight: 400; }
.intro { max-width: 570px; margin: 30px 0 0; color: var(--muted); font-size: clamp(16px, 1.6vw, 20px); line-height: 1.65; }
.primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 14px 20px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.primary-action span, .secondary-action span { font-size: 20px; transition: transform 160ms ease; }
.primary-action:hover span, .secondary-action:hover span { transform: translateX(4px); }
.scroll-cue { position: absolute; z-index: 2; right: clamp(22px, 5vw, 72px); bottom: 34px; color: var(--muted); font-size: 12px; text-decoration: none; }

.workflow {
  background: var(--paper);
  color: var(--paper-ink);
  padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 110px);
}
.section-heading { display: grid; grid-template-columns: 0.65fr 1.25fr 1fr; gap: 50px; align-items: start; }
.section-heading .eyebrow { padding-top: 12px; color: #6e6a62; }
.section-heading h2, .closing h2 { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(48px, 6vw, 88px); font-weight: 400; line-height: 0.96; }
.section-heading > p:last-child, .closing > p { margin: 8px 0 0; color: #666259; font-size: 16px; line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 100px 0 0; padding: 0; border-top: 1px solid #bbb7ad; list-style: none; }
.steps li { min-height: 300px; padding: 30px 34px 30px 0; border-right: 1px solid #bbb7ad; }
.steps li + li { padding-left: 34px; }
.steps li:last-child { border-right: 0; }
.step-number { color: var(--red); font-size: 12px; font-weight: 600; }
.steps h3 { margin: 80px 0 15px; font-family: "Instrument Serif", Georgia, serif; font-size: 32px; font-weight: 400; }
.steps p { margin: 0; color: #666259; line-height: 1.65; }

.closing { padding: clamp(90px, 12vw, 180px) clamp(22px, 7vw, 110px); }
.closing .eyebrow { color: var(--aqua); }
.closing h2 { max-width: 920px; margin-top: 30px; }
.closing > p { max-width: 630px; color: var(--muted); margin-top: 28px; }
.secondary-action { background: var(--ink); color: var(--stage); }
footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px clamp(22px, 5vw, 72px); border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
footer .wordmark { color: var(--ink); font-size: 24px; }
footer a:last-child { text-underline-offset: 4px; }

@media (max-width: 820px) {
  .hero { min-height: 780px; align-items: flex-end; }
  .hero-visual { object-position: 70% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(10, 10, 9, 0.99) 0%, rgba(10, 10, 9, 0.84) 50%, rgba(10, 10, 9, 0.25) 100%); }
  .hero h1 { font-size: clamp(82px, 27vw, 130px); }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; margin-top: 70px; }
  .steps li, .steps li + li { min-height: 0; padding: 26px 0 40px; border-right: 0; border-bottom: 1px solid #bbb7ad; }
  .steps h3 { margin-top: 36px; }
  footer { align-items: flex-start; flex-direction: column; }
}

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