*, *::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;
  --on-primary: #ffffff;
  --link: #1b61c9;
  --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;

  --section: 96px;
  --xxl: 48px;
  --xl: 32px;
  --lg: 24px;
  --md: 16px;
  --sm: 12px;
  --xs: 8px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Inter Display', 'Inter', -apple-system, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  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:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); font-weight: 400; }
h1 { font-size: 40px; line-height: 1.2; }
h2 { font-size: 32px; line-height: 1.2; }
h3 { font-size: 24px; line-height: 1.35; letter-spacing: 0.12px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--xxl); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--xxl);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--lg);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span { color: var(--signature-coral); }

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--lg);
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--on-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: var(--rounded-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary:hover { background: #0d1218; text-decoration: none; }

.btn-secondary {
  display: inline-block;
  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);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s;
}

.btn-secondary:hover { border-color: var(--ink); text-decoration: none; }

.btn-secondary-on-dark {
  display: inline-block;
  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: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-legal {
  display: inline-block;
  background: var(--link);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: var(--rounded-xs);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.hero-band {
  padding: var(--section) 0;
  background: var(--canvas);
}

.hero-band .container { max-width: 760px; }

.hero-band h1 { margin-bottom: var(--lg); }

.hero-band p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--body-color);
  margin-bottom: var(--xl);
  max-width: 580px;
}

.hero-btns { display: flex; gap: var(--md); flex-wrap: wrap; }

.section-band {
  padding: var(--section) 0;
}

.section-band.soft { background: var(--surface-soft); }
.section-band.cream { background: var(--signature-cream); }
.section-band.dark { background: var(--surface-dark); color: var(--on-primary); }
.section-band.dark h2 { color: var(--on-primary); }
.section-band.dark h3 { color: var(--on-primary); }
.section-band.dark p { color: rgba(255,255,255,0.82); }

.section-header { margin-bottom: var(--xl); }
.section-header h2 { margin-bottom: var(--sm); }
.section-header p { font-size: 16px; color: var(--muted); max-width: 560px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg);
}

.card {
  background: var(--canvas);
  border-radius: var(--rounded-md);
  padding: var(--md);
  border: 1px solid var(--hairline);
}

.card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: var(--md);
}

.card-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--xs);
}

.card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--xs);
}

.card p { font-size: 14px; color: var(--body-color); margin-bottom: var(--md); }

.card-meta { font-size: 13px; color: var(--muted); }

.signature-card {
  border-radius: var(--rounded-lg);
  padding: var(--xxl);
  margin: 0;
}

.signature-card.coral { background: var(--signature-coral); color: var(--on-primary); }
.signature-card.coral h2 { color: var(--on-primary); }
.signature-card.coral p { color: rgba(255,255,255,0.85); }

.signature-card.forest { background: var(--signature-forest); color: var(--on-primary); }
.signature-card.forest h2 { color: var(--on-primary); }
.signature-card.forest p { color: rgba(255,255,255,0.85); }

.signature-card h2 { font-size: 32px; margin-bottom: var(--md); }
.signature-card p { font-size: 16px; margin-bottom: var(--xl); max-width: 560px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--xl);
  align-items: center;
}

.cta-band {
  padding: var(--section) 0;
  background: var(--surface-strong);
}

.cta-band .container { text-align: center; }
.cta-band h2 { font-size: 32px; margin-bottom: var(--md); }
.cta-band p { font-size: 16px; color: var(--muted); margin-bottom: var(--xl); max-width: 480px; margin-left: auto; margin-right: auto; }

.contact-form {
  background: var(--surface-soft);
  border-radius: var(--rounded-lg);
  padding: var(--xxl);
  max-width: 560px;
  margin: 0 auto;
}

.contact-form h2 { font-size: 24px; margin-bottom: var(--lg); }

.form-row { margin-bottom: var(--md); }
.form-row label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: var(--xs); }

.form-row input {
  width: 100%;
  height: 44px;
  background: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  font-family: var(--font-sans);
  padding: 12px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-sm);
  outline: none;
  transition: border-color 0.15s;
}

.form-row input:focus { border-color: #458fff; }
.form-row button { margin-top: var(--sm); }

.article-hero {
  padding: var(--section) 0 0;
  background: var(--canvas);
}

.article-hero .container { max-width: 760px; }
.article-hero .cat-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sm);
}

.article-hero h1 { margin-bottom: var(--md); }
.article-hero .article-meta { font-size: 13px; color: var(--muted); margin-bottom: var(--xl); }

.article-hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--rounded-md);
  margin-top: var(--xl);
}

.article-body {
  padding: var(--xl) 0 var(--section);
}

.article-body .container { max-width: 760px; }

.article-body h2 { font-size: 28px; margin: var(--xl) 0 var(--md); }
.article-body h3 { font-size: 20px; margin: var(--lg) 0 var(--sm); }
.article-body p { margin-bottom: var(--md); font-size: 15px; line-height: 1.7; }
.article-body ul, .article-body ol { padding-left: var(--lg); margin-bottom: var(--md); }
.article-body li { margin-bottom: var(--xs); font-size: 15px; line-height: 1.7; }
.article-body a { color: var(--link); }
.article-body a:hover { text-decoration: underline; }

.article-body .callout-cream {
  background: var(--signature-cream);
  border-radius: var(--rounded-md);
  padding: var(--lg);
  margin: var(--xl) 0;
}

.article-body .callout-cream h3 { margin-top: 0; }

.article-img-block {
  margin: var(--xl) 0;
  border-radius: var(--rounded-md);
  overflow: hidden;
}

.article-img-block img { width: 100%; object-fit: cover; }
.article-img-block figcaption { font-size: 12px; color: var(--muted); padding: var(--xs) 0; }

.article-links {
  margin-top: var(--xl);
  padding-top: var(--lg);
  border-top: 1px solid var(--hairline);
}

.article-links h3 { font-size: 18px; margin-bottom: var(--md); }
.article-links ul { list-style: none; padding: 0; }
.article-links li { margin-bottom: var(--xs); }
.article-links a { color: var(--link); font-size: 14px; }

.page-hero {
  padding: var(--section) 0;
  background: var(--canvas);
}

.page-hero .container { max-width: 760px; }
.page-hero h1 { margin-bottom: var(--md); }
.page-hero .updated { font-size: 13px; color: var(--muted); }

.page-body {
  padding: 0 0 var(--section);
}

.page-body .container { max-width: 760px; }
.page-body h2 { font-size: 24px; margin: var(--xl) 0 var(--md); }
.page-body h3 { font-size: 18px; margin: var(--lg) 0 var(--sm); }
.page-body p { margin-bottom: var(--md); font-size: 15px; line-height: 1.7; }
.page-body ul { padding-left: var(--lg); margin-bottom: var(--md); }
.page-body li { margin-bottom: var(--xs); font-size: 15px; }
.page-body a { color: var(--link); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--xl);
  margin-top: var(--xl);
}

.team-card {
  background: var(--surface-soft);
  border-radius: var(--rounded-md);
  padding: var(--xl);
}

.team-card h3 { font-size: 18px; font-weight: 500; margin-bottom: var(--xs); }
.team-card .role { font-size: 13px; color: var(--muted); margin-bottom: var(--sm); }
.team-card p { font-size: 14px; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface-dark);
  color: var(--on-primary);
  padding: var(--lg) var(--xxl);
  display: flex;
  align-items: center;
  gap: var(--lg);
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.82); flex: 1; min-width: 240px; }
.cookie-banner p a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.cookie-btns { display: flex; gap: var(--sm); }

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--section) 0 0;
}

.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--xxl); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--xl);
  margin-bottom: var(--xxl);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sm);
}

.footer-brand span { color: var(--signature-coral); }

.footer-tagline { font-size: 14px; color: var(--muted); margin-bottom: var(--md); }

.footer-contact { font-size: 13px; color: var(--muted); line-height: 1.8; }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--ink); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--md);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--xs); }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: var(--ink); }

.footer-legal {
  border-top: 1px solid var(--hairline);
  padding: var(--lg) 0;
}

.footer-legal p { font-size: 13px; color: var(--muted); margin-bottom: var(--xs); }

.footer-disclaimer { font-size: 12px; color: var(--muted); max-width: 760px; line-height: 1.6; }

@media (max-width: 1023px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  .container { padding: 0 var(--md); }
  .nav-inner { padding: 0 var(--md); }
  .nav-links { display: none; position: fixed; inset: 64px 0 0 0; background: var(--canvas); flex-direction: column; padding: var(--xl); gap: var(--lg); overflow-y: auto; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 var(--md); }
  .cookie-banner { padding: var(--md); }
  .signature-card { padding: var(--xl); }
  .contact-form { padding: var(--xl); }
  .hero-btns { flex-direction: column; }
  .hero-band p { font-size: 16px; }
  .section-band { padding: var(--xxl) 0; }
  .hero-band { padding: var(--xxl) 0; }
  .article-hero { padding: var(--xxl) 0 0; }
  .cta-band { padding: var(--xxl) 0; }
}
