:root {
  --ink: #17211f;
  --muted: #586663;
  --deep: #092f2c;
  --teal: #0f5d55;
  --teal-2: #17746a;
  --mint: #ccebe4;
  --mint-soft: #ecf7f3;
  --paper: #f7f3ea;
  --white: #fff;
  --coral: #e47c4f;
  --coral-dark: #b9542e;
  --line: #d8dfda;
  --shadow: 0 22px 70px rgba(9, 47, 44, .12);
  --radius: 24px;
  --wrap: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--coral-dark); }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--deep);
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.85rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4.6vw, 3.75rem); max-width: 16ch; }
h3 { font-size: 1.22rem; letter-spacing: -.015em; }
p { color: var(--muted); }
main:focus { outline: none; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 126px) 0; }
.section-tight { padding: 56px 0; }
.paper { background: var(--white); }
.tint { background: var(--mint-soft); }
.deep-panel { background: var(--deep); color: var(--white); }
.deep-panel h2, .deep-panel h3 { color: var(--white); }
.deep-panel p, .deep-panel li { color: #c7dad5; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 33, 31, .09);
  background: rgba(247, 243, 234, .94);
}
.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  text-decoration: none;
  min-width: max-content;
}
.brand:hover { color: var(--deep); }
.brand-sigil {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px 4px 14px 4px;
  color: var(--white);
  background: var(--teal);
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .08em;
  box-shadow: 8px 8px 0 var(--mint);
}
.brand-copy { display: grid; gap: 1px; }
.brand-mark { font-size: 1.03rem; letter-spacing: .01em; }
.brand-sub { font-size: .7rem; color: var(--muted); letter-spacing: .025em; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a, .nav-item > a, .nav-item {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}
.site-nav > a:hover, .nav-item > a:hover { color: var(--teal); }
.site-nav > .nav-cta, .site-nav > .nav-cta:hover { color: var(--white); }
.has-drop { position: relative; }
.drop {
  display: none;
  position: absolute;
  top: calc(100% + 13px);
  left: -18px;
  width: 242px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.drop::before { content: ""; position: absolute; inset: -14px 0 auto; height: 14px; }
.drop a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}
.drop a:hover { background: var(--mint-soft); color: var(--teal); }
.has-drop:hover .drop { display: block; }
.has-drop:focus-within .drop { display: block; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--deep);
  background: var(--white);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa { color: var(--white); background: var(--teal); box-shadow: 0 10px 26px rgba(15, 93, 85, .18); }
.btn-wa:hover { color: var(--white); background: var(--teal-2); }
.btn-coral { color: var(--white); background: var(--coral); }
.btn-coral:hover { color: var(--white); background: var(--coral-dark); }
.btn-ghost { color: var(--deep); border-color: currentColor; background: transparent; }
.btn-ghost:hover { color: var(--teal); background: var(--white); }
.btn-navy { color: var(--white); background: var(--deep); }
.btn-navy:hover { color: var(--white); background: var(--teal); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 112px) 0 clamp(72px, 10vw, 132px);
  background:
    radial-gradient(circle at 76% 16%, rgba(204, 235, 228, .95), transparent 32%),
    linear-gradient(145deg, #f7f3ea 0%, #f1efe7 55%, #e8f4ef 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  bottom: -120px;
  border: 42px solid rgba(228, 124, 79, .14);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--teal);
  font-weight: 850;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before, .eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--coral); }
.hero h1 { margin-bottom: 24px; }
.hero p { max-width: 62ch; font-size: 1.12rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proof-list li {
  padding: 8px 12px;
  border: 1px solid rgba(15, 93, 85, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  color: var(--deep);
  font-size: .82rem;
  font-weight: 700;
}
.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: 150px 150px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--deep);
}
.hero-media img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.media-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(9, 47, 44, .88);
  font-size: .79rem;
  line-height: 1.4;
}

.sec-head { margin-bottom: 42px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p { max-width: 68ch; font-size: 1.03rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card, .info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 9px 30px rgba(9, 47, 44, .05);
}
.card > :last-child, .info-card > :last-child { margin-bottom: 0; }
.card-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 12px;
  color: var(--deep);
  background: var(--mint);
  font-size: .78rem;
  font-weight: 850;
}
.card-link { font-weight: 800; text-decoration: none; }
.model {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--mint-soft);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #6d361f;
  background: #fde5d9;
  font-size: .76rem;
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}
.split > *, .card-grid > *, .contact-grid > *, .evidence-strip > * { min-width: 0; }
.sticky-copy { position: sticky; top: 122px; }
.stack { display: grid; gap: 18px; }
.check-list, .plain-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: .7rem;
  font-weight: 900;
}
.plain-list li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.plain-list strong { color: var(--deep); }
.note {
  padding: 20px 22px;
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  background: #fff6f1;
  color: #71422f;
}
.note p:last-child { margin-bottom: 0; }
.evidence-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .8fr);
  border: 1px solid rgba(204, 235, 228, .2);
  border-radius: var(--radius);
  overflow: hidden;
}
.evidence-strip > div { padding: 28px; border-right: 1px solid rgba(204, 235, 228, .16); }
.evidence-strip > div:last-child { border-right: 0; }
.evidence-strip b { display: block; margin-bottom: 6px; color: var(--white); font-size: 1.05rem; }
.evidence-strip span { color: #bcd3ce; font-size: .88rem; }

.page-hero { padding: 72px 0 62px; background: linear-gradient(135deg, #edf6f2, var(--paper)); }
.page-hero h1 { max-width: 15ch; font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 20px; }
.page-hero p { max-width: 68ch; font-size: 1.08rem; }
.crumb { margin-bottom: 18px; color: var(--muted); font-size: .82rem; }
.crumb a { color: inherit; }

.scroll-x { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.scroll-x:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
table { width: 100%; min-width: 850px; border-collapse: collapse; }
th, td { padding: 17px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: var(--deep); background: var(--mint-soft); font-size: .77rem; letter-spacing: .06em; text-transform: uppercase; }
td { color: var(--muted); font-size: .92rem; }
tbody tr:last-child td { border-bottom: 0; }
td:first-child { color: var(--deep); font-weight: 850; }
.table-note { margin-top: 14px; font-size: .84rem; }

.product {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.fact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.fact {
  padding: 18px;
  border-radius: 16px;
  background: var(--mint-soft);
}
.fact span { display: block; margin-bottom: 5px; color: var(--muted); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; }
.fact strong { color: var(--deep); }
.boundary {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #f0c0aa;
  border-radius: var(--radius);
  background: #fff6f1;
}
.boundary h3 { color: #713b25; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.gallery img { width: 100%; aspect-ratio: 9 / 14; object-fit: cover; }
.gallery figcaption { min-height: 88px; padding: 16px 18px; color: var(--muted); font-size: .83rem; }

.timeline { counter-reset: step; display: grid; gap: 12px; }
.timeline > div {
  counter-increment: step;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.timeline > div::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  background: var(--deep);
  font-weight: 850;
  font-size: .78rem;
}
.timeline h3 { margin: 3px 0 7px; }
.timeline p { margin: 0; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; }
.faq-item summary { padding: 20px 54px 20px 22px; color: var(--deep); font-weight: 800; cursor: pointer; position: relative; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 17px; color: var(--teal); font-size: 1.5rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-a { padding: 0 22px 22px; color: var(--muted); }
.faq-a p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 20px; align-items: start; }
.contact-panel { padding: clamp(24px, 5vw, 42px); border-radius: 28px; background: var(--deep); }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel p, .contact-panel li { color: #c8dbd6; }
.rfq-form { padding: clamp(24px, 5vw, 42px); border: 1px solid var(--line); border-radius: 28px; background: var(--white); }
fieldset { margin: 0 0 24px; padding: 0; border: 0; }
legend { width: 100%; margin-bottom: 14px; color: var(--deep); font-weight: 850; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 7px; color: var(--deep); font-weight: 700; font-size: .88rem; }
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bdc9c4;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
.help { margin-top: 10px; color: var(--muted); font-size: .8rem; }

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(30px, 6vw, 58px);
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(125deg, var(--deep), var(--teal));
  box-shadow: var(--shadow);
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: #c8dbd6; margin-bottom: 0; max-width: 60ch; }

.site-footer { padding: 68px 0 26px; color: #bfd3ce; background: #061f1d; }
.foot-grid { display: grid; grid-template-columns: 1.1fr .9fr 1.1fr; gap: 54px; }
.foot-brand { margin-bottom: 14px; color: var(--white); font-size: 1.3rem; font-weight: 850; }
.foot-head { margin-bottom: 14px; color: var(--white); font-weight: 800; }
.foot-note { color: #9fb9b3; font-size: .88rem; }
.foot-grid > div > a:not(.btn) { display: block; width: fit-content; margin: 8px 0; color: #bfd3ce; text-decoration: none; font-size: .89rem; }
.foot-grid > div > a:not(.btn):hover { color: var(--white); }
.foot-bottom { padding-top: 28px; margin-top: 44px; border-top: 1px solid rgba(255,255,255,.12); color: #7f9d96; font-size: .78rem; }
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 40px rgba(9, 47, 44, .25);
}
.wa-float:hover { color: var(--white); background: var(--teal-2); }

@media (max-width: 960px) {
  .nav-toggle { display: grid; place-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    height: calc(100vh - 82px);
    z-index: 120;
    padding: 28px 22px 80px;
    overflow-y: auto;
    align-items: stretch;
    background: var(--paper);
  }
  .nav-open { overflow: hidden; }
  .nav-open .site-nav { display: flex; flex-direction: column; gap: 6px; }
  .site-nav > a, .nav-item > a { display: block; padding: 13px 8px; font-size: 1.05rem; }
  .has-drop { width: 100%; }
  .drop { display: block; position: static; width: 100%; padding: 0 0 8px 18px; border: 0; background: transparent; box-shadow: none; }
  .drop a { padding: 9px 8px; color: var(--muted); }
  .nav-cta { margin-top: 16px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 460px; max-width: 560px; width: 100%; justify-self: center; }
  .hero-media img { min-height: 460px; }
  .sticky-copy { position: static; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .evidence-strip { grid-template-columns: repeat(2, 1fr); }
  .evidence-strip > div { border-bottom: 1px solid rgba(204,235,228,.16); }
  .gallery { gap: 12px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .wrap, .narrow { width: min(calc(100% - 28px), var(--wrap)); }
  .header-row { min-height: 74px; }
  .site-nav { height: calc(100vh - 74px); }
  .brand-sub { display: none; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: clamp(2.55rem, 14vw, 4.3rem); }
  .hero-media, .hero-media img { min-height: 390px; }
  .hero-media { border-radius: 100px 100px 24px 24px; }
  .card-grid, .fact-grid, .form-grid, .foot-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure:nth-child(2), .gallery figure:nth-child(3) { display: grid; grid-template-columns: 42% 58%; }
  .gallery figure:nth-child(2) img, .gallery figure:nth-child(3) img { height: 100%; min-height: 250px; aspect-ratio: auto; }
  .evidence-strip { grid-template-columns: 1fr; }
  .evidence-strip > div { border-right: 0; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .btn { width: 100%; }
  .wa-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.img-fallback-source{position:absolute!important;width:1px!important;height:1px!important;margin:-1px!important;padding:0!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important;border:0!important}
.img-fallback{display:grid;place-items:center;padding:18px;border:1px dashed var(--line);border-radius:inherit;background:var(--mint-soft);color:var(--muted);text-align:center;font-size:.85rem}
