*, *::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;
    --surface: #e8ebe6;
    --white: #ffffff;
    --radius-pill: 9999px;
    --radius-card: 30px;
    --radius-card-sm: 16px;
    --radius-lg: 40px;
    --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    font-feature-settings: "calt" 1;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--black);
    background: var(--white);
    font-feature-settings: "calt" 1;
}

a { color: var(--dark-green); text-decoration: none; font-feature-settings: "calt" 1; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

h1, h2, h3 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: normal;
    color: var(--black);
    font-feature-settings: "calt" 1;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.5rem); line-height: 1.1; }

p { font-weight: 400; line-height: 1.65; margin-bottom: 1rem; font-feature-settings: "calt" 1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow-ring);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--black);
    text-decoration: none;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--green);
    color: var(--dark-green);
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.1rem;
}

.logo-text { font-weight: 900; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.nav-links a:hover {
    background: rgba(211,242,192,0.4);
    text-decoration: none;
}

.nav-dropdown { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-ring), 0 8px 24px rgba(14,15,12,0.1);
    border-radius: 20px;
    padding: 8px;
    list-style: none;
    min-width: 220px;
    z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-feature-settings: "calt" 1;
}

.btn:hover { transform: scale(1.05); text-decoration: none; }
.btn:active { transform: scale(0.95); }

.btn-primary {
    background: var(--green);
    color: var(--dark-green);
}

.btn-secondary {
    background: rgba(22,51,0,0.08);
    color: var(--black);
}

/* HERO */
.hero {
    padding: 80px 0 64px;
    background: var(--white);
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: var(--mint);
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title { margin-bottom: 24px; }

.hero-desc {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--warm-dark);
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    aspect-ratio: 4/3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SECTION */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }

.section-label {
    display: inline-block;
    background: var(--mint);
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title { margin-bottom: 12px; }
.section-sub { color: var(--warm-dark); font-weight: 400; font-size: 1.125rem; margin-bottom: 48px; max-width: 600px; }

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s;
}

.card:hover { transform: translateY(-4px); }

.card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.card-tag {
    display: inline-block;
    background: var(--mint);
    color: var(--dark-green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.card-title {
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.25;
    letter-spacing: -0.39px;
    color: var(--black);
    margin-bottom: 10px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
}

.card-excerpt {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.card-link {
    font-weight: 600;
    color: var(--dark-green);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-link:hover { text-decoration: underline; }

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.feature-title {
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.25;
    letter-spacing: -0.39px;
    margin-bottom: 10px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
}

.feature-text {
    font-weight: 400;
    font-size: 1rem;
    color: var(--warm-dark);
    line-height: 1.6;
    margin: 0;
}

/* CONTACT FORM */
.contact-section { background: var(--surface); padding: 72px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
    padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(14,15,12,0.2);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-feature-settings: "calt" 1;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-info p {
    font-weight: 400;
    color: var(--warm-dark);
    margin-bottom: 8px;
}

.contact-info a { color: var(--dark-green); }

/* ARTICLE */
.article-hero { padding: 60px 0 40px; background: var(--white); }
.article-meta { font-size: 0.875rem; color: var(--gray); font-weight: 400; margin-bottom: 20px; }

.article-content { padding: 48px 0 72px; }

.article-body { max-width: 740px; }

.article-body h2 {
    font-size: 2rem;
    margin: 40px 0 16px;
    line-height: 1.1;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 28px 0 12px;
    line-height: 1.2;
}

.article-body p {
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #2a2b28;
    margin-bottom: 1.2rem;
}

.article-body ul, .article-body ol {
    margin: 0 0 1.2rem 1.5rem;
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #2a2b28;
}

.article-body li { margin-bottom: 6px; }

.article-body a { color: var(--dark-green); text-decoration: underline; }

.article-image {
    margin: 32px 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
}

.article-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.article-image figcaption {
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 400;
    background: var(--surface);
}

.related-articles { padding: 48px 0; background: var(--surface); }

/* PAGE */
.page-section { padding: 72px 0; }
.page-body { max-width: 800px; }
.page-body h2 { font-size: 1.8rem; margin: 40px 0 12px; line-height: 1.1; }
.page-body p { font-weight: 400; line-height: 1.75; color: #2a2b28; margin-bottom: 1.2rem; }
.page-body ul { margin: 0 0 1.2rem 1.5rem; font-weight: 400; line-height: 1.75; color: #2a2b28; }
.page-body li { margin-bottom: 6px; }
.page-body a { color: var(--dark-green); text-decoration: underline; }

/* FOOTER */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.logo-dot { color: var(--green); }

.footer-tagline {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-updated {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
}

.footer-col h4 {
    font-weight: 900;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--green); text-decoration: none; }

.footer-col address p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 6px;
    line-height: 1.6;
}

.footer-col address a { color: var(--green); font-weight: 400; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-copy { color: var(--gray); font-size: 0.875rem; font-weight: 400; margin: 0; }
.footer-disclaimer { color: rgba(134,134,133,0.7); font-size: 0.8rem; font-weight: 400; margin: 0; }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-card-sm);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 680px;
    width: calc(100% - 48px);
    z-index: 9999;
    font-size: 0.9rem;
    font-weight: 400;
}

.cookie-banner p { margin: 0; color: rgba(255,255,255,0.85); line-height: 1.5; }
.cookie-banner a { color: var(--green); }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-accept {
    background: var(--green);
    color: var(--dark-green);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cookie-accept:hover { transform: scale(1.05); }
.cookie-accept:active { transform: scale(0.95); }

.cookie-reject {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cookie-reject:hover { transform: scale(1.05); }
.cookie-reject:active { transform: scale(0.95); }

.hidden { display: none !important; }

/* BREADCRUMB */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 400;
}

.breadcrumb a { color: var(--dark-green); }
.breadcrumb span { margin: 0 6px; }

/* HIGHLIGHT BOX */
.highlight-box {
    background: var(--mint);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius-card-sm) var(--radius-card-sm) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.highlight-box p { color: var(--dark-green); margin: 0; font-weight: 600; }

/* TABLE */
.info-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.info-table th {
    background: var(--mint);
    color: var(--dark-green);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}
.info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--surface);
    font-size: 0.95rem;
    font-weight: 400;
    color: #2a2b28;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table { border-radius: var(--radius-card-sm); overflow: hidden; box-shadow: var(--shadow-ring); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { order: -1; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow-ring); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; }
}
