:root {
  color-scheme: light dark;
  --bg: #f8f9fa;
  --surface: #ffffff;
  --surface-alt: #f1f3f4;
  --text: #202124;
  --muted: #5f6368;
  --border: #dadce0;
  --accent: #188038;
  --accent-hover: #137333;
  --accent-soft: #e6f4ea;
  --amber: #b06000;
  --header: rgba(255, 255, 255, 0.94);
  --shadow: 0 8px 28px rgba(60, 64, 67, 0.13);
  --content: 1180px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - var(--content)) / 2));
  border-bottom: 1px solid var(--border);
  background: var(--header);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-size: 17px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.home-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  height: calc(100svh - 170px);
  max-height: 740px;
  align-items: flex-end;
  overflow: hidden;
  background: #202124;
  color: #ffffff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  animation: hero-crossfade 18s infinite;
}

.hero-slide-one {
  background-image: url("/images/hero.jpg?v=20260810-3");
}

.hero-slide-two {
  background-image: url("/images/hero-02.jpg?v=20260810-3");
  background-position: center 43%;
  animation-delay: -12s;
}

.hero-slide-three {
  background-image: url("/images/hero-03.jpg?v=20260810-3");
  animation-delay: -6s;
}

@keyframes hero-crossfade {
  0%, 28% {
    opacity: 1;
  }

  35%, 93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 20, 20, 0.84) 0%, rgba(18, 20, 20, 0.6) 46%, rgba(18, 20, 20, 0.16) 76%), linear-gradient(0deg, rgba(18, 20, 20, 0.54), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-hero .eyebrow {
  color: #81c995;
}

.home-hero h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: #e8eaed;
  font-size: 21px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(32, 33, 36, 0.28);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #ffffff;
  background: rgba(32, 33, 36, 0.54);
}

.section {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-band h2,
.detail-copy h2,
.feature-block h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.22;
}

.section-heading > p:last-child,
.detail-copy > p,
.feature-block > p {
  margin: 12px 0 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card > img {
  width: 100%;
  aspect-ratio: 7 / 5;
  object-fit: cover;
  background: var(--surface-alt);
}

.product-card-body {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.product-card-body strong {
  margin: 5px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.product-card-body > span:not(.product-meta):not(.text-link) {
  color: var(--muted);
  font-size: 14px;
}

.product-meta {
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.contact-band {
  display: flex;
  width: min(var(--content), calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 16px auto 88px;
  padding: 38px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px max(24px, calc((100% - var(--content)) / 2));
  background: #202124;
  color: #bdc1c6;
  font-size: 13px;
}

.site-footer a {
  color: #bdc1c6;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.detail-main {
  overflow: hidden;
}

.detail-hero {
  padding: 84px 24px 0;
  background: var(--surface-alt);
  text-align: center;
}

.detail-hero-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.detail-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

.detail-hero .lead {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 20px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button-outline {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--text);
}

.detail-hero-image {
  width: min(1008px, 100%);
  max-height: 560px;
  margin: 56px auto 0;
  object-fit: contain;
  object-position: center bottom;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: #111111;
  box-shadow: var(--shadow);
}

.detail-section {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 72px;
}

.feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 2px 0 2px 22px;
  color: var(--muted);
}

.feature-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

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

.media-item {
  margin: 0;
}

.media-item img {
  width: 100%;
  aspect-ratio: 508 / 310;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-alt);
}

.media-item figcaption {
  padding: 12px 2px 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-band-inner {
  display: grid;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-block {
  min-width: 0;
}

.feature-block h2 {
  font-size: 21px;
}

.feature-block img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  object-fit: contain;
}

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

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .feature-band-inner {
    grid-template-columns: 1fr;
  }

  .feature-block {
    display: grid;
    grid-template-columns: minmax(160px, 0.5fr) 1fr;
    align-items: center;
    gap: 28px;
  }

  .feature-block img {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 58px;
    padding: 0 18px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .home-hero {
    min-height: 570px;
    height: calc(100svh - 86px);
    max-height: 700px;
  }

  .hero-slide-one {
    background-position: 56% center;
  }

  .hero-slide-two {
    background-position: 57% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(18, 20, 20, 0.88) 0%, rgba(18, 20, 20, 0.58) 67%, rgba(18, 20, 20, 0.2) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-bottom: 52px;
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section,
  .detail-section {
    width: calc(100% - 36px);
    padding: 64px 0;
  }

  .section-heading h2,
  .contact-band h2,
  .detail-copy h2 {
    font-size: 28px;
  }

  .product-grid,
  .media-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .product-card-body {
    padding: 18px;
  }

  .contact-band {
    width: calc(100% - 36px);
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 64px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 18px;
  }

  .detail-hero {
    padding: 62px 18px 0;
  }

  .detail-hero h1 {
    font-size: 38px;
  }

  .detail-hero .lead {
    font-size: 17px;
  }

  .detail-hero-image {
    margin-top: 42px;
  }

  .feature-band-inner {
    width: calc(100% - 36px);
    padding: 56px 0;
  }

  .feature-block {
    display: block;
  }

  .feature-block img {
    margin-bottom: 18px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #202124;
    --surface: #292a2d;
    --surface-alt: #252629;
    --text: #e8eaed;
    --muted: #bdc1c6;
    --border: #3c4043;
    --accent: #34a853;
    --accent-hover: #2d9249;
    --accent-soft: #163522;
    --amber: #f9ab00;
    --header: rgba(32, 33, 36, 0.94);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .hero-slide {
    opacity: 0;
    animation: none;
  }

  .hero-slide-one {
    opacity: 1;
  }
}
