@charset "utf-8";
/* ==========================================================================
   Cardinal Signs — "The Fabrication Shop"
   Built on the official identity: royal blue, cardinal red, silver.
   Blue is structure, red is action, silver is data.
   Two surfaces only: dark shell for showing work, paper for reading.
   ========================================================================== */

/* ------------------------------------------------------------------ fonts */

@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/fonts/jetbrainsmono-latin.woff2') format('woff2');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------- tokens */

/* Palette sampled from the official Cardinal Signs logo:
   royal blue #002E9A (script), cardinal red #EE2826 (bird + banner),
   silver #8F8F8F–#B1B1B1 (oval), rich black #231F20 (linework).
   Blue carries structure, red carries action, silver carries data. */
:root {
  /* Surface: dark shop floor (default), pitched blue-black off the brand blue */
  --bg: #090c15;
  --bg-2: #111726;
  --bg-3: #1a2234;
  --fg: #eef1f7;
  --fg-2: #a8b2c6;
  --fg-3: #7a859b;
  --line: rgb(255 255 255 / 0.1);
  --line-2: rgb(255 255 255 / 0.19);

  --blue: #002e9a; /* logo royal blue; white on it is 11.3:1 */
  --blue-mid: #2f62e8;
  --blue-fg: #7fa6ff; /* blue that clears 4.5:1 as text on dark */

  --accent: #ce1a18; /* action red: white copy clears 4.5:1 (logo red does not) */
  --accent-hot: #ee2826; /* the logo red itself, for graphic use */
  --accent-fg: #ff7a6b; /* red that clears 4.5:1 as text on dark */
  --silver: #a6a6a6;
  --on-accent: #fff;
  --focus: #ffc53d;
  --shadow: 0 2px 4px rgb(0 0 0 / 0.42), 0 18px 40px -12px rgb(0 0 0 / 0.7);

  /* Type */
  --font: 'Archivo', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --t--1: clamp(0.8125rem, 0.79rem + 0.12vw, 0.875rem);
  --t-0: clamp(1rem, 0.965rem + 0.17vw, 1.0625rem);
  --t-1: clamp(1.125rem, 1.06rem + 0.32vw, 1.3125rem);
  --t-2: clamp(1.375rem, 1.23rem + 0.72vw, 1.875rem);
  --t-3: clamp(1.75rem, 1.42rem + 1.65vw, 2.875rem);
  --t-4: clamp(2.25rem, 1.62rem + 3.1vw, 4.25rem);
  --t-5: clamp(2.75rem, 1.5rem + 5.6vw, 6rem);

  /* Space */
  --s-1: 0.375rem;
  --s-2: 0.625rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2.25rem;
  --s-6: 3.5rem;
  --s-7: clamp(3.5rem, 2rem + 6vw, 6.5rem);

  --radius: 14px;
  --radius-sm: 10px;
  --wrap: 78rem;
  --ease: cubic-bezier(0.16, 0.84, 0.28, 1);
}

/* Paper surface: everything meant to be read at length.
   Redefining the tokens is not enough — colour is inherited as a computed
   value, so the surface must also paint itself here. */
.section-paper,
.page-guide .article {
  --bg: #f5f6f8;
  --bg-2: #fff;
  --bg-3: #e7eaef;
  --fg: #0d1220;
  --fg-2: #49536a;
  --fg-3: #59627a;
  --line: rgb(13 18 32 / 0.14);
  --line-2: rgb(13 18 32 / 0.26);
  --accent-fg: #b01512;
  --blue-fg: #0b39b8;
  --focus: #0b0d10;
  --shadow: 0 1px 2px rgb(16 19 24 / 0.06), 0 14px 34px -14px rgb(16 19 24 / 0.28);
  background: var(--bg);
  color: var(--fg);
}

/* ------------------------------------------------------------------ reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: var(--t-0);
  line-height: 1.62;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg,
iframe {
  max-width: 100%;
  display: block;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 40%, transparent);
  text-underline-offset: 0.22em;
}
a:hover {
  text-decoration-color: currentColor;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 var(--s-3);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-stretch: 92%;
  text-wrap: balance;
}
p {
  margin: 0 0 var(--s-3);
  text-wrap: pretty;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
}
table {
  border-collapse: collapse;
  width: 100%;
}
:target {
  scroll-margin-top: 6.5rem;
}

/* ------------------------------------------------------------- primitives */

.wrap {
  width: min(100% - clamp(1.5rem, 5vw, 4rem), var(--wrap));
  margin-inline: auto;
}
.narrow {
  max-width: 42rem; /* ≈68ch at body size */
}
.vh {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: absolute;
  left: var(--s-3);
  top: -100%;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.18s var(--ease);
}
.skip:focus-visible {
  top: 0;
}
main:focus {
  outline: none;
}

.h-xl {
  font-size: var(--t-4);
}
.h-lg {
  font-size: var(--t-3);
}
.lede {
  font-size: var(--t-1);
  color: var(--fg-2);
  max-width: 46rem;
  line-height: 1.5;
}
.section {
  padding-block: var(--s-7);
  background: var(--bg);
  color: var(--fg);
}
.section-dark {
  --bg: #111726;
  --line: rgb(255 255 255 / 0.13);
}
.section-head {
  display: grid;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  align-items: end;
}
@media (min-width: 62rem) {
  .section-head {
    grid-template-columns: 1.25fr 1fr;
    gap: var(--s-5);
  }
}
.section-sub {
  color: var(--fg-2);
  margin: 0;
}
.page-head {
  padding-block: clamp(3rem, 2rem + 5vw, 6rem) var(--s-6);
  background: var(--bg);
}
.page-head.tall {
  padding-block: clamp(4rem, 3rem + 8vw, 9rem);
}
.prose > section {
  margin-bottom: var(--s-6);
}
.prose h2 {
  margin-top: var(--s-6);
}
.prose > section:first-child h2 {
  margin-top: 0;
}
.prose p {
  color: var(--fg-2);
  font-size: var(--t-1);
  line-height: 1.68;
}

/* Icons: one stroke system everywhere. */
svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.star {
  stroke: none;
  width: 1em;
  height: 1em;
}

/* --------------------------------------------------------------- buttons */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 2.9rem;
  padding: 0.72rem 1.35rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--t-0);
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn svg {
  transition: transform 0.25s var(--ease);
}
.btn:hover svg:last-child {
  transform: translateX(3px);
}
.btn-lg {
  min-height: 3.35rem;
  padding: 0.9rem 1.75rem;
  font-size: var(--t-1);
}
.btn-red {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.3), 0 10px 24px -10px rgb(206 26 24 / 0.7);
}
.btn-red:hover {
  --btn-bg: var(--accent-hot);
  transform: translateY(-1px);
}
.btn-ghost,
.btn-outline {
  border-color: var(--line-2);
}
.btn-ghost:hover,
.btn-outline:hover {
  border-color: currentColor;
  background: color-mix(in srgb, currentColor 8%, transparent);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  min-height: 2.75rem; /* 2.5.8 target size on standalone links */
  padding-block: 0.35rem;
  font-weight: 700;
  color: var(--blue-fg);
  text-decoration: none;
}
.link-arrow:hover {
  text-decoration: underline;
}
.link-arrow svg {
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover svg {
  transform: translateX(3px);
}

/* ---------------------------------------------------------------- header */

/* White bar. The logo is a silver-oval lockup drawn for white stock, and it
   turns to mud on the dark canvas; this is the surface it was designed for. */
.site-head {
  --bg: #fff;
  --fg: #0d1220;
  --fg-2: #49536a;
  --fg-3: #59627a;
  --line: rgb(13 18 32 / 0.12);
  --line-2: rgb(13 18 32 / 0.24);
  --accent-fg: #b01512;
  --focus: #0b0d10;
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, #fff 94%, transparent);
  color: var(--fg);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgb(13 18 32 / 0.06), 0 10px 30px -18px rgb(13 18 32 / 0.5);
}
.head-inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  min-height: 4.75rem;
}
/* The official logo, used as supplied. It carries its own silver oval, so it
   needs no plate behind it and no recolouring. */
.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}
.brand img {
  height: 3.5rem;
  width: auto;
}
@media (max-width: 26rem) {
  .brand img {
    height: 2.75rem;
  }
}
.nav {
  display: none;
}
@media (min-width: 68rem) {
  .nav {
    display: block;
  }
  .nav ul {
    display: flex;
    gap: var(--s-4);
  }
  .nav a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    font-size: var(--t--1);
    font-weight: 650;
    letter-spacing: 0.01em;
    color: var(--fg-2);
    text-decoration: none;
  }
  .nav a:hover {
    color: var(--fg);
  }
  .nav a[aria-current='page'] {
    color: var(--fg);
    box-shadow: inset 0 -2px 0 var(--accent-hot);
  }
}
.head-cta {
  display: none;
  align-items: center;
  gap: var(--s-3);
}
@media (min-width: 52rem) {
  .head-cta {
    display: flex;
  }
}
.head-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  min-height: 2.75rem;
  padding-inline: 0.35rem;
  font-family: var(--mono);
  font-size: var(--t--1);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  text-decoration: none;
}
.head-phone:hover {
  color: var(--accent-fg);
}
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.9rem;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: var(--t--1);
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 68rem) {
  .menu-btn {
    display: none;
  }
}
.menu-bars {
  display: grid;
  gap: 4px;
  width: 1rem;
}
.menu-bars span {
  height: 2px;
  background: currentColor;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
[aria-expanded='true'] .menu-bars span:first-child {
  transform: translateY(3px) rotate(45deg);
}
[aria-expanded='true'] .menu-bars span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
.mobile-nav {
  border-top: 1px solid var(--line);
  padding: var(--s-3) 0 var(--s-4);
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav ul {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--t-1);
  font-weight: 650;
  text-decoration: none;
}
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: min(100% - 2.5rem, var(--wrap));
  margin: var(--s-3) auto 0;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--accent-fg);
  text-decoration: none;
}

/* ---------------------------------------------------------------- crumbs */

.crumbs {
  padding-block: var(--s-3) 0;
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  font-size: var(--t--1);
  color: var(--fg-3);
}
.crumbs li + li::before {
  content: '/';
  margin-right: 0.7rem;
  color: var(--fg-3);
}
.crumbs a {
  color: var(--fg-2);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--fg);
  text-decoration: underline;
}

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(92svh, 54rem);
  padding-block: var(--s-7) var(--s-6);
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
/* Graded down so a white van cannot outshine the headline sitting on it. */
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 46%;
  filter: brightness(0.86) contrast(1.06) saturate(0.94);
}
/* The headline sits over a white van, so the scrim has to carry real weight on
   the left. Two stacked gradients: a floor, and a hard left wash. */
/* Sits inside .hero-media, so it needs a POSITIVE z-index to land on top of
   the img. A negative one puts it behind the image and does nothing. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, #090c15 2%, rgb(9 12 21 / 0.86) 22%, rgb(9 12 21 / 0.38) 58%, rgb(9 12 21 / 0.55)),
    linear-gradient(to right, rgb(9 12 21 / 0.95) 0%, rgb(9 12 21 / 0.9) 26%, rgb(9 12 21 / 0.58) 50%, rgb(9 12 21 / 0.14) 80%, transparent 100%);
}
@media (max-width: 60rem) {
  .hero-scrim {
    background:
      linear-gradient(to top, #090c15 2%, rgb(9 12 21 / 0.92) 42%, rgb(9 12 21 / 0.78) 100%);
  }
}
.hero-h {
  font-size: var(--t-5);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-stretch: 85%;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  max-width: 16ch;
}
.hero-h .line {
  display: block;
  overflow: hidden;
}
.hero-h .line > span {
  display: block;
}
.line-red > span {
  color: var(--accent-fg);
}
.hero-lede {
  font-size: var(--t-1);
  color: #d7dce4;
  max-width: 44ch;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-4);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-2);
}
.hero-meta li {
  display: grid;
  gap: 0.15rem;
}
.hero-meta b {
  font-family: var(--mono);
  font-size: var(--t-0);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.hero-meta span,
.hero-meta a {
  font-size: var(--t--1);
  color: var(--fg-2);
}

/* Proof strip: the shop's spec plate, straight under the hero. */
.proof-strip {
  background: var(--blue);
  color: #fff;
}
.proof-list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}
.proof-item {
  padding: var(--s-4) var(--s-4) var(--s-4) 0;
  border-right: 1px solid rgb(255 255 255 / 0.22);
}
.proof-item:last-child {
  border-right: 0;
}
.proof-item + .proof-item {
  padding-left: var(--s-4);
}
.proof-item dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffecec; /* 5.65:1 on the red; 0.8 alpha white lands at 4.38 and fails */
  margin-bottom: 0.35rem;
}
.proof-item dd {
  margin: 0;
  display: grid;
  gap: 0.1rem;
}
.proof-item b {
  font-size: var(--t-2);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.proof-item span {
  font-size: var(--t--1);
  color: #ffecec;
}

/* --------------------------------------------------------- services grid */

/* Deliberately unequal cells: a lead pair, a triple, then a wide finale.
   Row height is fixed so the crop drives the composition, not the photo. */
.svc-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(7rem, 22vw, 10rem);
}
.svc-cell-0 {
  grid-column: span 2;
  grid-row: span 2;
}
.svc-cell-5 {
  grid-column: span 2;
}
@media (min-width: 60rem) {
  .svc-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: clamp(9rem, 11vw, 13rem);
    gap: var(--s-4);
  }
  .svc-cell-0 {
    grid-column: span 7;
    grid-row: span 2;
  }
  .svc-cell-1 {
    grid-column: span 5;
    grid-row: span 2;
  }
  .svc-cell-2,
  .svc-cell-3,
  .svc-cell-4 {
    grid-column: span 4;
    grid-row: span 1;
  }
  .svc-cell-5 {
    grid-column: span 12;
    grid-row: span 1;
  }
}
.svc-cell > a {
  position: relative;
  display: block;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  text-decoration: none;
  isolation: isolate;
}
.svc-media {
  display: block;
  height: 100%;
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.92) contrast(1.04);
}
.svc-cell > a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(6 8 14 / 0.94) 0%, rgb(6 8 14 / 0.74) 30%, rgb(6 8 14 / 0.3) 58%, transparent 82%);
}
.svc-cell > a:hover .svc-media img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.06);
}
.svc-text {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding: var(--s-4);
  color: #fff;
}
.svc-name {
  font-size: var(--t-2);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-stretch: 90%;
}
.svc-line {
  font-size: var(--t--1);
  color: rgb(255 255 255 / 0.8);
  max-width: 44ch;
}
/* Visible by default so it is never stranded under reduced motion (2.3.3);
   the reveal-on-hover is an enhancement layered on top. */
.svc-go {
  position: absolute;
  right: var(--s-4);
  bottom: var(--s-4);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}
@media (prefers-reduced-motion: no-preference) and (min-width: 60rem) {
  .svc-go {
    width: 2.5rem;
    height: 2.5rem;
    transform: translateX(-4px);
    opacity: 0;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .svc-cell > a:hover .svc-go,
  .svc-cell > a:focus-visible .svc-go {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 60rem) {
  .svc-line {
    display: none;
  }
  .svc-text {
    padding: var(--s-3);
  }
  .svc-name {
    font-size: var(--t-1);
  }
  .svc-go {
    right: var(--s-3);
    bottom: var(--s-3);
    width: 2rem;
    height: 2rem;
  }
}
.svc-more {
  margin: var(--s-5) 0 0;
}

/* ------------------------------------------------------- services (rows) */

.svc-rows {
  display: grid;
  gap: var(--s-7);
}
.svc-row {
  display: grid;
  gap: var(--s-4);
  align-items: center;
}
@media (min-width: 54rem) {
  .svc-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
  }
  .svc-row.flip .svc-row-media {
    order: 2;
  }
}
.svc-row-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.svc-row-body h2 {
  font-size: var(--t-3);
}
.svc-row-body h2 a {
  text-decoration: none;
}
.svc-row-body h2 a:hover {
  color: var(--blue-fg);
}
.svc-row-body p {
  color: var(--fg-2);
  font-size: var(--t-1);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--s-3);
}
.tag-list li {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--fg-2);
}

/* ------------------------------------------------------------ service pg */

.svc-hero {
  padding-block: clamp(2.5rem, 2rem + 4vw, 5rem) var(--s-6);
}
.svc-hero-grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 58rem) {
  .svc-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--s-6);
  }
}
.svc-hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-4);
}
.svc-body-grid {
  display: grid;
  gap: var(--s-6);
}
@media (min-width: 58rem) {
  .svc-body-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(17rem, 0.75fr);
    gap: var(--s-7);
    align-items: start;
  }
}
.svc-prose p {
  color: var(--fg-2);
  font-size: var(--t-1);
  line-height: 1.68;
  max-width: 40rem;
}
.check-list {
  display: grid;
  gap: 0.55rem;
  margin-top: var(--s-4);
}
.check-list li {
  display: flex;
  align-items: start;
  gap: 0.65rem;
}
.check-list svg {
  color: var(--blue-fg);
  margin-top: 0.25em;
}

/* The spec card is genuine measurement data, which is why it is monospaced. */
.spec-card {
  position: sticky;
  top: 6rem;
  padding: var(--s-4);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.spec-card h2 {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: var(--s-3);
}
.spec > div {
  display: grid;
  gap: 0.1rem;
  padding-block: 0.7rem;
  border-top: 1px solid var(--line);
}
.spec dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.spec dd {
  margin: 0;
  font-size: var(--t--1);
  color: var(--fg);
  line-height: 1.45;
}
.spec-card .link-arrow {
  margin-top: var(--s-3);
}

/* ------------------------------------------------------------------ rail */

.rail {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding: 0 max((100vw - var(--wrap)) / 2, clamp(0.75rem, 2.5vw, 2rem)) var(--s-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}
.rail-item {
  flex: 0 0 min(72vw, 22rem);
  scroll-snap-align: start;
}
.rail-item img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.rail-note {
  margin: var(--s-3) 0 0;
}

/* ---------------------------------------------------------------- review */

.section-review {
  --bg: #111726;
  background:
    radial-gradient(80rem 40rem at 82% -10%, rgb(0 46 154 / 0.4), transparent 62%),
    var(--bg);
  border-block: 1px solid var(--line);
}
.review-grid {
  display: grid;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 58rem) {
  .review-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.review-card {
  margin: 0;
  padding: var(--s-5);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-score {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: var(--s-4);
}
.review-score b {
  font-size: var(--t-4);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}
.stars {
  display: inline-flex;
  gap: 0.12em;
  color: #ffb400;
}
.review-count {
  font-size: var(--t--1);
  color: var(--fg-2);
  width: 100%;
}
.review-dist th {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  text-align: left;
  padding: 0.22rem 0.75rem 0.22rem 0;
  white-space: nowrap;
}
.review-dist td {
  padding: 0.22rem 0;
  width: 100%;
}
.review-dist .num {
  width: auto;
  padding-left: 0.75rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--fg-2);
  text-align: right;
}
.bar {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--bg-3);
  overflow: hidden;
}
.bar::after {
  content: '';
  display: block;
  width: var(--pct, 0%);
  height: 100%;
  border-radius: 999px;
  background: #ffb400;
}
.review-card figcaption {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  font-size: var(--t--1);
  color: var(--fg-3);
}

/* --------------------------------------------------------------- process */

.steps {
  display: grid;
  gap: var(--s-4);
  counter-reset: step;
  margin-top: var(--s-5);
}
@media (min-width: 48rem) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 72rem) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
  }
}
/* Sequence is the content here, so the numerals stay. */
.step {
  padding-top: var(--s-4);
  border-top: 2px solid var(--blue);
}
.step-n {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-fg);
  margin-bottom: var(--s-2);
}
.step h3 {
  font-size: var(--t-2);
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--fg-2);
  margin: 0;
}
.cap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.cap-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: var(--t--1);
  letter-spacing: -0.02em;
  color: var(--fg-2);
}
.cap-list svg {
  color: var(--blue-fg);
}

/* ------------------------------------------------------------------- faq */

.faq {
  margin-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 3.5rem;
  padding: 0.95rem 0;
  font-size: var(--t-1);
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-mark {
  position: relative;
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
}
.faq-mark::before,
.faq-mark::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--blue-fg);
  transition: transform 0.28s var(--ease);
}
.faq-mark::after {
  transform: rotate(90deg);
}
[open] .faq-mark::after {
  transform: rotate(0);
}
.faq-a {
  padding-bottom: var(--s-4);
  max-width: 44rem;
}
.faq-a p {
  color: var(--fg-2);
  margin: 0;
}

/* ----------------------------------------------------------------- areas */

.area-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 58rem) {
  .area-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: center;
  }
}
.area-grid p {
  color: var(--fg-2);
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-chips li {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: var(--t--1);
  letter-spacing: -0.02em;
  color: var(--fg-2);
}
.area-list {
  display: grid;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
@media (min-width: 46rem) {
  .area-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 72rem) {
  .area-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.area-item {
  padding: var(--s-4);
  background: var(--bg-2);
  border-radius: var(--radius);
}
.area-item h2 {
  font-size: var(--t-1);
  margin-bottom: 0.4rem;
}
.area-item p {
  margin: 0;
  font-size: var(--t--1);
  color: var(--fg-2);
}
.callout {
  padding: var(--s-4);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: var(--radius-sm);
  font-size: var(--t--1);
  color: var(--fg);
}
.callout p:last-child {
  margin: 0;
}
.callout-warn {
  background: color-mix(in srgb, #ffb400 16%, transparent);
  margin-bottom: var(--s-5);
}

/* ----------------------------------------------------------------- about */

.about-media {
  margin-block: var(--s-4) var(--s-6);
}
.about-media img {
  width: 100%;
  border-radius: var(--radius);
}
.bio-grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 46rem) {
  .bio-grid {
    grid-template-columns: minmax(0, 18rem) 1fr;
    gap: var(--s-6);
  }
}
.bio-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bio-grid p {
  color: var(--fg-2);
  font-size: var(--t-1);
}
.visit-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 58rem) {
  .visit-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s-6);
    align-items: center;
  }
}
.visit-address,
.visit-hours {
  display: flex;
  align-items: start;
  gap: 0.65rem;
  font-size: var(--t-1);
  line-height: 1.4;
}
.visit-address svg,
.visit-hours svg {
  color: var(--blue-fg);
  margin-top: 0.2em;
}
.visit-address a {
  text-decoration: none;
}
.visit-address a:hover {
  text-decoration: underline;
}
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.visit-map iframe {
  width: 100%;
  height: clamp(16rem, 34vw, 24rem);
  border: 0;
}

/* ---------------------------------------------------------------- guides */

.guide-grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 48rem) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.guide-card > a {
  display: grid;
  gap: 0.5rem;
  height: 100%;
  padding: var(--s-5);
  background: var(--bg-2);
  border-radius: var(--radius);
  text-decoration: none;
  align-content: start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.guide-card > a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.guide-card h2,
.guide-card h3 {
  font-size: var(--t-2);
  margin: 0;
}
.guide-card p {
  color: var(--fg-2);
  font-size: var(--t--1);
  margin: 0;
}
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: -0.02em;
  color: var(--fg-3);
}
.toc {
  padding: var(--s-4);
  background: var(--bg-2);
  border-radius: var(--radius);
  margin-bottom: var(--s-6);
}
.toc h2 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: var(--s-2);
}
.toc ol {
  counter-reset: toc;
  display: grid;
  gap: 0.1rem;
}
.toc li {
  counter-increment: toc;
}
.toc a {
  display: block;
  min-height: 2.5rem;
  padding: 0.5rem 0;
  font-weight: 650;
  text-decoration: none;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  margin-right: 0.7rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-fg);
}
.toc a:hover {
  text-decoration: underline;
}
.inline-cta {
  display: grid;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
}
@media (min-width: 48rem) {
  .inline-cta {
    grid-template-columns: 1fr auto;
    gap: var(--s-5);
  }
}
.inline-cta h2 {
  font-size: var(--t-2);
}
.inline-cta p {
  margin: 0;
  color: var(--fg-2);
}

/* ------------------------------------------------------------------ work */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--s-5);
}
.chip {
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: var(--t--1);
  font-weight: 650;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.chip:hover {
  border-color: currentColor;
}
.chip.is-on {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.masonry {
  columns: 1;
  column-gap: var(--s-3);
}
@media (min-width: 40rem) {
  .masonry {
    columns: 2;
  }
}
@media (min-width: 68rem) {
  .masonry {
    columns: 3;
  }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--s-3);
}
.masonry-item[hidden] {
  display: none;
}
.masonry figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-2);
}
.masonry img {
  width: 100%;
  transition: transform 0.5s var(--ease);
}
.masonry figure:hover img {
  transform: scale(1.03);
}
.masonry figcaption {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.3rem 0.65rem;
  background: rgb(8 9 12 / 0.78);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: #fff;
}

/* -------------------------------------------------------------- rel grid */

.rel-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-5);
}
@media (min-width: 46rem) {
  .rel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rel-grid a {
  display: grid;
  gap: var(--s-3);
  text-decoration: none;
}
.rel-grid img {
  width: 100%;
  border-radius: var(--radius-sm);
  transition: transform 0.4s var(--ease);
}
.rel-grid a:hover img {
  transform: translateY(-3px);
}
.rel-name {
  display: flex;
  align-items: center;
  gap: 0.45em;
  font-size: var(--t-1);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ------------------------------------------------------------------ form */

.contact-grid {
  display: grid;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
}
@media (min-width: 62rem) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
    gap: var(--s-7);
    align-items: start;
  }
}
.quote-form {
  display: grid;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.field-row {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 34rem) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: grid;
  gap: 0.4rem;
  /* Without this, a neighbour's two-line hint stretches this field's input. */
  align-content: start;
}
.field label {
  font-size: var(--t--1);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.req {
  color: var(--accent-fg);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: var(--t-0);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.55;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--fg-3);
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--fg-3);
}
.field :is(input, select, textarea):focus-visible {
  border-color: var(--blue-fg);
}
.field [aria-invalid='true'] {
  border-color: #ff6a5e;
  box-shadow: 0 0 0 3px rgb(255 106 94 / 0.16);
}
.hint {
  margin: 0;
  font-size: var(--t--1);
  color: var(--fg-3);
}
.err {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: var(--t--1);
  font-weight: 650;
  color: #ff8e84;
}
.err[hidden] {
  display: none;
}
.form-note,
.form-fine {
  margin: 0;
  font-size: var(--t--1);
  color: var(--fg-3);
}
.contact-aside {
  display: grid;
  gap: var(--s-4);
}
.contact-card {
  padding: var(--s-5);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-card h2 {
  font-size: var(--t-2);
}
.contact-card p {
  color: var(--fg-2);
}
.contact-card .btn {
  width: 100%;
}
.hours {
  margin-top: var(--s-4);
  font-size: var(--t--1);
}
.hours caption {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: left;
  padding-bottom: 0.5rem;
}
.hours th {
  font-weight: 600;
  text-align: left;
  padding: 0.35rem 0;
  color: var(--fg-2);
  border-top: 1px solid var(--line);
}
.hours td {
  padding: 0.35rem 0;
  text-align: right;
  font-family: var(--mono);
  letter-spacing: -0.03em;
  border-top: 1px solid var(--line);
}
.mini-steps {
  display: grid;
  gap: 0.6rem;
  counter-reset: mini;
}
.mini-steps li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.6rem;
  font-size: var(--t--1);
  color: var(--fg-2);
  counter-increment: mini;
}
.mini-steps li::before {
  content: counter(mini);
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}
.nf-links {
  display: grid;
  gap: 0.25rem;
  margin-block: var(--s-4);
}

/* ------------------------------------------------------------ quote band */

.band-quote {
  padding-block: var(--s-7);
  background:
    linear-gradient(100deg, var(--accent) 0%, #8e1210 100%);
  color: #fff;
}
.band-quote-inner {
  display: grid;
  gap: var(--s-4);
  align-items: center;
}
@media (min-width: 58rem) {
  .band-quote-inner {
    grid-template-columns: 1.3fr auto;
    gap: var(--s-6);
  }
}
.band-quote h2 {
  font-size: var(--t-3);
  margin-bottom: 0.5rem;
}
.band-quote p {
  margin: 0;
  color: #ffeceb;
  font-size: var(--t-1);
  max-width: 46ch;
}
.band-quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.band-quote .btn-red {
  --btn-bg: #fff;
  --btn-fg: #8e1210;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.2), 0 14px 30px -14px rgb(0 0 0 / 0.6);
}
.band-quote .btn-red:hover {
  --btn-bg: #ffe5e3;
}
.band-quote .btn-ghost {
  border-color: rgb(255 255 255 / 0.5);
  color: #fff;
}

/* ---------------------------------------------------------------- footer */

.site-foot {
  padding-block: var(--s-7) var(--s-4);
  background: #06090f;
  border-top: 1px solid var(--line);
  color: var(--fg-2);
}
.foot-grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 46rem) {
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 68rem) {
  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: var(--s-6);
  }
}
.brand-foot {
  margin-bottom: var(--s-3);
}
.brand-foot img {
  height: 4.25rem;
}
/* Their own tagline, from the logo banner. */
.foot-tagline {
  margin: 0 0 var(--s-3);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--accent-fg);
}
.foot-blurb {
  font-size: var(--t--1);
  max-width: 34ch;
}
.foot-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--t--1);
  margin: 0;
}
/* Flex parent blockifies this link, so it needs its own target height. */
.foot-rating a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--fg);
}
.foot-col h2,
.foot-contact h2 {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: var(--s-3);
}
.foot-col ul {
  display: grid;
  gap: 0.15rem;
}
.foot-col a,
.foot-contact a {
  display: inline-block;
  min-height: 2.5rem;
  padding-block: 0.5rem;
  font-size: var(--t--1);
  color: var(--fg-2);
  text-decoration: none;
}
.foot-col a:hover,
.foot-contact a:hover {
  color: var(--fg);
  text-decoration: underline;
}
.foot-contact address {
  font-style: normal;
  display: grid;
}
.foot-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg) !important;
}
.foot-note {
  margin: var(--s-3) 0 0;
  font-size: 0.78rem;
  color: var(--fg-3);
  max-width: 32ch;
}
.foot-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-2) var(--s-4);
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--fg-3);
}
.foot-base p {
  margin: 0;
}
.foot-base a {
  color: var(--fg-2);
}

/* ---------------------------------------------------------------- motion */

/* One authored moment: the hero lines squeegee down into place. */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] .line > span {
    transform: translateY(102%);
    filter: blur(6px);
    opacity: 0;
  }
  [data-reveal].is-in .line > span {
    transform: none;
    filter: none;
    opacity: 1;
    transition: transform 0.85s var(--ease), filter 0.7s var(--ease), opacity 0.5s linear;
  }
  [data-reveal].is-in .line:nth-child(2) > span {
    transition-delay: 0.09s;
  }
  [data-reveal].is-in .line:nth-child(3) > span {
    transition-delay: 0.18s;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------- focus, last -- */
/* Kept at the bottom so it beats every component rule above it. */

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}
.section-paper :focus-visible,
.page-guide .article :focus-visible {
  outline-color: #0b0d10;
}
/* Red and near-black surfaces need the warm ring to clear 3:1. */
.proof-strip :focus-visible,
.band-quote :focus-visible,
.site-foot :focus-visible,
.hero :focus-visible,
.section-dark :focus-visible,
.section-review :focus-visible,
.svc-grid :focus-visible,
.masonry :focus-visible {
  outline-color: #ffc53d;
}
.rail:focus-visible {
  outline-offset: -3px;
}
