/* ============================================================
   INCLINE Ventures — Direction 1a, Bold Editorial
   Black-led. Red is the structure. Off-white is the hint.
   ============================================================ */

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; background: var(--bg); }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* One grain layer over the whole site, so every black surface is
   the same material. Sits above content but is pure texture. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter);
  z-index: 200;
  background: var(--accent);
  color: var(--white);
  padding: var(--space-2xs) var(--space-s);
  font-size: var(--step--1);
  text-decoration: none;
}
.skip-link:focus { top: var(--space-2xs); }

/* ---- Shared primitives ------------------------------------- */
.shell {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: var(--section-y); }

/* Rhythm inside an all-black site: a faint red wash, never a grey. */
.band--wash { background: var(--wash); }

/* The one full-bleed red surface per page. */
.band--red {
  background: var(--accent);
  color: var(--on-red-ink);
}
.band--red .label { color: var(--on-red-muted); }
.band--red .label--red { color: var(--on-red-ink); }

/* Eyebrow / mono label */
.label {
  font-size: var(--step--2);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.label--red { color: var(--accent-text); }

/* Display type */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
}

/* THE MOTIF — a red hairline that rises left-to-right. */
.incline-rule {
  height: 1.5px;
  border: 0;
  background: var(--accent);
  transform: rotate(-0.6deg);
  transform-origin: left center;
  margin-block: var(--space-xl);
  opacity: 0.9;
}
.band--red .incline-rule { background: var(--on-red-ink); }

/* ---- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.6em;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: var(--hair) solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
}
.btn .arrow { transition: transform var(--dur) var(--ease-out); }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
/* On red, the primary button inverts to off-white. */
.band--red .btn--primary {
  background: var(--on-red-ink);
  border-color: var(--on-red-ink);
  color: var(--black);
}

@media (hover: hover) {
  .btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
  .btn--ghost:hover   { background: var(--accent); border-color: var(--accent); color: var(--white); }
  .band--red .btn--primary:hover { background: var(--black); border-color: var(--black); color: var(--on-red-ink); }
  .btn:hover .arrow   { transform: translateX(5px); }
}
.btn:active { transform: translateY(1px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: var(--hair) solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  padding-block: var(--space-s);
}

/* The wordmark: INCLI(И)E — the N mirrored, in red. */
.mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6em;
  text-decoration: none;
  color: inherit;
}
.mark__word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--step-2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.mark__n {
  display: inline-block;
  transform: scaleX(-1);
  color: var(--accent-text);
}
.mark__sub {
  font-family: var(--font-body);
  font-size: var(--step--2);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-l);
  list-style: none;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-block: 0.35em;
}
/* Directional underline — enters left, exits right. */
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent-text);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.35s var(--ease-out);
}
@media (hover: hover) {
  .nav__link:hover { color: var(--accent-text); }
  .nav__link:hover::after { transform: scaleX(1); transform-origin: bottom left; }
}
.nav__link[aria-current='page'] { color: var(--accent-text); }
.nav__link[aria-current='page']::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: none;
  border: var(--hair) solid var(--line-strong);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav__toggle-bar {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: background-color 0.2s var(--ease-out);
}
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease-out);
}
.nav__toggle-bar::before { top: -6px; }
.nav__toggle-bar::after  { top: 6px; }
.nav__toggle[aria-expanded='true'] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded='true'] .nav__toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded='true'] .nav__toggle-bar::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    inset: auto 0 0 0;
    top: var(--nav-h, 64px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: var(--bg);
    padding: var(--space-m) var(--gutter) var(--space-2xl);
    transform: translateY(-101%);
    visibility: hidden;
    transition: transform 0.45s var(--ease-out), visibility 0.45s;
  }
  .nav__links[data-open='true'] { transform: translateY(0); visibility: visible; }
  .nav__links li { width: 100%; border-bottom: var(--hair) solid var(--line); }
  .nav__link {
    display: block;
    width: 100%;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--step-3);
    letter-spacing: 0.02em;
    padding-block: var(--space-s);
    opacity: 0;
    transform: translateY(0.75rem);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  }
  .nav__links[data-open='true'] .nav__link { opacity: 1; transform: translateY(0); }
  .nav__links[data-open='true'] li:nth-child(1) .nav__link { transition-delay: 0.06s; }
  .nav__links[data-open='true'] li:nth-child(2) .nav__link { transition-delay: 0.10s; }
  .nav__links[data-open='true'] li:nth-child(3) .nav__link { transition-delay: 0.14s; }
  .nav__link[aria-current='page'] { color: var(--accent-text); }
  .nav__link::after { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: min(86vh, 54rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* content sits low — editorial */
  padding-block: clamp(4rem, 12vh, 8rem) clamp(2rem, 5vh, 3.5rem);
}

/* ============================================================
   THE INCLINE FIELD — shared page-header background.
   Two layers of hairlines raked to a rising diagonal, marching
   perpendicular to themselves so the whole ground reads as ascent.
   Each layer translates by exactly one pattern period, so the loop
   is seamless. Transform-only: composited, no repaint per frame.

   Drop <div class="incline-bg"> as the first child of any
   position:relative header. Add --on-red on a red surface.
   ============================================================ */
.incline-bg {
  --incline-strong: rgba(187, 39, 27, 0.55);
  --incline-faint:  rgba(187, 39, 27, 0.22);
  --incline-scrim:  13, 13, 13;

  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* On the red bands the lines invert to off-white, and the scrim
   takes the red so the fade still matches its surface. */
.incline-bg--on-red {
  --incline-strong: rgba(247, 244, 240, 0.38);
  --incline-faint:  rgba(247, 244, 240, 0.16);
  --incline-scrim:  187, 39, 27;
}

.incline-bg__field {
  position: absolute;
  top: -70%;
  left: -30%;
  width: 170%;
  height: 240%;
  will-change: transform;
  background-repeat: repeat;
}

/* Layer 1 — sparse, brighter, slow. The structural lines. */
.incline-bg__field--1 {
  background-image: repeating-linear-gradient(
    to bottom,
    var(--incline-strong) 0 1.5px,
    transparent 1.5px 88px
  );
  animation: incline-climb-1 19s linear infinite;
}

/* Layer 2 — dense, faint, faster. Parallax beneath. */
.incline-bg__field--2 {
  background-image: repeating-linear-gradient(
    to bottom,
    var(--incline-faint) 0 1px,
    transparent 1px 26px
  );
  animation: incline-climb-2 11s linear infinite;
}

/* Rotation lives inside the keyframes so it is never overwritten. */
@keyframes incline-climb-1 {
  from { transform: rotate(-27deg) translateY(0); }
  to   { transform: rotate(-27deg) translateY(-88px); }
}
@keyframes incline-climb-2 {
  from { transform: rotate(-27deg) translateY(0); }
  to   { transform: rotate(-27deg) translateY(-26px); }
}

/* Scrim: keeps the type side clean and lets the field breathe out
   toward the right. Functional, not decorative. */
.incline-bg__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgb(var(--incline-scrim)) 12%,
    rgba(var(--incline-scrim), 0.92) 42%,
    rgba(var(--incline-scrim), 0.55) 78%,
    rgba(var(--incline-scrim), 0.35) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .incline-bg__field--1,
  .incline-bg__field--2 { animation: none; transform: rotate(-27deg); }
}

/* Any header carrying the field needs a stacking context. */
.hero,
.page-head,
.legal-head,
.statement,
.contact__aside { position: relative; overflow: hidden; }

.hero > .shell,
.page-head > .shell,
.legal-head > .shell,
.statement > .shell,
.contact__aside > *:not(.incline-bg) { position: relative; z-index: 1; }

/* ---- Hero content -------------------------------------------- */
.hero__eyebrow { display: block; margin-bottom: var(--space-l); }

.hero__title {
  font-size: var(--hero);
  max-width: 18ch;
  margin-bottom: var(--space-m);
}
.hero__line { display: block; }

/* Staggered entrance — one pass on load, nothing on scroll. */
@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow,
  .hero__title,
  .hero__sub,
  .hero__actions,
  .hero__foot { animation: hero-rise 0.85s var(--ease-out) both; }
  .hero__eyebrow { animation-delay: 0.05s; }
  .hero__title   { animation-delay: 0.15s; }
  .hero__sub     { animation-delay: 0.28s; }
  .hero__actions { animation-delay: 0.38s; }
  .hero__foot    { animation-delay: 0.5s; }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(1.25rem); }
  to   { opacity: 1; transform: none; }
}

/* ---- Scroll cue ---------------------------------------------- */
.hero__foot {
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--step--2);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
/* A short rule that runs down and repeats — the descent that
   invites the scroll, against a field that rises. */
.hero__scroll::after {
  content: '';
  width: 2.5rem;
  height: 1.5px;
  background: var(--accent);
  transform-origin: left center;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll::after { animation: scroll-wipe 2.4s var(--ease-out) infinite; }
}
@keyframes scroll-wipe {
  0%        { transform: scaleX(0); opacity: 0; }
  25%       { transform: scaleX(1); opacity: 1; }
  70%       { transform: scaleX(1); opacity: 1; }
  100%      { transform: scaleX(1); opacity: 0; }
}

/* SIGNATURE: the payload word arrives outlined, then fills red. */
.hero__fill {
  color: var(--accent);
  -webkit-text-stroke: 2px var(--accent);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__fill {
    -webkit-text-fill-color: transparent;
    animation: ink-fill 0.9s 0.45s var(--ease-out) forwards;
  }
}
@keyframes ink-fill {
  from { -webkit-text-fill-color: transparent; }
  to   { -webkit-text-fill-color: var(--accent); }
}

.hero__sub {
  max-width: 46ch;
  color: var(--ink-muted);
  font-size: var(--step-1);
  line-height: 1.55;
  margin-bottom: var(--space-l);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-s); }

/* ============================================================
   SERVICES — full-width numbered editorial rows
   ============================================================ */
.services__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-m);
  margin-bottom: var(--space-m);
}
.services__list { list-style: none; padding: 0; }

.service {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1fr) 3rem;
  align-items: center;
  gap: var(--space-m);
  padding: clamp(1.15rem, 2.4vw, 1.9rem) var(--space-s);
  border-top: var(--hair) solid var(--line);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: color var(--dur) var(--ease-out);
}
.services__list li:last-child .service { border-bottom: var(--hair) solid var(--line); }

/* SIGNATURE: red wipes across the row from the left. */
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.service > * { position: relative; }

.service__num {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-text);
  transition: color var(--dur) var(--ease-out);
}
.service__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}
.service__meta {
  font-size: var(--step--1);
  color: var(--ink-muted);
  transition: color var(--dur) var(--ease-out);
}
.service__arrow {
  justify-self: end;
  font-size: var(--step-2);
  color: var(--accent-text);
  transition: transform 0.45s var(--ease-out), color var(--dur) var(--ease-out);
}

@media (hover: hover) {
  .service:hover { color: var(--white); }
  .service:hover::before { transform: scaleX(1); }
  .service:hover .service__num,
  .service:hover .service__meta,
  .service:hover .service__arrow { color: var(--white); }
  .service:hover .service__arrow { transform: translateX(0.6rem); }
}
.service:focus-visible { outline-offset: -3px; }

/* ============================================================
   THE CLIMB — shared step component. Each step sits higher than
   the last, so the top rules draw an ascending staircase.
   ============================================================ */
.climb {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-l);
  align-items: start;
  list-style: none;
  padding: 0;
  padding-top: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: clamp(-2.5rem, -3vw, -1rem);
}
.climb__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  padding-top: var(--space-s);
  border-top: 1.5px solid var(--line-strong);
}
.climb__item:nth-child(2) { transform: translateY(clamp(-2.5rem, -3vw, -1rem)); }
.climb__item:nth-child(3) { transform: translateY(clamp(-5rem, -6vw, -2rem)); }

.climb__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-2);
  text-transform: uppercase;
  line-height: 1.05;
}
.climb__desc { color: var(--ink-muted); font-size: var(--step--1); }

.band--red .climb__item { border-top-color: var(--on-red-line); }
.band--red .climb__desc { color: var(--on-red-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: var(--hair) solid var(--line); }
.footer__cta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-m);
  padding-block: var(--section-y);
  text-decoration: none;
  color: inherit;
}
.footer__cta-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  line-height: 0.95;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
}
.footer__cta .arrow { transition: transform 0.4s var(--ease-out); color: var(--accent-text); }
@media (hover: hover) {
  .footer__cta:hover .footer__cta-text { color: var(--accent-text); }
  .footer__cta:hover .arrow { transform: translateX(1rem); }
}
.footer__mail {
  font-size: var(--step-0);
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: var(--hair) solid transparent;
  transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
@media (hover: hover) {
  .footer__mail:hover { color: var(--ink); border-bottom-color: var(--accent-text); }
}

/* ---- Footer directory ---------------------------------------- */
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
  gap: var(--space-l);
  padding-block: var(--space-xl);
  border-top: var(--hair) solid var(--line);
}

.footer__brand { display: flex; flex-direction: column; gap: var(--space-xs); align-items: flex-start; }
.footer__blurb {
  font-size: var(--step--1);
  color: var(--ink-muted);
  max-width: 34ch;
  line-height: 1.6;
}

.footer__head {
  font-family: var(--font-body);
  font-size: var(--step--2);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: var(--space-s);
}
.footer__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-2xs); }
.footer__link {
  position: relative;
  font-size: var(--step--1);
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease-out);
  padding-block: 0.15em;
}
.footer__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent-text);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.35s var(--ease-out);
}
@media (hover: hover) {
  .footer__link:hover { color: var(--ink); }
  .footer__link:hover::after { transform: scaleX(1); transform-origin: bottom left; }
}

/* ---- Legal bar ------------------------------------------------ */
.footer__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  padding-block: var(--space-m);
  border-top: var(--hair) solid var(--line);
  font-size: var(--step--2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--space-m); align-items: center; }
.footer__legal a {
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: var(--hair) solid transparent;
  transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
@media (hover: hover) {
  .footer__legal a:hover { color: var(--ink); border-bottom-color: var(--accent-text); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — breakpoint 900px per brand doc
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-y: 3rem; --gutter: 1.5rem; }

  .hero__title { max-width: 14ch; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  .services__head { flex-direction: column; align-items: flex-start; gap: var(--space-2xs); }

  .service {
    grid-template-columns: 2.75rem minmax(0, 1fr) 2rem;
    gap: var(--space-s);
    padding-inline: 0;
  }
  .service__name { font-size: var(--step-2); }
  .service__meta { grid-column: 2 / 4; font-size: var(--step--2); }
  .service__arrow { grid-row: 1; grid-column: 3; }

  /* The climb reads as a mistake in one column — flatten it. */
  .climb { grid-template-columns: 1fr; gap: var(--space-m); padding-top: 0; margin-bottom: 0; }
  .climb__item:nth-child(2),
  .climb__item:nth-child(3) { transform: none; }

  .footer__cta { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-m) var(--space-l); }
  .footer__brand { grid-column: 1 / -1; margin-bottom: var(--space-2xs); }
  .footer__base { flex-direction: column; align-items: flex-start; gap: var(--space-2xs); }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__fill { -webkit-text-stroke-width: 1px; }
  .mark__sub { display: none; }
}

/* ---- Print -------------------------------------------------- */
@media print {
  .nav, .footer__base { display: none; }
  body { background: #fff; color: #000; }
  body::after { display: none; }
}
