:root {
  --ink: #17211d;
  --muted: #5c6863;
  --paper: #fbfaf5;
  --sage: #d7e4d2;
  --mint: #eef6ee;
  --coral: #e9785f;
  --teal: #136f63;
  --sun: #f1c76a;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 18px 45px rgba(23, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.header-action,
.primary-button,
.secondary-button,
.planner button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 750;
}

.header-action {
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  display: grid;
  align-items: end;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 24, 20, 0.82), rgba(12, 24, 20, 0.36) 58%, rgba(12, 24, 20, 0.06)),
    linear-gradient(0deg, rgba(12, 24, 20, 0.52), rgba(12, 24, 20, 0));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding: 0 clamp(22px, 6vw, 78px) clamp(76px, 13vh, 130px);
  color: white;
}

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

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  margin: 0;
  font-size: clamp(4.25rem, 13vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

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

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.primary-button {
  padding: 0 24px;
  background: var(--coral);
  color: white;
}

.secondary-button {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: white;
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}

.insight-strip article {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.insight-strip article:last-child {
  border-right: 0;
}

.insight-strip strong {
  display: block;
  color: var(--teal);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1;
}

.insight-strip span {
  display: block;
  max-width: 260px;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

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

.section-heading p:not(.eyebrow),
.planner-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.04rem;
}

.product-band {
  background: var(--mint);
}

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

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

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card p,
.guide-list p,
.local-grid p,
.roadmap li {
  color: var(--muted);
}

.care-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 7vw, 80px);
  align-items: start;
}

.guide-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.guide-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
}

.guide-list span {
  color: var(--teal);
  font-weight: 850;
}

.guide-list p {
  grid-column: 2;
  margin: 0;
}

.planner-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 7vw, 80px);
  align-items: center;
  background: var(--teal);
  color: white;
}

.planner-band .eyebrow,
.planner-copy p {
  color: #cde9df;
}

.planner {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  background: white;
  border-radius: 8px;
  color: var(--ink);
}

.planner label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.planner select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.planner button {
  width: 100%;
  margin-top: 8px;
  border: 0;
  background: var(--coral);
  color: white;
  cursor: pointer;
  font: inherit;
}

.planner-result {
  min-height: 92px;
  padding: 16px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.local-grid article {
  min-height: 210px;
  padding: 24px;
  background: white;
}

.roadmap {
  background: #f8efd8;
}

.roadmap ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap li {
  padding: 22px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.roadmap strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

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

.site-footer a {
  color: var(--sun);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .insight-strip,
  .product-grid,
  .care-layout,
  .planner-band,
  .local-grid,
  .roadmap ol {
    grid-template-columns: 1fr;
  }

  .insight-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .local-grid article,
  .roadmap li {
    min-height: auto;
  }
}

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

  .header-action {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 24, 20, 0.86), rgba(12, 24, 20, 0.12)),
      linear-gradient(90deg, rgba(12, 24, 20, 0.62), rgba(12, 24, 20, 0.12));
  }

  .hero-content {
    padding: 0 20px 58px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

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

  .guide-list p {
    grid-column: auto;
  }

  .site-footer {
    display: block;
  }
}
