/* Redline Automotive Services — design system
   Palette, type and component rules carried over from the original site.
   See DESIGN-REVIEW.md for what changed and why. */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/grotesk-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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/grotesk-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;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/raleway-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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/raleway-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 {
  --accent: #ec5c39;
  --accent-hover: #f3714f;
  --accent-deep: #c2421f;

  --surface: #383838;
  --surface-deep: #141414;
  --surface-raised: #434343;
  --paper: #f4f4f3;

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);

  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Raleway', 'Segoe UI', system-ui, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 116px);
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

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

/* ---------- Type ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { font-size: clamp(1.55rem, 2.8vw, 2.08rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.03em; }

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

.lede {
  font-size: clamp(1.125rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  display: block;
}

.muted { color: var(--text-muted); }
.small { font-size: 0.9375rem; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--deep { background: var(--surface-deep); }
.section--tight { padding-block: clamp(48px, 6vw, 72px); }

.section-head { max-width: 46rem; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* The orange hairline that separated bands on the original site. */
.rule {
  height: 4px;
  background: var(--accent);
  border: 0;
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: clamp(0.5rem, 1.6vw, 1.4rem); }
.nav a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: color 0.18s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav a:hover, .nav a[aria-current='page'] { color: var(--accent); }
.nav a:hover::after, .nav a[aria-current='page']::after { transform: scaleX(1); }

.nav__cta { margin-left: 0.5rem; }
.nav__cta .btn { min-height: 2.75rem; padding: 0 1.5rem; font-size: 0.875rem; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: 1px solid var(--line-strong);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; }
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }
.nav-toggle[aria-expanded='true'] span { background: transparent; }
.nav-toggle[aria-expanded='true'] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] span::after { transform: rotate(-45deg); }

@media (max-width: 960px) {
  .brand img { height: 42px; }
  .nav-toggle { display: inline-flex; position: relative; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface-deep);
    border-bottom: 4px solid var(--accent);
    padding: 0.5rem var(--gutter) 2rem;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.28s var(--ease), visibility 0.28s;
  }
  .nav[data-open='true'] { transform: translateY(0); visibility: visible; }
  .nav a { font-size: 1.15rem; padding: 0.95rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav__cta { margin: 1.5rem 0 0; }
  .nav__cta .btn { width: 100%; min-height: 3.25rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(74vh, 640px);
  padding-block: clamp(64px, 8.5vw, 108px);
  border-bottom: 4px solid var(--accent);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(12, 12, 12, 0.92) 0%, rgba(20, 20, 20, 0.78) 48%, rgba(30, 30, 30, 0.5) 100%);
}
.hero__inner { max-width: 56rem; }
.hero h1 { margin-bottom: 0.35em; }
.hero .lede { color: rgba(255, 255, 255, 0.86); max-width: 42rem; }
.hero .btn-row { margin-top: clamp(28px, 4vw, 40px); }

.hero--page { min-height: auto; padding-block: clamp(64px, 8vw, 104px); }
.hero--page::after { background: linear-gradient(100deg, rgba(10, 10, 10, 0.95) 0%, rgba(16, 16, 16, 0.86) 55%, rgba(26, 26, 26, 0.66) 100%); }
.hero--page .hero__inner { max-width: 56rem; }
.hero--page h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }

/* Stat strip under the hero */
.stats {
  background: var(--surface-deep);
  border-block: 1px solid var(--line);
  padding-inline: var(--gutter);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
}
.stat { background: var(--surface-deep); padding: clamp(24px, 3vw, 34px) clamp(20px, 3vw, 32px); }
.stat:first-child { padding-left: 0; }
@media (max-width: 420px) { .stat { padding-inline: 0; } }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}
.stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 0.35rem;
  display: block;
}

/* ---------- Alternating feature rows ---------- */
.feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(44px, 5.5vw, 68px);
  border-top: 1px solid var(--line);
}
.feature:first-of-type { border-top: 0; }
.feature__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--accent);
}
.feature--flip .feature__media { order: 2; }
.feature__body h3 { margin-bottom: 0.6rem; }

@media (max-width: 800px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
@media (min-width: 900px) {
  .grid--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.section--deep .card { background: var(--surface); }
.card h3, .card h4 { margin-bottom: 0; }
.card__price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.card__price span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  display: block;
  margin-top: 0.4rem;
}
.card__foot { margin-top: auto; padding-top: 0.5rem; }

.icon-card__icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.icon-card__icon svg { width: 100%; height: 100%; }

/* ---------- Package / tick lists ---------- */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.ticks li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.9688rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1.05rem;
  height: 0.55rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.ticks li.is-optional { color: var(--text-faint); }
.ticks li.is-optional::before { border-color: var(--text-faint); }

.pkg { position: relative; }
.pkg--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pkg__flag {
  position: absolute;
  top: -4px;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
}

.addons { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.addons li {
  background: var(--surface);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  padding: 1rem clamp(16px, 2vw, 24px);
}
.section--deep .addons li { background: var(--surface-deep); }
.addons__name { font-weight: 600; }
.addons__price { font-family: var(--font-display); color: var(--accent); font-size: 0.9375rem; letter-spacing: 0.01em; white-space: nowrap; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(18px, 2.4vw, 28px); }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.quote {
  margin: 0;
  background: var(--surface-raised);
  border-left: 4px solid var(--accent);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section--deep .quote { background: var(--surface); }
.quote blockquote { margin: 0; font-size: 1.0625rem; line-height: 1.6; color: var(--text); }
.quote figcaption {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
}

/* ---------- Prose blocks ---------- */
.prose { max-width: 46rem; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { color: var(--text-muted); }
.prose strong { color: var(--text); font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.faq details { background: var(--surface); }
.section--deep .faq details { background: var(--surface-deep); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.4vw, 28px);
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.18s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: '';
  flex: none;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq__answer { padding: 0 clamp(18px, 2.4vw, 28px) clamp(22px, 2.6vw, 30px); max-width: 52rem; color: var(--text-muted); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 10px;
}
.gallery button {
  padding: 0;
  border: 0;
  background: var(--surface-deep);
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease), opacity 0.3s var(--ease); }
.gallery button:hover img { transform: scale(1.05); opacity: 0.85; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  border: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  background: rgba(8, 8, 8, 0.96);
}
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: rgba(8, 8, 8, 0.96); }
.lightbox img { max-width: min(94vw, 1400px); max-height: 88vh; width: auto; height: auto; object-fit: contain; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line-strong);
  color: #fff;
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.18s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 1.25rem; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: var(--surface-deep);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.9rem 1rem;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.section--deep .field input, .section--deep .field select, .section--deep .field textarea { background: var(--surface); }
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field input:user-invalid, .field textarea:user-invalid, .field select:user-invalid { border-color: #ff6b6b; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}
.field select option { background: var(--surface-deep); color: #fff; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__note { font-size: 0.875rem; color: var(--text-faint); }
.form__status { padding: 1rem 1.25rem; border-left: 4px solid var(--accent); background: rgba(236, 92, 57, 0.12); font-size: 0.9375rem; }
.form__status[data-state='error'] { border-color: #ff6b6b; background: rgba(255, 107, 107, 0.12); }
.form__status[hidden] { display: none; }

.contact-aside { display: grid; gap: 1.5rem; align-content: start; }
.contact-aside__item { border-top: 1px solid var(--line); padding-top: 1.25rem; }
.contact-aside__item h4 { margin-bottom: 0.25rem; }
.contact-aside__item p { color: var(--text-muted); font-size: 0.9688rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding-block: clamp(56px, 7vw, 88px);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 44rem; margin-inline: auto; }
.cta-band .btn {
  background: #fff;
  border-color: #fff;
  color: var(--accent-deep);
  margin-top: 1.75rem;
}
.cta-band .btn:hover { background: var(--surface-deep); border-color: var(--surface-deep); color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface-deep);
  border-top: 4px solid var(--accent);
  padding-block: clamp(48px, 6vw, 72px) clamp(28px, 3vw, 36px);
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 48px);
}
.site-footer__brand img { height: 62px; width: auto; margin-bottom: 1.25rem; }
.site-footer__brand p { color: var(--text-muted); font-size: 0.9375rem; max-width: 26rem; }
.site-footer h5 {
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 700;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.site-footer ul a, .site-footer address a { color: var(--text-muted); font-size: 0.9375rem; }
.site-footer ul a:hover, .site-footer address a:hover { color: var(--accent); }
.site-footer address { font-style: normal; color: var(--text-muted); font-size: 0.9375rem; display: grid; gap: 0.6rem; }
.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-faint);
}
.site-footer__bottom p { margin: 0; }

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-reveal .reveal { opacity: 0; transform: translateY(22px); }
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; }
}
