*, *::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;
  --signature-coral: #aa2d00;
  --signature-forest: #0a2e0e;
  --signature-cream: #f5e9d4;
  --rounded-xs: 2px;
  --rounded-sm: 6px;
  --rounded-md: 10px;
  --rounded-lg: 12px;
  --section: 96px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", 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; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  display: flex;
  align-items: center;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.nav-logo span { color: var(--signature-coral); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--body);
  font-size: 14px;
  font-weight: 400;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.2s;
}

/* HERO */
.hero {
  padding: var(--section) 0;
  background: var(--canvas);
}
.hero h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  max-width: 680px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 16px;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: var(--rounded-lg);
  border: none;
  cursor: pointer;
  line-height: 1.4;
}
.btn-primary:active { background: var(--primary-active); }
.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;
  line-height: 1.4;
  margin-left: 12px;
}

/* SECTIONS */
.section { padding: var(--section) 0; }
.section-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: 0.12px;
  margin-bottom: 40px;
}
.section-title-sm {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ARTICLE CARDS GRID */
.articles-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);
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.article-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--rounded-sm);
  margin-bottom: 16px;
}
.article-card-tag {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.article-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
}
.article-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}
.article-card a.read-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--link);
  margin-top: auto;
}

/* SIGNATURE BANDS */
.band-coral {
  background: var(--signature-coral);
  border-radius: var(--rounded-lg);
  padding: 48px;
  margin: 0 0 24px;
}
.band-coral h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--on-primary);
  margin-bottom: 16px;
}
.band-coral p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.band-forest {
  background: var(--signature-forest);
  border-radius: var(--rounded-lg);
  padding: 48px;
}
.band-forest h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--on-primary);
  margin-bottom: 16px;
}
.band-forest p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.band-dark {
  background: var(--surface-dark);
  border-radius: var(--rounded-lg);
  padding: 48px;
}
.band-dark h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--on-primary);
  margin-bottom: 16px;
}
.band-dark p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.btn-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;
}
.bands-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* 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);
  line-height: 1.5;
  max-width: 600px;
}

/* HERO IMAGE */
.hero-image-wrap {
  margin-top: 48px;
  border-radius: var(--rounded-lg);
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* CTA BAND LIGHT */
.cta-band-light {
  background: var(--surface-strong);
  border-radius: var(--rounded-lg);
  padding: 48px;
  text-align: center;
}
.cta-band-light h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
}

/* CONTACT FORM */
.contact-form {
  max-width: 560px;
}
.form-group {
  margin-bottom: 20px;
}
.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-size: 14px;
  font-family: inherit;
  padding: 12px 16px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-sm);
  outline: none;
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #458fff;
}

/* ARTICLE PAGE */
.article-hero {
  padding: var(--section) 0 48px;
}
.article-hero h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  max-width: 760px;
  margin-bottom: 20px;
}
.article-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: var(--section);
}
.article-body h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: 40px 0 16px;
  line-height: 1.35;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin: 28px 0 12px;
}
.article-body p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.article-body img {
  border-radius: var(--rounded-md);
  margin: 28px 0;
  width: 100%;
}
.article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 8px;
}
.article-body a {
  color: var(--link);
}

/* RELATED ARTICLES */
.related-articles { padding: 48px 0 var(--section); border-top: 1px solid var(--hairline); }
.related-articles h2 { font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 32px; }

/* BREADCRUMB */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 6px; }

/* FOOTER */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }

/* PAGE CONTENT */
.page-content {
  max-width: 760px;
  padding: var(--section) 0;
}
.page-content h1 {
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
}
.page-content h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: 36px 0 12px;
}
.page-content p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 8px;
}
.page-updated {
  font-size: 13px;
  color: var(--muted);
  margin-top: 40px;
}

/* 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;
  z-index: 999;
  display: none;
}
#cookie-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 640px;
}
#cookie-banner p a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-legal {
  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-legal-reject {
  background: transparent;
  color: rgba(255,255,255,0.75);
  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;
}

/* DISCLAIMER */
.disclaimer {
  background: var(--surface-soft);
  border-left: 3px solid var(--hairline);
  padding: 16px 20px;
  margin: 32px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  border-radius: 0 var(--rounded-sm) var(--rounded-sm) 0;
}

/* ABOUT STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-item {
  background: var(--surface-soft);
  border-radius: var(--rounded-md);
  padding: 24px;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.stat-item .stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bands-two { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  :root { --section: 64px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); padding: 20px; border-bottom: 1px solid var(--hairline); gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 28px; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: 26px; }
  .section-title-sm { font-size: 24px; }
  .band-coral, .band-forest, .band-dark { padding: 32px 24px; }
  .band-coral h2, .band-forest h2, .band-dark h2 { font-size: 24px; }
  .cream-callout { padding: 32px 24px; }
  .cream-callout h2 { font-size: 24px; }
  .cta-band-light { padding: 32px 24px; }
  .cta-band-light h2 { font-size: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  #cookie-banner { flex-direction: column; padding: 20px; }
  .stats-row { grid-template-columns: 1fr; }
}
