:root {
  --ink: #24212a;
  --muted: #63716d;
  --line: #dbe8e2;
  --paper: #f7fbf9;
  --surface: #ffffff;
  --surface-strong: #fdf8f5;
  --rose: #8b4f69;
  --rose-dark: #5b2f47;
  --teal: #167a74;
  --teal-dark: #0f5f5b;
  --sage: #708f74;
  --coral: #d77a61;
  --gold: #b98442;
  --shadow: 0 24px 70px rgba(33, 65, 59, 0.14);
  --soft-shadow: 0 12px 36px rgba(33, 65, 59, 0.08);
  --radius: 8px;
  --wrap: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfdfa 0%, var(--paper) 36%, #f8f3f6 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 249, 0.92);
  border-bottom: 1px solid rgba(219, 232, 226, 0.85);
  box-shadow: 0 10px 34px rgba(34, 58, 55, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--wrap);
  min-height: 78px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(37, 85, 80, 0.18);
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #443a42;
  font-size: 14px;
  font-weight: 760;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--teal-dark);
}

.nav-cta {
  padding: 10px 15px;
  color: #fffaf7 !important;
  background: linear-gradient(135deg, var(--ink), var(--rose-dark));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(48, 37, 46, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(90deg, rgba(22, 122, 116, 0.09), rgba(139, 79, 105, 0.08)),
    #eef5f1;
}

.section.tight {
  padding: 64px 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 84px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 56px);
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

h4 {
  margin-bottom: 10px;
  font-size: 17px;
}

.lead {
  max-width: 760px;
  color: #596862;
  font-size: 19px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 76px 0 34px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 251, 249, 0.99) 0%, rgba(247, 251, 249, 0.91) 33%, rgba(247, 251, 249, 0.36) 61%, rgba(247, 251, 249, 0) 82%),
    linear-gradient(0deg, rgba(247, 251, 249, 1) 0%, rgba(247, 251, 249, 0) 24%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  filter: saturate(1.08) contrast(1.04);
  object-fit: cover;
  object-position: center right;
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: #56645f;
  font-size: 19px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-badges span,
.chip,
.mini-chip {
  padding: 8px 10px;
  color: #36524e;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 232, 226, 0.95);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(35, 65, 59, 0.06);
  font-size: 13px;
  font-weight: 850;
}

.mini-chip {
  color: var(--rose-dark);
  background: #fff5f2;
  border-color: #f1ddd5;
  box-shadow: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(68, 38, 48, 0.14);
}

.button.primary {
  color: #fffaf7;
  background: linear-gradient(135deg, var(--rose-dark), #1f716b);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(219, 232, 226, 0.98);
}

.button.full {
  width: 100%;
}

.hero-stats,
.stat-grid,
.evidence-grid,
.procurement-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(219, 232, 226, 0.95);
  border: 1px solid rgba(219, 232, 226, 0.95);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin-top: 46px;
}

.hero-stats div,
.stat,
.evidence-grid article,
.procurement-panel div {
  min-width: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-stats strong,
.stat strong,
.evidence-grid strong,
.procurement-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--rose-dark);
  font-size: 28px;
  line-height: 1;
}

.hero-stats span,
.stat span,
.evidence-grid span,
.procurement-panel span {
  color: #62716d;
  font-size: 13px;
  font-weight: 700;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p:last-child {
  margin-bottom: 4px;
  font-size: 17px;
}

.section-head.narrow {
  display: block;
  max-width: 780px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.product-card,
.feature-card,
.quote-card {
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 232, 226, 0.98);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.product-card {
  border-top: 4px solid rgba(22, 122, 116, 0.5);
}

.product-card p,
.card p,
.feature-card p {
  margin-bottom: 16px;
}

.card ul,
.product-card ul,
.feature-card ul {
  display: grid;
  gap: 7px;
  padding-left: 18px;
  margin: 0;
  color: #53625d;
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 900;
}

.media-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 232, 226, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.page-hero {
  padding: 72px 0 56px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.28)),
    linear-gradient(90deg, rgba(22, 122, 116, 0.08), rgba(139, 79, 105, 0.08)),
    #eef5f1;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.56fr);
  gap: 44px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(40px, 5.4vw, 72px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--teal-dark);
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #334b47;
  background: #f1f8f5;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

td {
  color: #53625d;
}

tr:last-child td {
  border-bottom: 0;
}

.process-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid article,
.timeline article {
  min-width: 0;
  padding: 26px;
  background: #fff;
}

.step-number {
  display: block;
  margin-bottom: 30px;
  color: var(--teal);
  font-weight: 950;
}

.cta-band {
  padding: 36px;
  color: #fffaf7;
  background:
    linear-gradient(120deg, rgba(91, 47, 71, 0.96), rgba(15, 95, 91, 0.96)),
    var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-band p,
.cta-band span {
  color: rgba(255, 250, 247, 0.82);
}

.cta-band h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.cta-band .button.secondary {
  color: var(--ink);
  background: #fffaf7;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-strip a,
.contact-strip span {
  padding: 10px 12px;
  color: #fffaf7;
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.contact-strip a {
  background: linear-gradient(135deg, var(--rose-dark), var(--teal));
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 232, 226, 0.98);
  border-top: 4px solid rgba(22, 122, 116, 0.58);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #443944;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d5e2dd;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(22, 122, 116, 0.24);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 880;
}

details p {
  padding: 0 22px 20px;
  margin-bottom: 0;
}

.fact-grid,
.query-grid,
.resource-grid,
.evidence-list {
  display: grid;
  gap: 18px;
}

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

.query-grid,
.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fact-box,
.question-card,
.resource-card,
.evidence-list article,
.note-panel {
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(219, 232, 226, 0.98);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.fact-box strong,
.question-card strong,
.resource-card strong,
.evidence-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 18px;
  line-height: 1.2;
}

.fact-box span,
.question-card span,
.resource-card span,
.evidence-list span {
  display: block;
  color: #5a6863;
  font-size: 14px;
}

.question-card h3,
.resource-card h3,
.evidence-list h3 {
  font-size: 21px;
}

.article-body {
  display: grid;
  gap: 34px;
  max-width: 930px;
}

.article-body h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.article-body h3 {
  margin-top: 18px;
}

.article-body p,
.article-body li {
  color: #53625d;
  font-size: 17px;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.review-note {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 10px;
  color: #36524e;
  background: #f1f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.definition-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.definition-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.definition-list dt {
  color: var(--teal-dark);
  font-weight: 900;
}

.definition-list dd {
  margin: 0;
  color: #53625d;
}

.site-footer {
  background: #24212a;
  color: #fffaf7;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(160px, 0.35fr));
  gap: 34px;
  width: var(--wrap);
  margin: 0 auto;
  padding: 48px 0;
}

.footer-inner p,
.footer-inner li,
.footer-inner a,
.footer-brand small {
  color: rgba(255, 250, 247, 0.72);
}

.footer-inner ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-inner h4 {
  color: #fffaf7;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.legal-note {
  margin-top: 24px;
  color: rgba(255, 250, 247, 0.58);
  font-size: 12px;
}

@media (max-width: 1020px) {
  .site-nav {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(247, 251, 249, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .section-head,
  .split,
  .split.reverse,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .fact-grid,
  .query-grid,
  .resource-grid,
  .stat-grid,
  .evidence-grid,
  .procurement-panel,
  .process-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root {
    --wrap: min(100vw - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    inset: 68px 10px auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 68px 0;
  }

  .section.tight {
    padding: 50px 0;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 50px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .hero {
    min-height: 840px;
    padding: 54px 0 24px;
    align-content: start;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(247, 251, 249, 0.99) 0%, rgba(247, 251, 249, 0.91) 52%, rgba(247, 251, 249, 0.2) 100%),
      linear-gradient(0deg, rgba(247, 251, 249, 1) 0%, rgba(247, 251, 249, 0) 28%);
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-copy,
  .lead {
    font-size: 18px;
  }

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

  .hero-badges span {
    width: 100%;
  }

  .hero-stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .fact-grid,
  .query-grid,
  .resource-grid,
  .stat-grid,
  .evidence-grid,
  .procurement-panel,
  .process-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 46px 0 44px;
  }

  .card,
  .product-card,
  .feature-card,
  .quote-card,
  .process-grid article,
  .timeline article,
  .inquiry-form,
  .cta-band {
    padding: 20px;
  }

  .media-card img {
    min-height: 300px;
  }

  .definition-list div {
    grid-template-columns: 1fr;
  }

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

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