:root {
  --ink: #17201d;
  --muted: #5d6863;
  --paper: #fbfaf6;
  --soft: #eef4ef;
  --line: #d9e0da;
  --clay: #b75f45;
  --teal: #1d7772;
  --teal-dark: #115955;
  --gold: #d8a23a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 32, 29, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* {
  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);
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--teal);
}

.section,
.section-band {
  padding: 86px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(251,250,246,0.94), rgba(238,244,239,0.82)),
    repeating-linear-gradient(90deg, rgba(29,119,114,0.11) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(183,95,69,0.09) 0 1px, transparent 1px 92px);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #34413c;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: #becac3;
  background: rgba(255,255,255,0.66);
  color: var(--ink);
}

.button.light {
  background: var(--white);
  color: var(--teal-dark);
}

.button.secondary.light {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: transparent;
}

.hero-panel,
.card,
.comparison div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 30px;
}

.hero-panel h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  margin-bottom: 26px;
}

.panel-label {
  margin: 0 0 8px;
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.fact-list {
  margin: 0;
}

.fact-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.84rem;
}

.fact-list dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.notice {
  background: var(--ink);
  color: var(--white);
}

.notice-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.notice p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.split,
.feature-row,
.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.copy-stack p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.muted {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

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

.section-heading.narrow {
  max-width: 680px;
}

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

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

.card {
  padding: 24px;
  min-height: 240px;
  box-shadow: none;
}

.card-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--clay);
  font-weight: 900;
}

.card p,
.feature-list p,
.comparison p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.feature-block {
  border-radius: var(--radius);
  padding: 34px;
}

.feature-block.dark {
  background: var(--ink);
  color: var(--white);
}

.feature-block.dark .eyebrow {
  color: #8dd4ce;
}

.feature-block.dark p:not(.eyebrow) {
  color: rgba(255,255,255,0.76);
  margin: 20px 0 0;
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature-list div {
  padding: 0 0 20px 22px;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}

.location-band {
  background: #f7f5ee;
}

.map-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #cfd7d1;
  background: #e8eee9;
  box-shadow: var(--shadow);
}

.map-card p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  padding: 8px 10px;
  background: rgba(255,255,255,0.82);
  border-radius: 6px;
  font-weight: 800;
}

.map-line {
  position: absolute;
  height: 5px;
  width: 140%;
  background: rgba(29,119,114,0.25);
  transform-origin: left center;
}

.line-one {
  top: 22%;
  left: -18%;
  transform: rotate(18deg);
}

.line-two {
  top: 56%;
  left: -20%;
  transform: rotate(-12deg);
  background: rgba(183,95,69,0.22);
}

.line-three {
  top: 72%;
  left: -12%;
  transform: rotate(32deg);
  background: rgba(216,162,58,0.32);
}

.pin {
  position: absolute;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 8px 20px rgba(23,32,29,0.18);
}

.pin-main {
  width: 34px;
  height: 34px;
  left: 48%;
  top: 43%;
  background: var(--clay);
}

.pin-small {
  width: 18px;
  height: 18px;
  background: var(--teal);
}

.pin-small.one {
  left: 24%;
  top: 28%;
}

.pin-small.two {
  right: 20%;
  bottom: 25%;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.check-item span {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 4px;
  border: 2px solid var(--teal);
  background: linear-gradient(135deg, transparent 45%, var(--teal) 46% 58%, transparent 59%);
}

.check-item p {
  margin: 0;
  color: #34413c;
}

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

.compare-grid {
  align-items: center;
}

.compare-grid > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.comparison {
  display: grid;
  gap: 16px;
}

.comparison div {
  padding: 24px;
  box-shadow: none;
}

.comparison strong {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.cta-section {
  background: var(--teal-dark);
  color: var(--white);
}

.cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-section .eyebrow {
  color: #9be0da;
}

.cta-section p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 1.06rem;
}

.site-footer {
  padding: 34px 0;
  background: #121815;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: #9be0da;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.site-footer p {
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
}

@media (max-width: 860px) {
  .nav-wrap,
  .notice-inner,
  .cta-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-wrap {
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .feature-row,
  .compare-grid,
  .cta-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section-band {
    padding: 64px 0;
  }

  .hero-panel {
    width: 100%;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .feature-block,
  .card,
  .comparison div {
    padding: 20px;
  }

  .map-card {
    min-height: 300px;
  }
}