@charset "utf-8";
/* ==========================================================================
   Alpha Northline Global Inc.
   Site stylesheet. Brand palette preserved from the previous style.css:
     navy #1D3557, teal #00A896, deep navy #0E1C2F, light #F8F9FA,
     accent blue #3A86FF, teal hover #007A70.
   Teal is kept as the accent colour. Where teal carries text or sits behind
   white text, the darker brand teal #007A70 is used so contrast reaches
   WCAG AA. No new hues were introduced.
   ========================================================================== */

/* ---------------------------------------------------------------- fonts */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  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+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  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;
}

/* ---------------------------------------------------------------- tokens */
:root {
  /* preserved brand palette */
  --primary-navy: #1D3557;
  --primary-teal: #00A896;
  --accent-blue: #3A86FF;
  --light-bg: #F8F9FA;
  --deep-navy: #0E1C2F;
  --teal-deep: #007A70;

  /* derived working values, same hues */
  --teal-darker: #005F57;
  --teal-tint: #E6F6F4;
  --navy-tint: #EDF1F7;
  --ink: #1D3557;
  --ink-soft: #4A5A70;
  --ink-mute: #64748B;
  --line: #E2E8F0;
  --line-soft: #EEF2F7;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(14, 28, 47, .06), 0 4px 12px rgba(14, 28, 47, .05);
  --shadow-md: 0 2px 4px rgba(14, 28, 47, .05), 0 12px 28px rgba(14, 28, 47, .08);

  --wrap: 1160px;
  --gutter: 20px;
  --header-h: 68px;

  --step-0: 1rem;
  --step-1: clamp(1.05rem, .99rem + .3vw, 1.2rem);
  --step-2: clamp(1.3rem, 1.18rem + .55vw, 1.6rem);
  --step-3: clamp(1.6rem, 1.38rem + 1vw, 2.2rem);
  --step-4: clamp(1.85rem, 1.5rem + 1.6vw, 2.7rem);
  --step-5: clamp(2.25rem, 1.75rem + 2.2vw, 3.3rem);
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
}
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; line-height: 1.18; letter-spacing: -.02em; margin: 0 0 .6em; }
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); letter-spacing: -.01em; }
h4 { font-size: var(--step-1); letter-spacing: -.005em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-darker); }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
strong, b { color: var(--ink); font-weight: 700; }
:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 760px; }
.section { padding-block: clamp(3.25rem, 2.4rem + 3.4vw, 5.5rem); }
.section--tint { background: var(--light-bg); }
.section--navy { background: var(--deep-navy); color: #C7D3E2; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #FFFFFF; }
.section--line { border-top: 1px solid var(--line-soft); }

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

.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal-deep); margin-bottom: .85rem;
}
.section--navy .eyebrow { color: #4FD3C4; }
.lead { font-size: var(--step-1); color: var(--ink-soft); }
.section--navy .lead { color: #C7D3E2; }
.head { max-width: 720px; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3rem); }
.head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: 20px; }
@media (min-width: 620px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: 12px 26px;
  font: inherit; font-weight: 700; font-size: .97rem;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  flex: 0 0 auto; white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn--primary { background: var(--teal-deep); color: #fff; }
.btn--primary:hover { background: var(--teal-darker); color: #fff; }
.btn--secondary { background: transparent; color: var(--primary-navy); border-color: #C3CEDD; }
.btn--secondary:hover { background: var(--navy-tint); color: var(--primary-navy); border-color: var(--primary-navy); }
.btn--navy { background: var(--primary-navy); color: #fff; }
.btn--navy:hover { background: var(--deep-navy); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.textlink {
  display: inline-flex; align-items: center; gap: .4em;
  min-height: 44px; padding: 4px 0;
  font-weight: 700; color: var(--teal-deep); text-decoration: none;
}
.textlink:hover { text-decoration: underline; }
.textlink svg { width: 16px; height: 16px; flex: none; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; padding: 6px 0; }
.brand img { width: 104px; height: auto; }
.brand__name {
  font-size: .62rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--primary-navy); line-height: 1.25;
  max-width: 9.5em;
}
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 11px; border-radius: 8px; white-space: nowrap;
  font-size: .89rem; font-weight: 600; color: var(--primary-navy); text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--navy-tint); color: var(--primary-navy); }
.nav__link[aria-current="page"] { color: var(--teal-deep); background: var(--teal-tint); }
.header-cta { display: none; white-space: nowrap; padding: 10px 20px; min-height: 44px; font-size: .89rem; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; min-width: 44px; padding: 0 12px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  color: var(--primary-navy); font: inherit; font-size: .85rem; font-weight: 700; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle:not([aria-expanded="true"]) .nav-toggle__close { display: none; }

@media (min-width: 1024px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .site-header__bar { gap: 12px; }
}
@media (min-width: 1180px) {
  .nav__link { padding: 0 14px; font-size: .92rem; }
}

.mobile-nav { border-top: 1px solid var(--line-soft); background: #fff; }
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { list-style: none; margin: 0; padding: 10px 0 20px; }
.mobile-nav li { margin: 0; }
.mobile-nav a {
  display: flex; align-items: center; min-height: 50px; padding: 0 4px;
  font-weight: 600; color: var(--primary-navy); text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a[aria-current="page"] { color: var(--teal-deep); }
.mobile-nav .btn { margin-top: 16px; width: 100%; }

/* ---------------------------------------------------------------- hero */
.hero { background: var(--light-bg); border-bottom: 1px solid var(--line-soft); }
.hero__inner { display: grid; gap: 32px; padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); align-items: center; }
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: 56px; }
}
.hero__copy h1 { margin-bottom: .5em; }
.hero__copy .lead { max-width: 34em; margin-bottom: 1.8rem; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.hero__badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.96); border-radius: var(--radius-sm);
  padding: 10px 16px; box-shadow: var(--shadow-sm);
  font-size: .74rem; font-weight: 800; letter-spacing: .11em;
  text-transform: uppercase; color: var(--primary-navy);
}
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 1.8rem; padding: 0; list-style: none; }
.hero__facts li {
  margin: 0; display: inline-flex; align-items: center; gap: .5em;
  font-size: .86rem; font-weight: 600; color: var(--ink-soft);
}
.hero__facts svg { width: 17px; height: 17px; color: var(--teal-deep); flex: none; }

/* page hero, inner pages */
.pagehead { background: var(--deep-navy); color: #C7D3E2; }
.pagehead__inner { padding-block: clamp(2.75rem, 2rem + 3vw, 4.25rem); max-width: 780px; }
.pagehead h1 { color: #fff; }
.pagehead .lead { color: #C7D3E2; }
.crumbs { font-size: .8rem; margin-bottom: 1rem; color: #93A6BE; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45em; margin: 0; padding: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .45em; color: #5C728E; }
.crumbs a { color: #BFD0E2; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current="page"] { color: #fff; font-weight: 600; }

/* ---------------------------------------------------------------- cards */
.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.card:hover { border-color: #CBD8E6; box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--teal-tint); color: var(--teal-deep);
}
.card__icon svg { width: 23px; height: 23px; }
.card--flat { background: var(--light-bg); border-color: transparent; }
.card__list { list-style: none; padding: 0; margin: 14px 0 0; }
.card__list li {
  position: relative; padding-left: 20px; margin-bottom: .45em;
  font-size: .9rem; color: var(--ink-soft);
}
.card__list li > a:only-child,
dl dd > a:only-child {
  display: inline-flex; align-items: center; min-height: 44px;
}
.card__list li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal-deep);
}

/* brand portfolio cards */
.brand-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.brand-card:hover { border-color: #CBD8E6; box-shadow: var(--shadow-md); }
/* One tile treatment for every brand, so the row reads as a set.
   Two brands supply a real logo, two are set in type on the same plate. */
.brand-card__mark {
  position: relative; aspect-ratio: 16 / 7; overflow: hidden;
  display: grid; place-items: center; padding: 22px 26px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--light-bg) 100%);
  border-bottom: 1px solid var(--line);
}
.brand-card__mark picture { display: contents; }
.brand-card__mark img {
  max-height: 100%; max-width: 100%;
  width: auto; height: auto; object-fit: contain;
}
/* .split__media img styles photographs (3/2, cover). The brand tile lives in
   the same slot, so it has to opt out of that treatment explicitly. */
.brand-card__mark picture img {
  aspect-ratio: auto; object-fit: contain;
  width: auto; height: auto; max-height: 100%;
  border-radius: 0; box-shadow: none;
}
.brand-card__logo--sticky-rebels img { max-width: 82%; }
.brand-card__logo--reflaxis img      { max-width: 78%; }

/* the same tile used as a standalone panel on the brand detail sections */
.brand-card__mark--panel {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}
.brand-card__wordmark {
  font-size: clamp(1.15rem, .85rem + 1.5vw, 2.05rem);
  font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary-navy); text-align: center; line-height: 1.2;
  margin: 0; max-width: 100%; overflow-wrap: break-word;
}
.brand-card__sub {
  display: block; margin-top: .55em;
  font-size: clamp(.55rem, .48rem + .25vw, .62rem);
  font-weight: 700; letter-spacing: .13em; color: var(--ink-mute);
  max-width: 100%; overflow-wrap: break-word;
}
.brand-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.brand-card__body h3 { margin-bottom: .3em; }
.brand-card__body p { font-size: .95rem; }
.brand-card__foot { margin-top: auto; padding-top: 10px; }
.brand-card dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; margin: 16px 0 0; font-size: .87rem; }
.brand-card dt { font-weight: 700; color: var(--ink); }
.brand-card dd { margin: 0; color: var(--ink-soft); }

.status {
  display: inline-flex; align-self: flex-start; align-items: center; gap: .5em;
  padding: 5px 12px; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid transparent;
}
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status--active { background: var(--teal-tint); color: #00655C; border-color: #A9DED8; }
.status--marketplace { background: var(--navy-tint); color: #24456F; border-color: #C3D2E6; }
.status--development { background: #FFF4E5; color: #8A5A11; border-color: #F2D7AC; }

/* channel tiles */
.channel {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.channel__name { font-size: var(--step-1); font-weight: 800; color: var(--ink); }
.channel p { font-size: .92rem; margin: 0; }

/* split feature */
.split { display: grid; gap: 32px; align-items: center; }
.split > * { min-width: 0; }
.grid > * { min-width: 0; }
.split--form { align-items: start; }
@media (min-width: 900px) { .split--form { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); } }
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; }
  .split--flip .split__media { order: 2; }
}
.split__media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: .75em; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--teal-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007A70' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.section--navy .checklist li::before { background-color: rgba(0,168,150,.22); }

/* CTA band */
.cta-band { background: var(--primary-navy); color: #D5DFEC; border-radius: var(--radius-lg); padding: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #D5DFEC; }
.cta-band .btn-row { margin-top: 1.6rem; }

/* ---------------------------------------------------------------- forms */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field .hint { font-weight: 500; color: var(--ink-mute); font-size: .78rem; }
.field .req { color: #B3261E; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  font: inherit; font-size: .96rem; color: var(--ink);
  background: #fff; border: 1px solid #7E90AA; border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D3557' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px;
}
input:hover, select:hover, textarea:hover { border-color: #5D7290; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(0,122,112,.18);
}
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] { border-color: #B3261E; }
.field__error { display: block; margin-top: 6px; font-size: .8rem; font-weight: 600; color: #B3261E; }
.field__error:empty { display: none; }
.field-row { display: grid; gap: 18px; }
@media (min-width: 620px) { .field-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.checkline { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; padding: 9px 0; }
.checkline input[type="checkbox"] { width: 26px; height: 26px; min-height: 0; margin-top: 1px; flex: none; accent-color: #007A70; }
.checkline label { font-size: .87rem; font-weight: 500; color: var(--ink-soft); margin: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 600; }
.form-status[hidden] { display: none; }
.form-status--ok { background: var(--teal-tint); color: #00554D; border: 1px solid #A9DED8; }
.form-status--bad { background: #FDECEA; color: #8C1D18; border: 1px solid #F4C7C3; }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.contact-list svg { width: 20px; height: 20px; flex: none; margin-top: 12px; color: var(--teal-deep); }
.contact-list .k { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.contact-list a { font-weight: 600; display: inline-flex; align-items: center; min-height: 44px; min-width: 44px; }

/* ---------------------------------------------------------------- prose */
.prose { max-width: 74ch; }
.prose h2 { font-size: var(--step-3); margin-top: 2.4em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--step-1); margin-top: 1.9em; }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose li { margin-bottom: .5em; }
.legal-meta { font-size: .84rem; color: var(--ink-mute); margin-bottom: 2.2rem; }

.notice {
  background: var(--light-bg); border: 1px solid var(--line);
  border-left: 4px solid var(--primary-teal);
  border-radius: var(--radius-sm); padding: 18px 20px; font-size: .93rem;
}

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--deep-navy); color: #A9BBD0; padding-block: clamp(2.75rem, 2rem + 2.6vw, 4rem) 1.75rem; }
.site-footer h2 { font-size: .74rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 700px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; } }
.site-footer img { width: 108px; margin-bottom: 16px; }
.site-footer p { font-size: .9rem; color: #A9BBD0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0; }
.site-footer a { color: #C9D8E8; text-decoration: none; font-size: .9rem; display: inline-flex; align-items: center; min-height: 44px; min-width: 44px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-legalname { color: #fff; font-weight: 700; font-size: .94rem; margin-bottom: .35em; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 10px; font-size: .82rem; color: #8FA3BC;
}
@media (min-width: 800px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom nav ul { display: flex; flex-wrap: wrap; gap: 0 20px; }
.footer-bottom nav a { font-size: .82rem; min-height: 44px; min-width: 44px; }

/* ---------------------------------------------------------------- utility */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.small { font-size: .86rem; }
.mute { color: var(--ink-mute); }

.err-code { font-size: clamp(3.5rem, 2.5rem + 5vw, 6rem); font-weight: 800; color: var(--teal-deep); line-height: 1; margin-bottom: .1em; letter-spacing: -.04em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}
