:root {
  --ink: #161817;
  --paper: #f7f3ea;
  --paper-deep: #ebe3d3;
  --green: #2f6f4e;
  --yellow: #f2c94c;
  --steel: #69736d;
  --line: #d9d1c2;
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(22, 24, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(22, 24, 23, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 24, 23, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green);
}

.section,
.section-band {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 82vh;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4rem, 13vw, 11.5rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: #343936;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.primary {
  background: var(--yellow);
}

.button.secondary {
  background: var(--paper);
}

.hero-visual {
  margin: 0;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.hero-visual figcaption {
  display: grid;
  gap: 8px;
  padding: 16px;
  font-size: 0.98rem;
}

.hero-visual figcaption span {
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
}

.problem-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
}

.problem-strip div {
  min-height: 150px;
  padding: 26px;
  color: var(--paper);
  border-right: 1px solid rgba(247, 243, 234, 0.28);
}

.problem-strip div:last-child {
  border-right: 0;
}

.problem-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.problem-strip span {
  color: rgba(247, 243, 234, 0.78);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 900px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(22, 24, 23, 0.18);
}

.offer-card.featured {
  background: var(--green);
  color: var(--paper);
}

.offer-kicker {
  margin: 0 0 28px;
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--steel);
}

.featured .offer-kicker {
  color: var(--yellow);
}

.offer-card p:not(.offer-kicker):not(.price) {
  margin: 0;
  color: inherit;
}

.price {
  margin: auto 0 0;
  padding-top: 28px;
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.check-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.check-list span {
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--green);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-steps article {
  padding-top: 22px;
  border-top: 3px solid var(--ink);
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-weight: 700;
  background: var(--yellow);
}

.process-steps p,
.proof p {
  max-width: 640px;
  color: #3b413d;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 40px;
  align-items: end;
}

.cta {
  text-align: center;
}

.cta h2 {
  margin: 0 auto 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--paper);
  background: var(--ink);
  font-family: Bahnschrift, "Segoe UI", sans-serif;
}

.site-footer a {
  color: var(--paper);
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .offer-grid,
  .process-steps,
  .proof,
  .problem-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    transform: none;
  }

  .problem-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 243, 234, 0.28);
  }
}

@media (max-width: 560px) {
  .brand-text {
    max-width: 190px;
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 5.4rem);
  }

  .button {
    width: 100%;
  }

  .offer-card {
    min-height: 270px;
  }
}
