:root {
  --ink: #1d1b19;
  --muted: #665f57;
  --paper: #f8f4ed;
  --line: rgba(29, 27, 25, 0.16);
  --accent: #8a4e4d;
  --accent-2: #1f6a68;
  --surface: #fffaf2;
  --deep: #24201d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 237, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 760;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--paper);
  background: var(--accent);
}

nav {
  display: flex;
  gap: clamp(10px, 2vw, 22px);
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 13px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

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

.hero {
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 5vw, 64px) clamp(18px, 4vw, 48px) 28px;
  color: var(--hero-ink);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 70% 22%, var(--glow), transparent 34%),
    linear-gradient(135deg, var(--hero-a), var(--hero-b));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

.hero-copy {
  padding-top: 24px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 13px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, currentColor 72%, transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.95vw, 78px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 100%;
  overflow-wrap: normal;
}

.subhead {
  max-width: 620px;
  font-size: clamp(19px, 2.8vw, 31px);
  line-height: 1.17;
}

.price-line {
  margin: 22px 0 0;
  font-weight: 720;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: currentColor;
  border-color: color-mix(in srgb, currentColor 56%, transparent);
}

.kit-visual {
  aspect-ratio: 4 / 5;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    var(--kit-bg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.kit-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
}

.kit-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kit-title {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 9%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(248, 244, 237, 0.84);
  color: #1d1b19;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 760;
}

.kit-title strong {
  flex: 1 1 260px;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.45vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-transform: none;
  overflow-wrap: normal;
}

.kit-title span {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.section {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 48px);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section h2 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
}

.section-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.tile {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
}

.tile h3 {
  font-size: 18px;
  line-height: 1.2;
}

.tile p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 760;
}

.waitlist {
  color: #f7f0e5;
  background: var(--deep);
}

.waitlist .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 720;
}

input[type="email"] {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
}

.fine-print {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.status {
  min-height: 24px;
  font-weight: 720;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.policy {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 20px;
  line-height: 1.65;
}

.policy h1 {
  font-size: clamp(42px, 8vw, 76px);
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .waitlist .section-inner {
    grid-template-columns: 1fr;
  }

  .kit-visual {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 46px);
    letter-spacing: -0.055em;
  }

  .kit-title {
    left: 7%;
    right: 7%;
    bottom: 7%;
  }

  .kit-title strong {
    flex-basis: 100%;
    font-size: clamp(26px, 7.8vw, 31px);
  }

  .kit-title span {
    display: none;
  }

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

  .site-footer,
  .choice-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
