:root {
  --cream: #fbf4e8;
  --cream-deep: #efe0c9;
  --kraft: #b9783d;
  --kraft-dark: #7a4b28;
  --forest: #244737;
  --leaf: #6b8f4e;
  --clay: #d96f3f;
  --charcoal: #232322;
  --muted: #68635b;
  --white: #fffdf8;
  --line: #dfcfb8;
  --shadow: 0 18px 45px rgba(54, 42, 28, 0.14);
  --font-body: "Atkinson Hyperlegible", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
}

a {
  color: var(--forest);
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 5;
  width: min(1120px, calc(100% - 2rem));
  margin: 0.75rem auto 0;
  border: 1px solid rgba(122, 75, 40, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 40px rgba(54, 42, 28, 0.1);
  backdrop-filter: blur(16px);
}

.nav,
.site-footer,
.hero,
.section,
.cta-band,
.page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 0.6rem 0 0.85rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 2px 10px rgba(54, 42, 28, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  line-height: 1;
}

.brand-locale {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid rgba(223, 207, 184, 0.7);
  border-radius: 999px;
  background: rgba(251, 244, 232, 0.78);
}

.nav-menu a {
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
}

.nav-menu a.button {
  color: var(--white);
}

.nav-menu a.button:hover,
.nav-menu a.button:focus {
  color: var(--white);
}

.nav-menu a:not(.button) {
  position: relative;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
}

.nav-menu a:not(.button):hover,
.nav-menu a:not(.button):focus {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(54, 42, 28, 0.08);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 2px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus {
  background: #183126;
  color: var(--white);
}

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

.button-secondary:hover,
.button-secondary:focus {
  background: var(--forest);
}

.button-small {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
}

.button-full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(310px, 0.97fr);
  align-items: center;
  gap: 3rem;
  min-height: calc(100svh - 120px);
  padding: 4.5rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--kraft-dark);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 4.8rem, 5.4rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7rem, 3.2rem);
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-scene {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: var(--cream-deep);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: block;
}

.hero-scene img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.band {
  width: 100%;
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.35);
}

.band > * {
  width: min(1120px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.section,
.page {
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 2rem;
  max-width: none;
}

.section-heading-wide h2 {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-grid,
.steps,
.pricing-grid,
.rules-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-grid article,
.steps article,
.price-card,
.rules,
.rules-list article,
.gate-panel,
.zip-list,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 8px 25px rgba(54, 42, 28, 0.07);
}

.step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--forest);
  font-weight: 700;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.price-card.featured,
.price-card.selected {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(36, 71, 55, 0.14), var(--shadow);
}

.badge {
  align-self: flex-start;
  margin: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.price {
  margin: 0;
  color: var(--muted);
}

.price span {
  color: var(--charcoal);
  font-size: 2.4rem;
  font-weight: 700;
}

.price-card p:not(.price, .badge) {
  color: var(--muted);
}

.plan-included {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 0.94rem;
  font-weight: 700;
}

.route-note {
  min-height: 1.5rem;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
}

.route-note:empty {
  display: none;
}

.price-card .button {
  margin-top: auto;
}

.rules {
  margin-top: 1rem;
}

.rules ul,
.page-content ul {
  padding-left: 1.2rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 0.5rem;
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid rgba(36, 71, 55, 0.2);
  border-radius: 8px;
  background: rgba(107, 143, 78, 0.12);
  color: var(--forest);
  font-weight: 700;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: 2rem;
}

.split-section.tight {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 0;
}

.service-section {
  margin-top: 2.5rem;
  padding: 3rem;
  border-top: 1px solid var(--line);
}

.service-section + .service-section {
  margin-top: 1.5rem;
}

.service-section-band {
  width: min(1120px, calc(100% - 2rem));
  margin-top: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.42);
}

.service-section-emphasis {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(36, 71, 55, 0.22);
  border-radius: 8px;
  background: rgba(107, 143, 78, 0.1);
}

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

.split-section .button {
  margin-top: 1rem;
}

.rules-list {
  grid-template-columns: 1fr;
}

.rules-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rules-comparison article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 8px 25px rgba(54, 42, 28, 0.07);
}

.rules-comparison ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
}

.faq-preview-body {
  display: grid;
  gap: 1.5rem;
}

.faq-preview-body .button {
  justify-self: start;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
  padding: 2rem;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
}

.cta-band .eyebrow,
.cta-band a,
.cta-band p {
  color: var(--white);
}

.cta-band .button {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--forest);
  flex: 0 0 auto;
}

.page-cta {
  width: 100%;
}

.page-header {
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.page-content {
  max-width: 820px;
}

.intro-copy {
  margin: -0.75rem 0 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-content h2 {
  margin-top: 2rem;
  font-size: 2rem;
}

.gate-panel {
  max-width: 980px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.form-sidecopy h2 {
  font-size: 1.8rem;
}

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

label {
  display: block;
  margin: 0.9rem 0 0.35rem;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bba98f;
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  padding: 0.7rem 0.85rem;
}

label span,
.form-note {
  color: var(--muted);
  font-weight: 400;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.gate-result {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 8px;
  background: var(--cream);
}

.gate-result[hidden] {
  display: none;
}

.gate-result.success {
  border: 1px solid rgba(36, 71, 55, 0.35);
}

.gate-result.notice {
  border: 1px solid rgba(217, 111, 63, 0.45);
}

.plan-picker {
  margin-top: 2rem;
}

.pricing-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack-form {
  display: grid;
  max-width: 580px;
}

.stack-form .button {
  margin-top: 1rem;
}

.stack-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
}

.form-status.success,
.form-status.notice {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: var(--cream);
}

.form-status.success {
  border: 1px solid rgba(36, 71, 55, 0.35);
  color: var(--forest);
}

.form-status.notice {
  border: 1px solid rgba(217, 111, 63, 0.45);
  color: var(--kraft-dark);
}

.hidden {
  display: none;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 860px;
}

.faq-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-groups {
  display: grid;
  gap: 2.5rem;
  max-width: 920px;
}

.faq-group h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.zip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 380px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

@media (max-width: 920px) {
  .hero,
  .problem-grid,
  .steps,
  .pricing-grid,
  .pricing-grid.compact,
  .trust-strip,
  .split-section,
  .section-heading-wide,
  .faq-list.compact,
  .form-layout,
  .rules-comparison {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .nav {
    width: min(1120px, calc(100% - 2rem));
    min-height: 72px;
    padding: 0;
  }

  .brand-locale {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu a:not(.button) {
    min-height: 46px;
    padding: 0.75rem 0.85rem;
  }

  .nav-menu .button {
    width: 100%;
  }

  .nav-menu.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 3rem;
  }

  .hero,
  .section,
  .band,
  .page {
    padding: 3.25rem 0;
  }

  .trust-strip {
    padding-bottom: 0;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .hero-actions .button,
  .inline-form .button,
  .cta-band .button {
    width: 100%;
  }

  .inline-form,
  .cta-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
