@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 {
    --near-black: #0e0f0c;
    --wise-green: #9fe870;
    --dark-green: #163300;
    --light-mint: #e2f6d5;
    --pastel-green: #cdffad;
    --warm-dark: #454745;
    --gray: #868685;
    --light-surface: #e8ebe6;
    --white: #ffffff;
    --off-white: #f8faf6;
    --ring-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

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.108px;
    color: var(--near-black);
    background-color: var(--white);
    font-feature-settings: "calt";
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--dark-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--near-black);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.container {
    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;
    padding: 0;
}

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

.site-logo {
    font-size: 1.38rem;
    font-weight: 900;
    color: var(--near-black);
    letter-spacing: -0.5px;
    font-feature-settings: "calt";
    text-decoration: none;
}

.site-logo span {
    color: var(--dark-green);
    background: var(--wise-green);
    padding: 2px 8px;
    border-radius: 9999px;
}

/* NAV */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--near-black);
    padding: 8px 14px;
    border-radius: 9999px;
    transition: background 0.2s ease, transform 0.15s ease;
    font-feature-settings: "calt";
    letter-spacing: -0.108px;
}

.site-nav a:hover {
    background: rgba(211,242,192,0.4);
    color: var(--near-black);
    transform: none;
}

.site-nav a.active {
    background: var(--light-mint);
    color: var(--dark-green);
}

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

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.44;
    letter-spacing: -0.108px;
    font-feature-settings: "calt";
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
}

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

.btn-primary {
    background: var(--wise-green);
    color: var(--dark-green);
    padding: 10px 24px;
    border-radius: 9999px;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: var(--dark-green);
}

.btn-secondary {
    background: rgba(22, 51, 0, 0.08);
    color: var(--near-black);
    padding: 8px 20px;
    border-radius: 9999px;
}

.btn-secondary:hover {
    transform: scale(1.05);
    color: var(--near-black);
}

/* HERO */
.hero {
    background: var(--off-white);
    padding: 80px 0 64px;
    overflow: hidden;
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.85;
    color: var(--near-black);
    font-feature-settings: "calt";
    letter-spacing: normal;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: normal;
    color: var(--dark-green);
    background: var(--wise-green);
    border-radius: 12px;
    padding: 0 12px;
}

.hero-description {
    font-size: 1.13rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--warm-dark);
    letter-spacing: 0.18px;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

/* SECTIONS */
.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 0.85;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.13rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    max-width: 640px;
    margin-bottom: 48px;
}

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

.card {
    background: var(--white);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--ring-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(14,15,12,0.18) 0px 8px 24px;
}

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 10px;
    letter-spacing: -0.084px;
}

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

.card-title a {
    color: var(--near-black);
}

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

.card-excerpt {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-meta {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: -0.084px;
}

/* ARTICLE */
.article-header {
    background: var(--off-white);
    padding: 56px 0 48px;
}

.article-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--wise-green);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 20px;
    max-width: 820px;
}

.article-meta {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 0;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 24px;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.95;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin: 48px 0 16px;
}

.article-body h3 {
    font-size: 1.38rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--near-black);
    font-feature-settings: "calt";
    letter-spacing: -0.396px;
    margin: 32px 0 12px;
}

.article-body p {
    font-size: 1.13rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
    letter-spacing: 0.18px;
    margin-bottom: 20px;
}

.article-body a {
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body ul, .article-body ol {
    margin: 0 0 20px 24px;
}

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

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

.article-body figure img {
    border-radius: 20px;
    width: 100%;
}

.article-body figcaption {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--gray);
    margin-top: 8px;
    text-align: center;
}

.article-body blockquote {
    border-left: 4px solid var(--wise-green);
    padding: 12px 24px;
    margin: 32px 0;
    background: var(--light-mint);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--near-black);
}

/* FEATURES LIST */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--ring-shadow);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 6px;
    font-feature-settings: "calt";
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
}

/* CONTACT FORM */
.contact-section {
    background: var(--near-black);
    padding: 72px 0;
    color: var(--white);
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.9;
    font-feature-settings: "calt";
    margin-bottom: 12px;
}

.contact-desc {
    font-size: 1.13rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: -0.084px;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    margin-top: 8px;
    align-self: flex-start;
}

/* FOOTER */
.site-footer {
    background: var(--near-black);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 32px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .site-logo {
    color: var(--white);
    font-size: 1.25rem;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.084px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--wise-green);
}

.footer-contact p {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255,255,255,0.55);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.footer-bottom a:hover {
    color: rgba(255,255,255,0.7);
}

/* PAGES */
.page-header {
    background: var(--off-white);
    padding: 56px 0 48px;
    margin-bottom: 56px;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.88;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.13rem;
    font-weight: 400;
    color: var(--warm-dark);
    max-width: 560px;
    line-height: 1.6;
}

.page-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 72px;
}

.page-body h2 {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 0.95;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin: 40px 0 14px;
}

.page-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--near-black);
    margin: 28px 0 10px;
}

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

.page-body ul, .page-body ol {
    margin: 0 0 18px 24px;
}

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

.page-body a {
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* BREADCRUMBS */
.breadcrumbs {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--gray);
    text-decoration: none;
}

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

.breadcrumbs span {
    color: var(--gray);
}

/* RELATED ARTICLES */
.related-section {
    background: var(--off-white);
    padding: 64px 0;
}

.related-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.9;
    font-feature-settings: "calt";
    margin-bottom: 36px;
}

/* ABOUT PAGE */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.9;
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

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

.about-img {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
}

.about-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 30px;
}

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

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--ring-shadow);
    text-align: center;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 560px;
    background: var(--near-black);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(14,15,12,0.35);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
}

#cookie-banner p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

#cookie-banner a {
    color: var(--wise-green);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* DISCLAIMER */
.disclaimer {
    background: var(--light-mint);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1.6;
    margin: 40px 0;
    border-left: 4px solid var(--wise-green);
}

/* UPDATED DATE */
.updated-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 32px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .article-title {
        font-size: 2.25rem;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .site-nav {
        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;
        align-items: flex-start;
    }
    .site-nav.open {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .header-inner {
        position: relative;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    #cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    .page-title {
        font-size: 2.25rem;
    }
}
