:root {
  --primary: #0a0a0a;
  --primary-active: #1f1f1f;
  --primary-disabled: #e5e5e5;
  --ink: #0a0a0a;
  --body: #3a3a3a;
  --body-strong: #1a1a1a;
  --muted: #6a6a6a;
  --muted-soft: #9a9a9a;
  --hairline: #e5e5e5;
  --hairline-soft: #f0f0f0;
  --canvas: #fffaf0;
  --surface-soft: #faf5e8;
  --surface-card: #f5f0e0;
  --surface-strong: #ebe6d6;
  --surface-dark: #0a1a1a;
  --on-primary: #ffffff;
  --on-dark: #ffffff;
  --on-dark-soft: #a0a0a0;
  --brand-pink: #ff4d8b;
  --brand-teal: #1a3a3a;
  --brand-lavender: #b8a4ed;
  --brand-peach: #ffb084;
  --brand-ochre: #e8b94a;
  --brand-mint: #a4d4c5;
  --brand-coral: #ff6b5a;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;
  --sp-xxs: 4px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-xxl: 48px;
  --sp-section: 96px;
  --max-w: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--canvas);
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--brand-teal);
  color: var(--on-dark);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.logo-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hero-band {
  padding: var(--sp-section) 0;
  background: var(--canvas);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--sp-xxl);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--surface-card);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: var(--sp-xxs) var(--sp-sm);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-lg);
}

.hero-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--body);
  max-width: 520px;
  margin-bottom: var(--sp-xl);
}

.hero-meta {
  font-size: 13px;
  color: var(--muted-soft);
}

.hero-illustration-card {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-illustration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: var(--sp-section) 0;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}

.section-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.section-sub {
  font-size: 16px;
  color: var(--body);
  max-width: 600px;
  margin-bottom: var(--sp-xxl);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.feature-card {
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
}

.feature-card-pink  { background: var(--brand-pink);    color: var(--on-primary); }
.feature-card-teal  { background: var(--brand-teal);    color: var(--on-dark); }
.feature-card-lavender { background: var(--brand-lavender); color: var(--ink); }
.feature-card-peach { background: var(--brand-peach);   color: var(--ink); }
.feature-card-ochre { background: var(--brand-ochre);   color: var(--ink); }
.feature-card-cream { background: var(--surface-card);  color: var(--ink); }

.feature-card-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: var(--sp-md);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--sp-sm);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.article-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}

.article-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.article-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-soft);
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-body {
  padding: var(--sp-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-tag {
  display: inline-block;
  background: var(--surface-card);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: var(--sp-xxs) var(--sp-sm);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-sm);
}

.article-card-body h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.article-card-body p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  flex: 1;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--muted-soft);
}

.article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.contact-band {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 80px var(--sp-xl);
  margin: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: start;
}

.contact-band h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.contact-band p {
  font-size: 16px;
  color: var(--body);
  margin-bottom: var(--sp-lg);
}

.contact-info p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--sp-xs);
}

.contact-info a { color: var(--ink); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--body-strong);
}

.form-group input,
.form-group textarea {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px 16px;
  height: 44px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}

.form-group textarea {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink);
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  border: none;
  border-radius: var(--r-md);
  padding: 12px 20px;
  height: 44px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--primary-active); text-decoration: none; }

.btn-secondary {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px 20px;
  height: 44px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.15s;
}

.btn-secondary:hover { border-color: var(--ink); text-decoration: none; }

.footer {
  background: var(--surface-soft);
  padding: 80px 0 0;
  margin-top: var(--sp-section);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl) 80px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xxl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
  max-width: 300px;
}

.footer-contact {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--ink); }

.footer-company {
  font-size: 12px;
  color: var(--muted-soft);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.footer-col ul a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: var(--sp-xl) var(--sp-xl);
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted-soft);
}

.footer-disclaimer {
  margin-top: var(--sp-xs);
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-dark);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-xl);
  width: calc(100% - 2 * var(--sp-xl));
  max-width: 640px;
  z-index: 200;
  display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cookie-banner.active { display: block; }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 14px;
  color: var(--on-dark-soft);
  flex: 1;
}

.cookie-inner a { color: var(--on-dark); }

.cookie-buttons {
  display: flex;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

.page-hero {
  padding: var(--sp-section) 0 var(--sp-xxl);
  background: var(--canvas);
}

.page-hero h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.page-hero .lead {
  font-size: 18px;
  color: var(--body);
  max-width: 640px;
  line-height: 1.6;
}

.article-hero-img {
  width: 100%;
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-xxl);
  overflow: hidden;
  aspect-ratio: 21/9;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-xxl);
  align-items: start;
}

.article-content h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: var(--sp-xxl) 0 var(--sp-md);
}

.article-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin: var(--sp-xl) 0 var(--sp-sm);
}

.article-content p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.article-content ul,
.article-content ol {
  margin: 0 0 var(--sp-md) var(--sp-xl);
}

.article-content li {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--sp-xs);
}

.article-content a {
  color: var(--ink);
  text-decoration: underline;
}

.article-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--surface-card);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.sidebar-card h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}

.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.sidebar-card ul a {
  font-size: 14px;
  color: var(--body-strong);
  text-decoration: none;
  line-height: 1.5;
}

.sidebar-card ul a:hover { text-decoration: underline; }

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--muted-soft);
}

.stat-band {
  background: var(--surface-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-xxl) var(--sp-xl);
  margin: var(--sp-section) var(--sp-xl);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.text-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--sp-section) var(--sp-xl);
}

.text-page h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}

.text-page h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: var(--sp-xxl) 0 var(--sp-md);
}

.text-page p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.text-page ul {
  margin: 0 0 var(--sp-md) var(--sp-xl);
}

.text-page li {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--sp-xs);
}

.text-page .updated {
  font-size: 13px;
  color: var(--muted-soft);
  margin-bottom: var(--sp-xxl);
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted-soft);
  margin-bottom: var(--sp-xl);
  display: flex;
  gap: var(--sp-xs);
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); text-decoration: none; }
.breadcrumb span { color: var(--muted-soft); }

@media (max-width: 1024px) {
  .hero-title { font-size: 56px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --sp-section: 64px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    padding: var(--sp-md) var(--sp-xl);
    gap: var(--sp-md);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .top-nav { position: relative; }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 40px; letter-spacing: -1.5px; }
  .hero-illustration-card { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-band {
    grid-template-columns: 1fr;
    margin: 0 var(--sp-md);
    padding: var(--sp-xxl) var(--sp-lg);
  }
  .contact-band h2 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stat-band { margin: var(--sp-section) var(--sp-md); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 32px; }
  .page-hero h1 { font-size: 40px; }
  .text-page h1 { font-size: 40px; }
  .article-hero-img { aspect-ratio: 16/9; }
  .container { padding: 0 var(--sp-md); }
}
