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

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

:root {
  --primary: #181d26;
  --primary-active: #0d1218;
  --canvas: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #e0e2e6;
  --surface-dark: #181d26;
  --hairline: #dddddd;
  --ink: #181d26;
  --body: #333840;
  --muted: #41454d;
  --on-primary: #ffffff;
  --link: #1b61c9;
  --link-active: #1a3866;
  --signature-coral: #aa2d00;
  --signature-forest: #0a2e0e;
  --signature-cream: #f5e9d4;
  --signature-peach: #fcab79;
  --signature-mint: #a8d8c4;
  --rounded-xs: 2px;
  --rounded-sm: 6px;
  --rounded-md: 10px;
  --rounded-lg: 12px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-section: 96px;
  --max-width: 1280px;
}

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.25; color: var(--body); background: var(--canvas); }

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

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

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

/* TOP NAV */
.top-nav { position: sticky; top: 0; z-index: 100; height: 64px; background: var(--canvas); border-bottom: 1px solid var(--hairline); display: flex; align-items: center; }
.top-nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.3px; }
.nav-brand a { color: inherit; }
.nav-menu { display: flex; align-items: center; gap: var(--spacing-xl); }
.nav-menu a { font-size: 14px; font-weight: 400; color: var(--body); }
.nav-menu a:active { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: var(--spacing-md); }
.btn-primary { background: var(--primary); color: var(--on-primary); font-size: 16px; font-weight: 500; padding: 12px 24px; border-radius: var(--rounded-lg); border: none; cursor: pointer; display: inline-block; }
.btn-primary:active { background: var(--primary-active); }
.btn-secondary { background: var(--canvas); color: var(--ink); font-size: 16px; font-weight: 500; padding: 12px 24px; border-radius: var(--rounded-lg); border: 1px solid var(--hairline); cursor: pointer; display: inline-block; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* HERO */
.hero-band { padding: var(--spacing-section) 0; background: var(--canvas); }
.hero-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-xxl); align-items: center; }
.hero-content { }
.hero-tag { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.16px; text-transform: uppercase; margin-bottom: var(--spacing-md); }
.hero-content h1 { font-size: 40px; font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: var(--spacing-lg); }
.hero-content p { font-size: 14px; line-height: 1.6; color: var(--body); margin-bottom: var(--spacing-xl); max-width: 480px; }
.hero-buttons { display: flex; gap: var(--spacing-md); flex-wrap: wrap; }
.hero-image img { width: 100%; border-radius: var(--rounded-lg); aspect-ratio: 16/10; object-fit: cover; }

/* SIGNATURE CARDS */
.signature-coral { background: var(--signature-coral); color: var(--on-primary); padding: var(--spacing-section) 0; }
.signature-coral h2 { font-size: 32px; font-weight: 400; line-height: 1.2; color: var(--on-primary); margin-bottom: var(--spacing-lg); max-width: 600px; }
.signature-coral p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: var(--spacing-xl); max-width: 520px; }

.signature-forest { background: var(--signature-forest); color: var(--on-primary); padding: var(--spacing-section) 0; }
.signature-forest .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-xxl); align-items: center; }
.signature-forest h2 { font-size: 32px; font-weight: 400; line-height: 1.2; color: var(--on-primary); margin-bottom: var(--spacing-lg); }
.signature-forest p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: var(--spacing-xl); }
.signature-forest img { border-radius: var(--rounded-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* SECTION COMMON */
.section { padding: var(--spacing-section) 0; }
.section-tag { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.16px; text-transform: uppercase; margin-bottom: var(--spacing-md); }
.section h2 { font-size: 32px; font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: var(--spacing-lg); }
.section-intro { font-size: 14px; line-height: 1.6; color: var(--body); max-width: 640px; margin-bottom: var(--spacing-xl); }

/* CARD GRID */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-lg); }
.card { background: var(--canvas); border-radius: var(--rounded-md); border: 1px solid var(--hairline); padding: var(--spacing-md); }
.card-img { border-radius: var(--rounded-sm); overflow: hidden; margin-bottom: var(--spacing-md); aspect-ratio: 16/9; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-tag { font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.16px; margin-bottom: var(--spacing-xs); }
.card h3 { font-size: 18px; font-weight: 500; line-height: 1.4; color: var(--ink); margin-bottom: var(--spacing-xs); }
.card p { font-size: 14px; line-height: 1.5; color: var(--body); margin-bottom: var(--spacing-md); }
.card-meta { font-size: 13px; color: var(--muted); }
.card a { color: var(--ink); }
.card a:active { color: var(--link-active); }

/* CREAM CALLOUT */
.cream-callout { background: var(--signature-cream); padding: var(--spacing-section) 0; }
.cream-callout .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-xxl); align-items: center; }
.cream-callout h2 { font-size: 32px; font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: var(--spacing-lg); }
.cream-callout p { font-size: 14px; line-height: 1.6; color: var(--body); margin-bottom: var(--spacing-xl); }
.cream-callout img { border-radius: var(--rounded-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* STATS BAND */
.stats-band { background: var(--surface-soft); padding: var(--spacing-section) 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-lg); text-align: center; }
.stat-item strong { display: block; font-size: 40px; font-weight: 400; color: var(--ink); line-height: 1.1; margin-bottom: var(--spacing-xs); }
.stat-item span { font-size: 14px; color: var(--muted); }

/* CTA BAND */
.cta-band { background: var(--surface-strong); padding: var(--spacing-section) 0; }
.cta-band .container { text-align: center; }
.cta-band h2 { font-size: 32px; font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: var(--spacing-lg); }
.cta-band p { font-size: 14px; line-height: 1.6; color: var(--body); max-width: 520px; margin: 0 auto var(--spacing-xl); }

/* ARTICLE PAGE */
.article-hero { background: var(--surface-dark); color: var(--on-primary); padding: var(--spacing-section) 0; }
.article-hero h1 { font-size: 40px; font-weight: 400; line-height: 1.2; color: var(--on-primary); margin-bottom: var(--spacing-lg); max-width: 720px; }
.article-hero .article-meta { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: var(--spacing-md); }
.article-hero p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.8); max-width: 640px; }
.article-body { padding: var(--spacing-section) 0; }
.article-body .container { display: grid; grid-template-columns: 1fr 300px; gap: 64px; }
.article-content h2 { font-size: 24px; font-weight: 400; line-height: 1.35; color: var(--ink); margin: var(--spacing-xxl) 0 var(--spacing-lg); }
.article-content h3 { font-size: 20px; font-weight: 400; line-height: 1.5; color: var(--ink); margin: var(--spacing-xl) 0 var(--spacing-md); }
.article-content p { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: var(--spacing-lg); }
.article-content ul, .article-content ol { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: var(--spacing-lg); padding-left: var(--spacing-xl); }
.article-content li { margin-bottom: var(--spacing-xs); }
.article-content img { border-radius: var(--rounded-md); margin: var(--spacing-xl) 0; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-content a { color: var(--link); }
.article-sidebar { }
.sidebar-card { background: var(--surface-soft); border-radius: var(--rounded-md); padding: var(--spacing-lg); margin-bottom: var(--spacing-lg); border: 1px solid var(--hairline); }
.sidebar-card h4 { font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: var(--spacing-md); }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { padding: var(--spacing-xs) 0; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--body); }
.sidebar-card ul li a:active { color: var(--ink); }

/* PAGE CONTENT */
.page-hero { background: var(--surface-soft); padding: var(--spacing-xxl) 0; border-bottom: 1px solid var(--hairline); }
.page-hero h1 { font-size: 32px; font-weight: 400; color: var(--ink); margin-bottom: var(--spacing-md); }
.page-hero p { font-size: 14px; color: var(--muted); }
.page-content { padding: var(--spacing-section) 0; }
.page-content h2 { font-size: 24px; font-weight: 400; color: var(--ink); margin: var(--spacing-xl) 0 var(--spacing-md); }
.page-content h3 { font-size: 20px; font-weight: 400; color: var(--ink); margin: var(--spacing-lg) 0 var(--spacing-sm); }
.page-content p { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: var(--spacing-lg); }
.page-content ul { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: var(--spacing-lg); padding-left: var(--spacing-xl); }
.page-content li { margin-bottom: var(--spacing-xs); }

/* CONTACT FORM */
.contact-form-wrap { background: var(--surface-soft); border-radius: var(--rounded-lg); padding: var(--spacing-xxl); border: 1px solid var(--hairline); max-width: 560px; }
.contact-form-wrap h3 { font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: var(--spacing-xl); }
.form-group { margin-bottom: var(--spacing-lg); }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: var(--spacing-xs); }
.form-group input, .form-group textarea { width: 100%; background: var(--canvas); color: var(--ink); font-size: 14px; font-family: inherit; padding: 12px 16px; height: 44px; border-radius: var(--rounded-sm); border: 1px solid var(--hairline); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: #458fff; }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { background: var(--primary); color: var(--on-primary); font-size: 16px; font-weight: 500; padding: 12px 32px; border-radius: var(--rounded-lg); border: none; cursor: pointer; width: 100%; }
.form-submit:active { background: var(--primary-active); }

/* FOOTER */
.site-footer { background: var(--canvas); border-top: 1px solid var(--hairline); padding: var(--spacing-section) 0 var(--spacing-xl); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--spacing-xxl); margin-bottom: var(--spacing-section); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: var(--spacing-md); max-width: 280px; }
.footer-col h5 { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: var(--spacing-md); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: var(--spacing-xs); }
.footer-col ul li a { font-size: 14px; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--hairline); padding-top: var(--spacing-lg); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--spacing-md); }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-legal { display: flex; gap: var(--spacing-lg); }
.footer-legal a { font-size: 13px; color: var(--muted); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--primary); color: var(--on-primary); padding: var(--spacing-lg) var(--spacing-xxl); display: flex; align-items: center; justify-content: space-between; gap: var(--spacing-lg); flex-wrap: wrap; }
.cookie-banner p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.85); max-width: 720px; }
.cookie-banner p a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--spacing-sm); flex-shrink: 0; }
.btn-cookie-accept { background: var(--on-primary); color: var(--ink); font-size: 13.12px; font-weight: 600; padding: 12px 10px; border-radius: var(--rounded-xs); border: none; cursor: pointer; white-space: nowrap; }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,0.7); 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; white-space: nowrap; }
.cookie-banner.hidden { display: none; }

/* DISCLAIMER */
.disclaimer-bar { background: var(--surface-soft); border-bottom: 1px solid var(--hairline); padding: 10px 0; }
.disclaimer-bar .container { display: flex; align-items: center; gap: var(--spacing-sm); }
.disclaimer-bar p { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* BREADCRUMBS */
.breadcrumbs { padding: var(--spacing-md) 0; }
.breadcrumbs ol { list-style: none; display: flex; align-items: center; gap: var(--spacing-xs); flex-wrap: wrap; }
.breadcrumbs li { font-size: 13px; color: var(--muted); }
.breadcrumbs li + li::before { content: '/'; margin-right: var(--spacing-xs); color: var(--hairline); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs li:last-child { color: var(--body); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--spacing-xl); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .article-body .container { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 var(--spacing-md); }
  .top-nav .nav-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--canvas); flex-direction: column; align-items: flex-start; padding: var(--spacing-xl) var(--spacing-xl); gap: var(--spacing-lg); z-index: 99; overflow-y: auto; }
  .top-nav .nav-menu.open { display: flex; }
  .top-nav .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-band .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content h1 { font-size: 32px; }
  .card-grid { grid-template-columns: 1fr; }
  .signature-forest .container { grid-template-columns: 1fr; }
  .signature-forest img { display: none; }
  .cream-callout .container { grid-template-columns: 1fr; }
  .cream-callout img { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: var(--spacing-xl); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
