:root {
  color-scheme: light;
  --ink: #1f2522;
  --muted: #65716b;
  --line: #d8ded8;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --sage: #6d907e;
  --sage-dark: #34594a;
  --blue: #4d6f9d;
  --warm: #ead9ba;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid rgba(31, 37, 34, 0.08);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

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

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

.nav-cta {
  border: 1px solid var(--sage);
  border-radius: 999px;
  color: var(--sage-dark);
  padding: 9px 14px;
}

.hero {
  min-height: min(760px, 92vh);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  width: 100%;
}

.hero-scrim {
  background: linear-gradient(90deg, rgba(14, 20, 17, 0.88), rgba(14, 20, 17, 0.58) 43%, rgba(14, 20, 17, 0.18));
  inset: 0;
  position: absolute;
}

.hero-copy {
  color: white;
  max-width: 760px;
  padding: clamp(140px, 22vh, 210px) clamp(22px, 6vw, 82px) 76px;
  position: relative;
}

.eyebrow {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #c8e2d6;
}

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

h1 {
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.92;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(31px, 5vw, 58px);
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-lede {
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.32;
  max-width: 650px;
}

.hero-actions,
.button {
  align-items: center;
  display: flex;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
}

.button.primary {
  background: #dbece3;
  color: #193227;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
}

.band,
.screens,
.privacy {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 76px);
}

.band {
  background: var(--surface);
}

.section-copy {
  max-width: 900px;
}

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

.feature-grid article {
  border-top: 2px solid var(--line);
  padding-top: 22px;
}

.feature-grid span {
  color: var(--blue);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

.feature-grid p,
.split p,
.privacy li,
figcaption {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.screen-row {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

figure {
  margin: 0;
}

figure img {
  aspect-ratio: 390 / 780;
  background: #e8ebe6;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

figcaption {
  margin-top: 12px;
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(30px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
}

.split p {
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.35;
}

.legal-page {
  background: var(--surface);
}

.legal-hero {
  background: var(--ink);
  color: white;
  padding: 150px clamp(20px, 5vw, 76px) 64px;
}

.legal-hero h1 {
  font-size: clamp(48px, 8vw, 88px);
  margin-bottom: 18px;
}

.legal-hero p:last-child {
  color: #dbece3;
  font-size: 18px;
  line-height: 1.5;
  max-width: 720px;
}

.legal-content {
  max-width: 920px;
  padding: clamp(48px, 8vw, 90px) clamp(20px, 5vw, 76px);
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin: 34px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.contact-list {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--sage-dark);
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.privacy ul {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 38px 0 0;
  padding: 24px 0 0;
}

footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 76px);
}

footer span {
  font-weight: 800;
}

footer a {
  color: #dbece3;
  text-decoration: none;
}

@media (max-width: 820px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(14, 20, 17, 0.86), rgba(14, 20, 17, 0.52) 55%, rgba(14, 20, 17, 0.16));
  }

  .hero-copy {
    padding-top: 118px;
  }

  .feature-grid,
  .screen-row,
  .privacy ul,
  .split {
    grid-template-columns: 1fr;
  }
}
