:root {
  --ink: #17211f;
  --muted: #5f6d68;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #ddd8cf;
  --sage: #6f8977;
  --forest: #203d34;
  --clay: #b96347;
  --gold: #d6a84f;
  --blue: #3e6d81;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(22, 35, 31, 0.48), rgba(22, 35, 31, 0));
}

.brand,
.nav-links,
.hero-actions,
.trust-strip,
.steps,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 130px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark-img {
  display: block;
  width: 38px;
  height: auto;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 31, 27, 0.76) 0%, rgba(18, 31, 27, 0.52) 42%, rgba(18, 31, 27, 0.06) 76%),
    linear-gradient(180deg, rgba(255, 247, 231, 0.12), rgba(18, 31, 27, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  padding: 30vh 0 12vh clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(8, 15, 13, 0.36);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(8, 15, 13, 0.32);
}

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

.button {
  padding: 0 20px;
  border: 0;
  cursor: pointer;
}

.button.primary {
  color: #14201d;
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.2);
}

.trust-strip {
  justify-content: center;
  gap: clamp(18px, 6vw, 72px);
  padding: 20px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.local-band {
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--forest);
  background: #fff7e7;
  border-block: 1px solid rgba(214, 168, 79, 0.38);
  text-align: center;
}

.local-band p {
  max-width: 920px;
  margin: 0 auto;
  font-weight: 800;
  line-height: 1.5;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.intro,
.exclusivity,
.apply {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.section h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p,
.apply-copy p,
.exclusivity-card p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.section-heading {
  margin-bottom: 36px;
}

.results {
  background: #ece7dd;
}

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

.benefit-grid article,
.market-list article,
.steps article,
.lead-form,
.exclusivity-card {
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(23, 33, 31, 0.05);
}

.benefit-grid article,
.market-list article,
.steps article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon,
.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.benefit-grid h3,
.market-list h3,
.steps h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
}

.benefit-grid p,
.market-list p,
.steps p {
  color: var(--muted);
  line-height: 1.58;
}

.markets {
  background: var(--paper);
}

.market-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-list article {
  min-height: 210px;
  border-top: 5px solid var(--sage);
}

.market-list article:nth-child(2n) {
  border-top-color: var(--clay);
}

.market-list article:nth-child(3n) {
  border-top-color: var(--blue);
}

.exclusivity {
  color: #fff;
  background: var(--forest);
}

.exclusivity .section-kicker {
  color: #eecb76;
}

.exclusivity-card {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 8px;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--clay);
  font-weight: 900;
}

.process {
  background: #fff;
}

.steps {
  align-items: stretch;
  gap: 16px;
}

.steps article {
  flex: 1;
}

.apply {
  background: #efe6d7;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #cfc7ba;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

input[type="hidden"] {
  display: none;
}

.form-button {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  font-size: 1rem;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #101816;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  font-weight: 900;
}

.site-footer p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(32, 61, 52, 0.94), rgba(62, 109, 129, 0.76)),
    var(--forest);
  color: #fff;
}

.thank-you {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 34px;
  padding: clamp(24px, 6vw, 72px);
}

.thank-you-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.thank-you-panel {
  width: min(720px, 100%);
}

.thank-you-panel h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.thank-you-panel p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding-top: 24vh;
  }

  .intro,
  .exclusivity,
  .apply {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .market-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    display: grid;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: inline;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark-img {
    width: 36px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(18, 31, 27, 0.74), rgba(18, 31, 27, 0.6) 66%, rgba(18, 31, 27, 0.36));
  }

  .hero-content {
    width: 100%;
    padding: 21vh 18px 9vh;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    gap: 12px;
  }

  .benefit-grid,
  .market-list {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .market-list article,
  .steps article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }
}
