/* ================================================================
   LCM Hub – main.css
   ================================================================ */

/* ── Lokal gehostete Fonts (DSGVO) ──────────────────────────── */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/montserrat/montserrat-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                   U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                   U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                   U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/montserrat/montserrat-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
                   U+FEFF, U+FFFD;
}

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
    --color-accent:     #E8722A;
    --color-accent-dk:  #c75e1f;
    --color-dark:       #1E1E2E;
    --color-dark-80:    rgba(30, 30, 46, 0.8);
    --color-cream:      #F5F5F0;
    --color-bg:         #FFFFFF;
    --color-text:       #2B2B2B;
    --color-text-muted: #6B6B6B;
    --color-border:     rgba(30, 30, 46, 0.1);

    --font-main: 'Montserrat', Arial, sans-serif;

    --section-py:    88px;
    --max-width:     1060px;
    --nav-height:    72px;
    --radius:        6px;
    --radius-lg:     16px;

    --shadow-sm: 0 2px 12px rgba(30, 30, 46, 0.07);
    --shadow-md: 0 8px 32px rgba(30, 30, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(30, 30, 46, 0.16);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

address { font-style: normal; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-main);
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section     { padding: var(--section-py) 0; }
.section-white  { background: var(--color-bg); }
.section-cream  { background: var(--color-cream); }
.section-dark   { background: var(--color-dark); color: #fff; }
.section-dark h2 { color: #fff; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.section-eyebrow.light { color: rgba(255,255,255,0.6); }

.section-lead {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-top: 16px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.btn-primary:hover {
    background: var(--color-accent-dk);
    border-color: var(--color-accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 114, 42, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}
.btn-outline:hover {
    background: var(--color-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.btn-accent:hover {
    background: var(--color-accent-dk);
    border-color: var(--color-accent-dk);
}

/* ── Navigation ─────────────────────────────────────────────── */
#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-decoration: none;
}

.nav-brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

.nav-brand-sub {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links li a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.18s;
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li.current-menu-item > a {
    color: var(--color-accent);
}

#nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

#nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.22s;
    border-radius: 2px;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    padding: calc(var(--nav-height) + 80px) 0 80px;
    background: var(--color-bg);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.hero-name {
    margin-bottom: 12px;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Dekoratives Akzent-Element rechts */
.hero-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-self: center;
}

.hero-accent-bar {
    width: 4px;
    height: 120px;
    background: var(--color-accent);
    border-radius: 2px;
}

.hero-accent-bar--sm {
    height: 60px;
    opacity: 0.3;
}

.hero-accent-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    text-align: center;
    line-height: 1.5;
    border: 1.5px solid var(--color-accent);
    padding: 12px 16px;
    border-radius: var(--radius);
}

/* ── Über Martin ────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
}

.about-photo img {
    width: 200px;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--color-accent);
    display: block;
    box-shadow: var(--shadow-md);
}

.about-text h2 {
    margin: 16px 0 24px;
}

.about-facts {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}

.fact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fact strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.fact span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Brands Grid ────────────────────────────────────────────── */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Letzte zwei Karten zentriert (5-Karten-Grid) */
.brands-grid .brand-card:nth-child(4) { grid-column: 1; }
.brands-grid .brand-card:nth-child(5) { grid-column: 2; }

.brand-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 28px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.brand-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.brand-card:hover::after {
    transform: scaleX(1);
}

.brand-icon {
    font-size: 2rem;
    line-height: 1;
}

.brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.brand-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.brand-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: auto;
    transition: gap 0.2s;
}

/* ── Aktuell ────────────────────────────────────────────────── */
.highlight-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
}

.highlight-badge {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: var(--color-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 20px 14px;
    white-space: nowrap;
}

.highlight-content {
    padding: 36px 40px;
}

.highlight-content h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.highlight-content p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Blog Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.post-title {
    font-size: 1.05rem;
    margin: 0;
}

.post-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 16px 0 36px;
}

.newsletter-form-wrap {
    width: 100%;
}

.newsletter-form .newsletter-fields {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--color-accent);
}

.newsletter-privacy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.newsletter-privacy a {
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
}

/* ── Brevo Formular Styling ─────────────────────────────────── */
.newsletter-form-wrap form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Jede Zeile (p-Tag) als Flex-Spalte */
.newsletter-form-wrap p {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    text-align: left;
}

/* Feldbezeichnung (Text-Node im p-Tag) */
.newsletter-form-wrap p:not(:last-child) {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-main);
}

/* Alle Eingabefelder gleich breit und gleich gestylt */
.newsletter-form-wrap input[type="email"],
.newsletter-form-wrap input[type="text"] {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.newsletter-form-wrap input[type="email"]::placeholder,
.newsletter-form-wrap input[type="text"]::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form-wrap input[type="email"]:focus,
.newsletter-form-wrap input[type="text"]:focus {
    border-color: var(--color-accent);
}

/* Submit-Button */
.newsletter-form-wrap input[type="submit"],
.newsletter-form-wrap .sib-default-btn {
    width: 100%;
    background: var(--color-accent);
    border: none;
    border-radius: 100px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 6px;
}

.newsletter-form-wrap input[type="submit"]:hover {
    background: var(--color-accent-dk);
    transform: translateY(-2px);
}

/* Erfolgsmeldung */
.newsletter-form-wrap .sib-alert-message-success {
    color: #7ce38b;
    font-family: var(--font-main);
    text-align: center;
    padding: 12px;
}

.newsletter-form-wrap .sib-alert-message-error {
    color: #ff8080;
    font-family: var(--font-main);
    text-align: center;
}

/* ── Kontakt ────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin: 16px 0 20px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list a,
.contact-list address {
    font-size: 1rem;
    color: var(--color-text);
    transition: color 0.18s;
    line-height: 1.5;
}

.contact-list a:hover {
    color: var(--color-accent);
}

.contact-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.contact-map-placeholder {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border: 1px solid var(--color-border);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-dark);
    padding: 48px 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand strong {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.footer-brand span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.footer-brands a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.18s;
    font-weight: 500;
}

.footer-brands a:hover {
    color: var(--color-accent);
}

.footer-legal {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.18s;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.7);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* ── Statische Seiten (Impressum, Datenschutz) ──────────────── */
.page-content {
    padding: calc(var(--nav-height) + 60px) 0 80px;
}

.page-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.page-body {
    max-width: 720px;
    line-height: 1.8;
}

.page-body h2 { margin: 36px 0 16px; font-size: 1.4rem; }
.page-body h3 { margin: 28px 0 12px; font-size: 1.15rem; }
.page-body p  { margin-bottom: 16px; }
.page-body a  { color: var(--color-accent); text-decoration: underline; }

/* ── Cookie-Banner ──────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--color-dark);
    border-top: 3px solid var(--color-accent);
    padding: 20px 40px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 260px;
}

.cookie-banner-text strong {
    color: #fff;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.cookie-banner-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 100px;
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner { padding: 16px 20px; }
    .cookie-banner-inner { gap: 16px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions .btn { flex: 1; text-align: center; justify-content: center; }
}

/* ── Danke-Seite (Newsletter bestätigt) ─────────────────────── */
.danke-section {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 60px) 0 80px;
    background: var(--color-bg);
}

.danke-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.danke-icon {
    width: 72px;
    height: 72px;
    background: var(--color-accent);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.danke-inner h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.danke-lead {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 16px;
}

.danke-sub {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

/* ── Scroll-Reveal ──────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ── Responsive: Tablet ─────────────────────────────────────── */
@media (max-width: 960px) {
    :root { --section-py: 64px; }

    .container { padding: 0 28px; }

    /* Nav */
    .nav-links { display: none; }
    #nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        padding: 24px 28px;
        gap: 6px;
        border-bottom: 1px solid var(--color-border);
        backdrop-filter: blur(16px);
        z-index: 199;
    }
    .nav-links.open li a { font-size: 0.95rem; padding: 10px 0; display: block; }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-accent { display: none; }
    .hero-ctas { flex-wrap: wrap; }
    .hero-text { max-width: 100%; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .about-photo {
        display: flex;
        justify-content: center;
    }
    .about-facts { justify-content: center; }

    /* Brands */
    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }
    .brands-grid .brand-card:nth-child(4),
    .brands-grid .brand-card:nth-child(5) {
        grid-column: auto;
    }

    /* Posts */
    .posts-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-map  { display: none; }
}

/* ── Responsive: Mobile ─────────────────────────────────────── */
@media (max-width: 600px) {
    :root { --section-py: 48px; }

    .container { padding: 0 20px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero { padding-top: calc(var(--nav-height) + 48px); }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; }

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

    .highlight-card { grid-template-columns: 1fr; }
    .highlight-badge {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 10px 24px;
    }

    .newsletter-form .newsletter-fields { flex-direction: column; }
    .newsletter-form .newsletter-fields .btn { text-align: center; justify-content: center; }

    .about-facts { gap: 24px; flex-wrap: wrap; }

    .footer-inner { padding: 0 20px; }
    .footer-brands { gap: 12px; }
    .footer-legal { flex-wrap: wrap; gap: 12px; }
}
