:root {
  --ink: #12221f;
  --muted: #65736f;
  --paper: #fbfaf6;
  --band: #eef3ec;
  --line: #d8ded6;
  --brand: #0e5247;
  --brand-dark: #07342e;
  --accent: #c98d32;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(18, 34, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  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;
}

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

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 10px 30px rgba(18, 34, 31, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 150px;
  height: 48px;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: inherit;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.86;
}

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

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

.header-action {
  padding: 0 18px;
  color: var(--brand-dark);
  background: var(--white);
}

.site-header.is-scrolled .header-action {
  color: var(--white);
  background: var(--brand);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 33, 29, 0.82) 0%, rgba(7, 33, 29, 0.48) 42%, rgba(7, 33, 29, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 33, 29, 0.46) 0%, rgba(7, 33, 29, 0.08) 40%, rgba(7, 33, 29, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(680px, calc(100% - 40px));
  min-height: 92vh;
  padding: 112px 0 80px;
  margin-left: clamp(20px, 8vw, 112px);
}

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

.hero h1 {
  margin: 14px 0 0;
  font-size: clamp(4rem, 13vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-logo {
  display: block;
  width: min(260px, 70vw);
  height: 104px;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.brand-tagline {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 780;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

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

.primary-button {
  padding: 0 22px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

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

.section-band {
  background: var(--band);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.intro p:not(.eyebrow),
.section-heading p,
.assurance p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.metric {
  min-height: 150px;
  padding: 30px clamp(18px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--brand);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}

.metric span {
  display: block;
  width: min(190px, 100%);
  margin-top: 12px;
  color: var(--muted);
  font-weight: 650;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact p:last-child {
  margin-top: 16px;
}

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

.channel-card,
.product-grid article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.channel-card {
  min-height: 290px;
  padding: clamp(24px, 4vw, 38px);
}

.channel-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 22px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.channel-status.active {
  color: #064237;
  background: #dceee7;
}

.channel-status.pending {
  color: #70470d;
  background: #f5e6cc;
}

.channel-card p,
.product-grid p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.channel-card a {
  color: var(--brand);
  font-weight: 850;
}

.products {
  background: var(--paper);
}

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

.product-grid article {
  min-height: 240px;
  padding: 28px;
}

.product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  font-weight: 900;
}

.assurance-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.assurance h2,
.contact h2 {
  margin-bottom: 18px;
}

.assurance-list {
  display: grid;
  gap: 14px;
}

.assurance-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.assurance-list span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

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

.contact-panel {
  padding: clamp(24px, 4vw, 34px);
}

dl {
  margin: 0 0 24px;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

dd a {
  color: var(--brand);
}

.full {
  width: 100%;
}

footer {
  color: var(--white);
  background: var(--brand-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1120px, calc(100% - 40px));
  min-height: 120px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 33, 29, 0.88) 0%, rgba(7, 33, 29, 0.54) 72%, rgba(7, 33, 29, 0.2) 100%),
      linear-gradient(180deg, rgba(7, 33, 29, 0.5) 0%, rgba(7, 33, 29, 0.2) 45%, rgba(7, 33, 29, 0.58) 100%);
  }

  .hero-content {
    width: calc(100% - 40px);
    min-height: 88vh;
    margin: 0 auto;
    padding-top: 96px;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6.6rem);
  }

  .hero-logo {
    width: min(220px, 78vw);
    height: 88px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .two-column,
  .assurance-layout,
  .contact-layout,
  .channel-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    min-height: 130px;
    border-bottom: 1px solid var(--line);
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .section-heading {
    display: block;
  }

  dl div {
    display: block;
  }

  dd {
    margin-top: 4px;
    text-align: left;
  }

  .footer-inner {
    display: grid;
    padding: 28px 0;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 124px;
    height: 42px;
    padding: 4px 8px;
  }

  .header-action {
    max-width: 132px;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
  }
}
