/* ==========================================================================
   Brents Electrical & Security LTD.
   Harbour Industrial design system — see DESIGN-SYSTEM.md
   Mobile-first. Every value below resolves to a token.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  /* Hull — dark field */
  --hull-900: oklch(0.145 0.019 245);
  --hull-800: oklch(0.196 0.026 245);
  --hull-700: oklch(0.262 0.028 245);
  --hull-600: oklch(0.345 0.026 245);

  /* Paper — light field */
  --paper-000: oklch(0.995 0.003 80);
  --paper-050: oklch(0.972 0.006 80);
  --paper-100: oklch(0.938 0.008 80);
  --paper-200: oklch(0.884 0.009 80);

  /* Ink, chalk, steel */
  --ink: oklch(0.232 0.024 245);
  --ink-soft: oklch(0.452 0.019 245);
  --steel: oklch(0.500 0.016 245);      /* labels on paper — 5.0:1 */
  --steel-dim: oklch(0.645 0.014 245);  /* labels on hull  — 5.7:1 */
  --chalk: oklch(0.968 0.005 245);
  --chalk-soft: oklch(0.782 0.011 245);

  /* Signal amber — the one accent */
  --amber-500: oklch(0.762 0.158 62);
  --amber-600: oklch(0.688 0.153 55);
  --amber-700: oklch(0.508 0.132 51);

  /* Beacon red — emergency semantics only */
  --beacon: oklch(0.564 0.191 27);

  /* Type */
  --font-display: "Big Shoulders Display", "Big Shoulders", "Haettenschweiler",
    "Arial Narrow", system-ui, sans-serif;
  --font-body: "Chivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "Chivo Mono", ui-monospace, "SFMono-Regular", "Consolas", monospace;

  --step--1: clamp(0.8125rem, 0.79rem + 0.10vw, 0.875rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --step-1: clamp(1.25rem, 1.18rem + 0.34vw, 1.4rem);
  --step-2: clamp(1.5625rem, 1.42rem + 0.72vw, 2.1rem);
  --step-3: clamp(1.95rem, 1.66rem + 1.38vw, 3.15rem);
  --step-4: clamp(2.45rem, 1.93rem + 2.50vw, 4.7rem);
  --step-5: clamp(2.75rem, 1.95rem + 3.30vw, 5.25rem);

  /* Space — 4pt, semantic */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Composite — these enforce site-wide consistency */
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 128px);
  --section-y-sm: clamp(48px, 6vw, 80px);
  --container: 1200px;
  --container-wide: 1440px;
  --measure: 66ch;

  /* Form */
  --radius: 2px;
  --control-h: 52px;
  --control-h-sm: 44px;
  --control-pad: 28px;
  --control-pad-sm: 20px;
  --header-h: 64px;
  --shadow-lift: 0 12px 34px -12px oklch(0.145 0.019 245 / 0.44);

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --dur-state: 140ms;
  --dur-enter: 520ms;
}

@media (min-width: 1024px) {
  :root { --header-h: 84px; }
}

/* ---------- 2. Reset ----------------------------------------------------- */

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

* { margin: 0; }

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

body {
  min-height: 100svh;
  background: var(--paper-050);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
picture { display: contents; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
:where(p, li) { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 2px;
  border-radius: var(--radius);
}

::selection { background: var(--amber-500); color: var(--hull-900); }

.skip {
  position: absolute;
  left: var(--space-md);
  top: -200px;
  z-index: 200;
  background: var(--amber-500);
  color: var(--hull-900);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: top var(--dur-state) var(--ease-out-quart);
}
.skip:focus { top: var(--space-md); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* ---------- 3. Base typography ------------------------------------------- */

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

h1 { font-size: var(--step-5); line-height: 0.92; letter-spacing: -0.012em; }
h1.h1--sm { font-size: var(--step-4); }
h2 { font-size: var(--step-3); line-height: 1.02; }
h3 { font-size: var(--step-2); line-height: 1.04; }
h4 { font-size: var(--step-1); line-height: 1.12; font-weight: 600; }

p { max-width: var(--measure); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 58ch;
}

.tel { font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }

/* Text links inside prose */
.prose a,
a.tlink {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--amber-700);
  transition: color var(--dur-state) var(--ease-out-quart);
}
.prose a:hover, a.tlink:hover { color: var(--amber-700); }

/* ---------- 4. Layout primitives ----------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--wide { max-width: var(--container-wide); }

.band { padding-block: var(--section-y); }
.band--sm { padding-block: var(--section-y-sm); }
.band--flush-top { padding-block-start: 0; }
.band--pad-top { padding-block-start: calc(var(--header-h) + var(--section-y)); }

.band--paper { background: var(--paper-050); color: var(--ink); }
.band--inset { background: var(--paper-100); color: var(--ink); }
.band--hull { background: var(--hull-800); color: var(--chalk); }
.band--deep { background: var(--hull-900); color: var(--chalk); }

.band--hull .lede,
.band--deep .lede { color: var(--chalk-soft); }
.band--hull .kicker,
.band--deep .kicker { color: var(--chalk-soft); }
.band--hull .kicker::before,
.band--deep .kicker::before { background: var(--amber-500); }

/* Section header — one structure, used everywhere */
.shead { display: grid; gap: var(--space-md); }
.shead + * { margin-top: var(--space-2xl); }
/* Inside a gapped stack the gap already does this job */
.stack > .shead + *, .stack-sm > .shead + *, .stack-lg > .shead + * { margin-top: 0; }

.kicker {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel);
}
.kicker::before {
  content: "";
  flex: none;
  width: 26px;
  height: 1px;
  background: var(--amber-700);
}

/* Asymmetric 12-column field, desktop only */
.field { display: grid; gap: var(--space-xl); }
@media (min-width: 900px) {
  .field { grid-template-columns: repeat(12, 1fr); gap: var(--space-xl) var(--space-lg); }
  .col-1-7 { grid-column: 1 / 8; }
  .col-1-6 { grid-column: 1 / 7; }
  .col-4-13 { grid-column: 4 / 13; }
  .col-7-13 { grid-column: 7 / 13; }
  .col-8-13 { grid-column: 8 / 13; }
}

/* Hairline rule */
.rule { height: 1px; background: var(--paper-200); border: 0; }
.band--hull .rule, .band--deep .rule { background: var(--hull-600); }

/* ---------- 5. Buttons — the contract ------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  height: var(--control-h);
  padding-inline: var(--control-pad);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--dur-state) var(--ease-out-quart),
    color var(--dur-state) var(--ease-out-quart),
    border-color var(--dur-state) var(--ease-out-quart),
    transform var(--dur-state) var(--ease-out-quart);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--amber-500); color: var(--hull-900); }
.btn--primary:hover { background: var(--amber-600); }

.btn--solid { background: var(--hull-800); color: var(--chalk); }
.btn--solid:hover { background: var(--hull-700); }

.btn--ghost { border-color: currentColor; color: inherit; }
.band--paper .btn--ghost, .band--inset .btn--ghost { border-color: var(--paper-200); }
.btn--ghost:hover { background: color-mix(in oklch, currentColor 10%, transparent); }

.btn--link {
  height: auto; padding: 0; border: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-color: var(--amber-700);
}
.band--hull .btn--link, .band--deep .btn--link { text-decoration-color: var(--amber-500); }
.btn--link:hover { color: var(--amber-700); }
.band--hull .btn--link:hover, .band--deep .btn--link:hover { color: var(--amber-500); }

.btn--block { width: 100%; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ---------- 6. Cards, chips, media --------------------------------------- */

.card {
  background: var(--paper-000);
  border: 1px solid var(--paper-200);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
@media (min-width: 640px) { .card { padding: var(--space-xl); } }

.band--hull .card, .band--deep .card {
  background: var(--hull-700);
  border-color: var(--hull-600);
}

.media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--hull-700);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
/* 1px inset hairline so photos sit on the paper rather than float */
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid oklch(0.145 0.019 245 / 0.14);
  border-radius: var(--radius);
  pointer-events: none;
}

.ratio-wide { aspect-ratio: 16 / 9; }
.ratio-photo { aspect-ratio: 4 / 3; }
.ratio-tall { aspect-ratio: 3 / 4; }
.ratio-square { aspect-ratio: 1; }

/* ---------- 7. Header ---------------------------------------------------- */

.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--chalk);
  background: transparent;
  transition: background-color 260ms var(--ease-out-quart),
    box-shadow 260ms var(--ease-out-quart);
}
.header::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 200%;
  background: linear-gradient(to bottom,
    oklch(0.145 0.019 245 / 0.68), oklch(0.145 0.019 245 / 0));
  z-index: -1;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out-quart);
}
.header.is-stuck { background: var(--hull-900); box-shadow: var(--shadow-lift); }
.header.is-stuck::after { opacity: 0; }
/* Pages without a photographic hero start solid */
.header.is-solid { background: var(--hull-900); }
.header.is-solid::after { opacity: 0; }

.header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.brand { display: flex; align-items: center; gap: var(--space-sm); margin-inline-end: auto; }
.brand img { width: auto; height: 36px; }
.brand__ext { display: none; }
@media (min-width: 380px) { .brand__ext { display: inline; } }

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand__name .brand__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--chalk-soft);
  margin-top: 3px;
}
@media (min-width: 1024px) {
  .brand img { height: 46px; }
  .brand__name { font-size: 1.2rem; }
  .brand__name .brand__sub { font-size: 0.625rem; }
}

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: var(--space-lg); }
  .nav a {
    position: relative;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding-block: var(--space-xs);
    color: var(--chalk);
    transition: color var(--dur-state) var(--ease-out-quart);
  }
  .nav a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    height: 2px;
    background: var(--amber-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms var(--ease-out-expo);
  }
  .nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
  .nav a[aria-current="page"] { color: var(--amber-500); }
}

.header__cta { display: none; }
@media (min-width: 1024px) {
  .header__cta { display: flex; align-items: center; gap: var(--space-md); }
  .header__tel {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: var(--chalk);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
  }
  .header__tel:hover { color: var(--amber-500); }
  .header__cta .btn { height: var(--control-h-sm); padding-inline: var(--control-pad-sm); font-size: 0.85rem; }
}

/* Hamburger */
.burger {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-inline-end: calc(var(--space-sm) * -1);
  color: var(--chalk);
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block; width: 22px; height: 2px;
  background: currentColor;
  transition: transform 240ms var(--ease-out-expo), opacity 160ms linear;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__call {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  color: var(--chalk);
}
@media (min-width: 1024px) { .header__call { display: none; } }

/* Drawer — full navigation, nothing amputated */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--hull-900);
  padding: calc(var(--header-h) + var(--space-xl)) var(--gutter) var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  overflow-y: auto;
  color: var(--chalk);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 300ms var(--ease-out-quart),
    transform 360ms var(--ease-out-expo),
    visibility 0s linear 360ms;
}
.drawer.is-open {
  opacity: 1; visibility: visible; transform: none;
  transition-delay: 0s, 0s, 0s;
}
@media (min-width: 1024px) { .drawer { display: none; } }

.drawer__nav { display: grid; }
.drawer__nav a {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  padding-block: var(--space-md);
  border-top: 1px solid var(--hull-700);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.drawer__nav a:last-child { border-bottom: 1px solid var(--hull-700); }
.drawer__nav a[aria-current="page"] { color: var(--amber-500); }
.drawer__nav b {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--steel-dim);
}
.drawer__foot { display: grid; gap: var(--space-sm); }
.drawer__meta {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  line-height: 1.7;
  color: var(--chalk-soft);
}

body.is-locked { overflow: hidden; }

/* ---------- 8. Hero ------------------------------------------------------ */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: calc(var(--header-h) + var(--space-2xl)) 0;
  background: var(--hull-900);
  color: var(--chalk);
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { min-height: min(88svh, 860px); } }

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 46%; }

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, oklch(0.145 0.019 245 / 0.93) 0%,
      oklch(0.145 0.019 245 / 0.78) 34%,
      oklch(0.145 0.019 245 / 0.44) 64%,
      oklch(0.145 0.019 245 / 0.14) 100%);
}
@media (min-width: 900px) {
  .hero__scrim {
    background:
      linear-gradient(to right, oklch(0.145 0.019 245 / 0.93) 0%,
        oklch(0.145 0.019 245 / 0.80) 34%,
        oklch(0.145 0.019 245 / 0.30) 70%,
        oklch(0.145 0.019 245 / 0.10) 100%),
      linear-gradient(to top, oklch(0.145 0.019 245 / 0.70), transparent 42%);
  }
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__body { margin-block-start: auto; padding-block-end: var(--space-lg); }
@media (min-width: 900px) { .hero__body { max-width: 64%; padding-block-end: var(--space-3xl); } }
@media (min-width: 1280px) { .hero__body { max-width: 58%; } }

.hero__locator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--chalk-soft);
  margin-block-end: var(--space-lg);
}
.hero__locator::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--amber-500);
  flex: none;
}

.hero h1 { margin-block-end: var(--space-lg); }
.hero h1 em { font-style: normal; color: var(--amber-500); }

.hero__lede {
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--chalk-soft);
  max-width: 46ch;
  margin-block-end: var(--space-xl);
}
@media (min-width: 900px) {
  .hero__lede { font-size: var(--step-1); line-height: 1.5; max-width: 46ch; }
}

.hero .actions .btn { flex: 1 1 auto; }
@media (min-width: 480px) { .hero .actions .btn { flex: 0 0 auto; } }

/* Gunwale — the service strip, with the rule that energises on load */
.gunwale {
  position: relative;
  flex: none;
  border-top: 1px solid var(--hull-600);
  background: oklch(0.145 0.019 245 / 0.22);
}
.gunwale::before {
  content: "";
  position: absolute;
  inset-block-start: -1px;
  inset-inline-start: 0;
  height: 1px;
  width: 100%;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  animation: energise 900ms var(--ease-out-expo) 420ms forwards;
}
@keyframes energise { to { transform: scaleX(1); } }

.gunwale__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gunwale__list { grid-template-columns: repeat(4, 1fr); } }

.gunwale__list a {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  padding: var(--space-md) var(--space-md) var(--space-md) 0;
  border-inline-end: 1px solid var(--hull-600);
  transition: color var(--dur-state) var(--ease-out-quart);
  opacity: 0;
  transform: translateY(10px);
  animation: gunwale-up 520ms var(--ease-out-expo) forwards;
}
.gunwale__list a:nth-child(1) { animation-delay: 560ms; }
.gunwale__list a:nth-child(2) { animation-delay: 640ms; }
.gunwale__list a:nth-child(3) { animation-delay: 720ms; }
.gunwale__list a:nth-child(4) { animation-delay: 800ms; }
@keyframes gunwale-up { to { opacity: 1; transform: none; } }

.gunwale__list a:nth-child(2n) { border-inline-end: 0; padding-inline-start: var(--space-md); }
@media (min-width: 768px) {
  .gunwale__list a:nth-child(2n) { border-inline-end: 1px solid var(--hull-600); padding-inline-start: 0; }
  .gunwale__list a { padding-inline-start: 0; }
  .gunwale__list a + a { padding-inline-start: var(--space-lg); }
  .gunwale__list a:last-child { border-inline-end: 0; }
}
@media (min-width: 768px) { .gunwale__list span { font-size: 0.6875rem; letter-spacing: 0.1em; } }
.gunwale__list a:hover { color: var(--amber-500); }
.gunwale__list b {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}
.gunwale__list span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chalk-soft);
}

/* Inner-page hero — same system, shorter */
.pagehero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 62svh;
  padding-block: calc(var(--header-h) + var(--space-3xl)) var(--section-y-sm);
  background: var(--hull-900);
  color: var(--chalk);
  overflow: hidden;
}
@media (min-width: 1024px) { .pagehero { min-height: 56svh; } }
.pagehero__media { position: absolute; inset: 0; z-index: -2; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, oklch(0.145 0.019 245 / 0.94) 0%,
    oklch(0.145 0.019 245 / 0.74) 44%, oklch(0.145 0.019 245 / 0.36) 100%);
}
@media (min-width: 900px) {
  .pagehero__scrim {
    background: linear-gradient(to right, oklch(0.145 0.019 245 / 0.93) 0%,
      oklch(0.145 0.019 245 / 0.72) 46%, oklch(0.145 0.019 245 / 0.28) 100%);
  }
}
.pagehero h1 { font-size: var(--step-4); margin-block-end: var(--space-md); }
.pagehero .lede { color: var(--chalk-soft); }
.pagehero .kicker { color: var(--chalk-soft); }
.pagehero .kicker::before { background: var(--amber-500); }
.pagehero__body { max-width: 46ch; }
.pagehero .actions { margin-block-start: var(--space-xl); }

/* Breadcrumb */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chalk-soft);
  margin-block-end: var(--space-lg);
}
.crumbs a:hover { color: var(--amber-500); }
.crumbs li + li::before { content: "/"; margin-inline-end: var(--space-xs); color: var(--hull-600); }
.crumbs li { display: flex; align-items: center; }
.crumbs [aria-current] { color: var(--chalk); }

/* ---------- 9. Emergency band -------------------------------------------- */

.emergency {
  background: var(--hull-900);
  color: var(--chalk);
  border-block: 1px solid var(--hull-700);
}
.emergency__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-lg);
  padding-block: var(--space-lg);
}
.emergency__flag {
  display: flex; align-items: center; gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--chalk);
  flex: none;
}
.emergency__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--beacon);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--beacon) 70%, transparent);
  animation: beacon 2.4s var(--ease-out-quart) infinite;
  flex: none;
}
@keyframes beacon {
  0%, 62%, 100% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--beacon) 62%, transparent); }
  30% { box-shadow: 0 0 0 8px color-mix(in oklch, var(--beacon) 0%, transparent); }
}
.emergency__text { flex: 1 1 280px; color: var(--chalk-soft); font-size: var(--step--1); line-height: 1.6; max-width: 62ch; }
.emergency__text b { color: var(--chalk); font-weight: 600; }
.emergency .btn { flex: none; }
@media (max-width: 559px) { .emergency .btn { width: 100%; } }

/* ---------- 10. Services — editorial rows, not a card grid ---------------- */

.svc { display: grid; gap: var(--space-4xl); }

.svc__row { display: grid; gap: var(--space-lg); }
@media (min-width: 900px) {
  .svc__row {
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-2xl);
    align-items: center;
  }
  .svc__row .media { grid-column: 1 / 7; grid-row: 1; }
  .svc__row .svc__text { grid-column: 8 / 13; grid-row: 1; }
  .svc__row:nth-child(even) .media { grid-column: 7 / 13; }
  .svc__row:nth-child(even) .svc__text { grid-column: 1 / 6; }
}

.svc__text { display: grid; gap: var(--space-md); align-content: start; }
.svc__index {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--amber-700);
}
.svc__text h3 { font-size: var(--step-3); }
.svc__text p { color: var(--ink-soft); }

.caps {
  display: grid;
  gap: var(--space-xs) var(--space-lg);
}
@media (min-width: 520px) { .caps { grid-template-columns: 1fr 1fr; } }
.caps li {
  position: relative;
  padding-inline-start: var(--space-lg);
  font-size: var(--step--1);
  line-height: 1.55;
  color: var(--ink-soft);
}
.caps li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.62em;
  width: 9px; height: 1px;
  background: var(--amber-700);
}
.band--hull .caps li, .band--deep .caps li { color: var(--chalk-soft); }
.band--hull .caps li::before, .band--deep .caps li::before { background: var(--amber-500); }

/* ---------- 11. Credentials — ruled spec list ---------------------------- */

.spec { display: grid; align-content: start; }
.spec li {
  display: grid;
  gap: var(--space-2xs) var(--space-lg);
  padding-block: var(--space-md);
  border-top: 1px solid var(--paper-200);
}
.spec li:last-child { border-bottom: 1px solid var(--paper-200); }
@media (min-width: 640px) {
  .spec li { grid-template-columns: 4.5rem 1fr; align-items: baseline; }
}
.spec dt, .spec b {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-700);
}
.spec span {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.005em;
}
.spec small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-block-start: var(--space-2xs);
  max-width: 54ch;
}
.band--hull .spec li, .band--deep .spec li { border-color: var(--hull-600); }
.band--hull .spec dt, .band--hull .spec b { color: var(--amber-500); }
.band--hull .spec small { color: var(--chalk-soft); }

/* ---------- 12. Sectors — photo chips ------------------------------------ */

.sectors {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.sector {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: var(--hull-800);
  color: var(--chalk);
}
@media (min-width: 900px) { .sector { min-height: 260px; } }
.sector img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 620ms var(--ease-out-expo);
}
.sector::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, oklch(0.145 0.019 245 / 0.90) 8%,
    oklch(0.145 0.019 245 / 0.44) 52%, oklch(0.145 0.019 245 / 0.16) 100%);
}
.sector:hover img { transform: scale(1.045); }
.sector__label { padding: var(--space-md); display: grid; gap: var(--space-2xs); }
.sector__label b {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}
.sector__label span {
  font-size: var(--step--1);
  line-height: 1.45;
  color: var(--chalk-soft);
  min-height: calc(2 * 1.45em);
}

/* ---------- 13. Process — numbered rules --------------------------------- */

.steps { display: grid; align-content: start; }
.steps li {
  display: grid;
  gap: var(--space-xs) var(--space-lg);
  padding-block: var(--space-lg);
  border-top: 1px solid var(--paper-200);
}
.steps li:last-child { border-bottom: 1px solid var(--paper-200); }
@media (min-width: 720px) {
  .steps li { grid-template-columns: 5rem 15rem 1fr; align-items: baseline; }
}
.steps__n {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1;
  color: var(--amber-700);
  font-variant-numeric: tabular-nums;
}
.steps h3 { font-size: var(--step-1); }
.steps p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; }

/* ---------- 14. Service area --------------------------------------------- */

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--chalk);
  max-width: none;
}
.towns li { display: flex; align-items: center; }
.towns li::after {
  content: "";
  width: 5px; height: 5px;
  background: var(--amber-500);
  margin-inline: var(--space-md);
  flex: none;
}
.towns li:last-child::after { display: none; }

/* ---------- 15. FAQ ------------------------------------------------------ */

.faq { display: grid; align-content: start; }
.faq details {
  border-top: 1px solid var(--paper-200);
}
.faq details:last-of-type { border-bottom: 1px solid var(--paper-200); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-block: var(--space-lg);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.18;
  transition: color var(--dur-state) var(--ease-out-quart);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--amber-700); }
.faq__sign {
  position: relative;
  flex: none;
  width: 18px; height: 18px;
  margin-block-start: 3px;
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 100%; height: 1.5px;
  background: var(--amber-700);
  transition: transform 260ms var(--ease-out-expo);
}
.faq__sign::after { transform: rotate(90deg); }
.faq details[open] .faq__sign::after { transform: rotate(0deg); }
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease-out-expo);
}
.faq details[open] .faq__body { grid-template-rows: 1fr; }
.faq__body > div { overflow: hidden; }
.faq__body p {
  color: var(--ink-soft);
  padding-block-end: var(--space-lg);
  max-width: 68ch;
}

/* ---------- 16. Forms ---------------------------------------------------- */

.form { display: grid; gap: var(--space-md); }
@media (min-width: 640px) { .form { grid-template-columns: 1fr 1fr; } }
.field-group { display: grid; gap: var(--space-xs); }
.field-group--full { grid-column: 1 / -1; }

.form label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.form input, .form select, .form textarea {
  width: 100%;
  min-height: var(--control-h);
  padding: var(--space-sm) var(--space-md);
  background: var(--paper-000);
  border: 1px solid var(--paper-200);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: var(--step-0);
  transition: border-color var(--dur-state) var(--ease-out-quart);
}
.form textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form select {
  appearance: none;
  cursor: pointer;
  padding-inline-end: calc(var(--control-pad) + var(--space-md));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23767f8c' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  background-size: 12px 8px;
}
.form input::placeholder, .form textarea::placeholder { color: var(--steel); }
.form input:hover, .form select:hover, .form textarea:hover { border-color: var(--steel); }
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible {
  border-color: var(--amber-500);
}
.form [aria-invalid="true"] { border-color: var(--beacon); }
.err {
  font-size: var(--step--1);
  line-height: 1.4;
  color: var(--beacon);
  min-height: 0;
}
.form__note {
  grid-column: 1 / -1;
  font-size: var(--step--1);
  color: var(--steel);
  line-height: 1.55;
}
.form__status {
  grid-column: 1 / -1;
  padding: var(--space-md);
  border: 1px solid var(--paper-200);
  border-radius: var(--radius);
  background: var(--paper-100);
  font-size: var(--step--1);
  line-height: 1.6;
}
.form__status:empty { display: none; }

/* ---------- 17. Contact panel -------------------------------------------- */

.contact-lines { display: grid; align-content: start; }
.contact-lines li {
  display: grid;
  gap: var(--space-2xs);
  padding-block: var(--space-md);
  border-top: 1px solid var(--hull-600);
}
.contact-lines li:last-child { border-bottom: 1px solid var(--hull-600); }
.contact-lines dt, .contact-lines b {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-soft);
}
.contact-lines a, .contact-lines span {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.2;
}
.contact-lines a:hover { color: var(--amber-500); }

/* ---------- 18. Gallery -------------------------------------------------- */

.filters { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.filter {
  height: 40px;
  padding-inline: var(--space-md);
  border: 1px solid var(--paper-200);
  border-radius: var(--radius);
  background: var(--paper-000);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: background-color var(--dur-state) var(--ease-out-quart),
    color var(--dur-state) var(--ease-out-quart),
    border-color var(--dur-state) var(--ease-out-quart);
}
.filter:hover { border-color: var(--steel); }
.filter[aria-pressed="true"] {
  background: var(--hull-800);
  border-color: var(--hull-800);
  color: var(--chalk);
}

.gal {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.gal__item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--hull-700);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.gal__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 520ms var(--ease-out-expo);
}
.gal__item:hover img { transform: scale(1.04); }
.gal__item figcaption {
  position: absolute;
  inset-inline: 0; inset-block-end: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(to top, oklch(0.145 0.019 245 / 0.88), transparent);
  color: var(--chalk);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms var(--ease-out-quart), transform 260ms var(--ease-out-expo);
}
.gal__item:hover figcaption, .gal__item:focus-visible figcaption { opacity: 1; transform: none; }
.gal__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--gutter);
  background: oklch(0.145 0.019 245 / 0.96);
}
.lightbox[open] { display: flex; }
.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 82svh;
  width: auto;
  border-radius: var(--radius);
}
.lightbox__cap {
  position: absolute;
  inset-block-end: var(--space-lg);
  inset-inline: var(--gutter);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chalk-soft);
}
.lightbox__btn {
  position: absolute;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border: 1px solid var(--hull-600);
  border-radius: var(--radius);
  color: var(--chalk);
  background: var(--hull-800);
  transition: background-color var(--dur-state) var(--ease-out-quart);
}
.lightbox__btn:hover { background: var(--hull-700); }
.lightbox__close { inset-block-start: var(--gutter); inset-inline-end: var(--gutter); }
.lightbox__prev { inset-inline-start: var(--space-sm); }
.lightbox__next { inset-inline-end: var(--space-sm); }
@media (min-width: 900px) {
  .lightbox__prev { inset-inline-start: var(--gutter); }
  .lightbox__next { inset-inline-end: var(--gutter); }
}

/* ---------- 19. CTA band ------------------------------------------------- */

.cta__inner { display: grid; gap: var(--space-xl); }
@media (min-width: 900px) {
  .cta__inner { grid-template-columns: 1fr auto; align-items: end; gap: var(--space-2xl); }
}
.cta h2 { font-size: var(--step-3); max-width: 18ch; }
.cta p { color: var(--chalk-soft); max-width: 48ch; margin-block-start: var(--space-md); }

/* ---------- 20. Footer --------------------------------------------------- */

.footer {
  background: var(--hull-900);
  color: var(--chalk);
  padding-block: var(--section-y-sm) var(--space-2xl);
}
.footer__grid {
  display: grid;
  gap: var(--space-2xl);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-xl); } }

.footer h2 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-dim);
  margin-block-end: var(--space-md);
}
.footer__links { display: grid; gap: var(--space-xs); }
.footer__links a {
  font-size: var(--step--1);
  color: var(--chalk-soft);
  transition: color var(--dur-state) var(--ease-out-quart);
}
.footer__links a:hover { color: var(--amber-500); }

.footer__brand { display: flex; align-items: center; gap: var(--space-md); margin-block-end: var(--space-md); }
.footer__brand img { height: 54px; width: auto; }
.footer address {
  font-style: normal;
  font-size: var(--step--1);
  line-height: 1.75;
  color: var(--chalk-soft);
}
.footer address a:hover { color: var(--amber-500); }
.footer__tel {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--chalk);
  margin-block-end: var(--space-xs);
}
.footer__tel:hover { color: var(--amber-500); }

.social { display: flex; gap: var(--space-xs); margin-block-start: var(--space-md); }
.social a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--hull-700);
  border-radius: var(--radius);
  color: var(--chalk-soft);
  transition: color var(--dur-state) var(--ease-out-quart),
    border-color var(--dur-state) var(--ease-out-quart);
}
.social a:hover { color: var(--amber-500); border-color: var(--amber-500); }

.colophon {
  margin-block-start: var(--space-2xl);
  padding-block-start: var(--space-lg);
  border-top: 1px solid var(--hull-700);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--steel-dim);
}

/* ---------- 21. Mobile call bar ------------------------------------------ */

.callbar {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 98;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hull-700);
  border-top: 1px solid var(--hull-700);
  transform: translateY(100%);
  transition: transform 340ms var(--ease-out-expo);
}
.callbar.is-up { transform: none; }
@media (min-width: 768px) { .callbar { display: none; } }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: var(--space-xs);
  padding-block: var(--space-md);
  padding-block-end: max(var(--space-md), env(safe-area-inset-bottom));
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.callbar__call { background: var(--hull-900); color: var(--chalk); }
.callbar__quote { background: var(--amber-500); color: var(--hull-900); }
body.has-callbar { padding-block-end: 0; }

/* ---------- 22. Reveal --------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-enter) var(--ease-out-quart),
    transform var(--dur-enter) var(--ease-out-expo);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 23. Utilities ------------------------------------------------ */

.stack-sm { display: grid; gap: var(--space-md); align-content: start; }
.stack { display: grid; gap: var(--space-lg); align-content: start; }
.stack-lg { display: grid; gap: var(--space-xl); align-content: start; }
.pair { display: grid; gap: var(--space-md); }
@media (min-width: 640px) { .pair { grid-template-columns: 1fr 1fr; } }
.mt-md { margin-block-start: var(--space-md); }
.mt-xl { margin-block-start: var(--space-xl); }
.mt-2xl { margin-block-start: var(--space-2xl); }
.mt-3xl { margin-block-start: var(--space-3xl); }
.measure { max-width: var(--measure); }
.portrait { max-width: 360px; }

.prose { display: grid; gap: var(--space-md); align-content: start; }
.prose h3 { margin-block-start: var(--space-lg); }
.prose p { color: var(--ink-soft); }
.band--hull .prose p, .band--deep .prose p { color: var(--chalk-soft); }

/* ---------- 24. Reduced motion ------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .gunwale::before { transform: scaleX(1); }
  .gunwale__list a { opacity: 1; transform: none; }
  .callbar { transform: none; }
  .sector:hover img, .gal__item:hover img { transform: none; }
}

/* ---------- 25. Service page components ---------------------------------- */

@media (min-width: 900px) { .caps--3 { grid-template-columns: repeat(3, 1fr); } }

/* Related links — ruled rows, no cards */
.linkrows { display: grid; align-content: start; }
.linkrows a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  padding-block: var(--space-lg);
  border-top: 1px solid var(--paper-200);
  transition: color var(--dur-state) var(--ease-out-quart);
}
.linkrows a:last-child { border-bottom: 1px solid var(--paper-200); }
.linkrows a:hover { color: var(--amber-700); }
.linkrows b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.05;
}
.linkrows small {
  display: block;
  font-size: var(--step--1);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-block-start: var(--space-2xs);
  max-width: 52ch;
}
.linkrows svg { width: 24px; height: 24px; color: var(--amber-700); transition: transform 240ms var(--ease-out-expo); }
.linkrows a:hover svg { transform: translateX(6px); }
.band--hull .linkrows a, .band--deep .linkrows a { border-color: var(--hull-600); }
.band--hull .linkrows small, .band--deep .linkrows small { color: var(--chalk-soft); }
.band--hull .linkrows svg, .band--deep .linkrows svg { color: var(--amber-500); }
.band--hull .linkrows a:hover, .band--deep .linkrows a:hover { color: var(--amber-500); }

/* Asymmetric photo pair */
.duo { display: grid; gap: var(--space-md); }
@media (min-width: 720px) { .duo { grid-template-columns: 1.45fr 1fr; align-items: end; } }

/* Figure caption under a photo */
.shot { display: grid; gap: var(--space-sm); }
.shot figcaption {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.5;
}
.band--hull .shot figcaption, .band--deep .shot figcaption { color: var(--chalk-soft); }

/* Contact split */
.split { display: grid; gap: var(--space-2xl); }
@media (min-width: 900px) { .split { grid-template-columns: 1.25fr 1fr; gap: var(--space-4xl); align-items: start; } }
