@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&family=Merriweather:ital,wght@0,400;1,300&family=Oswald:wght@400;500&display=swap');

:root {
    --green-dark: #1a3a2a;
    --green-mid: #2d6a4f;
    --green-light: #52b788;
    --green-pale: #b7e4c7;
    --cream: #f8f4ed;
    --cream-dark: #ede8df;
    --brown: #6b4c2a;
    --brown-light: #c8a97e;
    --text-dark: #1c1c1c;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(26,58,42,0.10);
    --shadow-hover: 0 8px 36px rgba(26,58,42,0.18);
    --radius: 12px;
    --radius-sm: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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.2s; }
a:hover { color: var(--green-light); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--green-dark);
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wrap {
    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);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: var(--green-pale);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
    color: var(--green-pale);
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.main-nav a:hover, .main-nav a.active {
    background: var(--green-mid);
    color: var(--white);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--green-pale);
    border-radius: 2px;
    transition: all 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); }

.mobile-nav {
    display: none;
    background: var(--green-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 24px 20px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
    display: block;
    color: var(--green-pale);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s, visibility 0.4s;
}

#page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-leaf {
    width: 48px;
    height: 48px;
    border: 3px solid var(--green-pale);
    border-top-color: var(--green-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
    padding: 80px 24px 64px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(82,183,136,0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-pale);
    background: rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.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: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--green-pale);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    background: var(--white);
    color: var(--green-dark);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero-btn:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px 4px 20px 4px;
    box-shadow: var(--shadow-hover);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--brown);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 180px;
    line-height: 1.4;
}

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--cream-dark); }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== CARDS GRID ===== */
.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.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 8px;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-mid);
    border-bottom: 1px solid var(--green-light);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.card-link:hover { color: var(--green-dark); }

/* ===== FEATURED STRIP ===== */
.featured-strip {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: start;
}

.featured-main {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.featured-main-body {
    padding: 28px;
}

.featured-main-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.featured-main-body p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.featured-side { display: flex; flex-direction: column; gap: 20px; }

.side-card {
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    gap: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.side-card:hover { transform: translateX(4px); }

.side-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.side-card-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.side-card-body p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ===== TIPS SECTION ===== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tip-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--green-light);
    transition: transform 0.2s;
}

.tip-box:hover { transform: translateY(-4px); }

.tip-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}

.tip-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.tip-box p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ARTICLE PAGE ===== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    padding: 56px 0 72px;
}

.article-main {}

.article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 36px;
    box-shadow: var(--shadow);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-cat {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green-mid);
    padding: 4px 12px;
    border-radius: 20px;
}

.article-date {
    font-size: 0.82rem;
    color: var(--text-light);
}

.article-main h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 24px;
}

.article-lead {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 3px solid var(--green-light);
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 36px 0 14px;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-mid);
    margin: 24px 0 10px;
}

.article-body p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 18px;
}

.article-body ul, .article-body ol {
    margin: 0 0 18px 22px;
}

.article-body li {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 6px;
}

.article-body strong { color: var(--green-dark); }

.article-body a {
    color: var(--green-mid);
    border-bottom: 1px solid var(--green-pale);
}

.article-body a:hover { color: var(--green-dark); }

.info-box {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 28px 0;
}

.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--green-pale);
}

.info-box p, .info-box li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.65;
}

.info-box ul { margin-left: 18px; }

.article-img-mid {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 28px 0;
    box-shadow: var(--shadow);
}

/* ===== SIDEBAR ===== */
.sidebar {}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.sidebar-widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green-pale);
}

.sidebar-list { list-style: none; }

.sidebar-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.sidebar-list li:last-child { border-bottom: none; }

.sidebar-list a {
    font-size: 0.88rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.sidebar-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-list a:hover { color: var(--green-mid); }

.sidebar-plant-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.sidebar-plant-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.sidebar-plant-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: var(--cream-dark);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--green-mid); }
.breadcrumb span { color: var(--text-light); }

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 72px 0;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px 20px 4px 20px;
    box-shadow: var(--shadow-hover);
}

.about-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--cream-dark);
}

.stat-item { text-align: center; }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-mid);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 72px 0;
    align-items: start;
}

.contact-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--green-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; fill: var(--white); }

.contact-item-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 0.92rem;
    color: var(--text-mid);
    margin: 0;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 14px;
}

.contact-card a {
    color: var(--green-mid);
    font-weight: 700;
}

/* ===== POLICY PAGE ===== */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 0 72px;
}

.policy-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.policy-content .updated {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 36px;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 32px 0 12px;
}

.policy-content p, .policy-content li {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-content ul { margin-left: 22px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--green-dark);
    color: var(--green-pale);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand .logo-text { color: var(--white); margin-bottom: 14px; display: block; }
.footer-brand .logo-text span { color: var(--green-pale); }

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(183,228,199,0.7);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-col a {
    font-size: 0.85rem;
    color: rgba(183,228,199,0.7);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(183,228,199,0.5);
}

.footer-bottom a {
    font-size: 0.8rem;
    color: rgba(183,228,199,0.6);
}

.footer-bottom a:hover { color: var(--white); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--green-dark);
    border-top: 3px solid var(--green-light);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible { transform: translateY(0); }
#cookie-banner.hidden { display: none; }

.cookie-text {
    font-size: 0.88rem;
    color: var(--green-pale);
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}

.cookie-text a { color: var(--green-light); }

.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }

.btn-cookie {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-cookie:hover { transform: translateY(-1px); }

.btn-accept { background: var(--green-light); color: var(--green-dark); font-weight: 700; }
.btn-accept:hover { background: var(--green-pale); }
.btn-reject { background: transparent; color: var(--green-pale); border: 1px solid rgba(183,228,199,0.4); }
.btn-reject:hover { background: rgba(255,255,255,0.06); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 56px 24px 48px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1rem;
    color: var(--green-pale);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@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; }
    .featured-strip { grid-template-columns: 1fr; }
    .featured-main img { height: 260px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
    .cards-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .tips-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
