﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&family=Merriweather:wght@300;400;700&family=Nunito:wght@300;400;600&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #2d5a27;
    --green-mid: #4a8c3f;
    --green-light: #7dbf6e;
    --cream: #f5f0e8;
    --cream-dark: #ede5d0;
    --brown: #6b4c2a;
    --brown-light: #c4956a;
    --text-dark: #1e2d1a;
    --text-mid: #3d4e38;
    --text-light: #6b7c66;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(45,90,39,0.12);
    --shadow-lg: 0 8px 40px rgba(45,90,39,0.18);
    --radius: 12px;
    --radius-sm: 6px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--green-mid);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--green-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-leaf {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

.loader-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e4018 100%);
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-light);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.logo-sub {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--green-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-desktop a {
    color: rgba(255,255,255,0.85);
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.25s, color 0.25s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    flex-direction: column;
    background: #1a3515;
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    color: rgba(255,255,255,0.85);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: var(--green-light);
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,90,39,0.75) 0%, rgba(30,64,24,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 24px;
    margin: 0 auto 0 0;
}

.hero-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 520px;
    margin-bottom: 32px;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brown-light);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 30px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
}

.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--cream-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-label {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 14px;
}

.section-header p {
    max-width: 580px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.02rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green-mid);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.card-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    flex: 1;
    margin-bottom: 18px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--green-mid);
}

.card-link::after {
    content: 'в†’';
    transition: transform 0.2s;
}

.card:hover .card-link::after {
    transform: translateX(4px);
}

.featured-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.featured-split.reverse {
    direction: rtl;
}

.featured-split.reverse > * {
    direction: ltr;
}

.featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-text .section-label {
    display: block;
    text-align: left;
}

.featured-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-text p {
    color: var(--text-mid);
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.feature-list {
    list-style: none;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-mid);
}

.feature-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--green-light);
    transition: transform 0.3s;
}

.tip-card:hover {
    transform: translateY(-4px);
}

.tip-number {
    width: 44px;
    height: 44px;
    background: var(--green-mid);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.tip-card h4 {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.tip-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.quote-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, #3a7030 100%);
    padding: 64px 24px;
    text-align: center;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    color: var(--white);
    max-width: 760px;
    margin: 0 auto 16px;
    line-height: 1.5;
    font-style: italic;
}

.quote-source {
    font-family: 'Nunito', sans-serif;
    color: var(--green-light);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    padding: 56px 0;
}

.article-main h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.25;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-dark);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    color: var(--text-light);
}

.article-hero-img {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 36px;
    max-height: 440px;
    box-shadow: var(--shadow);
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 36px 0 14px;
    padding-left: 16px;
    border-left: 4px solid var(--green-mid);
}

.article-body h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 28px 0 10px;
}

.article-body p {
    color: var(--text-mid);
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 20px 24px;
    color: var(--text-mid);
}

.article-body li {
    margin-bottom: 8px;
    font-size: 0.98rem;
    line-height: 1.7;
}

.article-body a {
    color: var(--green-mid);
    border-bottom: 1px dotted var(--green-light);
}

.article-body blockquote {
    background: var(--cream-dark);
    border-left: 4px solid var(--green-light);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--text-mid);
}

.article-body .highlight-box {
    background: linear-gradient(135deg, rgba(122,191,110,0.12), rgba(74,140,63,0.08));
    border: 1px solid rgba(122,191,110,0.3);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 28px 0;
}

.article-body .highlight-box p {
    margin-bottom: 0;
}

.sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream-dark);
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-mid);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.sidebar-links a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-links a:hover {
    background: var(--cream-dark);
    color: var(--green-dark);
}

.sidebar-fact {
    background: linear-gradient(135deg, var(--green-dark), #3a7030);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    color: var(--white);
}

.sidebar-fact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--green-light);
}

.sidebar-fact p {
    font-size: 0.88rem;
    opacity: 0.9;
    line-height: 1.6;
}

.breadcrumb {
    background: var(--cream-dark);
    padding: 12px 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--green-mid);
}

.breadcrumb-inner span {
    color: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.contact-info-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--cream-dark);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-detail h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-detail p,
.contact-detail a {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.contact-map {
    background: var(--cream-dark);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-text {
    text-align: center;
    color: var(--text-light);
    padding: 40px;
}

.contact-map-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.policy-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 0;
}

.policy-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.policy-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 32px 0 12px;
}

.policy-content p,
.policy-content li {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 14px;
}

.policy-content ul {
    padding-left: 22px;
}

.policy-update {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.75);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--green-light);
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 45, 26, 0.97);
    color: var(--white);
    z-index: 8000;
    padding: 20px 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    transition: transform 0.4s ease;
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--green-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-reject {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 9px 22px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.cookie-accept {
    background: var(--green-light);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--green-mid);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.about-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e4018 100%);
    padding: 72px 24px;
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.about-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.88;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.mt-contact {
    margin-top: 24px;
}

.btn-map {
    display: inline-block;
    margin-top: 12px;
}

.page-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, #2a5224 100%);
    padding: 52px 24px;
    color: var(--white);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.85;
    max-width: 560px;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .burger-btn { display: flex; }
    .featured-split { grid-template-columns: 1fr; gap: 28px; }
    .featured-split.reverse { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
    .cards-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { min-height: 420px; }
    .hero-content { padding: 40px 20px; }
    .cookie-inner { flex-direction: column; }
}
