@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

:root {
    --black: #0e0f0c;
    --green: #9fe870;
    --green-dark: #163300;
    --green-mint: #e2f6d5;
    --green-pastel: #cdffad;
    --gray: #868685;
    --warm-dark: #454745;
    --surface: #e8ebe6;
    --white: #ffffff;
    --radius-pill: 9999px;
    --radius-card: 30px;
    --radius-card-sm: 16px;
    --radius-section: 40px;
    --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    font-size: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-feature-settings: "calt";
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    color: var(--black);
    background: var(--white);
    font-feature-settings: "calt";
}

a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

a:hover {
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(14,15,12,0.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -1px;
    font-feature-settings: "calt";
    flex-shrink: 0;
}

.logo:hover {
    color: var(--green-dark);
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav ul li a {
    display: block;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.site-nav ul li a:hover {
    background: rgba(211,242,192,0.4);
}

.site-nav ul li a.active {
    background: var(--green-mint);
    color: var(--green-dark);
}

.btn-primary {
    display: inline-block;
    padding: 10px 24px;
    background: var(--green);
    color: var(--green-dark);
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
    font-feature-settings: "calt";
    letter-spacing: -0.108px;
    line-height: 1.44;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: var(--green-dark);
    background: var(--green);
    text-decoration: none;
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(22,51,0,0.08);
    color: var(--black);
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
    font-feature-settings: "calt";
    letter-spacing: -0.108px;
    line-height: 1.44;
}

.btn-secondary:hover {
    transform: scale(1.05);
    color: var(--black);
    text-decoration: none;
}

.btn-secondary:active {
    transform: scale(0.95);
}

.hero {
    padding: 80px 0 60px;
    background: var(--white);
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 20px;
}

.hero-text .hero-lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--warm-dark);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-img {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
}

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

.section {
    padding: 64px 0;
}

.section-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 0.95;
    letter-spacing: -1.5px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 12px;
}

.section-lead {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--warm-dark);
    margin-bottom: 40px;
    max-width: 640px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    border-radius: var(--radius-card);
    border: 1px solid rgba(14,15,12,0.12);
    overflow: hidden;
    background: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(14,15,12,0.12) 0px 8px 24px;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 24px;
}

.card-meta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.39px;
    color: var(--black);
    margin-bottom: 10px;
    font-feature-settings: "calt";
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: var(--green-dark);
}

.card-excerpt {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-mint);
    color: var(--green-dark);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.info-block {
    background: var(--surface);
    border-radius: var(--radius-section);
    padding: 48px;
    margin: 48px 0;
}

.info-block h2 {
    font-weight: 900;
    font-size: 2rem;
    line-height: 0.95;
    letter-spacing: -1px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.info-block p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 700px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
    padding: 40px;
    max-width: 560px;
}

.contact-form h2 {
    font-weight: 900;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: -0.8px;
    color: var(--black);
    margin-bottom: 24px;
    font-feature-settings: "calt";
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--warm-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.20);
    border-radius: 10px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-feature-settings: "calt";
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-dark);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.article-header {
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.article-header h1 {
    font-weight: 900;
    font-size: 3rem;
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
    max-width: 800px;
}

.article-header .article-meta {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 16px;
}

.article-header .article-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.5;
    max-width: 700px;
}

.article-img-main {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-card);
    margin: 32px 0;
    display: block;
}

.article-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 40px 0 64px;
}

.article-content h2 {
    font-weight: 900;
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--black);
    font-feature-settings: "calt";
    margin: 40px 0 14px;
}

.article-content h3 {
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.25;
    color: var(--black);
    margin: 28px 0 10px;
}

.article-content p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--warm-dark);
    margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 18px 24px;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.65;
}

.article-content li {
    margin-bottom: 6px;
}

.article-content a {
    color: var(--green-dark);
    text-decoration: underline;
}

.article-content figure {
    margin: 32px 0;
}

.article-content figure img {
    width: 100%;
    border-radius: var(--radius-card-sm);
    display: block;
}

.article-content figcaption {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 400;
}

.highlight-box {
    background: var(--green-mint);
    border-radius: var(--radius-card-sm);
    padding: 24px 28px;
    margin: 28px 0;
    border-left: 4px solid var(--green);
}

.highlight-box p {
    color: var(--green-dark) !important;
    margin-bottom: 0 !important;
    font-weight: 600 !important;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray);
    padding: 16px 0;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: 8px;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--warm-dark);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--black);
}

.related-articles {
    border-top: 1px solid rgba(14,15,12,0.08);
    padding: 48px 0;
}

.related-articles h2 {
    font-weight: 900;
    font-size: 1.75rem;
    letter-spacing: -0.8px;
    color: var(--black);
    margin-bottom: 24px;
    font-feature-settings: "calt";
}

.page-content {
    padding: 56px 0 80px;
    max-width: 800px;
}

.page-content h1 {
    font-weight: 900;
    font-size: 3rem;
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 24px;
}

.page-content h2 {
    font-weight: 900;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: -0.8px;
    color: var(--black);
    font-feature-settings: "calt";
    margin: 36px 0 12px;
}

.page-content h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--black);
    margin: 24px 0 8px;
}

.page-content p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--warm-dark);
    margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
    margin: 0 0 16px 24px;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.65;
}

.page-content li {
    margin-bottom: 5px;
}

.page-content .updated {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 32px;
    font-weight: 400;
}

.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 56px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.footer-heading {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.site-footer p,
.site-footer address {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    font-style: normal;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
}

.site-footer a {
    color: var(--green);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 6px;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 16px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-card-sm);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 680px;
    width: calc(100% - 48px);
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
    color: rgba(255,255,255,0.85);
}

.cookie-banner a {
    color: var(--green);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner.hidden {
    display: none;
}

.disclaimer {
    background: rgba(14,15,12,0.04);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.5;
    margin: 32px 0;
}

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-img {
        order: -1;
    }
    .hero-text h1 {
        font-size: 2.75rem;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }
    .section-title {
        font-size: 1.875rem;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .site-nav ul {
        display: none;
    }
    .article-header h1 {
        font-size: 2.25rem;
    }
    .info-block {
        padding: 28px 20px;
    }
    .contact-form {
        padding: 24px 20px;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
