:root {
  --ink: #171411;
  --muted: #62594f;
  --line: #ddd4c8;
  --paper: #faf8f3;
  --cream: #f2eadf;
  --green: #173f34;
  --moss: #62794f;
  --terracotta: #9b4f35;
  --gold: #c89547;
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(23, 20, 17, 0.16);
  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;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(250, 248, 243, 0.94);
  border-bottom: 1px solid rgba(221, 212, 200, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 7px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 71px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 26, 21, 0.88) 0%, rgba(13, 26, 21, 0.62) 42%, rgba(13, 26, 21, 0.2) 100%),
    linear-gradient(0deg, rgba(13, 26, 21, 0.86) 0%, rgba(13, 26, 21, 0.06) 44%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #f8d99e;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--terracotta);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 26px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.proof-strip div {
  min-height: 104px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip dt {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 850;
}

.proof-strip dd {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 14px;
}

section {
  padding: clamp(56px, 8vw, 94px) clamp(18px, 4vw, 54px);
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.quick-summary {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.summary-grid article {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
}

.summary-grid b {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}

.summary-grid p,
.card p,
.feature-photo figcaption,
.faq-list p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card span {
  display: block;
  margin-bottom: 26px;
  color: var(--terracotta);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
}

.split-section {
  background: var(--green);
  color: var(--white);
}

.split-section .eyebrow.dark {
  color: #f8d99e;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.split .lead {
  color: rgba(255, 253, 248, 0.78);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 253, 248, 0.88);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-photo {
  margin: 0;
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-photo figcaption {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
}

.gallery-band {
  background: var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:first-child {
  grid-row: span 2;
}

.conversion {
  background: var(--white);
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: start;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.footer {
  padding: 30px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #f5efe7;
  color: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer img {
  width: 58px;
  height: 58px;
  padding: 7px;
  border: 1px solid rgba(23, 20, 17, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 20, 17, 0.08);
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.footer a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 11px 16px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 850;
  line-height: 1.15;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thanks {
  width: min(620px, calc(100% - 36px));
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.thanks img {
  margin: 0 auto 22px;
  border-radius: 8px;
}

.thanks h1 {
  max-width: none;
  color: var(--green);
  font-size: 44px;
}

.thanks p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .proof-strip,
  .section-head,
  .summary-grid,
  .card-grid,
  .split,
  .conversion-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    gap: 12px;
  }

  .btn-small {
    max-width: 190px;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 72px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  section {
    padding-inline: 14px;
  }

  .gallery,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 240px;
  }

  .gallery img:first-child {
    grid-row: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer a {
    width: 100%;
  }
}
