/* ==========================================================================
   MIND OVER MUSCLE — design system
   Concept: "Mind" is set in a quiet italic serif, "MUSCLE" in a heavy
   condensed grotesk. Every page plays that tension out: thought vs. force.
   ========================================================================== */

:root {
  /* colour */
  --ink: #0b0b0a;
  --ink-2: #141412;
  --ink-3: #1d1d1a;
  --ink-4: #2a2a26;
  --paper: #efeae1;
  --paper-2: #e3ddd1;
  --paper-3: #d6cfc1;
  --red: #ff3b24;
  --red-deep: #d92a15;
  --on-ink: #efeae1;
  --on-ink-muted: rgba(239, 234, 225, 0.62);
  --on-ink-faint: rgba(239, 234, 225, 0.38);
  --line-ink: rgba(239, 234, 225, 0.14);
  --on-paper: #0b0b0a;
  --on-paper-muted: rgba(11, 11, 10, 0.64);
  --line-paper: rgba(11, 11, 10, 0.16);

  /* type */
  --f-display: "Big Shoulders Display", "Impact", "Arial Narrow", sans-serif;
  --f-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --f-body: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* rhythm */
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1440px;
  --section-y: clamp(88px, 12vw, 180px);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h: 76px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--red); color: var(--ink); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 999;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); }
  80% { transform: translate(3%, 3%); }
  100% { transform: translate(0, 0); }
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section-y); }
.section--paper { background: var(--paper); color: var(--on-paper); }
.section--paper ::selection { background: var(--ink); color: var(--paper); }
.section--ink-2 { background: var(--ink-2); }
.section--tight { padding-block: clamp(64px, 8vw, 120px); }

/* ---------- type ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.01em;
}
.serif { font-family: var(--f-serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }
.red { color: var(--red); }
.muted { color: var(--on-ink-muted); }
.section--paper .muted { color: var(--on-paper-muted); }

.h-xxl { font-size: clamp(64px, 13.5vw, 240px); }
.h-xl { font-size: clamp(52px, 9vw, 150px); }
.h-lg { font-size: clamp(42px, 6.2vw, 104px); }
.h-md { font-size: clamp(32px, 3.8vw, 60px); }
.h-sm { font-size: clamp(24px, 2.2vw, 34px); }
/* serif sits optically smaller than the condensed caps — compensate */
.display .serif { font-size: 1.04em; line-height: 0.8; }

.lead { font-size: clamp(18px, 1.55vw, 23px); line-height: 1.5; max-width: 38ch; }
.body-lg { font-size: clamp(17px, 1.25vw, 19px); line-height: 1.65; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex: none;
}
.section--paper .eyebrow { color: var(--on-paper-muted); }
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--red);
  --fg: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px 17px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--on-ink);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); }
.btn .arrow { width: 18px; height: 18px; transition: transform 0.5s var(--ease); }
.btn:hover .arrow { transform: translateX(4px) rotate(-45deg); }
.btn--ghost { --bg: transparent; --fg: var(--on-ink); box-shadow: inset 0 0 0 1px var(--line-ink); }
.btn--ghost::before { background: var(--on-ink); }
.btn--dark { --bg: var(--ink); --fg: var(--paper); }
.btn--dark::before { background: var(--red); }
.btn--dark:hover { color: var(--ink); }
.section--paper .btn--ghost { --fg: var(--ink); box-shadow: inset 0 0 0 1px var(--line-paper); }
.section--paper .btn--ghost::before { background: var(--ink); }
.section--paper .btn--ghost:hover { color: var(--paper); }

.link-u {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.link-u::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link-u:hover::after { transform: scaleX(0); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, transform 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 10, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-ink);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.logo__mark {
  width: 40px;
  height: 40px;
  flex: none;
}
.logo__word { display: flex; flex-direction: column; gap: 1px; }
.logo__word .m1 { font-family: var(--f-serif); font-style: italic; font-size: 19px; letter-spacing: 0; }
.logo__word .m2 { font-family: var(--f-display); font-weight: 900; font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; }
.logo__word .m2 small { font-family: var(--f-mono); font-weight: 400; font-size: 9px; letter-spacing: 0.1em; color: var(--red); margin-right: 5px; vertical-align: 2px; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-ink-muted);
  transition: color 0.3s;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--on-ink); }
.nav__links a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--red);
}
.nav__cta { display: flex; align-items: center; gap: 22px; }
.nav__cta .btn { padding: 13px 18px 12px; font-size: 14px; }
.nav__phone { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--on-ink-muted); transition: color 0.3s; }
.nav__phone:hover { color: var(--on-ink); }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--on-ink);
  transition: transform 0.5s var(--ease), top 0.5s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 26px; right: 18px; }
.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 21px; right: 10px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  padding: calc(var(--nav-h) + 24px) var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-in-out);
  visibility: hidden;
}
.menu-open .mobile-menu { clip-path: inset(0 0 0 0); visibility: visible; }
.menu-open { overflow: hidden; }
.mobile-menu__links a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 6px 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 12vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-ink);
}
.mobile-menu__links a span { font-family: var(--f-mono); font-size: 12px; font-weight: 400; color: var(--red); letter-spacing: 0.1em; }
.mobile-menu__foot { display: grid; gap: 10px; font-size: 15px; color: var(--on-ink-muted); }
.mobile-menu__foot .btn { justify-content: space-between; margin-bottom: 12px; }

@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: block; }
}
@media (max-width: 560px) {
  .nav__cta .btn { display: none; }
}

/* ---------- hero (shared page-hero for subpages) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(56px, 9vw, 140px));
  padding-bottom: clamp(56px, 7vw, 110px);
  border-bottom: 1px solid var(--line-ink);
  overflow: hidden;
}
.page-hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: clamp(32px, 4vw, 56px);
  flex-wrap: wrap;
}
.page-hero__index {
  position: absolute;
  right: var(--gutter);
  top: calc(var(--nav-h) + 28px);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--on-ink-faint);
}

/* ---------- marquee ---------- */
.marquee {
  --speed: 38s;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  border-block: 1px solid var(--line-ink);
  background: var(--ink);
}
.marquee__track {
  display: flex;
  flex: none;
  align-items: center;
  gap: 48px;
  padding: 22px 24px;
  animation: marquee var(--speed) linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 50px);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.marquee__item .serif { font-size: 1.08em; color: var(--on-ink-muted); }
.marquee__item::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--red);
  transform: rotate(45deg);
}
.marquee--red { background: var(--red); color: var(--ink); border: 0; }
.marquee--red .marquee__item .serif { color: var(--ink); opacity: 0.75; }
.marquee--red .marquee__item::after { background: var(--ink); }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---------- media ---------- */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--ink-3);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
}
.photo--color img { filter: none; }
.photo::after {
  /* vignette + faint warm tint, keeps B&W photos from looking flat */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0, 0, 0, 0.45));
  mix-blend-mode: multiply;
}
.photo__tag {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px 6px;
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: clamp(20px, 2.4vw, 36px); }
.rule { height: 1px; background: var(--line-ink); border: 0; margin: 0; }
.section--paper .rule { background: var(--line-paper); }

.stars { display: inline-flex; gap: 3px; color: var(--red); }
.stars svg { width: 15px; height: 15px; }

/* review card */
.review {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--ink-2);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  min-height: 100%;
}
.review blockquote { font-size: 17px; line-height: 1.6; color: var(--on-ink); }
.review blockquote::before { content: "“"; display: block; font-family: var(--f-serif); font-size: 72px; line-height: 0.5; color: var(--red); margin: 18px 0 6px; }
.review figcaption { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-ink); }
.review__name { font-weight: 700; font-size: 15px; }
.review__meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--on-ink-faint); text-transform: uppercase; }

/* FAQ */
.faq { border-top: 1px solid var(--line-paper); }
.faq details { border-bottom: 1px solid var(--line-paper); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 12px;
  padding: 28px 0;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .n { font-family: var(--f-mono); font-size: 12px; font-weight: 400; letter-spacing: 0.1em; color: var(--on-paper-muted); }
.faq summary .plus { position: relative; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-paper); transition: background 0.4s var(--ease), border-color 0.4s; }
.faq summary .plus::before,
.faq summary .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.5px; margin: -0.75px 0 0 -7px; background: currentColor; transition: transform 0.5s var(--ease); }
.faq summary .plus::after { transform: rotate(90deg); }
.faq details[open] summary .plus { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.faq details[open] summary .plus::after { transform: rotate(0deg); }
.faq summary:hover { color: var(--red-deep); }
.faq .answer { display: grid; grid-template-columns: 56px 1fr 40px; gap: 12px; padding: 0 0 30px; }
.faq .answer p { grid-column: 2; max-width: 68ch; color: var(--on-paper-muted); font-size: 17px; }
@media (max-width: 640px) {
  .faq summary, .faq .answer { grid-template-columns: 1fr 40px; }
  .faq summary .n { display: none; }
  .faq .answer p { grid-column: 1; }
}

/* ---------- forms ---------- */
.field { position: relative; display: grid; gap: 8px; }
.field label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-ink-muted); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 0 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-ink);
  border-radius: 0;
  font-size: 19px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23efeae1' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.field select option { background: var(--ink-2); color: var(--on-ink); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: var(--on-ink-faint); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--red); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex;
  padding: 11px 16px 10px;
  border: 1px solid var(--line-ink);
  border-radius: 100px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.chip span:hover { border-color: var(--on-ink-muted); }
.chip input:checked + span { background: var(--red); border-color: var(--red); color: var(--ink); font-weight: 600; }
.chip input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- footer ---------- */
.footer { position: relative; background: var(--ink); padding-top: clamp(80px, 10vw, 150px); overflow: hidden; }
.footer__cta { display: grid; gap: 36px; padding-bottom: clamp(64px, 8vw, 120px); border-bottom: 1px solid var(--line-ink); }
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 56px;
}
.footer__cols h4 { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-faint); margin-bottom: 18px; }
.footer__cols li + li { margin-top: 8px; }
.footer__cols a { color: var(--on-ink-muted); transition: color 0.3s; }
.footer__cols a:hover { color: var(--on-ink); }
.footer__big {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13.6vw;
  line-height: 0.78;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--ink-3);
  margin-bottom: -0.1em;
  user-select: none;
  text-align: center;
}
.footer__big .serif { color: var(--ink-4); }
.footer__legal {
  padding-block: 22px;
  border-top: 1px solid var(--line-ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-ink-faint);
  position: relative;
  z-index: 2;
  background: var(--ink);
}
@media (max-width: 900px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ---------- motion ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="clip"] { opacity: 1; transform: none; clip-path: inset(100% 0 0 0); transition: clip-path 1.3s var(--ease-in-out); transition-delay: calc(var(--d, 0) * 90ms); }
[data-reveal="clip"].is-in { clip-path: inset(0 0 0 0); }
[data-reveal="clip"] img { transform: scale(1.18); transition: transform 1.8s var(--ease); }
[data-reveal="clip"].is-in img { transform: scale(1); }

/* line-by-line headline reveal */
/* generous padding inside the mask so italic descenders (g, j, p) and accents are never clipped;
   negative margins keep the visual line spacing unchanged */
.lines .line { display: block; overflow: hidden; padding: 0.26em 0.12em 0.32em 0; margin: -0.26em -0.12em -0.32em 0; }
.lines .line > span { display: inline-block; transform: translateY(calc(100% + 0.6em)); transition: transform 1.2s var(--ease); transition-delay: calc(var(--i, 0) * 110ms + 150ms); }
.lines.is-in .line > span { transform: none; }

/* custom cursor (fine pointers only; injected by JS) */
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  mix-blend-mode: difference;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease), opacity 0.3s;
  opacity: 0;
}
.cursor.is-on { opacity: 1; }
.cursor.is-link { width: 54px; height: 54px; margin: -27px 0 0 -27px; background: var(--on-ink); }
.cursor__label { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--ink); opacity: 0; transition: opacity 0.2s; }

@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; transition-delay: 0ms !important; }
  [data-reveal], [data-reveal="clip"], .lines .line > span { opacity: 1; transform: none; clip-path: none; }
  body::after { animation: none; }
}

/* ---------- utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.nowrap { white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; padding: 10px 14px; background: var(--red); color: var(--ink); font-weight: 700; }
.skip:focus { top: 12px; }

.footer__legal .wrap { display: flex; justify-content: space-between; gap: 12px 20px; flex-wrap: wrap; }
.footer__legal a { transition: color 0.3s; }
.footer__legal a:hover { color: var(--on-ink); }
