:root {
  --ink: #17261f;
  --muted: #62716a;
  --paper: #fffdf7;
  --soft: #f3eadb;
  --line: #ded4c3;
  --copper: #a66434;
  --forest: #0e3328;
  --cream: #fbf6e9;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(23, 38, 31, 0.1);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(14px);
}

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

.mark {
  width: 31px;
  height: 31px;
  border: 3px solid var(--copper);
  border-radius: 50%;
  transform: rotate(-13deg);
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1.26fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 62px);
  padding: clamp(16px, 2.4vw, 30px) clamp(18px, 4vw, 58px) clamp(20px, 3vw, 34px);
}

.hero-copy {
  max-width: 620px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Iowan Old Style", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1;
}

h3 {
  margin: 18px 0 8px;
  font-size: 19px;
  line-height: 1.1;
}

.lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: #3b4a43;
  font-size: 18px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 12px 18px;
  border-radius: 7px;
  background: var(--forest);
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.hero-media {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 38, 31, 0.16);
}

.hero-media img {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-height: min(70vh, 590px);
  height: auto;
  object-fit: cover;
}

.band,
.split,
.final-cta {
  padding: clamp(60px, 8vw, 104px) clamp(18px, 4vw, 58px);
}

.band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
}

.section-heading p:not(.eyebrow) {
  color: #394942;
  font-size: 17px;
  line-height: 1.55;
}

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

.steps article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.step-number {
  display: inline-block;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.steps p,
.flow p,
.privacy-list p,
.final-cta p {
  color: #3b4a43;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 76px);
}

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

.flow div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.flow strong {
  display: block;
  color: var(--forest);
  font-size: 20px;
}

.compact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
}

.quota-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quota-row div {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.quota-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quota-row strong {
  display: block;
  margin-top: 18px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
}

.privacy-list {
  display: grid;
  gap: 14px;
}

.privacy-list p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.final-cta {
  min-height: 42vh;
  background: var(--forest);
  color: var(--paper);
}

.final-cta .eyebrow {
  color: #d8a06b;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  color: #e6ddcf;
  font-size: 18px;
}

@media (max-width: 880px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .steps,
  .quota-row {
    grid-template-columns: 1fr;
  }
}
