/* ============================================
   ZMOOS BODENBELÄGE AG — Schlieren
   Handwerk Holz: Holzbraun + Cream + Slate
   Fonts: Fraunces (Display) + Inter (Body)
   ============================================ */

:root {
    --bg:           #F8F5EF;
    --bg-alt:       #FFFFFF;
    --bg-dark:      #2E2A26;
    --bg-deep:      #211E1B;
    --surface:      #EFE9DE;
    --ink:          #2E2A26;
    --ink-soft:     #4A443D;
    --ink-muted:    #7D766C;
    --ink-light:    #ABA49A;
    --line:         #DFD8CA;
    --line-soft:    #EAE4D8;
    --accent:       #7C5A3A;
    --accent-deep:  #5C4128;
    --accent-light: #B08D67;

    --font-display: 'Fraunces', serif;
    --font-body:    'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.05;
}
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

h2 em, h3 em, blockquote em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}
/* Italic-em-Safety — Klipping verhindern */
h1 em, h2 em, h3 em, h4 em {
    display: inline-block;
    padding-right: 0.08em;
}

body { background: var(--bg); color: var(--ink-soft); }
section { padding: 7rem 0; }

.label {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.25rem;
}

/* === NAV === */
.nav { background: transparent; padding: 1.6rem 0; }
.nav.scrolled {
    background: rgba(248, 245, 239, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em;
}
.nav-logo .accent { color: var(--accent); }
.nav-logo small { letter-spacing: 0.22em; font-size: 0.62rem; }
.nav-links a {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.18em; font-weight: 500; color: var(--ink);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
    border: 1px solid var(--ink) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--ink) !important;
    letter-spacing: 0.18em !important;
}
.nav-cta:hover { background: var(--ink) !important; color: var(--bg) !important; }
/* Showroom-Chip in der Nav */
.nav-chip {
    display: inline-flex; align-items: center;
    padding: 0.45rem 0.9rem;
    background: var(--surface);
    border: 1px solid var(--line);
    font-size: 0.68rem !important;
    letter-spacing: 0.12em !important;
    text-transform: none !important;
    color: var(--ink-soft) !important;
    font-weight: 500 !important;
    white-space: nowrap;
}
.nav-chip:hover { border-color: var(--accent); color: var(--accent) !important; }
@media (max-width: 1180px) {
    .nav-chip-li { display: none; }
}
@media (max-width: 980px) {
    .nav-links.open .nav-chip-li { display: block; }
}

/* === HERO — typografisch oben, breites Material-Band unten === */
.hero {
    height: 100vh; max-height: 100vh;
    background: var(--bg);
    color: var(--ink);
    padding: 0;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.hero-type {
    flex: 1; min-height: 0;
    display: flex; flex-direction: column; justify-content: center;
    padding: 8.5rem 0 3rem;
}
.hero-eyebrow {
    display: flex; align-items: center; gap: 1rem;
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeInLeft 0.9s cubic-bezier(0.22,0.61,0.36,1) 0.2s both;
}
.hero-eyebrow .num { color: var(--accent); font-weight: 700; }
.hero-eyebrow .sep { width: 36px; height: 1px; background: var(--accent); }
.hero h1 {
    font-size: clamp(2.75rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.03em;
    max-width: 16ch;
    margin-bottom: 2.5rem;
}
.hero h1 .brand-line { display: block; opacity: 0; animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero h1 .brand-line:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .brand-line:nth-child(2) { animation-delay: 0.45s; }
.hero h1 .brand-line em {
    font-style: italic; font-weight: 500;
    color: var(--accent);
}
.hero h1 .brand-underline {
    display: block; width: 72px; height: 3px;
    background: var(--accent); margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.22,0.61,0.36,1) 0.85s both;
}
.hero-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: end;
}
.hero-row .lead {
    font-size: 1.05rem; line-height: 1.65; color: var(--ink-soft);
    max-width: 52ch;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 1.1s both;
}
.hero-values {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    font-weight: 600; letter-spacing: -0.02em;
    line-height: 1.3;
    text-align: right;
}
.hero-values .vw { display: block; opacity: 0; animation: fadeInUp 0.9s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-values .vw:nth-child(1) { color: var(--ink); animation-delay: 1.0s; }
.hero-values .vw:nth-child(2) { color: var(--accent); animation-delay: 1.15s; }
.hero-values .vw:nth-child(3) { color: var(--accent-deep); animation-delay: 1.3s; }
.hero-actions {
    display: flex; align-items: center; gap: 2rem;
    margin-top: 2.25rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 1.45s both;
}
.hero-actions .btn {
    background: var(--ink); color: var(--bg);
    border-radius: 0; border: none;
    padding: 1rem 2.4rem;
    font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.hero-actions .btn:hover { background: var(--accent); transform: none; }
.hero-actions .secondary {
    font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 600; color: var(--ink-soft);
    border-bottom: 1px solid var(--ink-soft); padding-bottom: 0.3rem;
}
.hero-actions .secondary:hover { color: var(--accent); border-color: var(--accent); }
.hero-band {
    position: relative;
    flex: 0 0 32vh; height: 32vh; min-height: 200px;
    overflow: hidden;
    opacity: 0;
    animation: scaleReveal 1.5s cubic-bezier(0.22,0.61,0.36,1) 0.4s both;
}
.hero-band img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 65%;
}
.hero-band .band-caption {
    position: absolute; right: 2.5rem; bottom: 1.5rem;
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: #fff;
    background: rgba(46, 42, 38, 0.75);
    padding: 0.55rem 1.1rem;
}

/* === MATERIAL-SWATCH-BAND (Signature: stille Musterfächer-Leiste) === */
.swatch-band {
    display: grid; grid-template-columns: repeat(6, 1fr);
    height: 110px;
}
.swatch {
    position: relative;
    display: flex; align-items: flex-end;
    padding: 0 0 0.85rem 1.1rem;
}
.swatch span {
    font-family: var(--font-body);
    font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}
.swatch.sw-1 { background: #D9BC93; }
.swatch.sw-1 span { color: rgba(62, 48, 30, 0.85); }
.swatch.sw-2 { background: #C09A6B; }
.swatch.sw-2 span { color: rgba(62, 48, 30, 0.9); }
.swatch.sw-3 { background: #7A5538; }
.swatch.sw-4 { background: #A9805B; }
.swatch.sw-5 { background: #9A9893; }
.swatch.sw-6 { background: #55534E; }

/* === STORY / ÜBER UNS === */
.story-section { background: var(--bg-alt); }
.story-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 5rem; align-items: start;
}
.story-text h2 { margin-bottom: 1.75rem; max-width: 18ch; }
.story-text p { font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 58ch; }
.story-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--ink);
}
.stat-cell {
    padding: 2.25rem 1.5rem 2.25rem 0;
    border-bottom: 1px solid var(--line);
}
.stat-cell:nth-child(odd) { border-right: 1px solid var(--line); }
.stat-cell:nth-child(even) { padding-left: 1.75rem; }
.stat-cell .big {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    font-weight: 600; color: var(--accent);
    line-height: 1; letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
}
.stat-cell .desc {
    font-size: 0.85rem; color: var(--ink-muted);
    line-height: 1.5;
}

/* === MATERIALIEN — vollbreite alternierende Zeilen mit grossen Nummern === */
.materials-section { background: var(--surface); padding-bottom: 0; }
.materials-section .section-head { margin-bottom: 4rem; }
.materials-rows { border-top: 1px solid var(--line); }
.material-row {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--bg-alt);
}
.material-row:nth-child(even) { background: var(--bg); }
.material-row:nth-child(even) .mr-media { order: 2; }
.mr-media { overflow: hidden; min-height: 320px; }
.mr-media img { width: 100%; height: 100%; object-fit: cover; }
.mr-body {
    display: flex; align-items: center; gap: 3rem;
    padding: 3.5rem clamp(2rem, 6vw, 6rem);
}
.mr-num {
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 600; color: var(--accent);
    line-height: 0.85; letter-spacing: -0.04em;
    flex-shrink: 0;
}
.mr-text h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 0.8rem; }
.mr-text p { font-size: 0.97rem; line-height: 1.65; color: var(--ink-muted); max-width: 46ch; }

/* === PARKETT-PROZESS (dark, typografisch) === */
.process-section {
    background: var(--bg-dark);
    color: var(--bg);
}
.process-head {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end;
    margin-bottom: 4.5rem;
}
.process-head h2 { color: var(--bg); }
.process-head h2 em { color: var(--accent-light); }
.process-head .label { color: var(--accent-light); }
.process-head p { color: rgba(248, 245, 239, 0.72); font-size: 1.02rem; line-height: 1.65; }
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(248, 245, 239, 0.18);
}
.process-step {
    padding: 2.5rem 2rem 2.5rem 0;
    border-bottom: 1px solid rgba(248, 245, 239, 0.18);
}
.process-step:not(:last-child) { border-right: 1px solid rgba(248, 245, 239, 0.18); }
.process-step:not(:first-child) { padding-left: 2rem; }
.process-step .num {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    font-weight: 600; font-style: italic;
    color: var(--accent-light);
    line-height: 1; margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.process-step h3 { color: var(--bg); font-size: 1.3rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; line-height: 1.6; color: rgba(248, 245, 239, 0.65); }

/* === WOHNEN / VORHÄNGE SPLIT === */
.wohnen-section { background: var(--bg); }
.wohnen-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.wohnen-image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--surface);
}
.wohnen-image img { width: 100%; height: 100%; object-fit: cover; }
.wohnen-image .num-overlay {
    position: absolute; bottom: 1rem; left: 1.25rem;
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 600; font-style: italic;
    color: var(--bg); opacity: 0.9;
    line-height: 0.8; pointer-events: none;
}
.wohnen-content h2 { margin-bottom: 1.25rem; max-width: 16ch; }
.wohnen-content > p { font-size: 1rem; line-height: 1.65; margin-bottom: 0.5rem; }
.check-list {
    margin: 1.5rem 0 1.75rem;
    border-top: 1px solid var(--line);
}
.check-list li {
    padding: 0.6rem 0 0.6rem 1.6rem;
    position: relative;
    border-bottom: 1px solid var(--line);
    font-size: 0.93rem; color: var(--ink-soft);
}
.check-list li::before {
    content: ''; position: absolute; left: 0; top: 1rem;
    width: 7px; height: 7px;
    background: var(--accent);
}
.wohnen-content .link-arrow {
    font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 600; color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.4rem;
}

/* === WEITERE LEISTUNGEN === */
.extra-section { background: var(--bg-alt); }
.extra-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
}
.extra-cell {
    padding: 2.75rem 2.5rem 2.75rem 0;
    border-bottom: 1px solid var(--line);
}
.extra-cell:not(:last-child) { border-right: 1px solid var(--line); }
.extra-cell:not(:first-child) { padding-left: 2.5rem; }
.extra-cell .num {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.25em; color: var(--accent); margin-bottom: 1.25rem;
}
.extra-cell h3 { font-size: 1.35rem; margin-bottom: 0.85rem; }
.extra-cell p { font-size: 0.93rem; line-height: 1.6; color: var(--ink-muted); }

/* === MANIFESTO === */
.manifesto {
    padding: 9rem 0;
    background: var(--surface);
    position: relative;
}
.manifesto::before {
    content: '\201E';
    position: absolute;
    top: 1rem; left: 50%; transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 16rem; font-weight: 600;
    line-height: 1;
    color: var(--accent);
    opacity: 0.18;
    pointer-events: none;
}
.manifesto blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.28;
    text-align: center;
    max-width: 30ch;
    margin: 0 auto;
    color: var(--ink);
    letter-spacing: -0.02em;
    position: relative; z-index: 1;
}
.manifesto cite {
    display: block; margin-top: 2.5rem; text-align: center;
    font-family: var(--font-body); font-style: normal;
    font-size: 0.72rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--accent); font-weight: 600;
}

/* === BERATUNG / STANDORTE === */
.beratung-section { background: var(--bg); }
.beratung-head { max-width: 720px; margin-bottom: 3.5rem; }
.beratung-head h2 { margin-bottom: 1.25rem; }
.beratung-head p { font-size: 1.02rem; line-height: 1.65; }
.location-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.location-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    padding: 2.5rem 2.25rem;
}
.location-card .tag {
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1rem;
}
.location-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.location-card p { font-size: 0.95rem; line-height: 1.65; color: var(--ink-muted); }
.location-card .addr {
    font-family: var(--font-display);
    font-size: 1.15rem; color: var(--ink); font-weight: 600;
    margin-top: 1.25rem; line-height: 1.4;
}

/* === KONTAKT === */
.contact-section { background: var(--bg-alt); }
.contact-grid-z {
    display: grid; grid-template-columns: 1fr 1.15fr;
    gap: 5rem; align-items: stretch;
}
.contact-info-block h2 { margin-bottom: 1.5rem; }
.contact-rows { margin-top: 2rem; border-top: 1px solid var(--ink); }
.contact-row {
    display: grid; grid-template-columns: 130px 1fr;
    gap: 2rem; padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.contact-row .label-c {
    font-family: var(--font-body); font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ink-muted); font-weight: 600;
}
.contact-row .value {
    font-family: var(--font-display);
    font-size: 1.3rem; line-height: 1.4;
    color: var(--ink); font-weight: 600;
}
.contact-row .value small {
    display: block; font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 400; color: var(--ink-muted);
    margin-top: 0.25rem;
}
.contact-row a:hover { color: var(--accent); }
.contact-map-z {
    min-height: 460px;
    overflow: hidden;
    background: var(--surface);
}
.contact-map-z iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(0.85) contrast(1.1) brightness(1.05);
}

/* === FINAL CTA === */
.final-cta {
    background: var(--accent);
    color: var(--bg);
    padding: 7.5rem 0;
    text-align: center;
}
.final-cta .label-eyebrow {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(248, 245, 239, 0.75); margin-bottom: 1.5rem;
}
.final-cta h2 {
    color: #FFFFFF;
    max-width: 20ch;
    margin: 0 auto 1.5rem;
    padding-right: 0.3em;
}
.final-cta h2 em {
    color: #FFFFFF; font-style: italic; font-weight: 500;
    display: inline-block; padding-right: 0.2em;
}
.final-cta .lead {
    color: rgba(248, 245, 239, 0.85);
    max-width: 48ch; margin: 0 auto 2.75rem;
    font-size: 1.05rem;
}
.final-cta .btn-row {
    display: flex; gap: 1.25rem; justify-content: center;
    flex-wrap: wrap;
}
.final-cta .btn-primary {
    background: var(--bg); color: var(--accent-deep) !important;
    padding: 1.1rem 2.6rem;
    border: none; border-radius: 0;
    font-family: var(--font-body); font-size: 0.78rem;
    letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    display: inline-block;
    transition: background 250ms, color 250ms;
}
.final-cta .btn-primary:hover { background: var(--ink); color: var(--bg) !important; }
.final-cta .btn-ghost {
    border: 1px solid rgba(248, 245, 239, 0.6);
    color: #fff;
    padding: 1.1rem 2.6rem;
    font-family: var(--font-body); font-size: 0.78rem;
    letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    display: inline-block;
    transition: background 250ms, color 250ms;
}
.final-cta .btn-ghost:hover { background: #fff; color: var(--accent-deep); }

/* === FOOTER === */
.footer {
    background: var(--bg);
    color: var(--ink-soft);
    padding: 5rem 0 2rem;
    border-top: none;
}
.footer h4 {
    color: var(--ink); font-size: 1.7rem; font-weight: 600;
}
.footer h4 .accent { color: var(--accent); }
.footer h5 {
    font-family: var(--font-body); font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ink-muted); font-weight: 600; margin-bottom: 1rem;
}
.footer p { color: var(--ink-muted); }
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 2.5rem;
}
.footer ul li { padding: 0.3rem 0; font-size: 0.92rem; color: var(--ink-soft); }
.footer ul a { color: var(--ink-soft); }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    padding-top: 1.75rem;
}
.footer-bottom a { color: var(--ink-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* === PLACEHOLDER === */
.placeholder-banner {
    background: var(--surface);
    border-left: 3px solid var(--accent);
    border-radius: 0;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleReveal {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms cubic-bezier(0.22,0.61,0.36,1), transform 900ms cubic-bezier(0.22,0.61,0.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* === RESPONSIVE === */
/* Kurze Desktop-Viewports (1280×800): Hero-Inhalt komprimieren, nichts abschneiden */
@media (min-width: 981px) and (max-height: 850px) {
    .hero-type { padding: 6.5rem 0 2rem; }
    .hero-eyebrow { margin-bottom: 1.25rem; }
    .hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); margin-bottom: 1.5rem; }
    .hero h1 .brand-underline { margin-top: 1rem; }
    .hero-row .lead { font-size: 0.95rem; }
    .hero-values { font-size: clamp(1.2rem, 2vw, 1.6rem); }
    .hero-actions { margin-top: 1.5rem; }
    .hero-actions .btn { padding: 0.8rem 1.9rem; }
    .hero-band { flex-basis: 26vh; height: 26vh; min-height: 160px; }
}
@media (max-width: 1180px) {
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step:nth-child(2n) { border-right: none; }
    .process-step:nth-child(n+3) { padding-left: 0; }
    .process-step:nth-child(even) { padding-left: 2rem; }
    .mr-body { gap: 2rem; padding: 2.5rem 2rem; }
}
@media (max-width: 980px) {
    section { padding: 5rem 0; }
    .hero { min-height: 0; height: auto; max-height: none; }
    .hero-type { padding: 7.5rem 0 2.5rem; }
    .hero-row { grid-template-columns: 1fr; gap: 2rem; }
    .hero-values { text-align: left; display: flex; gap: 1.25rem; flex-wrap: wrap; }
    .hero-band { flex-basis: auto; height: auto; max-height: 320px; aspect-ratio: 21/9; min-height: 0; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
    .wohnen-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .extra-grid { grid-template-columns: 1fr; }
    .extra-cell { border-right: none !important; padding: 2rem 0 !important; }
    .location-grid { grid-template-columns: 1fr; }
    .contact-grid-z { grid-template-columns: 1fr; gap: 3rem; }
    .contact-map-z { min-height: 340px; }
    .swatch-band { grid-template-columns: repeat(3, 1fr); height: auto; }
    .swatch { height: 88px; padding: 0 0 0.7rem 0.9rem; }
    .material-row { grid-template-columns: 1fr; }
    .material-row:nth-child(even) .mr-media { order: 0; }
    .mr-media { min-height: 0; max-height: 320px; }
    .mr-media img { max-height: 320px; }
    .mr-body { padding: 2.25rem 1.5rem 2.75rem; }
    .materials-section .section-head { margin-bottom: 3rem; }
}
@media (max-width: 560px) {
    .hero-type { padding: 6.5rem 0 2rem; }
    .hero h1 { margin-bottom: 1.75rem; }
    .hero-band { aspect-ratio: 16/9; max-height: 240px; }
    .hero-band .band-caption { right: 1.25rem; bottom: 1rem; font-size: 0.6rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .hero-values { font-size: 1.3rem; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step { border-right: none !important; padding: 2rem 0 !important; }
    .story-stats { grid-template-columns: 1fr; }
    .stat-cell { border-right: none !important; padding: 1.75rem 0 !important; }
    .swatch { height: 72px; }
    .swatch span { font-size: 0.55rem; letter-spacing: 0.16em; }
    .mr-media { max-height: 240px; }
    .mr-media img { max-height: 240px; }
    .mr-body { gap: 1.5rem; }
    .mr-num { font-size: 2.75rem; }
    .contact-row { grid-template-columns: 1fr; gap: 0.4rem; }
    .final-cta .btn-row { flex-direction: column; align-items: center; }
}
