/* ===================================================
   DRUCKEREI HUBER – STYLES.CSS
   Fonts: Bebas Neue (headlines) + Source Serif 4 (body)
   Colors: ink #0a0a0a | paper #f7f4ef | red #cc2200
   =================================================== */

/* ── TOKENS ──────────────────────────────────────── */
:root {
    --ink:     #0a0a0a;
    --ink-80:  rgba(10,10,10,.8);
    --ink-50:  rgba(10,10,10,.5);
    --ink-20:  rgba(10,10,10,.2);
    --ink-08:  rgba(10,10,10,.08);
    --paper:   #f7f4ef;
    --paper-2: #efebe4;
    --red:     #cc2200;
    --white:   #ffffff;

    --font-head: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'Source Serif 4', Georgia, serif;

    --radius-sm: 2px;
    --radius:    4px;
    --transition: .2s ease;
    --header-h:  68px;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    padding-top: var(--header-h);
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
ul { list-style: none; }

/* ── UTILITIES ───────────────────────────────────── */
.container {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── FADE-IN ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 3px 3px 0 var(--ink); }

.header-inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Registration mark corners in header */
.reg-mark {
    color: var(--red);
    opacity: .6;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reg-mark--tl { margin-right: .25rem; }
.reg-mark--tr { margin-left: .25rem; }

/* Brand */
.header-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-shrink: 0;
}
.brand-logo-mark { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    letter-spacing: .08em;
    color: var(--ink);
}
.brand-sub {
    font-size: .7rem;
    color: var(--ink-50);
    font-family: var(--font-body);
    letter-spacing: .05em;
}

/* Nav */
.nav-menu {
    display: flex;
    gap: 0;
    margin-left: auto;
    align-items: center;
}
.nav-link {
    position: relative;
    padding: .5rem 1rem;
    font-family: var(--font-head);
    font-size: .95rem;
    letter-spacing: .08em;
    color: var(--ink-80);
    transition: color var(--transition);
    display: flex;
    align-items: center;
}
.nav-link::before,
.nav-link::after {
    content: '';
    position: absolute;
    width: 5px; height: 5px;
    border-color: var(--red);
    border-style: solid;
    opacity: 0;
    transition: opacity var(--transition);
}
.nav-link::before { top: 4px; left: 4px; border-width: 1px 0 0 1px; }
.nav-link::after  { bottom: 4px; right: 4px; border-width: 0 1px 1px 0; }
.nav-link:hover { color: var(--red); }
.nav-link:hover::before,
.nav-link:hover::after { opacity: 1; }
.nav-link.active { color: var(--red); }
.nav-link.active::before,
.nav-link.active::after { opacity: 1; }

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 36px; height: 36px;
    background: none;
    border: 1px solid var(--ink-20);
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    transition: all .2s ease;
}
.menu-toggle span:nth-child(1) { width: 22px; }
.menu-toggle span:nth-child(2) { width: 16px; }
.menu-toggle span:nth-child(3) { width: 22px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) saturate(0.6);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,8,6,0.5) 40%, rgba(10,8,6,0.3) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-inline: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* Crop marks */
.crop-mark {
    position: absolute;
    width: 20px; height: 20px;
    opacity: .35;
}
.crop-mark::before,
.crop-mark::after {
    content: '';
    position: absolute;
    background: var(--paper);
}
.crop-mark::before { width: 1px; height: 100%; left: 50%; top: 0; }
.crop-mark::after  { width: 100%; height: 1px; top: 50%; left: 0; }
.crop-mark--tl { top: -10px; left: -10px; }
.crop-mark--tr { top: -10px; right: -10px; }
.crop-mark--bl { bottom: -10px; left: -10px; }
.crop-mark--br { bottom: -10px; right: -10px; }

/* Left side */
.hero-overline {
    font-family: var(--font-body);
    font-size: .7rem;
    letter-spacing: .18em;
    color: var(--red);
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(4rem, 9vw, 7.5rem);
    line-height: .92;
    letter-spacing: .02em;
    color: var(--paper);
    margin-bottom: 2rem;
}
.hero-sub {
    font-size: 1rem;
    color: rgba(247,244,239,.55);
    font-weight: 300;
    line-height: 1.75;
    border-left: 2px solid var(--red);
    padding-left: 1rem;
}

/* Right side: spec block */
.spec-block {
    border: 1px solid rgba(247,244,239,.2);
    background: rgba(247,244,239,.04);
    padding: 1.75rem;
    position: relative;
}
.spec-block::before,
.spec-block::after {
    content: '';
    position: absolute;
    width: 12px; height: 12px;
    border-color: var(--red);
    border-style: solid;
    opacity: .6;
}
.spec-block::before { top: 6px; left: 6px;   border-width: 1px 0 0 1px; }
.spec-block::after  { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

.spec-block__header {
    font-family: var(--font-head);
    font-size: .85rem;
    letter-spacing: .15em;
    color: var(--red);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid rgba(247,244,239,.15);
    padding-bottom: .75rem;
}

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid rgba(247,244,239,.08); }
.spec-table tr:last-child { border-bottom: none; }
.spec-key {
    font-family: var(--font-head);
    font-size: .78rem;
    letter-spacing: .1em;
    color: rgba(247,244,239,.45);
    padding: .5rem .75rem .5rem 0;
    width: 40%;
    vertical-align: top;
}
.spec-val {
    font-size: .875rem;
    color: rgba(247,244,239,.85);
    padding: .5rem 0;
    font-weight: 300;
}
.red-val { color: var(--red) !important; font-weight: 600; }

.spec-block__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(247,244,239,.15);
    font-family: var(--font-head);
    font-size: .78rem;
    letter-spacing: .15em;
    color: rgba(247,244,239,.35);
}
.cmyk-dots { display: flex; gap: 5px; }
.dot {
    width: 14px; height: 14px;
    border-radius: 50%;
}
.dot--c { background: #00b4d8; }
.dot--m { background: #e83e8c; }
.dot--y { background: #ffc107; }
.dot--k { background: #1a1a1a; border: 1px solid rgba(255,255,255,.2); }

/* ═══════════════════════════════════════════════════
   SECTION HEADERS SHARED
   ═══════════════════════════════════════════════════ */
.section-header {
    margin-bottom: 2rem;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: .12em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: .5rem;
}
.section-title--light { color: var(--paper); }
.section-rule {
    height: 1px;
    background: var(--ink);
    width: 100%;
}
.section-rule--light { background: rgba(247,244,239,.35); }

/* ═══════════════════════════════════════════════════
   LEISTUNGEN (ORDER FORM)
   ═══════════════════════════════════════════════════ */
.leistungen-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem);
    background: var(--paper);
}
.form-label {
    font-family: var(--font-head);
    font-size: .78rem;
    letter-spacing: .15em;
    color: var(--ink-50);
    margin-bottom: 1rem;
}
.order-form {
    border: 1px solid var(--ink);
    background: var(--white);
    margin-bottom: 1rem;
}
.order-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 0;
    border-bottom: 1px solid var(--ink-20);
    align-items: center;
    transition: background var(--transition);
    cursor: default;
}
.order-item:last-child { border-bottom: none; }
.order-item:hover { background: var(--paper); }

.order-checkbox {
    width: 48px;
    height: 100%;
    min-height: 60px;
    border-right: 1px solid var(--ink-20);
    display: grid;
    place-items: center;
    position: relative;
}
.order-checkbox::after {
    content: '';
    width: 16px; height: 16px;
    border: 1.5px solid var(--ink-50);
    display: block;
    transition: border-color var(--transition), background var(--transition);
}
.order-item:hover .order-checkbox::after {
    border-color: var(--ink);
    background: var(--ink-08);
}

.order-content {
    padding: .9rem 1.25rem;
}
.order-name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    letter-spacing: .06em;
    color: var(--ink);
    line-height: 1.2;
}
.order-spec {
    font-size: .78rem;
    color: var(--ink-50);
    margin-top: .2rem;
    font-weight: 300;
    font-family: var(--font-body);
}
.order-price {
    padding: .9rem 1.5rem .9rem .5rem;
    font-family: var(--font-head);
    font-size: .9rem;
    letter-spacing: .06em;
    color: var(--red);
    white-space: nowrap;
    border-left: 1px solid var(--ink-20);
    min-width: 100px;
    text-align: right;
}
.form-footnote {
    font-size: .75rem;
    color: var(--ink-50);
    font-weight: 300;
    margin-top: .25rem;
}

/* ═══════════════════════════════════════════════════
   REFERENZEN
   ═══════════════════════════════════════════════════ */
.referenzen-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem);
    background: var(--paper-2);
    border-top: 1px solid var(--ink-20);
    border-bottom: 1px solid var(--ink-20);
}
.ref-lead {
    font-size: .9rem;
    color: var(--ink-50);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: .03em;
}
.ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--ink);
}
.ref-logo-cell {
    border-right: 1px solid var(--ink-20);
    border-bottom: 1px solid var(--ink-20);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.ref-logo-cell:hover { background: var(--white); }
.ref-logo-cell:nth-child(3n) { border-right: none; }
.ref-logo-cell:nth-child(4),
.ref-logo-cell:nth-child(5),
.ref-logo-cell:nth-child(6) { border-bottom: none; }

.ref-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}
.ref-logo__mark {
    font-size: 1.4rem;
    color: var(--red);
    opacity: .6;
    line-height: 1;
    display: block;
}
.ref-logo__name {
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: .1em;
    color: var(--ink);
    line-height: 1.2;
    text-align: center;
}
.ref-logo__sub {
    font-size: .68rem;
    color: var(--ink-50);
    font-weight: 300;
    text-align: center;
    letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════
   PARALLAX REFERENZEN
   ═══════════════════════════════════════════════════ */
.parallax-ref {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.parallax-ref__bg {
    position: absolute;
    inset: -80px 0;
    background-image: url('Pic/referenzen.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(0.5);
    will-change: transform;
}
.parallax-ref__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,8,6,0.65) 0%,
        rgba(10,8,6,0.2) 50%,
        rgba(10,8,6,0.65) 100%
    );
}
.parallax-ref__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 2rem;
}
.parallax-ref__kpi-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.parallax-ref__kpi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 4rem;
    text-align: center;
}
.parallax-ref__num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--paper);
    line-height: 1;
    letter-spacing: -0.01em;
}
.parallax-ref__num sup {
    font-size: 0.45em;
    color: var(--red);
    vertical-align: super;
}
.parallax-ref__label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247,244,239,0.5);
}
.parallax-ref__div {
    width: 1px;
    height: 60px;
    background: rgba(247,244,239,0.15);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   PRODUKTION
   ═══════════════════════════════════════════════════ */
.produktion-section {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}
.produktion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1fr;
    gap: 2px;
    background: rgba(247,244,239,.1);
    border: 1px solid rgba(247,244,239,.1);
}

.maschine-block {
    background: var(--ink);
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(247,244,239,.1);
}
.maschine-block:last-of-type { border-right: none; }

.maschine-label {
    font-family: var(--font-head);
    font-size: .72rem;
    letter-spacing: .2em;
    color: var(--red);
    margin-bottom: .6rem;
}
.maschine-name {
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: .05em;
    color: var(--paper);
    line-height: 1.3;
    margin-bottom: 1rem;
}
.maschine-specs li {
    font-size: .82rem;
    color: rgba(247,244,239,.55);
    font-weight: 300;
    line-height: 1.65;
    padding-left: 1em;
    position: relative;
}
.maschine-specs li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: .7em;
}

.produktion-certs {
    background: rgba(204,34,0,.04);
    border-left: 1px solid rgba(204,34,0,.25);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}
.cert-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.cert-mark { flex-shrink: 0; margin-top: .2rem; }
.cert-name {
    font-family: var(--font-head);
    font-size: .9rem;
    letter-spacing: .08em;
    color: var(--paper);
    margin-bottom: .2rem;
}
.cert-desc {
    font-size: .78rem;
    color: rgba(247,244,239,.45);
    font-weight: 300;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════ */
.kontakt-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem);
    background: var(--paper);
}
.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--ink);
}
.kontakt-col {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--ink-20);
}
.kontakt-col:last-child { border-right: none; }
.kontakt-label {
    font-family: var(--font-head);
    font-size: .72rem;
    letter-spacing: .18em;
    color: var(--red);
    margin-bottom: .75rem;
}
.kontakt-address {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--ink);
    font-weight: 300;
}
.kontakt-tel {
    font-family: var(--font-head);
    font-size: 1.6rem;
    letter-spacing: .05em;
    color: var(--ink);
    margin-bottom: .35rem;
}
.kontakt-email {
    font-size: .85rem;
    color: var(--ink-50);
    font-weight: 300;
}
.oeffnung-table { border-collapse: collapse; font-size: .9rem; width: 100%; }
.oeffnung-table td { padding: .3rem 0; color: var(--ink); font-weight: 300; }
.oeffnung-table td:first-child { font-weight: 600; font-family: var(--font-head); letter-spacing: .05em; min-width: 80px; font-size: .85rem; }
.closed-row td { color: var(--ink-50); }
.oeffnung-note {
    font-size: .75rem;
    color: var(--ink-50);
    margin-top: .75rem;
    font-weight: 300;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    color: var(--paper);
    padding: 1.5rem clamp(1rem, 4vw, 2rem);
    border-top: 2px solid var(--red);
}
.footer-inner {
    max-width: 1100px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-reg { flex-shrink: 0; opacity: .6; }
.footer-brand-name {
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: .12em;
    color: var(--paper);
    flex: 1;
    min-width: 150px;
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a {
    font-family: var(--font-head);
    font-size: .78rem;
    letter-spacing: .1em;
    color: rgba(247,244,239,.45);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-copy {
    font-size: .75rem;
    color: rgba(247,244,239,.3);
    font-weight: 300;
}
.footer-copy a { color: rgba(247,244,239,.5); }
.footer-copy a:hover { color: var(--paper); }

/* ═══════════════════════════════════════════════════
   DISCLAIMER
   ═══════════════════════════════════════════════════ */
.escape-disclaimer {
    background: #0f0f0f;
    border-top: 1px solid rgba(204,34,0,.4);
    padding: .85rem clamp(1rem, 4vw, 2rem);
}
.escape-disclaimer__inner {
    max-width: 1100px;
    margin-inline: auto;
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .78rem;
    color: rgba(247,244,239,.5);
    line-height: 1.55;
    font-family: var(--font-body);
    font-weight: 300;
}
.disclaimer-cross {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .1rem;
    color: var(--red);
}
.escape-disclaimer a { color: #eb7005; text-decoration: underline; }
.escape-disclaimer a:hover { color: var(--paper); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .produktion-grid {
        grid-template-columns: 1fr 1fr;
    }
    .produktion-certs {
        grid-column: span 2;
        border-left: none;
        border-top: 1px solid rgba(204,34,0,.25);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 800px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .spec-block { display: none; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .kontakt-col { border-right: none; border-bottom: 1px solid var(--ink-20); }
    .kontakt-col:last-child { border-bottom: none; }
    .ref-grid { grid-template-columns: 1fr 1fr; }
    .ref-logo-cell:nth-child(2n) { border-right: none; }
    .ref-logo-cell:nth-child(3n) { border-right: 1px solid var(--ink-20); }
    .ref-logo-cell:nth-child(5),
    .ref-logo-cell:nth-child(6) { border-bottom: none; }
    .ref-logo-cell:nth-child(3) { border-bottom: 1px solid var(--ink-20); }
    .ref-logo-cell:nth-child(4) { border-bottom: 1px solid var(--ink-20); }
}

@media (max-width: 640px) {
    .menu-toggle { display: flex; }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0; right: 0;
        flex-direction: column;
        background: var(--paper);
        border-bottom: 1px solid var(--ink);
        z-index: 999;
        align-items: flex-start;
    }
    .nav-menu.open { display: flex; }
    .nav-link { padding: .85rem 1.5rem; width: 100%; border-bottom: 1px solid var(--ink-08); }
    .nav-link:last-child { border-bottom: none; }
    .nav-link::before, .nav-link::after { display: none; }

    .reg-mark { display: none; }

    .hero-headline { font-size: clamp(3rem, 14vw, 5.5rem); }
    .produktion-grid { grid-template-columns: 1fr; }
    .maschine-block { border-right: none; border-bottom: 1px solid rgba(247,244,239,.1); }
    .produktion-certs { grid-column: span 1; }

    .order-item { grid-template-columns: 40px 1fr; }
    .order-price { display: none; }

    .ref-grid { grid-template-columns: 1fr 1fr; }

    .parallax-ref { height: auto; padding: 4rem 0; }
    .parallax-ref__kpi { padding: 1rem 1.5rem; }
    .parallax-ref__div { display: none; }

    .footer-inner { gap: 1rem; }
    .footer-links { flex-wrap: wrap; }
}

@media (max-width: 380px) {
    .ref-grid { grid-template-columns: 1fr; }
    .ref-logo-cell { border-right: none !important; border-bottom: 1px solid var(--ink-20) !important; }
    .ref-logo-cell:last-child { border-bottom: none !important; }
}
