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

:root {
    --ink: #181d26;
    --body-color: #333840;
    --muted: #41454d;
    --canvas: #ffffff;
    --surface-soft: #f8fafc;
    --surface-strong: #e0e2e6;
    --surface-dark: #181d26;
    --hairline: #dddddd;
    --link: #1b61c9;
    --signature-coral: #aa2d00;
    --signature-forest: #0a2e0e;
    --signature-cream: #f5e9d4;
    --signature-peach: #fcab79;
    --signature-mint: #a8d8c4;
    --on-primary: #ffffff;
    --rounded-xs: 2px;
    --rounded-sm: 6px;
    --rounded-md: 10px;
    --rounded-lg: 12px;
    --section: 96px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    --max-w: 1280px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body-color);
    background: var(--canvas);
}

a { color: var(--link); text-decoration: none; }
a:active { color: #1a3866; }

img { display: block; max-width: 100%; height: auto; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
}

/* ── TOP NAV ── */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 64px;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    font-size: 14px;
    color: var(--body-color);
    text-decoration: none;
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    background: var(--ink);
    color: var(--on-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary:active { background: #0d1218; color: var(--on-primary); }

.btn-secondary {
    display: inline-block;
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: 1px solid var(--hairline);
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

.btn-secondary-on-dark {
    display: inline-block;
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

/* ── HERO ── */
.hero-band {
    padding: var(--section) 0;
    background: var(--canvas);
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
}

.hero-band h1 {
    font-size: 40px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    max-width: 720px;
    margin-bottom: 20px;
}

.hero-band .hero-sub {
    font-size: 18px;
    color: var(--body-color);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.5;
}

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

/* ── SECTIONS ── */
.section {
    padding: var(--section) 0;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 560px;
}

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

.article-card {
    background: var(--canvas);
    border-radius: var(--rounded-md);
    border: 1px solid var(--hairline);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-card-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.article-card-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
}

.article-card-excerpt {
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.6;
    flex: 1;
}

.article-card-meta {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}

.article-card a.card-link {
    text-decoration: none;
    color: inherit;
}

/* ── SIGNATURE CORAL CARD ── */
.sig-coral {
    background: var(--signature-coral);
    border-radius: var(--rounded-lg);
    padding: 48px;
    color: var(--on-primary);
}

.sig-coral h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sig-coral p {
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0.9;
}

/* ── SIGNATURE FOREST CARD ── */
.sig-forest {
    background: var(--signature-forest);
    border-radius: var(--rounded-lg);
    padding: 48px;
    color: var(--on-primary);
}

.sig-forest h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sig-forest p {
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0.9;
}

/* ── DARK CARD ── */
.sig-dark {
    background: var(--surface-dark);
    border-radius: var(--rounded-lg);
    padding: 48px;
    color: var(--on-primary);
}

.sig-dark h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sig-dark p {
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0.85;
}

/* ── CREAM CALLOUT ── */
.cream-callout {
    background: var(--signature-cream);
    border-radius: var(--rounded-md);
    padding: 48px;
}

.cream-callout h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cream-callout p {
    font-size: 14px;
    color: var(--body-color);
    max-width: 560px;
    margin-bottom: 32px;
}

/* ── CTA BAND LIGHT ── */
.cta-band-light {
    background: var(--surface-strong);
    border-radius: var(--rounded-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band-light h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    max-width: 540px;
}

/* ── ARTICLE PAGE ── */
.article-hero {
    padding: var(--section) 0 48px;
    background: var(--canvas);
}

.article-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px;
}

.article-wrap h1 {
    font-size: 40px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-meta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
}

.article-featured-img {
    width: 100%;
    border-radius: var(--rounded-md);
    margin-bottom: 48px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-body h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    margin: 40px 0 16px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    margin: 28px 0 12px;
}

.article-body p {
    font-size: 15px;
    color: var(--body-color);
    line-height: 1.75;
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.article-body li {
    font-size: 15px;
    color: var(--body-color);
    line-height: 1.75;
    margin-bottom: 6px;
}

.article-body a {
    color: var(--link);
}

.article-related {
    background: var(--surface-soft);
    padding: var(--section) 0;
    margin-top: var(--section);
}

/* ── CONTACT FORM ── */
.contact-section {
    padding: var(--section) 0;
    background: var(--surface-soft);
}

.contact-form-wrap {
    max-width: 560px;
}

.contact-form-wrap h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
}

.contact-form-wrap p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--font);
    font-size: 14px;
    padding: 12px 16px;
    height: 44px;
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-sm);
    outline: none;
}

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

.form-group input:focus, .form-group textarea:focus {
    border-color: #458fff;
}

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

.fact-card {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-md);
    padding: 24px;
}

.fact-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}

.fact-card p {
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.6;
}

/* ── ABOUT PAGE ── */
.page-hero {
    padding: var(--section) 0 64px;
    background: var(--canvas);
}

.page-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px;
}

.page-body h1 {
    font-size: 40px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 24px;
}

.page-body h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin: 40px 0 12px;
}

.page-body p {
    font-size: 15px;
    color: var(--body-color);
    line-height: 1.75;
    margin-bottom: 20px;
}

.page-body ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

.page-body li {
    font-size: 15px;
    color: var(--body-color);
    line-height: 1.75;
    margin-bottom: 6px;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--canvas);
    border-top: 1px solid var(--hairline);
    padding: var(--section) 0 0;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
}

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

.footer-brand {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
}

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

.footer-col ul li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.footer-col ul a {
    color: var(--muted);
    text-decoration: none;
}

.footer-legal {
    border-top: 1px solid var(--hairline);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal p {
    font-size: 13px;
    color: var(--muted);
}

.footer-legal a {
    color: var(--muted);
    text-decoration: none;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-dark);
    color: var(--on-primary);
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    z-index: 9999;
    border-top: 1px solid #2a2f3a;
}

.cookie-banner p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 680px;
    opacity: 0.9;
}

.cookie-banner p a {
    color: #89b4ff;
}

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

.btn-cookie-accept {
    background: var(--link);
    color: var(--on-primary);
    font-size: 13.12px;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: var(--rounded-xs);
    border: none;
    cursor: pointer;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--on-primary);
    font-size: 13.12px;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: var(--rounded-xs);
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
}

/* ── DISCLAIMER ── */
.disclaimer {
    background: #fffbeb;
    border-left: 3px solid #d97706;
    padding: 16px 20px;
    border-radius: var(--rounded-sm);
    margin: 32px 0;
}

.disclaimer p {
    font-size: 13px;
    color: #92400e;
    line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .fact-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container, .hero-inner, .nav-inner, .footer-inner, .article-wrap, .page-body { padding-left: 20px; padding-right: 20px; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--canvas);
        padding: 32px 20px;
        gap: 24px;
        z-index: 99;
    }

    .nav-links.open { display: flex; }
    .nav-links a { font-size: 20px; }
    .nav-toggle { display: flex; }

    .hero-band h1 { font-size: 28px; }
    .hero-band .hero-sub { font-size: 16px; }

    .cards-grid { grid-template-columns: 1fr; }
    .fact-cards { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }

    .cta-band-light { flex-direction: column; }
    .cta-band-light h2 { font-size: 24px; }

    .sig-coral, .sig-forest, .sig-dark, .cream-callout { padding: 32px 24px; }
    .sig-coral h2, .sig-forest h2, .sig-dark h2, .cream-callout h2 { font-size: 24px; }

    .cookie-banner { padding: 20px; flex-direction: column; align-items: flex-start; }

    .article-wrap h1, .page-body h1 { font-size: 28px; }
}
