:root {
  --green-900: #143522;
  --green-800: #17492f;
  --green-700: #23613d;
  --green-500: #3b8f50;
  --green-100: #e9f4ec;
  --tomato: #c9362e;
  --tomato-dark: #98261f;
  --gold: #f3c75d;
  --cream: #fbfaf5;
  --white: #ffffff;
  --ink: #14251b;
  --muted: #65776b;
  --line: #dfe7df;
  --shadow: 0 16px 38px rgba(20, 53, 34, .12);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--green-800);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--tomato-dark);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--white);
  padding: .65rem .85rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  background: var(--green-900);
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
}

.topbar__inner,
.topbar__links,
.header-main,
.main-nav,
.actions,
.card-actions,
.footer-bottom {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  min-height: 38px;
  gap: 1rem;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar__links {
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 245, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-main {
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}

.brand img,
.footer-logo {
  width: 168px;
}

.main-nav {
  gap: .35rem;
  font-weight: 700;
}

.main-nav a {
  border-radius: 999px;
  padding: .65rem .9rem;
  text-decoration: none;
}

.main-nav a.is-active,
.main-nav a:hover {
  background: var(--green-100);
  color: var(--green-900);
}

.main-nav .nav-cta {
  background: var(--tomato);
  color: var(--white);
  margin-left: .35rem;
}

.main-nav .nav-cta:hover {
  background: var(--tomato-dark);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero,
.page-hero {
  color: var(--white);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero {
  min-height: 650px;
  display: grid;
  align-items: center;
}

.page-hero {
  padding: 7.5rem 0 5rem;
}

.hero__content {
  max-width: 780px;
}

.hero h1,
.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.45rem);
  line-height: .98;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.hero__lead,
.page-hero p:not(.eyebrow) {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, .92);
}

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--tomato);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section--cta .eyebrow {
  color: var(--gold);
}

.actions {
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: .78rem 1.15rem;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button--primary:hover {
  background: var(--tomato-dark);
  color: var(--white);
}

.button--secondary {
  background: var(--white);
  color: var(--green-900);
}

.button--secondary:hover {
  border-color: var(--green-700);
  color: var(--green-900);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  max-width: 720px;
  margin-top: 2.2rem;
}

.hero-stats div {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, .1);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.75rem;
  line-height: 1.1;
}

.hero-stats span {
  color: rgba(255, 255, 255, .86);
  font-size: .92rem;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: var(--green-100);
}

.section--cta {
  background: var(--green-900);
  color: var(--white);
}

.section h2,
.section-heading h2 {
  margin: 0 0 1rem;
  color: var(--green-900);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.section--cta h2 {
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  gap: 3rem;
}

.split--reverse {
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
}

.split--reverse > :first-child {
  order: 2;
}

.media-frame {
  margin: 0;
}

.media-frame img,
.category-card img,
.product-card__image img,
.product-detail__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-frame figcaption {
  margin-top: .65rem;
  color: var(--muted);
  font-size: .92rem;
}

.check-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.4rem;
}

.check-list span {
  position: relative;
  padding-left: 1.65rem;
  font-weight: 700;
}

.check-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 5px rgba(201, 54, 46, .13);
}

.category-grid,
.values-grid,
.product-grid,
.product-strip,
.contact-cards {
  display: grid;
  gap: 1.1rem;
}

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

.category-card,
.product-card,
.values-grid article,
.contact-cards article,
.contact-form,
.spec-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(20, 53, 34, .06);
}

.category-card {
  overflow: hidden;
}

.category-card img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: none;
}

.category-card div {
  padding: 1.15rem;
}

.category-card h3,
.product-card h3,
.contact-cards h3 {
  margin: 0 0 .45rem;
  color: var(--green-900);
  font-size: 1.25rem;
}

.category-card h3 a,
.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  font-weight: 800;
}

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

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

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__image img {
  aspect-ratio: 850 / 380;
  border-radius: 0;
  box-shadow: none;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem;
}

.tag {
  align-self: flex-start;
  margin: 0 0 .55rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 800;
}

.mini-specs {
  display: grid;
  gap: .55rem;
  margin: auto 0 1rem;
}

.mini-specs div {
  margin: 0;
}

.mini-specs dt {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-specs dd {
  margin: 0;
}

.card-actions {
  justify-content: space-between;
  gap: .75rem;
  border-top: 1px solid var(--line);
  padding-top: .85rem;
  font-weight: 800;
  font-size: .92rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, .86);
}

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

.values-grid article,
.contact-cards article {
  padding: 1.2rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: .92rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: start;
}

.product-detail__image {
  margin: 0;
}

.product-detail__image img {
  aspect-ratio: 850 / 380;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.spec-block {
  padding: 1rem;
}

.spec-block h2 {
  margin: 0 0 .8rem;
  font-size: 1.15rem;
}

.spec-block ul {
  padding-left: 1.1rem;
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-cards {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  margin-top: 1.4rem;
}

.contact-cards article {
  min-width: 0;
}

.contact-cards a,
.site-footer a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.contact-form h2,
.contact-form p {
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: .35rem;
  color: var(--green-900);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .82rem .9rem;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-weight: 500;
}

.contact-form .checkbox input {
  width: auto;
  margin-top: .35rem;
}

.form-note {
  min-height: 1.4rem;
  color: var(--muted);
}

.legal-content {
  max-width: 860px;
  font-size: 1.05rem;
}

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

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .84);
  padding: 3.4rem 0 1.4rem;
}

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

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

.site-footer h2 {
  margin: 0 0 .8rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-logo {
  border-radius: var(--radius);
  background: var(--white);
  padding: .25rem;
}

.footer-bottom {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .9rem;
}


.redirect-page {
  background: var(--cream);
}

@media (max-width: 980px) {
  .category-grid,
  .product-grid,
  .product-strip,
  .values-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split--reverse,
  .contact-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .split--reverse > :first-child {
    order: 0;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: .55rem 0;
  }

  .header-main {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1,
  .page-hero h1 {
    line-height: 1.04;
  }

  .hero-stats,
  .spec-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.4rem 0;
  }

  .page-hero {
    padding: 5rem 0 3.5rem;
  }

  .category-grid,
  .product-grid,
  .product-strip,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
