/* ==========================================================================
   Oil Mop Environmental Services Ltd.
   site.css — the whole stylesheet. No framework, no icon font.
   Brand orange #F37022 sampled from the OMES emblem.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  --orange: #f37022;
  --orange-dark: #d75c14;
  --orange-soft: #fdf1e9;

  --ink: #12100f;
  --ink-2: #231f20;
  --ink-3: #35302e;

  --text: #1c1918;
  --muted: #5b5754;
  --faint: #8a8481;

  --surface: #ffffff;
  --surface-2: #f7f7f6;
  --surface-3: #efeeec;
  --line: #e3e1de;
  --line-strong: #cfccc8;

  --green: #1f6f5c;
  --green-soft: #eaf3f0;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(18, 16, 15, .05);
  --shadow: 0 10px 30px -12px rgba(18, 16, 15, .16);
  --shadow-lg: 0 28px 60px -24px rgba(18, 16, 15, .3);

  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 9vw, 132px);
  --maxw: 1240px;

  --font-display: "Barlow", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 76px;
}

/* ---------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--orange); color: #fff; }

/* ------------------------------------------------------------- utilities -- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(56px, 6vw, 88px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  flex: none;
}

.section-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 60px); }
.section-head h2 { font-size: clamp(32px, 4.4vw, 50px); }
.section-head p {
  margin-top: 18px;
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 62ch;
}

.lede { font-size: clamp(17px, 1.6vw, 19px); color: var(--muted); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

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

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: background-color .18s ease, border-color .18s ease,
              color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(243, 112, 34, .8);
}
.btn--primary:hover { background: var(--orange-dark); }

.btn--ghost {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

.btn--outline { border-color: var(--line-strong); color: var(--text); }
.btn--outline:hover { border-color: var(--ink); background: var(--surface-2); }

.btn svg { width: 17px; height: 17px; flex: none; }

/* ---------------------------------------------------------------- header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(18, 16, 15, .5);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 44px; width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
/* The in-panel call button belongs to the mobile drawer only. */
.nav > .btn { display: none; }

.nav__link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .16s ease, background-color .16s ease;
}
.nav__link:hover { color: var(--text); background: var(--surface-2); }
.nav__link.is-active { color: var(--text); font-weight: 600; }

.header__cta { flex: none; display: flex; align-items: center; gap: 12px; }
.header__cta .btn { padding: 11px 22px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { background: var(--surface-2); }
.nav-toggle span {
  position: relative;
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background-color .16s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, top .22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------------ hero -- */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: min(76vh, 660px);
}

.hero__copy {
  padding: clamp(56px, 7vw, 104px) clamp(24px, 4vw, 72px)
           clamp(56px, 7vw, 104px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  margin-left: auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 26px;
}
.hero__eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--orange);
  flex: none;
}

.hero h1 {
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1;
  letter-spacing: -.032em;
}
/* Logotype lockup: the company name reads as one mark, with the descriptor
   set smaller and tracked out rather than shouted in orange. */
.hero h1 .accent {
  display: block;
  margin-top: .22em;
  font-size: .44em;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.hero__sub {
  margin-top: 24px;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .74);
  max-width: 48ch;
}

.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__meta {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 9px; }
.hero__meta svg { width: 15px; height: 15px; color: var(--orange); flex: none; }

.hero__media { position: relative; min-height: 320px; }
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* Scrim: photography here is only 960px wide, so a gradient keeps the seam
   soft and stops any softness reading as a defect. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(18, 16, 15, .58) 20%, rgba(18, 16, 15, 0) 60%),
    linear-gradient(0deg, rgba(18, 16, 15, .48) 0%, rgba(18, 16, 15, 0) 48%),
    radial-gradient(120% 90% at 65% 45%, rgba(18, 16, 15, 0) 40%, rgba(18, 16, 15, .34) 100%);
}

/* ------------------------------------------------------------ trust strip -- */
.stats { background: var(--ink-2); color: #fff; border-top: 1px solid rgba(255, 255, 255, .08); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
}
.stats__item {
  background: var(--ink-2);
  padding: clamp(28px, 3.4vw, 44px) clamp(18px, 2.4vw, 34px);
}
.stats__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--orange);
  line-height: 1;
}
.stats__label {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .66);
}

/* ----------------------------------------------------------------- cards -- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 2.6vw, 34px);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
/* Orange accent wipes across the top edge on hover */
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  height: 3px; width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s cubic-bezier(.2, .7, .3, 1);
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-3px); }
.card:hover::before, .card:focus-within::before { transform: scaleX(1); }

.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 23px; height: 23px; }

.card h3 { font-size: 21px; letter-spacing: -.015em; }
.card__summary { margin-top: 12px; color: var(--muted); font-size: 15.5px; line-height: 1.62; }

/* ---------------------------------------------------------- services tabs -- */
/* Master–detail: a rail listing all 7 services beside a full-width reading
   panel. Content depth varies wildly between services (one paragraph up to
   six + lists), which is exactly what this pattern absorbs. */
.svc-tabs {
  display: grid;
  grid-template-columns: 296px minmax(0, 1fr);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.svc-rail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px;
  position: sticky;
  top: calc(var(--header-h) + 18px);
  align-self: start;
}

.svc-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px 11px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  color: var(--muted);
  position: relative;
  transition: background-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.svc-tab:hover { color: var(--text); background: rgba(255, 255, 255, .75); }
.svc-tab[aria-selected="true"] {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.svc-tab[aria-selected="true"]::before {
  content: "";
  position: absolute;
  left: -14px;                 /* flush with the rail's edge */
  top: 9px; bottom: 9px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--orange);
}

.svc-tab__icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.svc-tab__icon svg { width: 18px; height: 18px; }

.svc-panels {
  background: var(--surface);
  border-left: 1px solid var(--line);
  border-radius: 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0;
  min-height: 480px;
}
.svc-panel { display: none; padding: clamp(28px, 3.6vw, 52px); }
.svc-panel.is-active { display: block; }
.svc-panel h3 { font-size: clamp(24px, 2.3vw, 30px); letter-spacing: -.02em; }
.svc-panel__lede { margin-top: 10px; font-size: 16.5px; color: var(--muted); max-width: 70ch; }

.svc-panel__body {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.svc-panel__body > * + * { margin-top: 15px; }
.svc-panel__body p { max-width: 72ch; }
.svc-panel__body h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 28px;
}
.svc-panel__body hr { border: 0; border-top: 1px solid var(--line); margin: 26px 0 0; }

/* Without JS the rail is redundant — hide it and stack every panel open. */
html:not(.js) .svc-tabs { grid-template-columns: 1fr; }
html:not(.js) .svc-rail { display: none; }
html:not(.js) .svc-panels { border-left: 0; border-radius: calc(var(--radius-lg) - 1px); }
html:not(.js) .svc-panel { display: block; }
html:not(.js) .svc-panel + .svc-panel { border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .svc-tabs { grid-template-columns: 1fr; }
  .svc-rail {
    position: static;
    flex-direction: row;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .svc-rail::-webkit-scrollbar { display: none; }
  .svc-tab { flex: none; border: 1px solid var(--line); background: var(--surface); padding: 9px 14px 9px 10px; }
  .svc-tab[aria-selected="true"] { border-color: var(--orange); }
  .svc-tab[aria-selected="true"]::before { display: none; }
  .svc-tab__icon { width: 28px; height: 28px; }
  .svc-tab__icon svg { width: 15px; height: 15px; }
  .svc-panels {
    border-left: 0;
    border-top: 1px solid var(--line);
    border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
    min-height: 0;
  }
}

/* ------------------------------------------------------------- tick list -- */
.ticks { display: grid; gap: 11px; }
.ticks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 28px; }
.ticks--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px 28px; }

.ticks li {
  position: relative;
  padding-left: 27px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}
.ticks--check li { padding-left: 34px; }
.ticks--check li::before {
  width: 20px; height: 20px;
  top: .1em;
  transform: none;
  border-radius: 50%;
  background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f37022' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ------------------------------------------------------- capability band -- */
.band { background: var(--surface-2); border-block: 1px solid var(--line); }
.band__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* The source photos are 1024x314 panoramas. Matching that ratio exactly means
   nothing is cropped and nothing is upscaled — they render at their best. */
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 1024 / 314;
  margin: 0;
}
.shot img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 42px 20px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(0deg, rgba(18, 16, 15, .78) 8%, rgba(18, 16, 15, 0));
}

/* ----------------------------------------------------------------- about -- */
.about__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about__copy > * + * { margin-top: 18px; }
.about__copy p { color: var(--muted); font-size: 16.5px; }

.emblem {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  place-items: center;
}
.emblem img { width: 100%; max-width: 260px; }

.pillar { border-top: 3px solid var(--line); padding-top: 24px; }
.pillar h3 {
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.pillar p { margin-top: 14px; color: var(--muted); font-size: 15.5px; }
.pillar--green { border-top-color: var(--green); }
.pillar--green h3 { color: var(--green); }

/* --------------------------------------------------------------- network -- */
.network {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.network__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.network h2 { font-size: clamp(30px, 3.8vw, 44px); }
.network p { margin-top: 20px; color: rgba(255, 255, 255, .72); font-size: 16.5px; }
.network .eyebrow { color: var(--orange); }

.network__figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

.pins { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
}
.pin svg { width: 14px; height: 14px; color: var(--orange); }

/* ------------------------------------------------------------ hsse promo -- */
.promo {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, var(--surface-2) 0%, var(--surface) 55%),
    var(--surface);
  padding: clamp(34px, 4.4vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.promo h2 { font-size: clamp(26px, 3vw, 36px); }
.promo p { margin-top: 16px; color: var(--muted); max-width: 62ch; }

/* --------------------------------------------------------------- contact -- */
.contact { background: var(--ink); color: #fff; }
.contact .section-head h2 { color: #fff; }
.contact .section-head p { color: rgba(255, 255, 255, .68); }

.office {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
  padding: clamp(26px, 2.6vw, 34px);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.office:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(243, 112, 34, .5);
  transform: translateY(-3px);
}

.office__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}
.office h3 { margin-top: 14px; font-size: 22px; color: #fff; }
.office__addr { margin-top: 10px; color: rgba(255, 255, 255, .66); font-size: 15px; line-height: 1.6; }

.office__rows { margin-top: 22px; display: grid; gap: 2px; }
.office__row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 15px;
  color: rgba(255, 255, 255, .84);
}
.office__row svg { width: 16px; height: 16px; color: var(--orange); flex: none; margin-top: 4px; }
.office__row a { border-bottom: 1px solid transparent; transition: border-color .16s ease, color .16s ease; }
.office__row a:hover { border-bottom-color: var(--orange); color: #fff; }
.office__row .stack { display: grid; gap: 2px; }
.office__row .muted { color: rgba(255, 255, 255, .5); font-size: 13.5px; }

/* ---------------------------------------------------------------- footer -- */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); }
.site-footer__inner {
  padding-block: clamp(40px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px 40px;
}
.site-footer img { height: 46px; width: auto; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-left: auto; }
.site-footer__nav a { font-size: 14.5px; color: var(--muted); transition: color .16s ease; }
.site-footer__nav a:hover { color: var(--text); }

.site-footer__legal {
  border-top: 1px solid var(--line);
  padding-block: 22px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 13.5px;
  color: var(--faint);
}

/* ---------------------------------------------------------- page banner -- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(64px, 8vw, 108px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 112, 34, .22), transparent 68%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); max-width: 18ch; }
.page-hero p { margin-top: 22px; color: rgba(255, 255, 255, .72); max-width: 64ch; font-size: 17px; }

.crumbs { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255, 255, 255, .5); margin-bottom: 22px; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 13px; height: 13px; }

.policy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.policy li {
  position: relative;
  padding: 20px 22px 20px 56px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  transition: border-color .2s ease, background-color .2s ease;
}
.policy li:hover { border-color: var(--line-strong); background: var(--surface); }
.policy li::before {
  content: "";
  position: absolute;
  left: 20px; top: 21px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f37022' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* ---------------------------------------------------------- scroll reveal -- */
/* Scoped to .js so content is never hidden when scripting is off or fails —
   without this, a JS error leaves whole sections blank. */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .62s cubic-bezier(.2, .7, .3, 1), transform .62s cubic-bezier(.2, .7, .3, 1);
}

/* ----------------------------------------------------------- breakpoints -- */
@media (max-width: 1080px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .emblem { max-width: 380px; }
  .network__grid { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr .85fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: flex; }
  .header__cta { display: none; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 10px var(--gutter) 22px;
    margin: 0;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    padding: 15px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__link:hover { background: transparent; }
  .nav__list li:last-child .nav__link { border-bottom: 0; }
  .nav > .btn { display: flex; width: 100%; margin-top: 16px; }

  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { max-width: none; padding-inline: var(--gutter); order: 2; }
  .hero__media { order: 1; aspect-ratio: 16 / 9; min-height: 0; }
  .hero__media::after {
    background:
      linear-gradient(0deg, var(--ink) 2%, rgba(18, 16, 15, .35) 42%, rgba(18, 16, 15, .1) 100%);
  }

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

@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .band__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .ticks--2, .ticks--3 { grid-template-columns: 1fr; }
  .site-footer__nav { margin-left: 0; }
  .hero__actions .btn { flex: 1 1 auto; }
  /* Keep the long eyebrow off the gutter on 360px handsets. */
  .hero__eyebrow, .eyebrow { flex-wrap: wrap; font-size: 11px; letter-spacing: .1em; }
  .hero__eyebrow::before, .eyebrow::before { width: 22px; }
}

/* ------------------------------------------------------------ preferences -- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .hero__media, .band { display: none; }
  body { font-size: 12pt; color: #000; }
  .hero, .contact, .network, .page-hero { background: #fff !important; color: #000 !important; }
}
