*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #f0ece3;
    --bg-alt: #e8e3d8;
    --card-bg: #ffffff;
    --text: #1e1e1e;
    --text-muted: #6b6560;
    --accent: #c0392b;
    --accent-dark: #96281b;
    --steel: #2c3e50;
    --steel-mid: #3d5166;
    --blue: #2980b9;
    --border: #d5cfc4;
    --header-bg: #1c2833;
    --footer-bg: #141c24;
    --shadow: 0 2px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 6px 32px rgba(0,0,0,0.14);
    --radius: 8px;
    --radius-lg: 14px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link { position: absolute; top: -60px; left: 0; background: var(--accent); color: #fff; padding: 8px 16px; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }

.page-loader { position: fixed; inset: 0; background: var(--steel); z-index: 9998; display: flex; align-items: center; justify-content: center; transition: opacity .4s, visibility .4s; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-track { width: 180px; height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: visible; position: relative; }
.loader-car { position: absolute; top: -14px; left: 0; animation: driveAcross 1.4s ease-in-out infinite; }
.loader-car span { display: block; width: 36px; height: 18px; background: var(--accent); border-radius: 4px 8px 4px 4px; position: relative; }
.loader-car span::before, .loader-car span::after { content: ''; position: absolute; bottom: -5px; width: 10px; height: 10px; background: #fff; border-radius: 50%; }
.loader-car span::before { left: 3px; }
.loader-car span::after { right: 3px; }
@keyframes driveAcross { 0% { left: -40px; } 100% { left: 185px; } }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--header-bg); box-shadow: 0 2px 12px rgba(0,0,0,.3); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }

.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon-wrap { flex-shrink: 0; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-main { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; letter-spacing: -0.02em; line-height: 1.1; }
.logo-sub { font-family: 'Nunito', sans-serif; font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-link { font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.82); padding: 8px 14px; border-radius: var(--radius); transition: background .2s, color .2s; cursor: pointer; background: none; border: none; display: flex; align-items: center; gap: 5px; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--accent); }

.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--steel); border-radius: var(--radius); min-width: 240px; box-shadow: var(--shadow-lg); padding: 8px 0; list-style: none; z-index: 200; }
.dropdown-menu li a { display: block; padding: 10px 18px; font-size: 0.88rem; color: rgba(255,255,255,0.85); font-family: 'Nunito', sans-serif; font-weight: 500; transition: background .15s, color .15s; }
.dropdown-menu li a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }

.burger-btn { display: none; flex-direction: column; justify-content: space-between; width: 32px; height: 22px; background: none; border: none; cursor: pointer; padding: 2px; }
.burger-btn span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.main-content { min-height: 60vh; }

.hero { background: var(--steel); position: relative; overflow: hidden; padding: 72px 0 60px; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('https://upload.wikimedia.org/wikipedia/commons/f/f6/Car_Oil_Change_%2817218054110%29.jpg') center/cover no-repeat; opacity: 0.18; }
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-block; background: var(--accent); color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 18px; }
.hero h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; line-height: 1.15; margin-bottom: 18px; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 28px; line-height: 1.75; }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: 'Oswald', sans-serif; font-size: 1.8rem; color: var(--accent); line-height: 1; }
.hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 320px; object-fit: cover; }

.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.breadcrumb-list { list-style: none; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb-list li { font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb-list li a { color: var(--text-muted); }
.breadcrumb-list li a:hover { color: var(--accent); }
.breadcrumb-list li + li::before { content: '›'; margin-right: 6px; }

.section-label { font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.section-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--steel); margin-bottom: 8px; }
.section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }

.articles-section { padding: 64px 0; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.article-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card-image { position: relative; overflow: hidden; height: 200px; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-card-image img { transform: scale(1.04); }
.article-card-image .img-credit { position: absolute; bottom: 6px; right: 8px; font-size: 0.65rem; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 3px; }
.article-tag { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 3px 9px; border-radius: 4px; margin-bottom: 10px; }
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-card-body h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--steel); margin-bottom: 10px; line-height: 1.35; }
.article-card-body p { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.read-link { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; }
.read-link::after { content: '→'; }
.read-link:hover { color: var(--accent-dark); }

.info-strip { background: var(--steel); padding: 48px 0; }
.info-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.info-item { text-align: center; padding: 24px 16px; }
.info-item-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 12px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.info-item-icon svg { width: 24px; height: 24px; }
.info-item h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 8px; }
.info-item p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.featured-article { padding: 64px 0; background: var(--bg-alt); }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.featured-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.featured-image img { width: 100%; height: 360px; object-fit: cover; }
.featured-body { }
.featured-body h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--steel); margin-bottom: 16px; }
.featured-body p { color: var(--text-muted); margin-bottom: 14px; }
.featured-steps { list-style: none; counter-reset: step-counter; margin: 20px 0; }
.featured-steps li { counter-increment: step-counter; display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.featured-steps li::before { content: counter(step-counter); flex-shrink: 0; width: 28px; height: 28px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700; }
.btn-primary { display: inline-block; background: var(--accent); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 500; letter-spacing: 0.06em; padding: 12px 28px; border-radius: 6px; margin-top: 24px; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }

.article-page { max-width: 800px; margin: 0 auto; padding: 56px 24px; }
.article-page .article-header { margin-bottom: 36px; }
.article-page .article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.article-date { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: var(--text-muted); }
.article-read-time { font-size: 0.8rem; color: var(--text-muted); background: var(--bg-alt); padding: 3px 10px; border-radius: 20px; }
.article-page h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--steel); line-height: 1.2; margin-bottom: 16px; }
.article-lead { font-size: 1.1rem; color: var(--text-muted); border-left: 4px solid var(--accent); padding-left: 18px; margin-bottom: 28px; }
.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; }
.article-hero-img img { width: 100%; max-height: 420px; object-fit: cover; }
.article-hero-img figcaption { font-size: 0.78rem; color: var(--text-muted); padding: 8px 12px; background: var(--bg-alt); }
.article-page h2 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--steel); margin: 36px 0 14px; }
.article-page h3 { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.1rem; color: var(--steel-mid); margin: 24px 0 10px; }
.article-page p { margin-bottom: 16px; color: var(--text); font-size: 0.97rem; }
.article-page ul, .article-page ol { margin: 14px 0 20px 20px; }
.article-page li { margin-bottom: 7px; font-size: 0.97rem; }
.article-page strong { font-weight: 700; color: var(--steel); }

.info-box { background: #e8f4fd; border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 16px 20px; margin: 24px 0; }
.info-box p { margin: 0; font-size: 0.92rem; color: #1a4a6b; }
.warn-box { background: #fdf3e3; border-left: 4px solid #e67e22; border-radius: var(--radius); padding: 16px 20px; margin: 24px 0; }
.warn-box p { margin: 0; font-size: 0.92rem; color: #7d4000; }

.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
.spec-table th { background: var(--steel); color: #fff; padding: 10px 14px; text-align: left; font-family: 'Oswald', sans-serif; font-weight: 500; }
.spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.spec-table tr:nth-child(even) td { background: var(--bg-alt); }
.spec-table code { font-family: 'Space Mono', monospace; font-size: 0.82rem; background: rgba(0,0,0,0.06); padding: 2px 6px; border-radius: 3px; }

.article-nav { display: flex; gap: 16px; margin-top: 48px; padding-top: 28px; border-top: 2px solid var(--border); }
.article-nav a { flex: 1; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; font-size: 0.88rem; color: var(--steel); transition: border-color .2s, box-shadow .2s; }
.article-nav a:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(192,57,43,0.12); color: var(--accent); }
.article-nav a span { display: block; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 4px; font-family: 'Space Mono', monospace; }

.contact-page { max-width: 1000px; margin: 0 auto; padding: 56px 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-wrap h2 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--steel); margin-bottom: 8px; }
.contact-form-wrap p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--steel); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; background: var(--card-bg); border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: var(--text); transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { background: var(--accent); color: #fff; border: none; border-radius: 6px; padding: 13px 32px; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1rem; letter-spacing: 0.06em; cursor: pointer; transition: background .2s, transform .2s; }
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }
.contact-info-wrap h2 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--steel); margin-bottom: 20px; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--bg-alt); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text strong { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2px; font-weight: 600; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.97rem; color: var(--text); }

.about-page { max-width: 960px; margin: 0 auto; padding: 56px 24px; }
.about-page h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--steel); margin-bottom: 16px; }
.about-split { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start; margin-top: 32px; }
.about-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-page p { color: var(--text); margin-bottom: 16px; font-size: 0.97rem; }
.about-page h2 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--steel); margin: 28px 0 12px; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 16px; }
.team-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.team-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--steel); margin-bottom: 2px; }
.team-card .team-role { font-size: 0.78rem; color: var(--accent); font-family: 'Oswald', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.team-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.policy-page { max-width: 860px; margin: 0 auto; padding: 56px 24px; }
.policy-page h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem; color: var(--steel); margin-bottom: 8px; }
.policy-page .policy-date { font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 32px; }
.policy-page h2 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--steel); margin: 28px 0 10px; }
.policy-page p { color: var(--text); margin-bottom: 14px; font-size: 0.95rem; }
.policy-page ul { margin: 10px 0 16px 20px; }
.policy-page li { margin-bottom: 6px; font-size: 0.95rem; }

.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.7); }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; }
.footer-brand { }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-updated { font-family: 'Space Mono', monospace; font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 12px; }
.footer-nav h4 { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-contact h4 { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-contact address { font-style: normal; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 20px 0; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-disclaimer { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.6; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: var(--steel); color: rgba(255,255,255,0.9); padding: 18px 24px; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); transform: translateY(100%); transition: transform .4s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: 0.88rem; min-width: 240px; }
.cookie-content a { color: #82c4e8; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--accent); color: #fff; border: none; border-radius: 5px; padding: 9px 22px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: background .2s; }
.btn-cookie-accept:hover { background: var(--accent-dark); }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.3); border-radius: 5px; padding: 9px 22px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: border-color .2s, color .2s; }
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

.page-hero { background: var(--steel); padding: 48px 0 40px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .featured-inner { grid-template-columns: 1fr; }
    .featured-image img { height: 260px; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .articles-grid { grid-template-columns: 1fr; }
    .info-strip-inner { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .team-grid { grid-template-columns: 1fr; }
    .article-nav { flex-direction: column; }

    .burger-btn { display: flex; }
    .main-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--header-bg); max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .main-nav.open { max-height: 420px; }
    .nav-list { flex-direction: column; align-items: flex-start; padding: 16px 24px; gap: 0; }
    .nav-link { width: 100%; padding: 12px 0; }
    .nav-dropdown { width: 100%; }
    .dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,0.05); border-radius: 0; display: none; padding: 4px 0 4px 16px; }
    .nav-dropdown.open .dropdown-menu { display: block; }
}

@media (max-width: 480px) {
    .info-strip-inner { grid-template-columns: 1fr; }
    .hero-meta { gap: 16px; }
    .cookie-content { flex-direction: column; align-items: flex-start; }
}
