/* guenstige-umzugsfirma-basel.ch — „Basel – Kunst, Architektur, Rhein“
   Swiss-Style-Plakatmoderne: Reinweiss, Tiefschwarz, ein Signalrot. 12-Spalten-Raster,
   grosse Grotesk-Headlines, Haarlinien, rote Abschnittsnummern, flache Flächen.
   Keine Schatten, keine Rundungen, keine externen Fonts. */

:root {
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #474747;
  --red: #d7261e;
  --red-dark: #b01d16;
  --paper: #f3f3f1;
  --gutter: 24px;
  --pad: 40px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; margin: 0 0 .5em; color: inherit; overflow-wrap: break-word; hyphens: manual; }
h1 { font-size: clamp(2.3rem, 1rem + 4.4vw, 4.9rem); line-height: 1; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 1.1rem + 2.3vw, 3.1rem); line-height: 1.04; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 1.05rem + .5vw, 1.45rem); line-height: 1.2; }
h4 { font-size: 1.1rem; line-height: 1.25; }
p { margin: 0 0 1em; }
strong { font-weight: 700; }

/* Links: Fliesstext unterstrichen, Navigation mit wachsender Linie */
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; transition: color .2s ease, text-decoration-color .2s ease; }
main a:not(.btn):not(.tile):not(.u):hover { color: var(--red); text-decoration-color: var(--red); }
a.u { text-decoration: none; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 2px; transition: background-size .3s cubic-bezier(.2, .7, .2, 1); padding-bottom: 2px; }
a.u:hover, a.u[aria-current="page"] { background-size: 100% 2px; }

.wrap { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--pad); }
.g12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); }
.g12 > * { min-width: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 12px; }
.text-center { text-align: center; }
.grid-3 { display: grid; gap: var(--gutter); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { display: grid; gap: var(--gutter); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.highlight { background: var(--ink); color: var(--white); padding: 0 .15em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--ink); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-mark { flex: none; display: block; }
.brand-text { display: flex; flex-direction: column; font-size: .78rem; line-height: 1.05; letter-spacing: .01em; }
.brand-text strong { font-size: 1.45rem; letter-spacing: -0.03em; line-height: 1; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav-list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-list a { font-size: 1rem; font-weight: 700; }
.nav-list a[aria-current="page"] { color: var(--red); }
.nav-toggle { display: none; position: relative; width: 46px; height: 46px; border: 1px solid var(--ink); background: var(--white); cursor: pointer; padding: 0; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  position: absolute; left: 50%; width: 22px; height: 2px; margin-left: -11px; background: var(--ink); content: ""; transition: transform .2s ease, background .2s ease;
}
.nav-toggle-bars { top: 50%; margin-top: -1px; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }

/* ---------- Buttons (Kontrast gesichert über a.btn.btn--x) ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 22px; font-family: var(--font); font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none; border: 2px solid transparent; text-align: center; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.btn::after { content: "→"; display: inline-block; transition: transform .2s ease; }
.btn:hover::after { transform: translateX(4px); }
.btn--lg { padding: 17px 28px; font-size: 1.08rem; }
a.btn.btn--red { background: var(--red); border-color: var(--red); color: #ffffff; }
a.btn.btn--red:hover { background: var(--ink); border-color: var(--ink); color: #ffffff; }
.sec--black a.btn.btn--red:hover { background: #ffffff; border-color: #ffffff; color: var(--ink); }
a.btn.btn--black { background: var(--ink); border-color: var(--ink); color: #ffffff; }
a.btn.btn--black:hover { background: #ffffff; border-color: #ffffff; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding-block: 34px 88px; }
.hero-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 10px 24px; border-bottom: 1px solid var(--ink); padding-bottom: 12px; margin-bottom: 34px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; font-size: .92rem; color: var(--ink-soft); }
.crumbs a { color: var(--ink); font-weight: 700; }
.hero h1 { max-width: 15em; margin-bottom: 44px; }
.hero--home h1 { font-size: clamp(2.5rem, .9rem + 5.6vw, 6.1rem); max-width: 12em; }
.hero-row { align-items: start; row-gap: 36px; }
.hero-copy { grid-column: 1 / 6; }
.hero-visual { grid-column: 7 / 13; }
.hero .lead { font-size: 1.2rem; line-height: 1.5; }
.hero-actions { margin: 28px 0 22px; }
.ticks { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 0; font-weight: 700; font-size: .98rem; }
.ticks li { display: inline-flex; align-items: center; gap: 9px; }
.ticks li::before { content: ""; width: 10px; height: 10px; background: var(--red); flex: none; }
.hero--legal { padding-block: 34px 40px; }
.hero--legal .crumbs { margin-bottom: 26px; }
.hero--legal h1 { margin: 0; }

/* ---------- Bildslots: flache Plakat-Kompositionen, bis echte Fotos da sind ---------- */
.media {
  display: block; width: 100%; aspect-ratio: 4 / 3; background-color: var(--ink);
  background-size: cover; background-position: center;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 120' preserveAspectRatio='xMidYMid slice'><rect width='160' height='120' fill='%23111'/><rect x='16' y='16' width='38' height='38' fill='%23d7261e'/><path d='M104 0v70' stroke='%23fff' stroke-width='.6'/><g fill='none' stroke='%23fff' stroke-width='2.2'><path d='M-10 80q10-7 20 0t20 0 20 0 20 0 20 0 20 0 20 0 20 0 20 0'/><path d='M-10 92q10-7 20 0t20 0 20 0 20 0 20 0 20 0 20 0 20 0 20 0'/><path d='M-10 104q10-7 20 0t20 0 20 0 20 0 20 0 20 0 20 0 20 0 20 0'/></g></svg>");
}
.media--hero { aspect-ratio: 4 / 3; }
.hero--home .media--hero { aspect-ratio: 16 / 10; }
img.media { display: block; height: auto; object-fit: cover; }
.media[data-img="basel-kosten"] { background-color: #fff; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 120' preserveAspectRatio='xMidYMid slice'><rect width='160' height='120' fill='%23f3f3f1'/><g stroke='%23111' stroke-width='.6'><path d='M12 24h136M12 48h136M12 72h136M12 96h136'/></g><rect x='22' y='72' width='18' height='24' fill='%23111'/><rect x='50' y='58' width='18' height='38' fill='%23111'/><rect x='78' y='44' width='18' height='52' fill='%23111'/><rect x='106' y='20' width='18' height='76' fill='%23d7261e'/><path d='M12 96h136' stroke='%23111' stroke-width='2'/></svg>"); }
.media[data-img="basel-buero"] { background-color: var(--red); background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 120' preserveAspectRatio='xMidYMid slice'><rect width='160' height='120' fill='%23d7261e'/><g fill='%23111'><rect x='20' y='56' width='34' height='26'/><rect x='58' y='56' width='34' height='26'/><rect x='39' y='26' width='34' height='26'/><rect x='20' y='86' width='72' height='14'/></g><rect x='104' y='20' width='38' height='80' fill='none' stroke='%23fff' stroke-width='2'/><path d='M104 46h38M104 72h38' stroke='%23fff' stroke-width='2'/></svg>"); }
.media[data-img="basel-moebellift"] { background-color: #fff; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 120' preserveAspectRatio='xMidYMid slice'><rect width='160' height='120' fill='%23fff'/><g fill='%23111'><rect x='18' y='18' width='26' height='92'/><rect x='48' y='34' width='22' height='76'/><rect x='74' y='10' width='24' height='100'/></g><g fill='%23fff'><rect x='24' y='30' width='6' height='9'/><rect x='33' y='30' width='6' height='9'/><rect x='24' y='52' width='6' height='9'/><rect x='33' y='52' width='6' height='9'/><rect x='80' y='24' width='5' height='9'/><rect x='88' y='24' width='5' height='9'/><rect x='80' y='46' width='5' height='9'/><rect x='88' y='46' width='5' height='9'/></g><path d='M146 110L92 28' stroke='%23d7261e' stroke-width='5'/><rect x='104' y='40' width='14' height='10' fill='%23d7261e' transform='rotate(-56 111 45)'/><path d='M10 110h140' stroke='%23111' stroke-width='1.5'/></svg>"); }
.media[data-img="basel-baselland"] { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 120' preserveAspectRatio='xMidYMid slice'><rect width='160' height='120' fill='%23111'/><circle cx='118' cy='36' r='18' fill='%23d7261e'/><path d='M0 84C30 62 52 60 80 74s56 10 80-8v54H0z' fill='%23fff'/><path d='M0 98c34-14 64-12 92 0s48 8 68 0' fill='none' stroke='%23111' stroke-width='2'/></svg>"); }
.media[data-img="basel-reinigung"] { background-color: #fff; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 120' preserveAspectRatio='xMidYMid slice'><rect width='160' height='120' fill='%23f3f3f1'/><g stroke='%23111' stroke-width='.7'><path d='M0 30h160M0 42h160M0 54h160M0 66h160M0 78h160M0 90h160M0 102h160'/></g><rect x='22' y='18' width='54' height='84' fill='%23fff' stroke='%23111' stroke-width='2'/><path d='M49 18v84M22 60h54' stroke='%23111' stroke-width='2'/><rect x='108' y='70' width='22' height='22' fill='%23d7261e'/></svg>"); }
.media[data-img="basel-ratgeber"] { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 120' preserveAspectRatio='xMidYMid slice'><rect width='160' height='120' fill='%23111'/><g fill='none' stroke='%23fff' stroke-width='1.2'><rect x='20' y='20' width='20' height='20'/><rect x='46' y='20' width='20' height='20'/><rect x='72' y='20' width='20' height='20'/><rect x='98' y='20' width='20' height='20'/><rect x='124' y='20' width='20' height='20'/><rect x='20' y='46' width='20' height='20'/><rect x='46' y='46' width='20' height='20'/><rect x='98' y='46' width='20' height='20'/><rect x='124' y='46' width='20' height='20'/><rect x='20' y='72' width='20' height='20'/><rect x='46' y='72' width='20' height='20'/><rect x='72' y='72' width='20' height='20'/><rect x='98' y='72' width='20' height='20'/><rect x='124' y='72' width='20' height='20'/></g><rect x='72' y='46' width='20' height='20' fill='%23d7261e'/><path d='M20 104h124' stroke='%23fff' stroke-width='.6'/></svg>"); }
.media[data-img="basel-rhein"] { background-color: var(--red); background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 120' preserveAspectRatio='xMidYMid slice'><rect width='160' height='120' fill='%23d7261e'/><path d='M0 22L160 58' stroke='%23111' stroke-width='1.2'/><path d='M84 52l18 4-4 10-18-4z' fill='%23111'/><g fill='none' stroke='%23fff' stroke-width='2.2'><path d='M-10 76q10-7 20 0t20 0 20 0 20 0 20 0 20 0 20 0 20 0 20 0'/><path d='M-10 90q10-7 20 0t20 0 20 0 20 0 20 0 20 0 20 0 20 0 20 0'/><path d='M-10 104q10-7 20 0t20 0 20 0 20 0 20 0 20 0 20 0 20 0 20 0'/></g></svg>"); }

/* ---------- Abschnitte ---------- */
.sec { padding-block: 0 88px; }
.sec > .wrap { border-top: 1px solid var(--ink); padding-top: 20px; }
.sec--black { background: var(--ink); color: #fff; padding-block: 88px; margin-bottom: 88px; }
.sec--black > .wrap { border-top-color: #ffffff; }
.sec--black a:not(.btn) { color: #fff; }
.sec--black a:not(.btn):not(.tile):not(.u):hover { color: #ffffff; text-decoration-color: #ffffff; text-decoration-thickness: 2px; }
.sec--paper { background: var(--paper); padding-block: 88px; margin-bottom: 88px; }

.label { display: flex; align-items: baseline; gap: 14px; margin: 0; font-size: .82rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.label-no { color: var(--red); font-size: 1rem; letter-spacing: 0; }
.sec--black .label-no { color: #ff5a4f; }
.sec-head { margin-bottom: 44px; row-gap: 14px; }
.sec-head .label { grid-column: 1 / 4; padding-top: .7em; }
.sec-head h2, .sec-head .sec-intro { grid-column: 4 / 12; }
.sec-head h2 { margin: 0; }
.sec-intro { font-size: 1.1rem; }
.sec-intro p:last-child { margin-bottom: 0; }

.row { row-gap: 28px; margin-top: 8px; }
.row + .row { margin-top: 56px; }
.row-aside { grid-column: 1 / 4; }
.row-main { grid-column: 4 / 11; }
.row-main--wide { grid-column: 4 / 13; }
.row-main > :last-child { margin-bottom: 0; }
.big { display: block; font-size: clamp(2.8rem, 1.2rem + 4vw, 5.6rem); line-height: .9; font-weight: 700; letter-spacing: -0.05em; color: var(--red); margin: 0 0 10px; overflow-wrap: anywhere; }
.sec--black .big { color: #ffffff; }
.big-caption { display: block; font-size: .95rem; font-weight: 700; line-height: 1.35; max-width: 16em; }
.prose { max-width: 46em; }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.5em; }
.split { align-items: start; row-gap: 32px; }
.split-text { grid-column: 4 / 9; }
.split-media { grid-column: 9 / 13; }

/* Listen */
.list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.list li { position: relative; padding-left: 26px; margin-bottom: .55em; }
.list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; background: var(--red); }
ol.num-list { padding-left: 1.4em; }
ol.num-list li { margin-bottom: .55em; padding-left: .3em; }
ol.num-list li::marker { color: var(--red); font-weight: 700; }

/* Schritte mit grossen Ziffern */
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gutter); }
.steps > li { counter-increment: s; border-top: 1px solid currentColor; padding-top: 16px; min-width: 0; }
.steps > li::before { content: counter(s, decimal-leading-zero); display: block; font-size: clamp(2.6rem, 1.6rem + 2.6vw, 4.4rem); font-weight: 700; letter-spacing: -0.05em; line-height: 1; color: var(--red); margin-bottom: 18px; }
.sec--black .steps > li::before { color: #fff; }
.steps p:last-child { margin-bottom: 0; }

.steps-card { border-top: 1px solid currentColor; padding-top: 16px; min-width: 0; }
.steps-card p:last-child { margin-bottom: 0; }

/* Zahlen */
.facts { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gutter); }
.facts li { border-top: 1px solid currentColor; padding-top: 14px; min-width: 0; }
.fact-num { display: block; font-size: clamp(2rem, 1.1rem + 2.4vw, 3.5rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1; margin-bottom: 10px; white-space: nowrap; }
.fact-label { display: block; font-size: .95rem; line-height: 1.4; }

/* Kacheln */
.tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 var(--gutter); }
a.tile { display: flex; flex-direction: column; min-width: 0; border-top: 1px solid var(--ink); padding: 16px 0 34px; color: var(--ink); text-decoration: none; }
.tile-no { font-size: .9rem; font-weight: 700; color: var(--red); margin-bottom: 26px; }
.tile h3 { align-self: flex-start; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 2px; transition: background-size .3s cubic-bezier(.2, .7, .2, 1); padding-bottom: 3px; margin-bottom: .6em; }
a.tile:hover h3 { background-size: 100% 2px; }
.tile p { margin: 0 0 14px; }
.tile-more { margin-top: auto; font-weight: 700; font-size: .95rem; }
.tile-more::after { content: " →"; color: var(--red); }

/* Hinweisbox */
.callout { position: relative; border: 1px solid var(--ink); padding: 26px 26px 22px; margin: 30px 0; }
.callout::before { content: ""; position: absolute; left: -1px; top: -1px; width: 16px; height: 16px; background: var(--red); }
.callout p:last-child { margin-bottom: 0; }
.callout-title { font-weight: 700; margin-bottom: .4em; }
.sec--black .callout { border-color: #fff; }

/* Tabellen: keine Scroller, Umbruch statt min-width (Karten auf Mobile via base.css) */
main table { border-collapse: collapse; font-size: 1rem; margin: 0 0 14px; }
main caption { caption-side: top; text-align: left; font-weight: 700; padding: 0 0 12px; font-size: 1rem; }
main th, main td { padding: 13px 16px 13px 0; text-align: left; border-bottom: 1px solid var(--ink); vertical-align: top; }
main thead th { border-bottom: 3px solid var(--ink); font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; padding-bottom: 10px; }
main tbody th { font-weight: 700; }
main td.num { font-variant-numeric: tabular-nums; }
main td.hot { color: var(--red); font-weight: 700; }
.note { font-size: .92rem; color: var(--ink-soft); }
.sec--black .note { color: #d9d9d9; }

/* Zeitachse */
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline > li { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 8px; border-top: 1px solid var(--ink); padding: 22px 0 30px; }
.tl-when { grid-column: 1 / 4; font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.7rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--red); }
.tl-body { grid-column: 4 / 11; min-width: 0; }
.tl-body h3 { margin-bottom: .4em; }
.tl-body > :last-child { margin-bottom: 0; }

/* Inline-CTA */
.inline-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* FAQ */
.faq { border-bottom: 1px solid var(--ink); }
.faq-item { border-top: 1px solid var(--ink); }
.faq-item summary { cursor: pointer; list-style: none; display: grid; grid-template-columns: 3.2em minmax(0, 1fr) 2em; gap: 10px; align-items: baseline; padding: 20px 0; font-weight: 700; font-size: 1.12rem; line-height: 1.35; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.7rem; line-height: 1; color: var(--red); text-align: right; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover .faq-q { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .2em; }
.faq-no { color: var(--red); font-size: .9rem; }
.faq-a { padding: 0 2.6em 24px calc(3.2em + 10px); }
.faq-a p { margin: 0; max-width: 46em; }

/* Rechtliches */
.legal { padding-block: 10px 80px; }
.legal .wrap > * { max-width: 46em; }
.legal h2 { font-size: 1.4rem; margin-top: 1.7em; letter-spacing: -0.01em; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--red); color: #fff; padding-block: 88px; }
.cta-band .g12 { align-items: start; row-gap: 20px; }
.cta-band-word { grid-column: 1 / 5; margin: 0; font-size: clamp(5rem, 3rem + 8vw, 11rem); font-weight: 700; line-height: .8; letter-spacing: -0.06em; color: var(--ink); }
.cta-band-copy { grid-column: 6 / 12; border-top: 1px solid #fff; padding-top: 18px; }
.cta-band-title { font-size: clamp(1.7rem, 1.1rem + 2vw, 2.8rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-band-copy p { max-width: 36em; }
.cta-band .btn { margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e6e6e6; padding-block: 64px 30px; font-size: 1rem; }
.site-footer a { color: #ffffff; }
.footer-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 34px var(--gutter); }
.footer-brand { grid-column: 1 / 5; }
.footer-grid > div:not(.footer-brand) { grid-column: span 2; min-width: 0; }
.footer-grid > div:nth-child(2) { grid-column: 6 / 9; }
.footer-grid > div:nth-child(3) { grid-column: 9 / 11; }
.footer-grid > div:nth-child(4) { grid-column: 11 / 13; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-title { font-weight: 700; color: #fff; margin-bottom: 14px; font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; border-top: 1px solid #fff; padding-top: 12px; }
.brand--footer { color: #fff; }
.footer-brand p { margin-top: 18px; max-width: 26em; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 48px; padding-top: 18px; border-top: 1px solid #5c5c5c; font-size: .92rem; }
.footer-bottom p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-copy { grid-column: 1 / 7; }
  .hero-visual { grid-column: 7 / 13; }
  .row-main { grid-column: 4 / 13; }
  .sec-head h2, .sec-head .sec-intro { grid-column: 4 / 13; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 34px; }
}
@media (max-width: 900px) {
  :root { --pad: 24px; }
  .g12 > *, .hero-copy, .hero-visual, .row-aside, .row-main, .row-main--wide, .split-text, .split-media,
  .sec-head .label, .sec-head h2, .sec-head .sec-intro, .cta-band-word, .cta-band-copy { grid-column: 1 / -1; }
  .sec-head .label { padding-top: 0; }
  .steps, .tiles, .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline > li { grid-template-columns: minmax(0, 1fr); }
  .tl-when, .tl-body { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid > div.footer-brand, .footer-grid > div:nth-child(n) { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1 !important; }
  .sec { padding-block: 0 64px; }
  .sec--black, .sec--paper { padding-block: 64px; margin-bottom: 64px; }
  .hero { padding-block: 24px 64px; }
  .cta-band { padding-block: 64px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; z-index: 60; }
  .nav {
    display: none; position: fixed; left: 0; right: 0; top: 72px; bottom: 0; z-index: 55;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 28px;
    padding: 12px var(--pad) 40px; background: var(--white); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--ink); }
  .nav-list a { display: block; font-size: 2rem; letter-spacing: -0.03em; padding: 16px 0; background: none; }
  .nav-cta { font-size: 1.1rem; padding: 17px 22px; }
  body.nav-open .nav-toggle-bars { background: transparent; }
  body.nav-open .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  :root { --pad: 18px; }
  body { font-size: 17px; }
  h2 { hyphens: auto; }
  .brand-text { font-size: .7rem; }
  .brand-text strong { font-size: 1.25rem; }
  .logo-mark { width: 34px; height: 34px; }
  .btn--lg { width: 100%; }
  .hero h1 { margin-bottom: 30px; }
  .grid-4, .facts { grid-template-columns: minmax(0, 1fr); }
  .faq-item summary { grid-template-columns: 2.4em minmax(0, 1fr) 1.4em; font-size: 1.04rem; }
  .faq-a { padding: 0 0 22px calc(2.4em + 10px); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .callout { padding: 22px 18px 18px; }
}
