@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Source+Sans+3:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,400&family=Inter:wght@400;500;600&display=swap');

:root {
    --dark: #0f2318;
    --dark2: #1a3a2a;
    --mid: #2d6a4f;
    --accent: #52796f;
    --light-green: #84a98c;
    --cream: #f5f0e8;
    --warm: #ede8dc;
    --text: #1c1c1c;
    --muted: #5a6a60;
    --white: #ffffff;
    --border: #d4cfc5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    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: 48px;
    height: 48px;
    border: 3px solid rgba(132,169,140,0.3);
    border-top-color: var(--light-green);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loader-inner span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--light-green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(132,169,140,0.2);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--cream);
    letter-spacing: -0.3px;
}

.logo-text span {
    color: var(--light-green);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(245,240,232,0.75);
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: var(--light-green);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    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(--dark2);
    border-top: 1px solid rgba(132,169,140,0.15);
    padding: 20px 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(245,240,232,0.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--light-green); }
.mobile-nav a:last-child { border-bottom: none; }

.hero {
    background: var(--dark2);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(82,121,111,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-green);
    background: rgba(132,169,140,0.12);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(132,169,140,0.2);
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--light-green);
}

.hero-desc {
    font-size: 17px;
    color: rgba(245,240,232,0.7);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(245,240,232,0.45);
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9);
}

.hero-image-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.5);
    padding: 6px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.section-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--dark2);
}

.view-all {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--mid);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.view-all:hover { gap: 10px; }

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,35,24,0.12);
}

.card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.card:hover .card-img img { transform: scale(1.04); }

.card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-cat {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 10px;
}

.card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-sm h3 { font-size: 16px; }

.card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.card-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
}

.read-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
    letter-spacing: 0.3px;
}

.card-featured { grid-row: span 2; }
.card-featured .card-img { aspect-ratio: 3/2; }
.card-featured .card-body { padding: 28px; }
.card-featured h3 { font-size: 26px; }
.card-featured p { font-size: 15px; }

.split-section {
    background: var(--dark);
    padding: 80px 24px;
}

.split-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-green);
    margin-bottom: 16px;
}

.split-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 20px;
}

.split-content p {
    font-size: 15px;
    color: rgba(245,240,232,0.65);
    margin-bottom: 16px;
}

.split-facts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border-left: 3px solid var(--mid);
}

.fact-num {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--light-green);
    line-height: 1;
    min-width: 60px;
}

.fact-text { font-size: 14px; color: rgba(245,240,232,0.7); }
.fact-text strong { color: var(--cream); display: block; margin-bottom: 2px; }

.split-visual img {
    width: 100%;
    border-radius: 10px;
    filter: saturate(0.7) brightness(0.9);
}

.certs-section {
    padding: 64px 24px;
    background: var(--warm);
}

.certs-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.certs-header {
    text-align: center;
    margin-bottom: 48px;
}

.certs-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 34px;
    color: var(--dark2);
    margin-bottom: 12px;
}

.certs-header p {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cert-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mid), var(--light-green));
}

.cert-badge {
    width: 52px;
    height: 52px;
    background: rgba(45,106,79,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
}

.cert-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.cert-tag {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--mid);
    background: rgba(45,106,79,0.08);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(45,106,79,0.2);
}

.article-hero {
    background: var(--dark2);
    padding: 60px 24px 40px;
}

.article-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.article-hero .breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(245,240,232,0.4);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-hero .breadcrumb a { color: rgba(245,240,232,0.55); transition: color 0.2s; }
.article-hero .breadcrumb a:hover { color: var(--light-green); }
.article-hero .breadcrumb span { color: rgba(245,240,232,0.25); }

.article-cat {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-green);
    background: rgba(132,169,140,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.article-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 20px;
}

.article-hero .meta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.article-hero .meta-row span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(245,240,232,0.45);
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 24px;
}

.article-featured-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 40px;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.article-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--dark2);
    margin: 40px 0 16px;
    line-height: 1.2;
}

.article-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--dark2);
    margin: 28px 0 12px;
}

.article-body p {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.75;
}

.article-body ul, .article-body ol {
    margin: 16px 0 20px 24px;
}

.article-body li {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.65;
}

.article-body a {
    color: var(--mid);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover { color: var(--dark2); }

.callout {
    background: rgba(45,106,79,0.07);
    border-left: 4px solid var(--mid);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.callout p {
    font-size: 16px;
    color: var(--dark2);
    margin: 0;
    font-style: italic;
}

.article-body .img-block {
    margin: 32px 0;
}

.article-body .img-block img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.img-caption {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
    text-align: center;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 14px;
}

.data-table th {
    background: var(--dark2);
    color: var(--cream);
    padding: 12px 16px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.data-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.data-table tr:nth-child(even) td { background: var(--warm); }
.data-table tr:hover td { background: rgba(45,106,79,0.05); }

.related-section {
    background: var(--warm);
    padding: 56px 24px;
    border-top: 1px solid var(--border);
}

.related-inner {
    max-width: 900px;
    margin: 0 auto;
}

.related-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--dark2);
    margin-bottom: 28px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    gap: 16px;
    padding: 16px;
    transition: transform 0.25s;
}

.related-card:hover { transform: translateY(-2px); }

.related-card img {
    width: 90px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-card-body h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.related-card-body span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
}

.page-hero {
    background: var(--dark2);
    padding: 56px 24px 40px;
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--cream);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    color: rgba(245,240,232,0.6);
    max-width: 600px;
}

.page-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

.about-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--dark2);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-text a {
    color: var(--mid);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-box {
    background: var(--dark2);
    border-radius: 12px;
    padding: 32px;
    color: var(--cream);
}

.about-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 16px;
}

.about-box ul {
    list-style: none;
    padding: 0;
}

.about-box li {
    font-size: 14px;
    color: rgba(245,240,232,0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-box li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--light-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-box li:last-child { border-bottom: none; }

.experts-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.expert-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid var(--border);
    text-align: center;
}

.expert-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--dark2);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--light-green);
}

.expert-card h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}

.expert-card span {
    font-size: 13px;
    color: var(--muted);
    display: block;
    margin-bottom: 12px;
}

.expert-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
}

.contact-form {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    color: var(--dark2);
    margin-bottom: 8px;
}

.contact-form > p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark2);
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mid);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--mid);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.btn-submit:hover { background: var(--dark2); }

.form-notice {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
}

.contact-info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--dark2);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(45,106,79,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid);
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.info-value a { color: var(--mid); text-decoration: underline; text-underline-offset: 3px; }

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 24px;
}

.legal-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    color: var(--dark2);
    margin: 36px 0 14px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.75;
}

.legal-content ul {
    margin: 12px 0 18px 22px;
}

.legal-content li {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.65;
}

.legal-content a { color: var(--mid); text-decoration: underline; text-underline-offset: 3px; }

footer {
    background: var(--dark);
    padding: 56px 24px 28px;
    border-top: 1px solid rgba(132,169,140,0.15);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(245,240,232,0.5);
    margin-top: 12px;
    line-height: 1.65;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(245,240,232,0.65);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--light-green); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(245,240,232,0.3);
}

.footer-bottom p a { color: rgba(245,240,232,0.5); transition: color 0.2s; }
.footer-bottom p a:hover { color: var(--light-green); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark2);
    border-top: 1px solid rgba(132,169,140,0.25);
    padding: 18px 24px;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hide { transform: translateY(100%); }

.cookie-text {
    font-size: 14px;
    color: rgba(245,240,232,0.75);
    flex: 1;
    min-width: 200px;
}

.cookie-text a { color: var(--light-green); text-decoration: underline; text-underline-offset: 3px; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie {
    padding: 9px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-accept { background: var(--mid); color: var(--white); }
.btn-accept:hover { background: var(--light-green); }
.btn-reject { background: rgba(255,255,255,0.08); color: rgba(245,240,232,0.7); }
.btn-reject:hover { background: rgba(255,255,255,0.14); }

.success-msg {
    display: none;
    background: rgba(45,106,79,0.12);
    border: 1px solid rgba(45,106,79,0.3);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    color: var(--mid);
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .card-featured { grid-column: span 2; }
    .hero-inner, .split-inner, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .certs-grid { grid-template-columns: 1fr 1fr; }
    .experts-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { display: none; }
    .burger-btn { display: flex; }
    .articles-grid { grid-template-columns: 1fr; }
    .card-featured { grid-column: span 1; }
    .certs-grid { grid-template-columns: 1fr; }
    .experts-row { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; gap: 12px; }
    .split-inner { gap: 32px; }
    .split-visual { display: none; }
}
