:root {
  --cream: #F7F4EF;
  --sage: #4A6741;
  --terracotta: #C4622D;
  --dusty-blue: #7A9BB5;
  --charcoal: #2C2C2C;
  --forest: #2E3A2C;
  --muted: #6E685E;
  --muted-light: #8a857a;
  --border: #E6DECF;
  --badge-bg: #E4ECF1;
  --white: #FCFAF5;
  --shadow: 0 8px 32px rgba(46, 58, 44, 0.08);
  --radius: 14px;
  --radius-sm: 11px;
  --font-serif: "Newsreader", Georgia, serif;
  --font-sans: "Mulish", system-ui, sans-serif;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
}

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

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

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--forest);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
}

h1 em {
  font-style: italic;
  color: var(--terracotta);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-title {
  max-width: 18ch;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 98, 45, 0.25);
}

.btn-primary:hover {
  background: #b35628;
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--border);
}

.btn-text {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-text:hover {
  color: var(--terracotta);
  transform: none;
}

.btn-lg {
  padding: 0.9rem 1.35rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}

.header-nav-cta,
.header-mobile-cta {
  color: #fff;
}

.header-nav-cta {
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.header-nav-cta:hover,
.header-mobile-cta:hover {
  color: #fff;
}

.header-mobile-cta {
  display: none;
}

.logo-img {
  display: block;
  height: 4.75rem;
  width: auto;
  object-fit: contain;
}

.logo-img--footer {
  height: 4.75rem;
}

.site-nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest);
}

.site-nav a:not(.btn):hover {
  color: var(--terracotta);
}

.header-cta {
  display: none;
}

.header-phone {
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--forest);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 1.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: auto 1fr min(400px, 40%);
  grid-template-rows: auto auto;
  column-gap: 2rem;
  row-gap: 1rem;
  align-items: start;
}

.hero-brand {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.hero-brand-logo {
  display: block;
  height: 8.5rem;
  width: auto;
  max-width: min(100%, 22rem);
  object-fit: contain;
}

/* Middle column: centered between logo and offer form. */
.badge-hero {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  margin: 3.45rem 0 0;
  white-space: nowrap;
  font-size: 0.86rem;
  padding: 0.55rem 1.15rem;
  gap: 0.55rem;
}

.hero-form-wrap {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: start;
}

.hero-copy {
  grid-column: 1 / 3;
  grid-row: 2;
}

.hero-form {
  position: sticky;
  top: 5.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--badge-bg);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dusty-blue);
}

.badge.badge-hero {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 98, 45, 0.25);
}

.badge.badge-hero::before {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-area {
  font-size: 1rem;
  color: var(--muted);
  max-width: 34rem;
  margin-top: 0.75rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 1.5rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 600;
  color: var(--forest);
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}

.hero-media img,
.hero-image img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image {
  margin-top: 2.5rem;
}

.hero-image img {
  aspect-ratio: 21 / 6;
  max-height: 280px;
}

.hero-form-title {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.hero-form-lead {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.label-optional {
  font-weight: 600;
  color: var(--muted-light);
  font-size: 0.8rem;
}

/* Mobile sticky bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.5rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(46, 58, 44, 0.08);
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}

.mobile-bar-call {
  background: var(--white);
  color: var(--forest);
  border: 1.5px solid var(--border);
}

.mobile-bar-offer {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 98, 45, 0.25);
}

/* Stats */
.stats-bar {
  background: var(--sage);
  color: #fff;
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.1;
}

.stat span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-media img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pill {
  background: var(--badge-bg);
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

/* Cards */
.card-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.buy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.buy-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.buy-card-body {
  padding: 1.5rem;
}

.buy-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.buy-card li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
}

.buy-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.steps li {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.review-card p {
  margin: 0;
  font-style: italic;
  color: var(--forest);
}

.review-card p::before {
  content: "\201C";
  color: var(--terracotta);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 0.15rem;
}

/* Form */
.offer-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.offer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.contact-link {
  font-weight: 700;
  color: var(--forest);
}

.contact-link:hover {
  color: var(--terracotta);
}

.offer-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.offer-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.offer-form input,
.offer-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  color: var(--charcoal);
}

.offer-form input:focus,
.offer-form textarea:focus {
  outline: 2px solid var(--dusty-blue);
  outline-offset: 1px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row.three-col {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.form-status {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.25rem;
}

.form-status.success {
  color: var(--sage);
}

.form-status.error {
  color: #b42318;
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-values {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-areas {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 22rem;
  line-height: 1.45;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-brand-logo {
    height: 6.75rem;
  }

  .badge-hero {
    margin-top: 2.75rem;
    font-size: 0.78rem;
    padding: 0.5rem 0.95rem;
  }

  .header-inner {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .site-nav {
    display: none;
  }

  .site-nav .header-phone,
  .site-nav .header-nav-cta {
    display: none;
  }

  .header-mobile-cta {
    display: inline-flex;
    margin-left: auto;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
    z-index: 101;
  }

  .site-nav.is-open .header-phone {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand,
  .badge-hero,
  .hero-form-wrap,
  .hero-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .badge-hero {
    justify-self: center;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .hero-form {
    position: static;
  }

  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: 4.5rem;
  }

  .card-grid.two-col,
  .steps,
  .benefits-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-brand-logo {
    height: 5.5rem;
  }

  .badge-hero {
    margin-top: 2.15rem;
    max-width: calc(100% - 6rem);
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .header-mobile-cta {
    display: none;
  }

  .logo-img--footer {
    height: 3.75rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .form-row.two-col,
  .form-row.three-col {
    grid-template-columns: 1fr;
  }

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

  .hero-image img {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
}
