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

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

:root {
    --black:       #0e0f0c;
    --green:       #9fe870;
    --green-dark:  #163300;
    --green-light: #e2f6d5;
    --green-mint:  #cdffad;
    --gray:        #868685;
    --warm-dark:   #454745;
    --surface:     #e8ebe6;
    --white:       #ffffff;
    --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    font-feature-settings: "calt" 1;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
address { font-style: normal; }

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

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a {
    padding: 8px 14px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    transition: background 0.15s;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    background: rgba(211,242,192,0.4);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

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

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

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -1px;
    color: var(--black);
    font-feature-settings: "calt" 1;
    margin-bottom: 28px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--warm-dark);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-img {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    aspect-ratio: 4/3;
}

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

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s;
}

.tag:hover { transform: scale(1.05); text-decoration: none; }

.section { padding: 72px 0; }
.section-alt { background: var(--surface); }

.section-header { margin-bottom: 48px; }

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 64px);
    font-weight: 900;
    line-height: 0.85;
    color: var(--black);
    font-feature-settings: "calt" 1;
}

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

.article-card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    transition: transform 0.18s;
    display: flex;
    flex-direction: column;
}

.article-card:hover { transform: scale(1.02); }

.article-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

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

.card-cat {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.article-card-body h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.396px;
    color: var(--black);
    margin-bottom: 12px;
    font-feature-settings: "calt" 1;
}

.article-card-body p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--warm-dark);
    flex: 1;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
}

.card-link:hover { text-decoration: underline; }

.card-link::after { content: '→'; }

.info-strip {
    background: var(--black);
    padding: 64px 0;
}

.info-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.info-item h3 {
    font-size: 40px;
    font-weight: 900;
    line-height: 0.85;
    color: var(--green);
    font-feature-settings: "calt" 1;
    margin-bottom: 12px;
}

.info-item p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.contact-section { padding: 72px 0; background: var(--white); }

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

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

.contact-form h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 0.9;
    font-feature-settings: "calt" 1;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    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.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.15s;
    outline: none;
}

.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 { min-height: 120px; resize: vertical; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--green);
    color: var(--green-dark);
    border: none;
    border-radius: 9999px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s;
    text-decoration: none;
    font-feature-settings: "calt" 1;
}

.btn-primary:hover { transform: scale(1.05); text-decoration: none; }
.btn-primary:active { transform: scale(0.95); }

.contact-info h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 0.85;
    font-feature-settings: "calt" 1;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--warm-dark);
    margin-bottom: 12px;
}

.contact-info a { color: var(--green-dark); font-weight: 600; }

.article-page { padding: 64px 0 80px; }

.article-header { margin-bottom: 48px; }

.article-header .section-label { margin-bottom: 16px; }

.article-header h1 {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -1px;
    font-feature-settings: "calt" 1;
    margin-bottom: 24px;
}

.article-header .article-meta {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 32px;
}

.article-header .article-meta strong { color: var(--warm-dark); font-weight: 600; }

.article-hero-img {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    margin-bottom: 48px;
    aspect-ratio: 21/9;
}

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

.article-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    align-items: start;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 0.9;
    font-feature-settings: "calt" 1;
    margin: 40px 0 16px;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 28px 0 12px;
}

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

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 8px;
}

.article-content a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.article-content a:hover { text-decoration: none; }

.article-content .pull-quote {
    border-left: 4px solid var(--green);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--green-light);
    border-radius: 0 16px 16px 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

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

.article-content figure img {
    border-radius: 16px;
    box-shadow: var(--shadow-ring);
}

.article-content figcaption {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 10px;
    line-height: 1.5;
}

.article-sidebar {
    position: sticky;
    top: 80px;
}

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

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 900;
    font-feature-settings: "calt" 1;
    margin-bottom: 14px;
    color: var(--black);
}

.sidebar-card ul { padding: 0; }

.sidebar-card li {
    border-bottom: 1px solid rgba(14,15,12,0.07);
    padding: 10px 0;
}

.sidebar-card li:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-card a {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 24px;
}

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

.page-hero {
    background: var(--black);
    padding: 64px 0;
    margin-bottom: 0;
}

.page-hero h1 {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 900;
    line-height: 0.85;
    color: var(--white);
    font-feature-settings: "calt" 1;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    line-height: 1.55;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 900;
    font-feature-settings: "calt" 1;
    margin: 40px 0 14px;
    color: var(--black);
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 10px;
    color: var(--black);
}

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

.page-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.page-content li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 6px;
}

.page-content a { color: var(--green-dark); font-weight: 600; }

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

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

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.footer-brand {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand span { color: var(--green); }

.footer-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

.footer-col h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.footer-col ul { padding: 0; }

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

.footer-col a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.70);
    text-decoration: none;
}

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

.footer-col address p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.60); }
.footer-col address a { color: var(--green); font-weight: 600; }

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

.footer-legal { margin-top: 4px; }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--black);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 2px solid var(--green);
}

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

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

.cookie-actions { display: flex; gap: 12px; }

.btn-cookie-accept {
    padding: 10px 22px;
    background: var(--green);
    color: var(--green-dark);
    border: none;
    border-radius: 9999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s;
}

.btn-cookie-accept:hover { transform: scale(1.05); }
.btn-cookie-accept:active { transform: scale(0.95); }

.btn-cookie-reject {
    padding: 10px 22px;
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.80);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 9999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s;
}

.btn-cookie-reject:hover { transform: scale(1.05); }
.btn-cookie-reject:active { transform: scale(0.95); }

.disclaimer-bar {
    background: var(--green-light);
    padding: 10px 24px;
    text-align: center;
}

.disclaimer-bar p {
    font-size: 12px;
    font-weight: 400;
    color: var(--green-dark);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 64px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .info-strip-inner { grid-template-columns: 1fr; gap: 24px; }
    .article-body { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 576px) {
    .articles-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 44px; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 16px 24px; border-bottom: 1px solid rgba(14,15,12,0.10); gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .article-hero-img { aspect-ratio: 16/9; }
}
