:root {
  --paper: #f7f3ea;
  --ink: #121110;
  --night: #0c0b0a;
  --clay: #c65c43;
  --pine: #1f5148;
  --brass: #c7a06a;
  --sky: #cdd8d4;
  --mist: rgba(18, 17, 16, 0.62);
  --veil: rgba(18, 17, 16, 0.34);
  --line: rgba(18, 17, 16, 0.14);
  --shadow: 0 30px 90px rgba(12, 11, 10, 0.14);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Space Grotesk", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

.site-body {
  background: var(--paper);
}

.container {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 84px 0;
}

.section-title {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-title {
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
}

.lead {
  font-size: 1.1rem;
  margin: 0;
  color: var(--mist);
}

.text-muted {
  color: var(--mist);
}

.text-soft {
  color: var(--veil);
}

.text-small {
  font-size: 0.92rem;
}

.text-center {
  text-align: center;
}

.eyebrow,
.brand-eyebrow,
.footer-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--veil);
  margin: 0 0 6px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.stack-sm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.row-between {
  justify-content: space-between;
  align-items: flex-end;
}

.row-center {
  justify-content: center;
}

.grid,
.grid-2,
.grid-3,
.grid-hero {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-hero {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(12, 11, 10, 0.18);
}

.btn-primary {
  background: var(--pine);
  color: #fff;
}

.btn-accent {
  background: var(--clay);
  color: #fff;
}

.btn-outline {
  border-color: rgba(18, 17, 16, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
  border-color: rgba(18, 17, 16, 0.3);
}

.btn-block {
  width: 100%;
}

.card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 11, 10, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(12, 11, 10, 0.18);
}

.card-muted {
  background: rgba(247, 243, 234, 0.8);
  border: 1px solid rgba(18, 17, 16, 0.18);
}

.card-pad-sm {
  padding: 16px;
}

.card-pad {
  padding: 24px;
}

.card-pad-lg {
  padding: 38px;
}

.stage {
  position: relative;
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 81, 72, 0.08), transparent 45%),
    linear-gradient(300deg, rgba(198, 92, 67, 0.1), transparent 42%);
  pointer-events: none;
  z-index: 0;
}

.stage::after {
  content: "";
  position: absolute;
  left: -120px;
  top: 120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(199, 160, 106, 0.24), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.stage > * {
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(18, 17, 16, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 52px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 280px;
  height: 280px;
  background: conic-gradient(from 120deg, rgba(31, 81, 72, 0.28), rgba(199, 160, 106, 0.05), rgba(198, 92, 67, 0.3));
  opacity: 0.45;
  z-index: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(18, 17, 16, 0.2);
  opacity: 0.6;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-media {
  border-radius: 26px;
  background: linear-gradient(140deg, rgba(31, 81, 72, 0.12), rgba(199, 160, 106, 0.14));
  padding: 22px;
}

.hero-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: rgba(18, 17, 16, 0.08);
  color: rgba(18, 17, 16, 0.35);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(18, 17, 16, 0.3);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
}

.grain-bg {
  background-image: radial-gradient(circle at 12% 18%, rgba(198, 92, 67, 0.12), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(31, 81, 72, 0.18), transparent 45%),
    radial-gradient(circle at 0% 85%, rgba(199, 160, 106, 0.18), transparent 50%);
}

.press-strip {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 12px 0;
  display: flex;
  gap: 40px;
}

.press-strip__inner {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: press-marquee 16s linear infinite;
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--veil);
}

@keyframes press-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

  .press-strip__inner {
    animation: none;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  padding: 8px 16px;
  background: var(--pine);
  color: #fff;
  z-index: 50;
  border-radius: 999px;
  transition: top 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 234, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.brand-overline {
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--veil);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--pine), var(--brass));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 14px 30px rgba(31, 81, 72, 0.3);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
}

.nav-toggle {
  border: 1px solid rgba(18, 17, 16, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
}

.site-nav {
  position: fixed;
  inset: 78px 16px auto 16px;
  z-index: 30;
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(12, 11, 10, 0.2);
}

.site-nav[data-state="closed"] {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-link {
  color: var(--mist);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link--active {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--clay);
  padding-bottom: 4px;
}

.nav-mobile-cta {
  margin-top: 24px;
}

.nav-desktop-cta {
  display: none;
}

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

  .site-nav {
    position: static;
    display: block !important;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
  }

  .nav-mobile-cta {
    display: none;
  }

  .nav-desktop-cta {
    display: block;
  }
}

.site-footer {
  background: var(--night);
  color: #fff;
}

.footer-inner {
  padding: 70px 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-title {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 16px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0;
}

.footer-heading {
  font-weight: 600;
  margin: 0 0 12px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: #fff;
}

.footer-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.link {
  text-decoration: underline;
}

.form-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.input,
.textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(18, 17, 16, 0.12);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

.textarea {
  resize: vertical;
}

.notice {
  border-radius: 16px;
  padding: 16px;
  font-size: 0.95rem;
}

.notice-success {
  background: #e7f6ea;
  color: #1f6f3c;
}

.notice-error {
  background: #fde9e9;
  color: #9b2c2c;
}

.list-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--mist);
}

.list-basic {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--mist);
}

.list-basic li + li {
  margin-top: 10px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 17, 16, 0.12);
  font-weight: 600;
  background: #fff;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 8px 0 0;
}

.stat-label {
  margin: 6px 0 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  padding-top: 40px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stamp {
  margin-left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18, 17, 16, 0.2);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--veil);
}

.intro {
  padding-top: 40px;
}

.intro-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.intro-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.specimen-sheet {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(18, 17, 16, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 234, 0.9));
  padding: 26px;
  min-height: 280px;
  box-shadow: 0 24px 70px rgba(12, 11, 10, 0.18);
  overflow: hidden;
}

.specimen-sheet::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  border: 1px dashed rgba(18, 17, 16, 0.25);
  pointer-events: none;
}

.specimen-sheet__lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 20px,
    rgba(18, 17, 16, 0.04) 20px,
    rgba(18, 17, 16, 0.04) 22px
  );
  opacity: 0.7;
}

.specimen-sheet__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--mist);
}

.specimen-sheet__content strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}

.specimen-sheet--hero {
  min-height: 320px;
}

.press-window {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  gap: 20px;
}

.press-window__header,
.press-window__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.press-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 81, 72, 0.12);
  color: var(--pine);
  font-size: 0.75rem;
  font-weight: 600;
}

.press-window__belt {
  background: linear-gradient(90deg, rgba(18, 17, 16, 0.08), rgba(18, 17, 16, 0.02));
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.paper-strip {
  height: 56px;
  border-radius: 12px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0,
    rgba(255, 255, 255, 0.9) 60px,
    rgba(18, 17, 16, 0.08) 60px,
    rgba(18, 17, 16, 0.08) 78px
  );
  animation: paper-move 6s linear infinite;
}

.paper-strip--offset {
  animation-delay: -2s;
}

@keyframes paper-move {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -260px;
  }
}

.ink-meter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--veil);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.ink-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(198, 92, 67, 0.2);
}

.spec-grid {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.spec-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 11, 10, 0.1);
}

.spec-card__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--pine), var(--brass));
}

.spec-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  gap: 28px;
}

.timeline__track {
  display: grid;
  gap: 18px;
}

.timeline__step {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.timeline__step.is-active {
  border-color: var(--pine);
  transform: translateX(6px);
}

.timeline__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--veil);
}

.cta-slab {
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(31, 81, 72, 0.12), rgba(199, 160, 106, 0.16));
  border: 1px solid rgba(18, 17, 16, 0.14);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 960px) {
  .cta-slab {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
