@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;
    --dgreen:  #163300;
    --mint:    #e2f6d5;
    --gray:    #868685;
    --warm:    #454745;
    --bg:      #ffffff;
    --surface: #f7faf4;
    --radius-card: 30px;
    --radius-btn:  9999px;
    --shadow:  rgba(14,15,12,0.12) 0 0 0 1px;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--black);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: var(--radius-btn);
    transition: background 0.18s;
    white-space: nowrap;
}

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

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

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

/* ── HERO ── */
.hero {
    padding: 80px 0 60px;
    background: var(--surface);
    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-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dgreen);
    background: var(--mint);
    padding: 4px 12px;
    border-radius: var(--radius-btn);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 24px;
    font-feature-settings: "calt";
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--warm);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 32px;
}

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

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

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    border: none;
    transition: transform 0.15s;
    font-feature-settings: "calt";
    text-decoration: none;
}

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

.btn-primary {
    background: var(--green);
    color: var(--dgreen);
}

.btn-secondary {
    background: rgba(22,51,0,0.08);
    color: var(--black);
}

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

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dgreen);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.5px;
    color: var(--black);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.section-sub {
    font-size: 1.05rem;
    color: var(--warm);
    max-width: 600px;
    margin-bottom: 48px;
}

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

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

.card:hover { transform: translateY(-4px); }

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

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

.card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dgreen);
    margin-bottom: 10px;
}

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

.card-excerpt {
    font-size: 0.95rem;
    color: var(--warm);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 20px;
}

.card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dgreen);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link::after {
    content: '→';
    transition: transform 0.15s;
}

.card-link:hover::after { transform: translateX(4px); }

/* ── ARTICLE PAGE ── */
.article-header {
    padding: 64px 0 40px;
    background: var(--surface);
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.article-header .breadcrumb {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.article-header .breadcrumb a { color: var(--dgreen); font-weight: 600; }

.article-header h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.8px;
    max-width: 760px;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.article-meta {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.article-body {
    padding: 56px 0;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.3px;
    margin: 40px 0 14px;
    font-feature-settings: "calt";
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 28px 0 10px;
}

.article-content p {
    margin-bottom: 18px;
    line-height: 1.65;
}

.article-content ul, .article-content ol {
    margin: 0 0 18px 22px;
    line-height: 1.7;
}

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

.article-content a {
    color: var(--dgreen);
    font-weight: 600;
    border-bottom: 1px solid rgba(22,51,0,0.25);
}

.article-content a:hover { border-color: var(--dgreen); }

.article-img {
    border-radius: 20px;
    overflow: hidden;
    margin: 28px 0;
    box-shadow: var(--shadow);
}

.article-img img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
}

.article-img figcaption {
    font-size: 0.82rem;
    color: var(--gray);
    padding: 10px 16px;
    background: var(--surface);
}

.sidebar {
    position: sticky;
    top: 88px;
}

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

.sidebar-box h3 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 14px;
    font-feature-settings: "calt";
}

.sidebar-box a {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dgreen);
    padding: 6px 0;
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.sidebar-box a:last-child { border-bottom: none; }
.sidebar-box a:hover { color: var(--black); }

/* ── CONTACT FORM ── */
.contact-section {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 48px;
    box-shadow: var(--shadow);
    max-width: 640px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.contact-section p {
    color: var(--warm);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.18);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--black);
    background: var(--bg);
    transition: box-shadow 0.15s;
    outline: none;
}

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

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

/* ── HIGHLIGHTS ── */
.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0;
}

.highlight-item {
    background: var(--bg);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.highlight-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.highlight-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--warm);
}

/* ── PAGE CONTENT (about, privacy, terms) ── */
.page-header {
    padding: 64px 0 40px;
    background: var(--surface);
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.8px;
    font-feature-settings: "calt";
}

.page-body {
    padding: 56px 0;
    max-width: 760px;
}

.page-body h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin: 36px 0 12px;
    font-feature-settings: "calt";
}

.page-body p { margin-bottom: 16px; line-height: 1.65; }
.page-body ul { margin: 0 0 16px 22px; line-height: 1.7; }

/* ── COOKIE BANNER ── */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--black);
    color: #fff;
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(14,15,12,0.25);
    display: flex;
    gap: 16px;
    align-items: center;
    max-width: 680px;
    width: calc(100% - 48px);
}

#cookie-banner p {
    font-size: 0.9rem;
    flex: 1;
    line-height: 1.4;
}

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

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

.cookie-btns button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
}

.cookie-btns button:hover  { transform: scale(1.05); }
.cookie-btns button:active { transform: scale(0.95); }

.cookie-accept { background: var(--green); color: var(--dgreen); }
.cookie-reject { background: rgba(255,255,255,0.12); color: #fff; }

/* ── FOOTER ── */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.85);
    padding: 64px 0 0;
}

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

.footer-brand {
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.55);
}

.footer-contact {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

.footer-contact a { color: var(--green); }

.footer-heading {
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col nav a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    transition: color 0.15s;
}

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

.footer-bottom {
    padding: 20px 0;
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .hero-img { display: none; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .highlights { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2.2rem; }
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: var(--bg);
        padding: 16px 24px;
        box-shadow: 0 8px 32px rgba(14,15,12,0.1);
        z-index: 99;
    }
    .cards-grid { grid-template-columns: 1fr; }
    .highlights { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .section-title { font-size: 1.9rem; }
    .contact-section { padding: 28px 20px; }
    #cookie-banner { flex-direction: column; }
    .cookie-btns { width: 100%; }
    .cookie-btns button { flex: 1; }
}
