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

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

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

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--dark-green); }
img { max-width: 100%; height: auto; display: block; }

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow-ring);
}

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

.site-logo {
    font-size: 22px;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.5px;
    color: var(--black);
    transition: color 0.2s;
}
.site-logo span { color: var(--dark-green); }
.site-logo:hover { color: var(--dark-green); }

.site-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.site-nav ul li a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.1px;
    color: var(--black);
    transition: background 0.2s, color 0.2s;
}
.site-nav ul li a:hover { background: rgba(211,242,192,0.4); color: var(--dark-green); }
.site-nav ul li a.active { background: var(--green); color: var(--dark-green); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hero {
    background: var(--white);
    padding: 80px 24px 60px;
    text-align: center;
}
.hero-label {
    display: inline-block;
    background: var(--mint);
    color: var(--dark-green);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -2px;
    color: var(--black);
    max-width: 900px;
    margin: 0 auto 24px;
}
.hero p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--warm-dark);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.article-card {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    background: var(--white);
    transition: transform 0.2s;
}
.article-card:hover { transform: translateY(-4px); }
.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.article-card-body { padding: 24px; }
.article-card-tag {
    display: inline-block;
    background: var(--mint);
    color: var(--dark-green);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.article-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
    color: var(--black);
}
.article-card p {
    font-size: 15px;
    color: var(--warm-dark);
    line-height: 1.5;
    margin-bottom: 16px;
}
.article-card-meta {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
}

.section { padding: 72px 0; }
.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    color: var(--black);
}
.section-sub {
    font-size: 18px;
    color: var(--warm-dark);
    max-width: 560px;
    margin-bottom: 48px;
}

.herb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.herb-card {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    background: var(--white);
}
.herb-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.herb-card-body { padding: 16px; }
.herb-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
}
.herb-card p { font-size: 14px; color: var(--warm-dark); line-height: 1.5; }

.info-band {
    background: var(--black);
    color: var(--white);
    padding: 56px 24px;
    border-radius: var(--radius-card);
    margin: 0 24px;
}
.info-band h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--green);
}
.info-band p { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.8); max-width: 640px; }

.contact-section { padding: 72px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.contact-info p { font-size: 17px; color: var(--warm-dark); line-height: 1.6; margin-bottom: 16px; }
.contact-info address { font-style: normal; color: var(--warm-dark); font-size: 16px; line-height: 1.8; }

.contact-form { background: var(--light-surface); border-radius: var(--radius-card); padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
    letter-spacing: -0.1px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--dark-green);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--green);
    color: var(--dark-green);
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.2s;
    letter-spacing: -0.1px;
}
.btn-submit:hover { transform: scale(1.05); }
.btn-submit:active { transform: scale(0.95); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-msg {
    display: none;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 16px;
    background: var(--mint);
    color: var(--dark-green);
}
.form-msg.visible { display: block; }

.article-hero {
    padding: 60px 24px 40px;
    border-bottom: 1px solid var(--light-surface);
}
.article-hero .breadcrumb {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}
.article-hero .breadcrumb a { color: var(--dark-green); font-weight: 600; }
.article-hero h1 {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 20px;
    max-width: 800px;
}
.article-hero .article-meta { font-size: 14px; color: var(--gray); font-weight: 600; }
.article-hero .article-lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--warm-dark);
    max-width: 680px;
    margin-top: 16px;
}

.article-image-hero {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-card);
    margin: 32px 0;
}

.article-body { max-width: 760px; margin: 0 auto; padding: 48px 24px 72px; }
.article-body h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.8px;
    margin: 48px 0 16px;
    color: var(--black);
}
.article-body h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin: 32px 0 12px;
    color: var(--black);
}
.article-body p { margin-bottom: 18px; font-size: 17px; line-height: 1.65; color: #333; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 8px; font-size: 17px; line-height: 1.65; color: #333; }
.article-body a { color: var(--dark-green); font-weight: 600; border-bottom: 1px solid var(--green); }
.article-body a:hover { border-bottom-color: var(--dark-green); }

.info-box {
    background: var(--mint);
    border-left: 4px solid var(--green);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 28px 0;
}
.info-box p { margin: 0; color: var(--dark-green); font-weight: 600; font-size: 15px; }

.herb-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-ring);
}
.herb-table th {
    background: var(--black);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px;
    text-align: left;
}
.herb-table td {
    padding: 12px 18px;
    font-size: 15px;
    border-bottom: 1px solid var(--light-surface);
}
.herb-table tr:last-child td { border-bottom: none; }
.herb-table tr:nth-child(even) td { background: var(--light-surface); }

.related-articles { padding: 56px 0; border-top: 1px solid var(--light-surface); }
.related-articles h2 { font-size: 28px; font-weight: 900; margin-bottom: 28px; }

.page-hero {
    padding: 60px 24px 40px;
    border-bottom: 1px solid var(--light-surface);
}
.page-hero h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.page-hero p { font-size: 18px; color: var(--warm-dark); max-width: 580px; }

.page-body { max-width: 760px; margin: 0 auto; padding: 48px 24px 72px; }
.page-body h2 { font-size: 26px; font-weight: 900; margin: 36px 0 12px; }
.page-body p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; color: #333; }
.page-body ul { margin: 0 0 16px 24px; }
.page-body li { font-size: 16px; line-height: 1.7; margin-bottom: 6px; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 0;
}
.about-img { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-ring); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }

.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-size: 20px; font-weight: 900; margin-bottom: 12px; color: var(--white); }
.footer-logo span { color: var(--green); }
.footer-desc { font-size: 14px; line-height: 1.6; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-col p { font-size: 14px; }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--green); }
.footer-disclaimer { margin-top: 6px; font-size: 12px; }

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 680px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 9999;
    padding: 20px 24px;
}
.cookie-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-inner p { font-size: 14px; flex: 1; min-width: 200px; }
.cookie-inner p a { color: var(--green); font-weight: 600; }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie-accept {
    padding: 8px 20px;
    background: var(--green);
    color: var(--dark-green);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-cookie-accept:hover { transform: scale(1.05); }
.btn-cookie-reject {
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background 0.2s;
}
.btn-cookie-reject:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 992px) {
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .herb-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .articles-grid { grid-template-columns: 1fr; }
    .herb-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(14,15,12,0.1);
        padding: 16px 24px 24px;
    }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; gap: 4px; }
    .info-band { margin: 0 12px; }
}
