@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --near-black: #0e0f0c;
    --wise-green: #9fe870;
    --dark-green: #163300;
    --light-mint: #e2f6d5;
    --pastel-green: #cdffad;
    --positive-green: #054d28;
    --warm-dark: #454745;
    --gray: #868685;
    --light-surface: #e8ebe6;
    --white: #ffffff;
    --nav-hover: rgba(211,242,192,0.4);
    --ring-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--near-black);
    background: var(--white);
    line-height: 1.44;
    letter-spacing: 0.18px;
    font-feature-settings: "calt";
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--dark-green);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--positive-green); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(14,15,12,0.10);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--near-black);
    letter-spacing: -0.5px;
    line-height: 0.85;
    font-feature-settings: "calt";
}

.site-logo span {
    color: var(--dark-green);
}

/* NAVIGATION */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--near-black);
    padding: 8px 14px;
    border-radius: 9999px;
    transition: background 0.2s;
    font-feature-settings: "calt";
}
.site-nav a:hover {
    background: var(--nav-hover);
    color: var(--near-black);
}
.site-nav a.active {
    background: var(--light-mint);
    color: var(--dark-green);
}

.nav-cta {
    background: var(--wise-green) !important;
    color: var(--dark-green) !important;
    padding: 8px 20px !important;
    border-radius: 9999px;
    font-weight: 600;
    transition: transform 0.18s ease !important;
}
.nav-cta:hover {
    transform: scale(1.05);
    background: var(--wise-green) !important;
}
.nav-cta:active { transform: scale(0.95) !important; }

.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(--near-black);
    border-radius: 2px;
    transition: all 0.25s;
}

/* HERO */
.hero {
    background: var(--white);
    padding: 80px 0 64px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -1px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 20px;
}

.hero-headline em {
    color: var(--dark-green);
    font-style: normal;
}

.hero-lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-stat::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wise-green);
}

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
    aspect-ratio: 4/3;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION TITLES */
.section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.5px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.0625rem;
    color: var(--warm-dark);
    line-height: 1.55;
    max-width: 560px;
    margin-bottom: 40px;
}

/* ARTICLES GRID */
.articles-section {
    padding: 72px 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
    background: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14,15,12,0.10);
}

.article-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .article-card-img img {
    transform: scale(1.04);
}

.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-tag {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 12px;
}

.article-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--near-black);
    line-height: 1.3;
    margin-bottom: 10px;
    font-feature-settings: "calt";
}

.article-card-excerpt {
    font-size: 0.9375rem;
    color: var(--warm-dark);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 20px;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-green);
    transition: gap 0.2s;
}
.article-card-link:hover { gap: 10px; }
.article-card-link::after { content: '→'; }

/* INFO SECTION */
.info-section {
    padding: 72px 0;
    background: var(--light-surface);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.info-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
    aspect-ratio: 3/4;
}
.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content .section-lead { max-width: 100%; }

.fact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.fact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--wise-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 2px;
}

.fact-text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 3px;
}
.fact-text span {
    font-size: 0.875rem;
    color: var(--warm-dark);
    line-height: 1.5;
}

/* VARIETIES TABLE */
.varieties-section {
    padding: 72px 0;
    background: var(--white);
}

.varieties-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--ring-shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

thead tr {
    background: var(--near-black);
}
thead th {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wise-green);
    font-feature-settings: "calt";
}

tbody tr {
    border-bottom: 1px solid var(--light-surface);
    transition: background 0.15s;
}
tbody tr:hover { background: var(--light-mint); }
tbody td {
    padding: 14px 20px;
    font-size: 0.9375rem;
    color: var(--near-black);
    line-height: 1.45;
}
tbody td:first-child {
    font-weight: 700;
    color: var(--dark-green);
}

/* CONTACT SECTION */
.contact-section {
    padding: 72px 0;
    background: var(--near-black);
}

.contact-section .section-label { color: var(--wise-green); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-lead { color: rgba(255,255,255,0.65); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(159,232,112,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-info-text strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 3px;
}
.contact-info-text a,
.contact-info-text span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}
.contact-info-text a:hover { color: var(--wise-green); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--white);
    transition: border-color 0.2s;
    font-feature-settings: "calt";
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wise-green);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    display: inline-block;
    background: var(--wise-green);
    color: var(--dark-green);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-feature-settings: "calt";
    transition: transform 0.18s ease;
    letter-spacing: -0.2px;
}
.btn-primary:hover { transform: scale(1.05); color: var(--dark-green); }
.btn-primary:active { transform: scale(0.95); }

/* ARTICLE PAGE */
.article-hero {
    padding: 56px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--light-surface);
}

.article-hero-image {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: 30px;
    margin-top: 32px;
    box-shadow: var(--ring-shadow);
}
.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 600;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--dark-green); }
.breadcrumb span { color: var(--near-black); }

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.5px;
    color: var(--near-black);
    font-feature-settings: "calt";
    max-width: 800px;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
}
.article-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray);
}

.article-content {
    padding: 48px 0 64px;
    background: var(--white);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.article-body h2 {
    font-size: 1.625rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--near-black);
    margin: 36px 0 14px;
    font-feature-settings: "calt";
}
.article-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--near-black);
    margin: 28px 0 10px;
    font-feature-settings: "calt";
}
.article-body p {
    font-size: 1rem;
    line-height: 1.72;
    color: #1a1b18;
    margin-bottom: 18px;
}
.article-body ul, .article-body ol {
    padding-left: 22px;
    margin-bottom: 18px;
}
.article-body li {
    font-size: 1rem;
    line-height: 1.65;
    color: #1a1b18;
    margin-bottom: 6px;
}
.article-body strong { font-weight: 700; }
.article-body a { color: var(--dark-green); text-decoration: underline; text-underline-offset: 3px; }

.article-image-inline {
    border-radius: 20px;
    overflow: hidden;
    margin: 28px 0;
    box-shadow: var(--ring-shadow);
}
.article-image-inline img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}
.article-image-inline figcaption {
    padding: 10px 16px;
    font-size: 0.8125rem;
    color: var(--gray);
    background: var(--light-surface);
    font-style: italic;
}

.article-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--ring-shadow);
}

.sidebar-card-title {
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 14px;
    font-feature-settings: "calt";
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-links li a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--near-black);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.sidebar-links li a:hover { color: var(--dark-green); }
.sidebar-links li a::before {
    content: '→';
    flex-shrink: 0;
    color: var(--wise-green);
    font-weight: 900;
}

.sidebar-sources {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-sources li a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--warm-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    display: block;
}
.sidebar-sources li a:hover { color: var(--dark-green); }

/* PAGES */
.page-hero {
    padding: 56px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--light-surface);
}
.page-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 14px;
}
.page-lead {
    font-size: 1.0625rem;
    color: var(--warm-dark);
    line-height: 1.6;
    max-width: 600px;
}

.page-content {
    padding: 48px 0 72px;
    max-width: 780px;
}
.page-content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--near-black);
    margin: 36px 0 12px;
    font-feature-settings: "calt";
}
.page-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--near-black);
    margin: 24px 0 8px;
}
.page-content p {
    font-size: 1rem;
    line-height: 1.72;
    color: #1a1b18;
    margin-bottom: 16px;
}
.page-content ul, .page-content ol {
    padding-left: 22px;
    margin-bottom: 16px;
}
.page-content li {
    font-size: 1rem;
    line-height: 1.65;
    color: #1a1b18;
    margin-bottom: 6px;
}
.page-content a { color: var(--dark-green); text-decoration: underline; text-underline-offset: 3px; }
.page-content strong { font-weight: 700; }

/* FOOTER */
.site-footer {
    background: var(--near-black);
    padding: 56px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo {
    color: var(--white);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wise-green);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links li a:hover { color: var(--white); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--near-black);
    border-top: 2px solid var(--wise-green);
    padding: 16px 24px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
#cookie-banner p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}
#cookie-banner p a { color: var(--wise-green); text-decoration: underline; text-underline-offset: 2px; }
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.btn-cookie-accept {
    background: var(--wise-green);
    color: var(--dark-green);
    border: none;
    padding: 9px 22px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.18s;
}
.btn-cookie-accept:hover { transform: scale(1.05); }
.btn-cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 9px 22px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: border-color 0.2s, color 0.2s;
}
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* DISCLAIMER */
.disclaimer-bar {
    background: var(--light-mint);
    border-bottom: 1px solid rgba(22,51,0,0.12);
    padding: 8px 0;
    font-size: 0.8125rem;
    color: var(--dark-green);
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
    .info-image { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 576px) {
    .site-nav { display: none; flex-direction: column; width: 100%; }
    .site-nav.open { display: flex; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 16px; border-bottom: 1px solid var(--light-surface); gap: 4px; z-index: 99; }
    .nav-toggle { display: flex; }
    .articles-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero { padding: 48px 0 40px; }
    .articles-section, .info-section, .varieties-section, .contact-section { padding: 48px 0; }
    .breadcrumb { flex-wrap: wrap; }
}
