@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

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

html { scroll-behavior: smooth; }

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);
    font-feature-settings: "calt";
}

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

.container {
    width: 100%;
    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);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.site-header__logo {
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    white-space: nowrap;
    font-feature-settings: "calt";
}

.site-nav { display: flex; }

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    display: block;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.108px;
    transition: background 0.15s;
    font-feature-settings: "calt";
}

.nav__link:hover,
.nav__link--active { background: rgba(211,242,192,0.4); text-decoration: none; }

.nav__has-dropdown { position: relative; }

.nav__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-ring), 0 8px 24px rgba(14,15,12,0.08);
    border-radius: var(--radius-sm);
    padding: 8px;
    min-width: 240px;
    z-index: 200;
}

.nav__has-dropdown:hover .nav__dropdown { display: block; }

.nav__dropdown .nav__link { border-radius: 10px; }

.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(--black);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.44;
    letter-spacing: -0.108px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s;
    font-feature-settings: "calt";
}

.btn:active { transform: scale(0.95); text-decoration: none; }
.btn:hover  { transform: scale(1.05); text-decoration: none; }

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

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

.hero {
    padding: 80px 0 60px;
    background: var(--white);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.hero__label {
    display: inline-block;
    background: var(--green-mint);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.hero__title {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 24px;
    font-feature-settings: "calt";
}

.hero__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--gray-warm);
    margin-bottom: 36px;
    max-width: 480px;
    font-feature-settings: "calt";
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    aspect-ratio: 4/3;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.section { padding: 64px 0; }
.section--alt { background: #f7faf5; }

.section__header { margin-bottom: 40px; }

.section__label {
    display: inline-block;
    background: var(--green-mint);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
    font-feature-settings: "calt";
}

.section__title {
    font-size: clamp(32px, 4vw, 64px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.section__desc {
    font-size: 18px;
    color: var(--gray-warm);
    max-width: 600px;
    font-feature-settings: "calt";
}

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

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-ring), 0 12px 32px rgba(14,15,12,0.08);
}

.card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card__image img { transform: scale(1.04); }

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

.card__category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-mint);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

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

.card__title a:hover { text-decoration: none; color: var(--green-dark); }

.card__excerpt {
    font-size: 15px;
    color: var(--gray-warm);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.card__meta {
    font-size: 13px;
    color: var(--gray);
    font-feature-settings: "calt";
}

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

.tip-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    box-shadow: var(--shadow-ring);
    font-feature-settings: "calt";
}

.tip-card__icon {
    width: 44px;
    height: 44px;
    background: var(--green-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.tip-card__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.108px;
    margin-bottom: 10px;
    font-feature-settings: "calt";
}

.tip-card__text {
    font-size: 15px;
    color: var(--gray-warm);
    line-height: 1.55;
    font-feature-settings: "calt";
}

.contact-section { background: var(--green-mint); }

.contact-section .section__title { color: var(--green-dark); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-ring);
    max-width: 560px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.084px;
    font-feature-settings: "calt";
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.20);
    border-radius: 10px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.15s, box-shadow 0.15s;
    font-feature-settings: "calt";
}

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

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

.article-header { padding: 60px 0 40px; border-bottom: 1px solid var(--surface); }

.article-header__breadcrumb {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.article-header__breadcrumb a { color: var(--gray); }
.article-header__breadcrumb a:hover { color: var(--black); }

.article-header__title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.article-header__meta {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-feature-settings: "calt";
}

.article-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    padding: 48px 0 64px;
    align-items: start;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 40px 0 16px;
    color: var(--black);
    font-feature-settings: "calt";
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.396px;
    margin: 28px 0 12px;
    color: var(--black);
    font-feature-settings: "calt";
}

.article-content p {
    margin-bottom: 20px;
    color: var(--black);
    font-size: 17px;
    line-height: 1.65;
    font-feature-settings: "calt";
}

.article-content ul,
.article-content ol {
    margin: 0 0 20px 20px;
    font-size: 17px;
    line-height: 1.65;
    list-style: disc;
    font-feature-settings: "calt";
}

.article-content ol { list-style: decimal; }

.article-content li { margin-bottom: 6px; color: var(--black); }

.article-content a { color: var(--green-dark); font-weight: 600; }
.article-content a:hover { text-decoration: underline; }

.article-content figure {
    margin: 32px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
}

.article-content figure img { width: 100%; height: auto; }

.article-content figcaption {
    padding: 10px 16px;
    font-size: 13px;
    color: var(--gray);
    background: #f7faf5;
    font-feature-settings: "calt";
}

.article-content blockquote {
    border-left: 3px solid var(--green);
    padding: 16px 20px;
    margin: 28px 0;
    background: var(--green-mint);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 17px;
    font-weight: 600;
    font-feature-settings: "calt";
}

.article-sidebar { position: sticky; top: 84px; }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: var(--shadow-ring);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.sidebar-widget__title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.108px;
    margin-bottom: 16px;
    color: var(--black);
    font-feature-settings: "calt";
}

.sidebar-widget ul { display: flex; flex-direction: column; gap: 8px; }

.sidebar-widget ul li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.4;
    font-feature-settings: "calt";
}

.sidebar-widget ul li a:hover { text-decoration: underline; }

.toc__list { counter-reset: toc; }
.toc__list li { counter-increment: toc; }
.toc__list li a::before {
    content: counter(toc) ". ";
    color: var(--gray);
    font-weight: 400;
}

.page-header { padding: 60px 0 40px; }

.page-header__title {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.page-header__desc {
    font-size: 18px;
    color: var(--gray-warm);
    max-width: 600px;
    font-feature-settings: "calt";
}

.page-content { padding: 0 0 64px; }

.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 40px 0 14px;
    color: var(--black);
    font-feature-settings: "calt";
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--black);
    font-feature-settings: "calt";
}

.page-content p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--black);
    font-feature-settings: "calt";
}

.page-content ul {
    margin: 0 0 18px 20px;
    list-style: disc;
    font-size: 17px;
    line-height: 1.65;
    font-feature-settings: "calt";
}

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

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

.team-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: var(--shadow-ring);
    text-align: center;
    font-feature-settings: "calt";
}

.team-card__avatar {
    width: 72px;
    height: 72px;
    background: var(--green-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 14px;
}

.team-card__name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    font-feature-settings: "calt";
}

.team-card__role {
    font-size: 13px;
    color: var(--gray);
    font-feature-settings: "calt";
}

.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.85);
    padding: 56px 0 32px;
}

.site-footer__inner {}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
}

.site-footer__logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
    display: block;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.site-footer__tagline {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-feature-settings: "calt";
}

.site-footer__address {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    font-style: normal;
    font-feature-settings: "calt";
}

.site-footer__heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.site-footer__links { display: flex; flex-direction: column; gap: 8px; }

.site-footer__links a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-feature-settings: "calt";
}

.site-footer__links a:hover { color: var(--green); text-decoration: none; }

.site-footer__col p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
    font-feature-settings: "calt";
}

.site-footer__col a:hover { color: var(--green); }

.site-footer__bottom {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.site-footer__bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-feature-settings: "calt";
}

.site-footer__disclaimer { max-width: 600px; }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--black);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -2px 16px rgba(14,15,12,0.2);
    font-feature-settings: "calt";
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    max-width: 700px;
    color: rgba(255,255,255,0.85);
    font-feature-settings: "calt";
}

.cookie-banner__text a { color: var(--green); font-weight: 600; }

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

.cookie-banner.is-hidden { display: none; }

@media (max-width: 992px) {
    .hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .hero__image { display: none; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
    .article-body { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .cards-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .nav__list { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: 0 8px 24px rgba(14,15,12,0.08); gap: 4px; }
    .nav__list.is-open { display: flex; }
    .nav-toggle { display: flex; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .site-footer__bottom { flex-direction: column; }
    .contact-form { padding: 24px; }
    .team-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; align-items: flex-start; }
}
