:root {
  --ink: #101418;
  --ink-soft: #2a3338;
  --fog: #eef1ef;
  --cream: #f7f5f0;
  --white: #fff;
  --line: #d8ddd9;
  --teal: #0f6e62;
  --teal-2: #148f7f;
  --muted: #5c666b;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 560;
  line-height: 1.12;
  margin: 0 0 0.45em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); }
h3 { font-size: 1.28rem; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

.topbar {
  background: var(--ink);
  color: #c9d4d0;
  font-size: 0.8rem;
  font-weight: 500;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.topbar a:hover { color: #fff; }

header.site {
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
.logo img { height: 44px; width: auto; }
nav.primary { display: flex; align-items: center; gap: 22px; font-weight: 600; font-size: 0.95rem; }
nav.primary a { color: var(--ink-soft); }
nav.primary a:hover, nav.primary a.active { color: var(--teal); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn-solid { background: #1f8a7a; color: #fff; border-radius: 999px; }
.btn-teal { background: #1f8a7a; color: #fff; border-radius: 999px; }
.btn-line { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; }
.btn:hover { filter: none; background: #18786a; color: #fff; }
nav.primary a.btn {
  background: #e7f4f1;
  color: #14665b;
  border: 1px solid #c5e0da;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600;
}
nav.primary a.btn:hover,
nav.primary a.btn.active {
  background: #d4ebe6;
  color: #0e534a;
  border-color: #a9d0c8;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: var(--teal);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
  padding: 72px 0 64px;
}
.kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-2);
}
.lede { color: #c5d0cc; font-size: 1.08rem; max-width: 38rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-photo {
  min-height: 340px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(16,20,24,.45)),
    url("/assets/hero-cam.png") center/cover;
  border-radius: 2px;
}

.section { padding: 72px 0; }
.section.fog { background: var(--fog); }
.section.white { background: var(--white); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.muted { color: var(--muted); }

.work-list { list-style: none; padding: 0; margin: 28px 0 0; }
.work-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.work-list li:last-child { border-bottom: 1px solid var(--line); }
.num { font-family: "Source Serif 4", serif; color: var(--teal); font-size: 1.2rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.facts div {
  background: var(--white);
  padding: 24px;
}
.facts strong { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }

.brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.brand {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}
.areas { display: flex; flex-wrap: wrap; gap: 8px; }
.areas span {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 650; }
.faq p { margin: 10px 0 0; color: var(--muted); }

form.stack { display: grid; gap: 12px; max-width: 560px; }
label { font-weight: 650; font-size: 0.88rem; }
input, select, textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 130px; }

.cta {
  background: var(--teal);
  color: #fff;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta h2 { color: #fff; }

footer.site {
  background: var(--ink);
  color: #c5d0cc;
  padding: 48px 0 24px;
}
footer.site .wrap { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
footer.site a:hover { color: #fff; }
footer .legal { opacity: 0.55; font-size: 0.8rem; margin-top: 32px; }

@media (max-width: 840px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  nav.primary {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 118px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 16px 40px rgba(16,20,24,.12);
  }
  nav.primary.open { display: flex; }
  .hero .wrap, .split, .facts, .brands, footer.site .wrap { grid-template-columns: 1fr; }
  .hero-photo { min-height: 220px; }
}
