/* Blackout Tinting & Co. — main stylesheet
   Direction: "shade card". Near-black surfaces, the brand's signal red for
   actions, and a five-step tint strip (5% → 70%) as the recurring motif. */

:root {
  /* REPLACEABLE IMAGES
     Every image on this site is an <img src="assets/..."> element, so each can
     be swapped by replacing one file in assets/ (see assets/manifest.json).
     No CSS background images are used. Add any future ones here, e.g.
     --img-example: url("assets/example.jpg"); */

  /* Colour */
  --bg: #070707;
  --surface: #111214;
  --surface-2: #18191c;
  --line: #2a2c31;
  --text: #f4f4f2;
  --muted: #b9bbc0;
  --red: #c1121f;          /* brand red: button fills (white text 6.0:1) */
  --red-hover: #a50f1a;
  --red-text: #ff5a63;     /* red for text on dark (≥5.9:1) */
  --ice: #9ad6ff;          /* the cool glow from the logo, used sparingly */

  /* Tint strip: 5%, 20%, 35%, 50%, 70% */
  --tint: linear-gradient(90deg,
    #050505 0 20%, #26272a 20% 40%, #4a4c50 40% 60%,
    #7a7c81 60% 80%, #b8babe 80% 100%);

  /* Type */
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bahnschrift", "DIN Alternate", "DIN Condensed", "Franklin Gothic Medium",
    "Arial Narrow", system-ui, sans-serif;
  --step--1: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --step-1: clamp(1.125rem, 1.07rem + 0.3vw, 1.3125rem);
  --step-2: clamp(1.375rem, 1.25rem + 0.6vw, 1.75rem);
  --step-3: clamp(1.75rem, 1.5rem + 1.2vw, 2.5rem);
  --step-4: clamp(2.125rem, 1.7rem + 2.2vw, 3.625rem);

  /* Space & shape */
  --gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --section: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  --wrap: 72rem;
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 4.25rem;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 var(--step-0)/1.65 var(--font-body);
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-color: rgba(255, 90, 99, 0.6); text-underline-offset: 0.2em; }
a:hover { color: var(--red-text); }
:focus-visible { outline: 3px solid var(--ice); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: 0; }
p { margin: 0 0 1em; }
p, li { text-wrap: pretty; }
ul, ol { padding-left: 1.2em; }
strong { font-weight: 650; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }
.visually-hidden, .hp {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--text); color: #000; padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font: 600 var(--step--1)/1.2 var(--font-body);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 2.25rem; height: 4px; border-radius: 2px; background: var(--tint); }
.lead { font-size: var(--step-1); color: var(--muted); max-width: 40rem; }
.muted { color: var(--muted); }
.small { font-size: var(--step--1); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head .lead { margin-inline: inherit; }

/* Tint strip divider — the site's signature detail */
.tint-strip { height: 6px; background: var(--tint); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 3rem; padding: 0.75rem 1.4rem;
  border-radius: 999px; border: 2px solid transparent;
  font: 650 var(--step-0)/1.1 var(--font-body);
  text-decoration: none; cursor: pointer;
  transition: background-color 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px -12px rgba(193, 18, 31, 0.9); }
.btn--primary:hover { background: var(--red-hover); color: #fff; transform: translateY(-1px); }
.btn--ghost { border-color: #6a6d74; color: var(--text); }
.btn--ghost:hover { border-color: var(--text); color: var(--text); }
.btn--lg { min-height: 3.5rem; padding-inline: 1.8rem; font-size: var(--step-1); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.text-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--red-text); font-weight: 650; text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.text-link::after { content: "→"; transition: transform 0.18s; }
.text-link:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid #1c1d20;
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 74px; height: auto; }
.brand-name {
  font: 700 1.05rem/1.1 var(--font-display); letter-spacing: 0.02em;
}
.brand-name small { display: block; font: 500 0.75rem/1.3 var(--font-body); color: var(--muted); letter-spacing: 0.04em; }
.header-call {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--text); text-decoration: none; font-weight: 600; white-space: nowrap;
}
.header-call svg { width: 1.1rem; height: 1.1rem; color: var(--red-text); }
.header-call:hover { color: var(--red-text); }
.header-book { min-height: 2.6rem; padding: 0.5rem 1.1rem; font-size: 0.95rem; }
.nav-toggle { display: none; }

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 1.4rem; }
.site-nav a {
  display: block; padding: 0.4rem 0; text-decoration: none;
  color: var(--muted); font-weight: 550; font-size: 0.97rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--text); }
.site-nav a[aria-current="page"] { color: var(--text); border-bottom-color: var(--red); }
.nav-call { display: none; }

/* Mobile header */
@media (max-width: 63.99rem) {
  .brand-name, .header-call .label { display: none; }
  .header-call {
    width: 2.75rem; height: 2.75rem; justify-content: center;
    border: 1px solid #3a3c41; border-radius: 50%;
  }
  .header-call svg { width: 1.2rem; height: 1.2rem; }
  /* Without JS the nav simply sits under the header row */
  .site-nav { order: 10; width: 100%; padding-bottom: 0.6rem; }
  .header-inner { flex-wrap: wrap; }
  .js .header-inner { flex-wrap: nowrap; }
  .js .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.75rem; height: 2.75rem; padding: 0;
    background: transparent; color: var(--text);
    border: 1px solid #3a3c41; border-radius: 50%; cursor: pointer;
  }
  .nav-toggle svg { width: 1.3rem; height: 1.3rem; }
  .nav-toggle .icon-close { display: none; }
  .nav-open .nav-toggle .icon-open { display: none; }
  .nav-open .nav-toggle .icon-close { display: block; }
  .js .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #000; border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1.5rem;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    display: none;
  }
  .js .nav-open .site-nav { display: block; }
  .js .site-nav ul { flex-direction: column; gap: 0; }
  .js .site-nav a { padding: 0.95rem 0; font-size: 1.1rem; color: var(--text); border-bottom: 1px solid var(--line); }
  .js .site-nav a[aria-current="page"] { color: var(--red-text); border-bottom-color: var(--line); }
  .js .nav-call { display: block; margin-top: 1rem; }
  .js .nav-call .btn { width: 100%; }
}
@media (min-width: 64rem) {
  .site-nav { margin-right: 0.5rem; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(1.75rem, 1rem + 4vw, 5rem) clamp(2.5rem, 2rem + 4vw, 5.5rem); overflow: hidden; }
.hero-grid { display: grid; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 0.4em; }
.hero h1 .accent { color: var(--red-text); }
.hero .lead { margin-bottom: 1.5rem; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); width: 100%; }
.hero-media::before {
  content: ""; position: absolute; inset: auto -0.75rem -0.75rem 1.5rem; height: 70%;
  background: var(--tint); border-radius: var(--radius); z-index: -1; opacity: 0.9;
}
.hero-media figcaption {
  margin-top: 0.9rem; font-size: var(--step--1); color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-media figcaption::before { content: ""; width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--red); }
.hero-media { isolation: isolate; }

.stats { display: flex; flex-wrap: wrap; gap: 1.25rem 2.25rem; margin: 2rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--line); }
.stat dt { order: 2; font-size: var(--step--1); color: var(--muted); }
.stat { display: flex; flex-direction: column; }
.stat dd { margin: 0; font: 700 var(--step-3)/1 var(--font-display); }
.stat dd span { color: var(--red-text); }

@media (min-width: 56rem) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
@media (max-width: 55.99rem) {
  .hero .lead { font-size: var(--step-0); }
  .stats { margin-top: 1.5rem; }
}

/* Page hero (inner pages) */
.page-hero { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) clamp(2rem, 1.5rem + 3vw, 4rem); border-bottom: 1px solid var(--line); }
.page-hero .lead { margin-bottom: 1.5rem; }
.page-hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 56rem) { .page-hero-grid { grid-template-columns: 1.15fr 0.85fr; } }
.page-hero-grid img { border-radius: var(--radius); }

/* ---------- Trust band ---------- */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem 2rem; padding-block: 1.4rem;
}
.trust p { margin: 0; color: var(--muted); font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.partner-logos { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.partner-logos .chip { background: #fff; border-radius: var(--radius-sm); padding: 0.45rem 0.8rem; display: inline-flex; }
.partner-logos .chip img { height: 34px; width: auto; }
.partner-logos .chip--dark { background: #000; border: 1px solid var(--line); }

/* ---------- Service cards ---------- */
.card-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr)); }
.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: #494b51; transform: translateY(-2px); }
.card-icon {
  width: 3.25rem; height: 3.25rem; border-radius: 12px; margin-bottom: 1.25rem;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #25262a, #0b0b0c); border: 1px solid #34363b;
  color: var(--red-text);
}
.card-icon svg { width: 1.7rem; height: 1.7rem; }
.card h3 { font-size: var(--step-2); margin-bottom: 0.4em; }
.card p { color: var(--muted); }
.card .price-from { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.price-from strong { font: 700 var(--step-1)/1.2 var(--font-display); }
.price-from .label { font-size: var(--step--1); color: var(--muted); display: block; }
.card .text-link { margin-top: 0.9rem; }

/* ---------- Booking choice ---------- */
.choice-grid { display: grid; gap: var(--gap); }
@media (min-width: 48rem) { .choice-grid { grid-template-columns: 1fr 1fr; } }
.choice {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.4rem); overflow: hidden;
}
.choice::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--tint); }
.choice .tag { align-self: flex-start; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #000; background: var(--text); padding: 0.25rem 0.6rem; border-radius: 999px; margin-bottom: 1rem; }
.choice--mobile .tag { background: var(--red); color: #fff; }
.choice h3 { font-size: var(--step-3); }
.choice ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.6rem; }
.choice li { display: grid; grid-template-columns: 1.4rem 1fr; gap: 0.5rem; align-items: start; }
.choice li svg { width: 1.15rem; height: 1.15rem; margin-top: 0.28rem; color: var(--red-text); }
.choice .btn-row { margin-top: auto; }

/* ---------- Benefits (numbered) ---------- */
.benefits { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); border-top: 1px solid var(--line); }
.benefits li { padding: 1.6rem 1.5rem 1.6rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 3.25rem 1fr; gap: 0.25rem 0.75rem; }
.benefits .num { font: 700 1.1rem/1.5 var(--font-display); color: var(--red-text); grid-row: span 2; }
.benefits h3 { margin: 0 0 0.25rem; }
.benefits p { margin: 0; color: var(--muted); }

/* ---------- Split / about ---------- */
.split { display: grid; gap: clamp(2rem, 1.5rem + 3vw, 4.5rem); align-items: center; }
@media (min-width: 56rem) { .split { grid-template-columns: 1fr 1fr; } .split--reverse > :first-child { order: 2; } }
.split figure { margin: 0; }
.split img { border-radius: var(--radius); width: 100%; }
.split figcaption { margin-top: 0.75rem; font-size: var(--step--1); color: var(--muted); }
.checklist { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.55rem; }
.checklist li { padding-left: 1.75rem; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 0.9rem; height: 4px; border-radius: 2px; background: var(--red); }

/* ---------- Gallery (justified, never cropped) ---------- */
.gallery { display: flex; flex-wrap: wrap; gap: var(--gap); }
.gallery figure { margin: 0; flex: var(--r, 1.33) 1 calc(var(--r, 1.33) * 11rem); display: flex; flex-direction: column; }
/* Width ratios for the current photos, kept in CSS so gallery rows share identical
   markup. A swapped photo still shows uncropped (height: auto); only the row balance shifts. */
.gallery figure:nth-child(1) { --r: 1.907; }
.gallery figure:nth-child(2) { --r: 1; }
.gallery figure:nth-child(3) { --r: 1.326; }
.gallery img { width: 100%; height: auto; border-radius: var(--radius); background: var(--surface); }
.gallery figcaption { margin-top: 0.7rem; font-size: var(--step--1); color: var(--muted); }

/* ---------- Pricing tables ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); -webkit-overflow-scrolling: touch; }
.table-scroll:focus-visible { outline-offset: 2px; }
.price-table { width: 100%; border-collapse: collapse; min-width: 46rem; font-variant-numeric: tabular-nums; }
.price-table caption { text-align: left; padding: 1.1rem 1.25rem 0.25rem; color: var(--muted); font-size: var(--step--1); }
.price-table th, .price-table td { padding: 0.95rem 1rem; text-align: center; border-bottom: 1px solid var(--line); white-space: nowrap; }
.price-table thead th { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 650; }
.price-table tbody th { text-align: left; font-family: var(--font-display); font-size: var(--step-1); position: sticky; left: 0; background: var(--surface); }
.price-table tbody tr:last-child > * { border-bottom: 0; }
.price-table tbody tr.ceramic th { color: var(--red-text); }
.price-table td { font-weight: 600; font-size: var(--step-1); }
.table-hint { font-size: var(--step--1); color: var(--muted); margin-top: 0.6rem; }
@media (min-width: 64rem) { .table-hint { display: none; } }

.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { display: grid; grid-template-columns: 1fr auto; gap: 0.1rem 1.5rem; padding: 1rem 0; border-bottom: 1px dashed #3a3c41; }
.price-list li:last-child { border-bottom: 0; }
.price-list .name { font-weight: 650; margin: 0; }
.price-list .price { font: 700 var(--step-1)/1.3 var(--font-display); color: var(--text); white-space: nowrap; text-align: right; }
.price-list .desc { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: var(--step--1); }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 1rem + 1vw, 2rem); }
.panel h2, .panel h3 { font-size: var(--step-2); }
.panel-grid { display: grid; gap: var(--gap); }
@media (min-width: 56rem) { .panel-grid { grid-template-columns: 1fr 1fr; } }

.shade-guide { margin: 0; }
.shade-guide img { border-radius: var(--radius); width: 100%; }
.shade-guide figcaption { margin-top: 0.75rem; color: var(--muted); font-size: var(--step--1); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.75rem; max-width: 50rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 3.25rem 1.15rem 1.35rem; position: relative;
  font: 650 var(--step-1)/1.35 var(--font-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font: 400 1.7rem/1 var(--font-body); color: var(--red-text); transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--red-text); }
.faq-item p { margin: 0; padding: 0 1.35rem 1.3rem; color: var(--muted); }

/* ---------- Info blocks (location, hours) ---------- */
.info-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.9rem; }
.info-list li { display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.75rem; align-items: start; }
.info-list svg { width: 1.2rem; height: 1.2rem; margin-top: 0.3rem; color: var(--red-text); }
.info-list .k { display: block; font-size: var(--step--1); color: var(--muted); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child > * { border-bottom: 0; }

.map-figure { margin: 0; }
.map-figure img { border-radius: var(--radius); width: 100%; border: 1px solid var(--line); }
.map-figure figcaption { margin-top: 0.75rem; color: var(--muted); font-size: var(--step--1); }

.note {
  border-left: 4px solid var(--red); background: var(--surface-2);
  padding: 1rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0;
}
.note p:last-child { margin: 0; }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; }
.field .opt { color: var(--muted); font-weight: 400; font-size: var(--step--1); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--text);
  background: #0b0b0c; border: 1px solid #3a3c41; border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem; min-height: 3rem;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--ice); outline-offset: 1px; border-color: transparent; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 40rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-status { margin: 0; padding: 1rem 1.2rem; border-radius: var(--radius-sm); }
.form-status[hidden] { display: none; }
.form-status.is-ok { background: #0f2a18; border: 1px solid #2f7a48; color: #d7f7e1; }
.form-status.is-error { background: #2d0e11; border: 1px solid #8b2a31; color: #ffe0e2; }
.form-status a { color: inherit; font-weight: 650; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); background: #000; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: auto 0 0 0; height: 6px; background: var(--tint); }
.cta-inner { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 56rem) { .cta-inner { grid-template-columns: 1.3fr 1fr; } .cta-inner .btn-row { justify-content: flex-end; } }
.cta-band h2 { margin-bottom: 0.3em; }
.cta-band p { color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #000; border-top: 1px solid #1c1d20; padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 1.75rem; font-size: var(--step--1); color: var(--muted); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.site-footer h2 { font: 700 0.85rem/1.3 var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--red-text); text-decoration: underline; }
.footer-brand img { width: 120px; margin-bottom: 0.9rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid #1c1d20; display: grid; gap: 0.35rem; }
.footer-bottom p { margin: 0; }
[data-ss-credit] { font-size: 0.8rem; color: #8e9096; }
[data-ss-credit] a { color: #b9bbc0; }

/* Prose (privacy) */
.prose { max-width: 46rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2rem; }

@media print {
  .site-header, .cta-band, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
}
