:root {
  --ink: #1f2524;
  --muted: #69736f;
  --line: #dfe4df;
  --paper: #f8f6ef;
  --white: #ffffff;
  --sage: #6f8f78;
  --sage-dark: #355744;
  --coral: #d67658;
  --graphite: #283131;
  --butter: #f0cc74;
  --shadow: 0 22px 60px rgba(31, 37, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 246, 239, 0.92);
  box-shadow: 0 10px 30px rgba(31, 37, 36, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 6px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  opacity: 0.86;
}

.desktop-nav a:hover {
  opacity: 1;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 72px;
  left: 12px;
  right: 12px;
  display: none;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: #eef2ec;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 80px) 110px;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 37, 36, 0.82) 0%, rgba(31, 37, 36, 0.55) 40%, rgba(31, 37, 36, 0.12) 78%),
    linear-gradient(0deg, rgba(31, 37, 36, 0.25), rgba(31, 37, 36, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.primary-action {
  color: var(--white);
  background: var(--sage-dark);
}

.secondary-action {
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
}

.contact-panel .secondary-action {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 80px);
  right: clamp(20px, 6vw, 80px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.hero-strip div {
  padding: 16px 18px;
  background: rgba(31, 37, 36, 0.35);
}

.hero-strip strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.hero-strip span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section {
  padding: clamp(68px, 8vw, 118px) clamp(20px, 6vw, 80px);
}

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

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

.statement,
.capability-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.statement {
  padding: 28px;
}

.statement p,
.capability-card p,
.product-card p,
.channel-copy p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

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

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

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

.product-card {
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  opacity: 0.58;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.product-card.is-visible {
  opacity: 1;
  border-color: rgba(53, 87, 68, 0.42);
  transform: translateY(-4px);
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #eef2ec;
}

.product-body {
  padding: 28px 30px 30px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 850;
}

.product-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.product-card li + li {
  margin-top: 8px;
}

.capability-section {
  background: #eef2ec;
}

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

.capability-card {
  padding: 26px;
}

.capability-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 900;
}

.channel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: var(--graphite);
  color: var(--white);
}

.channel-copy p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.channel-list {
  display: grid;
  gap: 12px;
}

.channel-list div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.channel-list strong {
  font-size: 20px;
}

.channel-list span {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  background: var(--paper);
}

.contact-panel {
  max-width: 980px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(31, 37, 36, 0.08);
}

.contact-panel p {
  margin-top: 18px;
}

.copy-state {
  min-height: 24px;
  color: var(--sage-dark) !important;
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.72);
  background: #161d1c;
  font-size: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

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

.policy-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(240, 204, 116, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(111, 143, 120, 0.16), transparent 24%),
    var(--paper);
}

.policy-header {
  position: static;
  color: var(--ink);
  background: rgba(248, 246, 239, 0.92);
  box-shadow: 0 10px 30px rgba(31, 37, 36, 0.08);
  backdrop-filter: blur(14px);
}

.policy-main {
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 80px) clamp(72px, 8vw, 120px);
}

.policy-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(31, 37, 36, 0.08);
}

.policy-panel h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
}

.policy-summary {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
}

.policy-section + .policy-section {
  margin-top: 28px;
}

.policy-section h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-section p,
.policy-section li {
  color: var(--muted);
}

.policy-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-note {
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--sage-dark);
  border-radius: 6px;
  background: #eef2ec;
  color: var(--ink);
}

@media (max-width: 960px) {
  .intro-grid,
  .capability-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .channel-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 94vh;
    padding-top: 108px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(31, 37, 36, 0.88) 0%, rgba(31, 37, 36, 0.72) 58%, rgba(31, 37, 36, 0.38) 100%),
      linear-gradient(0deg, rgba(31, 37, 36, 0.22), rgba(31, 37, 36, 0.1));
  }

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

  .hero-strip {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .intro-grid,
  .capability-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 440px) {
  .site-header {
    height: 64px;
  }

  .mobile-nav {
    top: 64px;
  }

  .brand {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

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