:root {
    --bg: #F0EAE0;
    --bg-alt: #E8E0D4;
    --bg-dark: #1B2E23;
    --bg-dark2: #243D2E;
    --text: #252525;
    --text-muted: #6B6260;
    --accent: #3B6E50;
    --accent-light: #EEF4F0;
    --gold: #C8903E;
    --white: #FFFFFF;
    --card: #FDFAF6;
    --border: #DDD5C8;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-accent: 'DM Serif Display', serif;
    --r: 10px;
    --sh: 0 2px 24px rgba(27,46,35,.08);
    --sh2: 0 8px 48px rgba(27,46,35,.16);
    --t: .3s cubic-bezier(.4,0,.2,1);
    --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 8888;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 2px solid var(--gold);
    transform: translateY(100%);
    transition: transform .4s ease;
}

#cookie-banner.visible { transform: translateY(0); }
#cookie-banner.hidden { display: none; }

.cookie-text { font-size: .875rem; line-height: 1.5; max-width: 640px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }

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

.btn-accept, .btn-reject {
    padding: 9px 22px;
    border-radius: 6px;
    font-size: .875rem;
    font-family: var(--font-display);
    font-weight: 600;
    transition: var(--t);
    white-space: nowrap;
}

.btn-accept {
    background: var(--gold);
    color: var(--white);
}

.btn-accept:hover { background: #b07c30; }

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.3);
}

.btn-reject:hover { border-color: var(--white); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

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

.site-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.logo-name {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: .5px;
}

.logo-tagline {
    font-size: .65rem;
    color: rgba(255,255,255,.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.site-nav { display: flex; align-items: center; gap: 8px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: rgba(255,255,255,.75);
    font-size: .875rem;
    font-family: var(--font-display);
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: var(--t);
    letter-spacing: .2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    border-radius: 6px;
    transition: var(--t);
}

.burger:hover { background: rgba(255,255,255,.08); }

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--t);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    background: var(--bg-dark2);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 16px 24px 20px;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
    display: block;
    color: rgba(255,255,255,.8);
    font-family: var(--font-display);
    font-size: .9375rem;
    font-weight: 500;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--t);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); padding-left: 6px; }

.hero {
    background: var(--bg-dark);
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 56px 72px 40px;
    max-width: 640px;
    margin-left: auto;
}

.hero-tag {
    font-size: .72rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.7);
    max-width: 440px;
    margin-bottom: 36px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9375rem;
    padding: 13px 28px;
    border-radius: 8px;
    transition: var(--t);
    letter-spacing: .2px;
    width: fit-content;
}

.btn-primary:hover { background: #b07c30; transform: translateY(-1px); }

.btn-primary svg { flex-shrink: 0; }

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 30%);
}

.section {
    padding: 72px 24px;
}

.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
    font-size: .72rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
    max-width: 560px;
    line-height: 1.25;
}

.articles-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.article-card {
    background: var(--card);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: var(--t);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: var(--sh2);
    transform: translateY(-3px);
}

.article-card--featured {
    grid-row: 1 / 3;
}

.card-image {
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.article-card:hover .card-image img { transform: scale(1.04); }

.article-card--featured .card-image { height: 280px; }
.article-card:not(.article-card--featured) .card-image { height: 180px; }

.card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-tag {
    font-size: .72rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 4px;
}

.card-date {
    font-size: .8125rem;
    color: var(--text-muted);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 12px;
    transition: color var(--t);
}

.article-card--featured .card-title { font-size: 1.5rem; }

.article-card:hover .card-title { color: var(--accent); }

.card-excerpt {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .875rem;
    color: var(--accent);
    transition: gap var(--t);
}

.card-link:hover { gap: 10px; }

.about-strip {
    background: var(--bg-dark);
    padding: 72px 24px;
}

.about-strip-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-strip-label {
    font-size: .72rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.about-strip-title {
    font-family: var(--font-accent);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-strip-text {
    color: rgba(255,255,255,.7);
    font-size: .9375rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-strip-image {
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-gold {
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9375rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--t);
    margin-top: 8px;
}

.link-gold:hover { gap: 10px; }

.contact-section {
    padding: 72px 24px;
    background: var(--bg-alt);
}

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

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-sub {
    color: var(--text-muted);
    font-size: .9375rem;
    margin-bottom: 40px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--r);
    padding: 36px;
    box-shadow: var(--sh);
    text-align: left;
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .875rem;
    color: var(--text);
    margin-bottom: 7px;
}

.form-input {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--text);
    background: #FAFAF8;
    transition: border-color var(--t), box-shadow var(--t);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59,110,80,.12);
}

.form-submit {
    width: 100%;
    padding: 13px 24px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: background var(--t), transform var(--t);
    margin-top: 8px;
}

.form-submit:hover { background: #2d5a3d; transform: translateY(-1px); }

.form-note {
    font-size: .8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,.65);
    padding: 56px 24px 28px;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 28px;
}

.footer-brand .logo-name { font-size: 1.2rem; }
.footer-brand .logo-tagline { margin-top: 4px; }

.footer-desc {
    font-size: .875rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    transition: color var(--t);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .875rem;
    margin-bottom: 12px;
}

.footer-contact a { color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy { font-size: .8125rem; }

.footer-legal {
    display: flex;
    gap: 20px;
    font-size: .8125rem;
}

.footer-legal a { color: rgba(255,255,255,.45); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

.disclaimer-bar {
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 12px 24px;
    text-align: center;
    font-size: .75rem;
    color: rgba(255,255,255,.3);
    max-width: var(--max);
    margin: 16px auto 0;
}

.article-hero {
    position: relative;
    height: 440px;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 40px 44px;
    max-width: var(--max);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .8125rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }

.article-hero-tag {
    font-size: .72rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.article-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    color: var(--white);
    line-height: 1.2;
    max-width: 760px;
}

.article-layout {
    padding: 56px 24px 72px;
}

.article-layout-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 36px;
}

.meta-item {
    font-size: .875rem;
    color: var(--text-muted);
    font-family: var(--font-display);
}

.meta-item strong { color: var(--text); font-weight: 600; }

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-light);
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 12px;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
}

.article-body p:first-child {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #3A3A3A;
}

.article-body ul, .article-body ol {
    margin: 0 0 20px 20px;
    list-style: disc;
}

.article-body ol { list-style: decimal; }

.article-body li {
    margin-bottom: 9px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
}

.article-body a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(59,110,80,.4);
    transition: text-decoration-color var(--t);
}

.article-body a:hover { text-decoration-color: var(--accent); }

.pullquote {
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 32px 0;
    background: var(--accent-light);
    border-radius: 0 8px 8px 0;
}

.pullquote p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--bg-dark);
    margin: 0;
}

.article-image-block {
    margin: 32px 0;
    border-radius: var(--r);
    overflow: hidden;
}

.article-image-block img {
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

.image-caption {
    font-size: .8125rem;
    color: var(--text-muted);
    padding: 10px 0 0;
    font-style: italic;
}

.article-updated {
    font-size: .875rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 40px;
}

.sidebar { position: sticky; top: 88px; }

.sidebar-card {
    background: var(--card);
    border-radius: var(--r);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--sh);
}

.sidebar-heading {
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.related-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.related-item:last-child { border-bottom: none; padding-bottom: 0; }

.related-thumb {
    width: 64px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-thumb img { width: 100%; height: 100%; object-fit: cover; }

.related-title {
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    transition: color var(--t);
}

.related-item:hover .related-title { color: var(--accent); }

.related-date { font-size: .75rem; color: var(--text-muted); margin-top: 4px; }

.toc-list { padding-left: 0; }
.toc-list li { padding: 7px 0; border-bottom: 1px solid var(--border); list-style: none; }
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
    font-size: .875rem;
    color: var(--text-muted);
    transition: color var(--t);
    display: block;
}
.toc-list a:hover { color: var(--accent); }

.inner-page-hero {
    background: var(--bg-dark);
    padding: 64px 24px;
    text-align: center;
}

.inner-page-title {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 14px;
}

.inner-page-sub {
    color: rgba(255,255,255,.6);
    font-size: 1.0625rem;
    max-width: 540px;
    margin: 0 auto;
}

.text-page {
    padding: 56px 24px 80px;
}

.text-page-inner {
    max-width: 800px;
    margin: 0 auto;
}

.text-page h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 36px 0 12px;
}

.text-page h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 24px 0 10px;
}

.text-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.text-page ul {
    margin: 0 0 16px 20px;
    list-style: disc;
}

.text-page li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.value-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 28px 24px;
    box-shadow: var(--sh);
    border-top: 3px solid var(--accent);
}

.value-num {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-text {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 28px;
    box-shadow: var(--sh);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
    overflow: hidden;
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: .8125rem;
    color: var(--accent);
    font-weight: 600;
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.team-bio {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .article-layout-inner { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}

@media (max-width: 860px) {
    .articles-grid { grid-template-columns: 1fr; }
    .article-card--featured { grid-row: auto; }
    .hero { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero-content { max-width: none; margin: 0; padding: 56px 28px; }
    .about-strip-inner { grid-template-columns: 1fr; gap: 32px; }
    .about-strip-image { display: none; }
    .about-values { grid-template-columns: 1fr; }
    .about-team-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .burger { display: flex; }
}

@media (max-width: 600px) {
    .section { padding: 48px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-form { padding: 24px 20px; }
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .btn-accept, .btn-reject { flex: 1; text-align: center; justify-content: center; }
    .article-hero { height: 300px; }
    .article-hero-overlay { padding: 24px 20px 28px; }
}
