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

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

:root {
    --c-primary:      #181d26;
    --c-primary-act:  #0d1218;
    --c-canvas:       #ffffff;
    --c-surface-soft: #f8fafc;
    --c-surface-strong: #e0e2e6;
    --c-surface-dark: #181d26;
    --c-ink:          #181d26;
    --c-body:         #333840;
    --c-muted:        #41454d;
    --c-hairline:     #dddddd;
    --c-on-primary:   #ffffff;
    --c-link:         #1b61c9;
    --c-coral:        #aa2d00;
    --c-forest:       #0a2e0e;
    --c-cream:        #f5e9d4;
    --c-peach:        #fcab79;
    --c-mint:         #a8d8c4;
    --c-yellow:       #f4d35e;
    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  12px;
    --sp-xs: 8px;
    --sp-sm: 12px;
    --sp-md: 16px;
    --sp-lg: 24px;
    --sp-xl: 32px;
    --sp-xxl: 48px;
    --sp-section: 96px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--c-body);
    background: var(--c-canvas);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--sp-xxl);
}

/* ── TOP NAV ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 64px;
    background: var(--c-canvas);
    border-bottom: 1px solid var(--c-hairline);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.site-logo {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--c-ink);
    letter-spacing: -0.3px;
    text-decoration: none;
}
.site-logo span { color: var(--c-coral); }

.main-nav ul { display: flex; gap: var(--sp-xl); align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--c-body);
    text-decoration: none;
    transition: color .15s;
}
.main-nav ul li a:hover { color: var(--c-ink); }

.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--c-canvas);
    border: 1px solid var(--c-hairline);
    border-radius: var(--r-md);
    padding: var(--sp-sm) 0;
    min-width: 260px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: flex; }
.dropdown li a {
    display: block;
    padding: var(--sp-xs) var(--sp-lg);
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

/* ── HERO BAND ── */
.hero-band {
    padding: var(--sp-section) 0;
    background: var(--c-canvas);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xxl);
    align-items: center;
}
.hero-text { max-width: 560px; }
.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: var(--sp-md);
}
.hero-text h1 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--c-ink);
    margin-bottom: var(--sp-lg);
}
.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-body);
    margin-bottom: var(--sp-xl);
    max-width: 480px;
}
.btn-primary {
    display: inline-block;
    padding: 16px 24px;
    background: var(--c-primary);
    color: var(--c-on-primary);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: background .15s;
}
.btn-primary:hover { background: var(--c-primary-act); text-decoration: none; }

.hero-image {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── SECTION COMMON ── */
.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: var(--sp-md);
}
.section-title {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--c-ink);
    margin-bottom: var(--sp-lg);
}
.section-sub {
    font-size: 16px;
    color: var(--c-body);
    max-width: 600px;
    margin-bottom: var(--sp-xl);
}

/* ── ARTICLE CARDS SECTION ── */
.articles-section {
    padding: var(--sp-section) 0;
    background: var(--c-canvas);
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}
.article-card {
    background: var(--c-canvas);
    border: 1px solid var(--c-hairline);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: box-shadow .2s;
}
.article-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: var(--sp-md); }
.card-category {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: var(--sp-xs);
}
.card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--c-ink);
    margin-bottom: var(--sp-xs);
}
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--c-coral); text-decoration: none; }
.card-excerpt {
    font-size: 14px;
    color: var(--c-body);
    margin-bottom: var(--sp-sm);
    line-height: 1.5;
}
.card-meta {
    font-size: 13px;
    color: var(--c-muted);
}

/* ── SIGNATURE CORAL CARD ── */
.sig-coral {
    background: var(--c-coral);
    padding: var(--sp-section) 0;
}
.sig-coral-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xxl);
    align-items: center;
}
.sig-coral h2 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--c-on-primary);
    margin-bottom: var(--sp-lg);
}
.sig-coral p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin-bottom: var(--sp-xl);
    line-height: 1.6;
}
.btn-secondary-on-dark {
    display: inline-block;
    padding: 16px 24px;
    background: var(--c-canvas);
    color: var(--c-ink);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: opacity .15s;
}
.btn-secondary-on-dark:hover { opacity: .9; text-decoration: none; }
.sig-coral-image {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.sig-coral-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── CREAM CALLOUT ── */
.cream-band {
    background: var(--c-cream);
    padding: var(--sp-section) 0;
}
.cream-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}
.cream-card {
    background: var(--c-canvas);
    border-radius: var(--r-md);
    padding: var(--sp-lg);
}
.cream-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--c-ink);
    margin-bottom: var(--sp-sm);
    line-height: 1.35;
}
.cream-card p {
    font-size: 14px;
    color: var(--c-body);
    line-height: 1.6;
}

/* ── DARK CTA BAND ── */
.dark-band {
    background: var(--c-surface-dark);
    padding: var(--sp-section) 0;
}
.dark-band-inner { max-width: 720px; }
.dark-band h2 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--c-on-primary);
    margin-bottom: var(--sp-lg);
    line-height: 1.2;
}
.dark-band p {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    margin-bottom: var(--sp-xl);
    line-height: 1.6;
}

/* ── CONTACT FORM ── */
.contact-section {
    padding: var(--sp-section) 0;
    background: var(--c-canvas);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xxl);
    align-items: start;
}
.contact-info h2 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--c-ink);
    margin-bottom: var(--sp-lg);
}
.contact-info p { font-size: 15px; color: var(--c-body); margin-bottom: var(--sp-sm); line-height: 1.6; }
.contact-info a { color: var(--c-link); }
.contact-form { display: flex; flex-direction: column; gap: var(--sp-md); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--c-ink); }
.form-group input,
.form-group textarea {
    background: var(--c-canvas);
    border: 1px solid var(--c-hairline);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    height: 44px;
    font-size: 14px;
    color: var(--c-ink);
    font-family: inherit;
    transition: border-color .15s;
}
.form-group textarea { height: auto; min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #458fff;
}
.btn-submit {
    align-self: flex-start;
    padding: 16px 24px;
    background: var(--c-primary);
    color: var(--c-on-primary);
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: background .15s;
    font-family: inherit;
}
.btn-submit:hover { background: var(--c-primary-act); }

/* ── CTA LIGHT BAND ── */
.cta-band-light {
    background: var(--c-surface-strong);
    padding: var(--sp-xxl) 0;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-xl);
}
.cta-band-light h2 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--c-ink);
}

/* ── ARTICLE PAGE ── */
.article-hero {
    padding: var(--sp-section) 0 var(--sp-xxl);
    background: var(--c-canvas);
}
.article-breadcrumb {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: var(--sp-md);
}
.article-breadcrumb a { color: var(--c-muted); }
.article-breadcrumb a:hover { color: var(--c-ink); }
.article-hero h1 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--c-ink);
    max-width: 800px;
    margin-bottom: var(--sp-lg);
}
.article-meta {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: var(--sp-xl);
}
.article-cover {
    border-radius: var(--r-lg);
    overflow: hidden;
    max-height: 480px;
}
.article-cover img { width: 100%; object-fit: cover; }

.article-body {
    padding: var(--sp-xxl) 0 var(--sp-section);
    background: var(--c-canvas);
}
.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--sp-xxl);
    align-items: start;
}
.article-content h2 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--c-ink);
    margin: var(--sp-xl) 0 var(--sp-md);
}
.article-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--c-ink);
    margin: var(--sp-lg) 0 var(--sp-sm);
}
.article-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--c-body);
    margin-bottom: var(--sp-md);
}
.article-content ul {
    list-style: disc;
    padding-left: var(--sp-xl);
    margin-bottom: var(--sp-md);
}
.article-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-body);
    margin-bottom: 4px;
}
.article-content a { color: var(--c-link); }
.article-sidebar { position: sticky; top: 80px; }
.sidebar-widget {
    background: var(--c-surface-soft);
    border-radius: var(--r-md);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}
.sidebar-widget h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-ink);
    margin-bottom: var(--sp-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sidebar-widget ul li { margin-bottom: 8px; }
.sidebar-widget ul li a { font-size: 14px; color: var(--c-link); }

/* ── INTERNAL PAGE ── */
.page-hero {
    padding: var(--sp-section) 0 var(--sp-xxl);
    background: var(--c-canvas);
}
.page-hero h1 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--c-ink);
    margin-bottom: var(--sp-md);
}
.page-hero p {
    font-size: 16px;
    color: var(--c-body);
    max-width: 600px;
}
.page-body {
    padding: var(--sp-xxl) 0 var(--sp-section);
}
.page-body h2 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--c-ink);
    margin: var(--sp-xl) 0 var(--sp-md);
}
.page-body h3 { font-size: 18px; font-weight: 500; color: var(--c-ink); margin: var(--sp-lg) 0 var(--sp-sm); }
.page-body p { font-size: 16px; line-height: 1.75; color: var(--c-body); margin-bottom: var(--sp-md); }
.page-body ul { list-style: disc; padding-left: var(--sp-xl); margin-bottom: var(--sp-md); }
.page-body ul li { font-size: 16px; line-height: 1.7; color: var(--c-body); margin-bottom: 4px; }
.page-body a { color: var(--c-link); }
.page-updated { font-size: 13px; color: var(--c-muted); margin-bottom: var(--sp-xl); }

/* ── FOREST BAND ── */
.sig-forest {
    background: var(--c-forest);
    padding: var(--sp-xxl) 0;
}
.sig-forest-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-xl);
}
.sig-forest p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,.9);
    max-width: 640px;
    line-height: 1.5;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--c-canvas);
    border-top: 1px solid var(--c-hairline);
    padding-top: var(--sp-section);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-xxl);
    padding-bottom: var(--sp-xxl);
}
.footer-brand p {
    font-size: 14px;
    color: var(--c-muted);
    margin-top: var(--sp-md);
    line-height: 1.6;
    max-width: 280px;
}
.footer-address {
    font-style: normal;
    font-size: 13px !important;
    margin-top: var(--sp-md) !important;
    line-height: 1.8 !important;
}
.footer-address a { color: var(--c-muted); }
.footer-address a:hover { color: var(--c-ink); }
.footer-col h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-ink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--sp-md);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: var(--c-muted); }
.footer-col ul li a:hover { color: var(--c-ink); text-decoration: none; }
.footer-bottom {
    border-top: 1px solid var(--c-hairline);
    padding: var(--sp-lg) 0;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 4px;
}
.footer-bottom a { color: var(--c-muted); }

/* ── COOKIE BANNER ── */
#cookie-banner {
    position: fixed;
    bottom: var(--sp-lg);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 900px;
    background: var(--c-surface-dark);
    color: var(--c-on-primary);
    border-radius: var(--r-lg);
    padding: var(--sp-lg) var(--sp-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-xl);
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
#cookie-banner p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.5; }
#cookie-banner a { color: #93b4e8; }
.cookie-actions { display: flex; gap: var(--sp-sm); flex-shrink: 0; }
.btn-cookie {
    padding: 12px 10px;
    font-size: 13.12px;
    font-weight: 600;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .15s;
}
.btn-cookie-accept { background: var(--c-link); color: #fff; }
.btn-cookie-reject { background: var(--c-surface-strong); color: var(--c-ink); }
.btn-cookie:hover { opacity: .88; }

/* ── DISCLAIMER ── */
.disclaimer-bar {
    background: var(--c-surface-soft);
    border-bottom: 1px solid var(--c-hairline);
    padding: 8px 0;
    font-size: 12px;
    color: var(--c-muted);
    text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner,
    .sig-coral-inner,
    .contact-grid { grid-template-columns: 1fr; }
    .hero-image,
    .sig-coral-image { max-width: 560px; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .cream-inner { grid-template-columns: repeat(2, 1fr); }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .sig-forest-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .container { padding: 0 var(--sp-md); }
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--c-canvas);
        padding: var(--sp-xl) var(--sp-lg);
        overflow-y: auto;
        z-index: 99;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--c-hairline); font-size: 16px; }
    .has-dropdown .dropdown { display: none !important; position: static; border: none; box-shadow: none; padding-left: var(--sp-md); }
    .hero-text h1 { font-size: 32px; }
    .section-title { font-size: 24px; }
    .sig-coral h2 { font-size: 24px; }
    .cards-grid { grid-template-columns: 1fr; }
    .cream-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .article-hero h1 { font-size: 28px; }
    #cookie-banner { flex-direction: column; align-items: flex-start; }
}
