*, *::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;
  --surface-dark-elevated: #1d1f25;
  --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;
  --signature-yellow: #f4d35e;
  --signature-mustard: #d9a441;
  --rounded-xs: 2px;
  --rounded-sm: 6px;
  --rounded-md: 10px;
  --rounded-lg: 12px;
  --rounded-pill: 9999px;
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-section: 96px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  height: 64px;
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-xxl);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-left: auto;
}
.nav-links a {
  color: var(--body);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.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-text {}
.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}
.hero-band h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--spacing-lg);
}
.hero-band p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  max-width: 520px;
  margin-bottom: var(--spacing-xl);
}
.hero-img {
  border-radius: var(--rounded-md);
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--rounded-md);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: var(--rounded-lg);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover, .btn-primary:focus { background: var(--primary-active); color: var(--on-primary); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: var(--rounded-lg);
  border: 1px solid var(--hairline);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--surface-soft); color: var(--ink); }

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

.btn-group { display: flex; gap: var(--spacing-md); flex-wrap: wrap; }

.section-articles {
  padding: var(--spacing-section) 0;
  background: var(--canvas);
}
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: var(--spacing-xl);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}
.article-card {
  background: var(--canvas);
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.15s;
}
.article-card:hover { box-shadow: 0 4px 16px rgba(24,29,38,0.08); }
.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-card-body {
  padding: var(--spacing-md);
}
.article-tag {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: var(--spacing-xs);
}
.article-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--spacing-xs);
}
.article-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--spacing-sm);
}

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

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

.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-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
}
.cream-callout p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: var(--spacing-xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.stat-card {
  background: var(--canvas);
  border-radius: var(--rounded-md);
  padding: var(--spacing-xl);
  border: 1px solid var(--hairline);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
}

.cta-band-light {
  background: var(--surface-strong);
  padding: var(--spacing-section) 0;
}
.cta-band-light .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xxl);
}
.cta-band-light h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  max-width: 600px;
}

.contact-form-section {
  padding: var(--spacing-section) 0;
  background: var(--canvas);
}
.contact-form-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--spacing-md);
}
.contact-form-section p {
  font-size: 14px;
  color: var(--body);
  margin-bottom: var(--spacing-xl);
  max-width: 560px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  max-width: 680px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-sm);
  padding: 12px 16px;
  height: 44px;
  outline: none;
  transition: border-color 0.15s;
}
.form-group textarea {
  height: 110px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #458fff;
}
.form-submit { grid-column: 1 / -1; }

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-section) 0 var(--spacing-xl);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-xxl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--spacing-xs);
}
.footer-tagline {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
}
.footer-contact {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-contact a { color: var(--muted); }
.footer-heading {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--spacing-md);
}
.site-footer ul { display: flex; flex-direction: column; gap: var(--spacing-xs); }
.site-footer ul a { font-size: 14px; color: var(--muted); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-xxl) 0;
  border-top: 1px solid var(--hairline);
}
.footer-bottom p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-bottom a { color: var(--muted); }
.footer-disclaimer {
  margin-top: var(--spacing-xs);
  font-size: 12px;
  color: var(--hairline);
  color: #9297a0;
}

.article-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-section) var(--spacing-xxl);
}
.article-page h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}
.article-page .article-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: var(--spacing-lg);
  font-weight: 400;
}
.article-page .article-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--spacing-xl);
  display: block;
}
.article-page .hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--rounded-md);
  margin-bottom: var(--spacing-xl);
}
.article-page h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin: var(--spacing-xl) 0 var(--spacing-md);
}
.article-page h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  margin: var(--spacing-lg) 0 var(--spacing-sm);
}
.article-page p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: var(--spacing-md);
}
.article-page ul {
  list-style: disc;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}
.article-page ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--spacing-xs);
}
.article-page .inline-img {
  width: 100%;
  border-radius: var(--rounded-md);
  margin: var(--spacing-xl) 0;
  height: 300px;
  object-fit: cover;
}
.article-page a { color: var(--link); }
.article-page blockquote {
  border-left: 3px solid var(--signature-coral);
  padding-left: var(--spacing-md);
  margin: var(--spacing-xl) 0;
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.related-articles {
  background: var(--surface-soft);
  padding: var(--spacing-section) 0;
  border-top: 1px solid var(--hairline);
}
.related-articles .section-title {
  margin-bottom: var(--spacing-xl);
}

.page-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-section) var(--spacing-xxl);
}
.page-inner h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: var(--spacing-xl);
}
.page-inner h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--spacing-xl) 0 var(--spacing-md);
}
.page-inner p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: var(--spacing-md);
}
.page-inner ul {
  list-style: disc;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}
.page-inner ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--spacing-xs);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-dark);
  color: var(--on-primary);
  padding: var(--spacing-lg) var(--spacing-xxl);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  max-width: 700px;
}
.cookie-banner p a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.cookie-buttons { display: flex; gap: var(--spacing-sm); 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;
  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.2);
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .signature-coral-card .container,
  .signature-forest-card .container,
  .cream-callout .container { grid-template-columns: 1fr; }
  .hero-band .container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --spacing-section: 64px; }
  .container { padding: 0 var(--spacing-md); }
  .nav-inner { padding: 0 var(--spacing-md); }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-xl) var(--spacing-lg);
    gap: var(--spacing-lg);
    border-top: 1px solid var(--hairline);
    overflow-y: auto;
    margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 var(--spacing-md); }
  .footer-bottom { padding: var(--spacing-md) var(--spacing-md) 0; }
  .cta-band-light .container { flex-direction: column; align-items: flex-start; }
  .hero-band h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .signature-coral-card h2,
  .signature-forest-card h2,
  .cream-callout h2 { font-size: 24px; }
  .article-page { padding: var(--spacing-xl) var(--spacing-md); }
  .article-page h1 { font-size: 28px; }
  .article-page .hero-image { height: 240px; }
  .page-inner { padding: var(--spacing-xl) var(--spacing-md); }
  .page-inner h1 { font-size: 28px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: var(--spacing-md); }
  .cta-band-light h2 { font-size: 24px; }
}
