/* ==========================================================================
   Calbrush Painting LLC — main stylesheet
   Palette taken from the company logo: navy #12305f, yellow #f5b921.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES
     Swap the file in assets/ (keep the name) or change the path here. */
  --img-hero: url("assets/hero-house.webp");
  /* /REPLACEABLE IMAGES */

  --navy-900: #0b1f3f;
  --navy-800: #102a52;
  --navy-700: #12305f;
  --navy-600: #1b3a6b;
  --navy-400: #3a5f9e;

  --yellow: #f5b921;
  --yellow-600: #d99b07;
  --yellow-tint: #fdf3d9;

  --ink: #14202f;
  --body: #46536a;
  --muted: #626f87;

  --paper: #ffffff;
  --surface: #f3f6fb;
  --surface-2: #e9eef7;
  --line: #dce3ee;

  --container: 1140px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 63, .06), 0 2px 8px rgba(11, 31, 63, .05);
  --shadow-md: 0 8px 24px rgba(11, 31, 63, .09);
  --shadow-lg: 0 18px 48px rgba(11, 31, 63, .16);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --step-eyebrow: .78rem;
  --step-h1: clamp(2.15rem, 1.35rem + 3.4vw, 3.75rem);
  --step-h2: clamp(1.65rem, 1.2rem + 1.9vw, 2.5rem);
  --step-h3: clamp(1.12rem, 1.02rem + .45vw, 1.35rem);
  --step-lead: clamp(1.05rem, .99rem + .35vw, 1.22rem);

  --gap: clamp(1.25rem, .8rem + 1.6vw, 2rem);
  --section-y: clamp(3.75rem, 2.2rem + 5.5vw, 6.75rem);
}

/* --------------------------------------------------------- reset & base */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.021em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: var(--step-h1); }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); letter-spacing: -.012em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-800); }

/* Two-tone focus ring: the navy outline carries the light backgrounds,
   the yellow halo carries the navy hero / values / CTA / footer bands. */
:focus-visible {
  outline: 3px solid var(--navy-900);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(245, 185, 33, .85);
  border-radius: 4px;
}

ul, ol { margin: 0 0 1.1em; padding-left: 1.25rem; }
li { margin-bottom: .4em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* ------------------------------------------------------------- utilities */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, .6rem + 2vw, 2.25rem);
}

.narrow { max-width: 760px; }

.section { padding-block: var(--section-y); }
.section--surface { background: var(--surface); }
.section--tight { padding-block: clamp(2.5rem, 1.6rem + 3.5vw, 4.25rem); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--navy-700);
  color: #fff;
  padding: .75rem 1.1rem;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .85rem;
  font-size: var(--step-eyebrow);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-400);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
}
.eyebrow--light { color: var(--yellow); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 1.4rem + 1.8vw, 3rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head.is-centered .eyebrow { justify-content: center; }

.lead { font-size: var(--step-lead); color: var(--body); line-height: 1.6; }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .92rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  letter-spacing: -.005em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease,
              color .16s ease, border-color .16s ease;
}

.btn svg { flex: none; width: 1.05em; height: 1.05em; }

.btn--primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(245, 185, 33, .34);
}
.btn--primary:hover {
  background: var(--yellow-600);
  border-color: var(--yellow-600);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 185, 33, .42);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--navy-600);
  color: var(--navy-700);
}
.btn--outline:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg { padding: 1.05rem 1.95rem; font-size: 1.06rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .92rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
  padding-block: .6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: -.02em;
  color: var(--navy-700);
  text-transform: uppercase;
}
.brand-tag {
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.nav-toggle { display: none; }

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 8px;
  font-size: .97rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.site-nav a:hover { background: var(--surface-2); color: var(--navy-700); }
.site-nav a[aria-current="page"] {
  color: var(--navy-700);
  box-shadow: inset 0 -3px 0 var(--yellow);
}

.header-cta { display: inline-flex; gap: .5rem; }

/* Collapsed mobile navigation is only applied when JS can toggle it,
   so the menu stays fully usable with JavaScript disabled. */
@media (max-width: 960px) {
  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    order: 3;
    padding: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--navy-700);
    cursor: pointer;
  }
  .js .nav-toggle svg { width: 22px; height: 22px; }
  .js .nav-toggle .icon-close { display: none; }
  .js .nav-toggle[aria-expanded="true"] .icon-close { display: block; }
  .js .nav-toggle[aria-expanded="true"] .icon-open { display: none; }

  /* Without JS the menu simply wraps onto its own row and stays visible. */
  .site-nav {
    order: 4;
    width: 100%;
    padding: .5rem 0 .25rem;
    border-top: 1px solid var(--line);
    margin-top: .4rem;
  }
  .js .site-nav { display: none; padding-bottom: 1rem; }
  .js .site-nav.is-open { display: block; }
  .js .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .js .site-nav a { padding: .8rem .6rem; border-radius: 10px; font-size: 1.05rem; }
  .js .site-nav a[aria-current="page"] { background: var(--surface); }

  .header-cta .btn-label-long { display: none; }
}

@media (max-width: 560px) {
  .brand-tag { display: none; }
  .header-cta .btn { padding: .68rem 1rem; font-size: .93rem; }
}

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

.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-800);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--img-hero);
  background-size: cover;
  background-position: center 62%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(8, 24, 50, .95) 0%, rgba(11, 31, 63, .86) 46%,
                    rgba(11, 31, 63, .55) 74%, rgba(11, 31, 63, .42) 100%);
}

.hero-inner {
  padding-block: clamp(3.5rem, 2rem + 7vw, 7rem);
  max-width: 44rem;
}

.hero h1 { color: #fff; margin-bottom: .55rem; }
.hero h1 .accent {
  color: var(--yellow);
  display: inline-block;
}

.hero-sub {
  font-size: var(--step-lead);
  color: #d5e0f2;
  margin-bottom: 1.9rem;
  max-width: 36rem;
}

.hero .btn-row { margin-bottom: 2.1rem; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  padding: .46rem .9rem .46rem .7rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: .88rem;
  font-weight: 600;
  color: #eaf0fa;
}
.hero-facts svg { width: 1.05em; height: 1.05em; flex: none; color: var(--yellow); }

/* page hero (interior pages) */
.page-hero {
  background: var(--navy-700);
  background-image:
    radial-gradient(1000px 420px at 88% -30%, rgba(245, 185, 33, .24), transparent 62%),
    linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
}
.page-hero .container { padding-block: clamp(2.75rem, 1.8rem + 4.5vw, 4.75rem); }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: #d5e0f2; font-size: var(--step-lead); max-width: 56ch; }

/* --------------------------------------------------------------- trust bar */

.trustbar { background: var(--navy-900); color: #cddbf0; }
.trustbar ul {
  display: grid;
  gap: .35rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  list-style: none;
  margin: 0;
  padding: 1.15rem 0;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0;
  font-size: .95rem;
}
.trustbar svg { width: 1.15rem; height: 1.15rem; flex: none; color: var(--yellow); }
.trustbar a { color: #fff; font-weight: 700; text-decoration: none; }
.trustbar a:hover { color: var(--yellow); text-decoration: underline; }

/* ------------------------------------------------------------------ cards */

.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.7rem 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--yellow);
  opacity: 0;
  transition: opacity .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--surface-2);
}
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--body); font-size: .99rem; }

.card-index {
  display: block;
  margin-bottom: .9rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--navy-400);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.05rem;
  border-radius: 12px;
  background: var(--yellow-tint);
  color: var(--navy-700);
  transition: background-color .18s ease, color .18s ease;
}
.card-icon svg { width: 26px; height: 26px; }
.card:hover .card-icon { background: var(--yellow); color: var(--navy-900); }

/* --------------------------------------------------------- values (navy) */

.values { background: var(--navy-800); color: #dbe5f4; }
.values h2 { color: #fff; }
.values .lead { color: #cbd8ed; }

.value-card {
  padding: 1.9rem 1.6rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .18s ease, background-color .18s ease;
}
.value-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .1); }
.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.value-card h3 {
  color: #fff;
  font-size: 1.18rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.value-card p { color: #c3d2e9; margin: 0; }

/* --------------------------------------------------------- split section */

.split {
  display: grid;
  gap: clamp(1.8rem, 1rem + 3vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split--flip .split-media { order: -1; }
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.figure-note {
  margin-top: .7rem;
  font-size: .84rem;
  color: var(--muted);
}

.checklist { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.checklist li {
  display: flex;
  gap: .7rem;
  margin-bottom: .7rem;
  color: var(--body);
}
.checklist svg {
  flex: none;
  width: 1.3rem; height: 1.3rem;
  margin-top: .18rem;
  color: var(--navy-600);
}

/* ------------------------------------------------------------- area list */

.area-list {
  display: grid;
  gap: .6rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0;
  padding: .75rem .95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: .97rem;
}
.area-list svg { width: 1.05rem; height: 1.05rem; color: var(--yellow-600); flex: none; }

/* ------------------------------------------------------------- CTA band */

.cta-band {
  background: var(--navy-700);
  background-image:
    radial-gradient(760px 320px at 12% 120%, rgba(245, 185, 33, .3), transparent 60%),
    linear-gradient(120deg, var(--navy-800), var(--navy-600));
  color: #fff;
}
.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding-block: clamp(2.5rem, 1.7rem + 3.2vw, 4rem);
}
.cta-band h2 { color: #fff; margin-bottom: .35rem; max-width: 22ch; }
.cta-band p { color: #d5e0f2; margin: 0; max-width: 46ch; }

/* ------------------------------------------------------------ hours table */

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.hours-table caption {
  text-align: left;
  font-weight: 800;
  color: var(--ink);
  padding-bottom: .6rem;
}
.hours-table th, .hours-table td {
  padding: .72rem .2rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.hours-table th { font-weight: 700; color: var(--ink); width: 45%; }
.hours-table td { color: var(--body); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }

/* ----------------------------------------------------------------- forms */

.form-panel {
  padding: clamp(1.5rem, 1rem + 1.8vw, 2.4rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  margin-bottom: .4rem;
  font-weight: 700;
  font-size: .93rem;
  color: var(--ink);
}
.field .hint { font-weight: 500; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .82rem .95rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(18, 48, 95, .28);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa7bb; }

/* honeypot — hidden from people, reachable by bots */
.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cf-turnstile { margin-bottom: 1.1rem; }

.form-note { font-size: .86rem; color: var(--muted); margin-top: 1rem; }

.form-status {
  margin-top: 1.1rem;
  padding: .95rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .96rem;
}
.form-status[hidden] { display: none; }
.form-status.is-ok {
  background: #e8f6ed;
  border: 1px solid #b6e0c5;
  color: #17603a;
}
.form-status.is-error {
  background: #fdeceb;
  border: 1px solid #f5c2be;
  color: #97231c;
}

/* ------------------------------------------------------- contact details */

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: .85rem;
  margin-bottom: 1.15rem;
}
.contact-list svg {
  flex: none;
  width: 1.4rem; height: 1.4rem;
  margin-top: .22rem;
  color: var(--navy-600);
}
.contact-list .label {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a, .contact-list strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-style: normal;
}
.contact-list a:hover { color: var(--navy-700); text-decoration: underline; }

/* -------------------------------------------------------------- legal doc */

.legal-doc { max-width: 74ch; }
.legal-doc h2 {
  font-size: clamp(1.28rem, 1.14rem + .6vw, 1.55rem);
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.legal-doc h2:first-of-type { margin-top: 1.6rem; }
.legal-doc h3 { margin-top: 1.7rem; font-size: 1.08rem; }
.legal-doc ul { padding-left: 1.15rem; }

.doc-meta {
  display: inline-block;
  padding: .5rem 1rem;
  margin-bottom: 1.6rem;
  background: var(--yellow-tint);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  color: #7a5a06;
}

.callout {
  padding: 1.15rem 1.3rem;
  margin: 1.6rem 0;
  background: var(--surface);
  border-left: 4px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  font-size: .98rem;
}
.callout p:last-child { margin-bottom: 0; }

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

.site-footer {
  background: var(--navy-900);
  color: #b8c8e0;
  font-size: .96rem;
}
.site-footer a { color: #dce7f7; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); text-decoration: underline; }

.footer-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding-block: clamp(2.75rem, 2rem + 3vw, 4rem);
}
.footer-grid h2 {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.05rem;
}

.footer-brand img {
  width: 62px; height: 62px;
  border-radius: 12px;
  margin-bottom: .95rem;
}
.footer-brand p { color: #a9bcd8; font-size: .93rem; }

.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: .55rem; }
.footer-list address { font-style: normal; color: #b8c8e0; }
.footer-phone {
  display: inline-block;
  font-size: 1.16rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -.01em;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .85rem;
  color: #8fa3c2;
}
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; }
[data-ss-credit] { color: #7e93b4; }
[data-ss-credit] a { color: #9fb3d1; text-decoration: underline; }
[data-ss-credit] a:hover { color: var(--yellow); }

/* -------------------------------------------------------- 404 / fallback */

.error-page { text-align: center; padding-block: clamp(4rem, 3rem + 6vw, 8rem); }
.error-code {
  font-size: clamp(4rem, 2rem + 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--surface-2);
  letter-spacing: -.04em;
  margin: 0;
}
.error-page .btn-row { justify-content: center; }

/* ------------------------------------------------------------------ print */

@media print {
  .site-header, .cta-band, .site-footer nav, .btn { display: none !important; }
  body { color: #000; font-size: 11pt; }
}
