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

:root {
  --canvas: #f5f1ec;
  --surface-1: #ffffff;
  --surface-2: #ede9e2;
  --ink: #111111;
  --ink-muted: #626260;
  --ink-subtle: #7b7b78;
  --hairline: #d3cec6;
  --hairline-soft: #e5e1da;
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-xxl: 24px;
  --font: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --max-width: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 56px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.2s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: 20px 24px;
  z-index: 99;
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
}

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

.hero {
  padding: 80px 24px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 20px;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.10;
  letter-spacing: -1.4px;
  color: var(--ink);
  max-width: 680px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 520px;
}

.hero-img-wrap {
  margin-top: 48px;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  border: 1px solid var(--hairline);
  max-height: 480px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/7;
}

.section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 560px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}

.article-card:hover { border-color: var(--ink-muted); }

.article-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.article-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.article-card-cat {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.article-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.30;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin-bottom: 12px;
}

.article-card-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-muted);
  flex: 1;
}

.article-card-meta {
  font-size: 12px;
  color: var(--ink-subtle);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-soft);
}

.info-strip {
  background: var(--surface-1);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.info-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.info-item-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.info-item-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin-bottom: 12px;
}

.info-item-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.page-header {
  padding: 64px 24px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--hairline);
}

.page-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.page-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-lead {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 520px;
}

.page-meta {
  font-size: 13px;
  color: var(--ink-subtle);
  margin-top: 20px;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.page-content h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: 48px 0 16px;
}

.page-content h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.30;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin: 32px 0 12px;
}

.page-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 20px;
}

.page-content ul, .page-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
}

.page-content li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 8px;
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}

.page-content a:hover { color: var(--ink-muted); }

.article-header {
  padding: 64px 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.article-header-inner {
  max-width: 720px;
}

.article-breadcrumb {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
}

.article-breadcrumb a:hover { color: var(--ink); }

.article-breadcrumb-sep { color: var(--hairline); }

.article-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.article-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-bottom: 18px;
}

.article-lead {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.50;
  letter-spacing: -0.1px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.article-meta {
  font-size: 13px;
  color: var(--ink-subtle);
  padding-top: 20px;
  border-top: 1px solid var(--hairline-soft);
}

.article-hero-img {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 0 24px;
}

.article-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--rounded-xl);
  border: 1px solid var(--hairline);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.article-body h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: 48px 0 16px;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.30;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin: 32px 0 12px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  padding-left: 22px;
  margin-bottom: 20px;
}

.article-body li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 8px;
}

.article-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}

.info-box {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 24px 28px;
  margin: 32px 0;
}

.info-box-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.info-box h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin: 0 0 12px;
}

.info-box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.info-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.info-box li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.related-articles {
  border-top: 1px solid var(--hairline);
  padding: 40px 0 0;
  margin-top: 40px;
}

.related-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.related-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-link::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hairline);
  flex-shrink: 0;
}

.related-link:hover { color: var(--ink-muted); }

.contact-section {
  background: var(--surface-1);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 80px 24px;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.contact-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-sub {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-md);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  min-height: 44px;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink-muted);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.btn-submit {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: var(--ink);
  border: none;
  border-radius: var(--rounded-md);
  padding: 10px 22px;
  cursor: pointer;
  min-height: 42px;
  transition: opacity 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit:hover { opacity: 0.78; }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-notice {
  display: none;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-md);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 16px;
}

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 64px 24px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--ink-subtle);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 12px;
  color: var(--ink-subtle);
}

.footer-disclaimer {
  max-width: var(--max-width);
  margin: 16px auto 0;
  font-size: 11px;
  color: var(--ink-subtle);
  line-height: 1.5;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
}

#cookie-banner p {
  font-size: 13px;
  color: #d5d5d5;
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}

#cookie-banner a { color: #d5d5d5; }

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-accept {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  background: #ffffff;
  color: var(--ink);
  border: none;
  border-radius: var(--rounded-md);
  padding: 8px 16px;
  cursor: pointer;
  min-height: 38px;
}

.cookie-reject {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  background: transparent;
  color: #b0b0b0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--rounded-md);
  padding: 8px 16px;
  cursor: pointer;
  min-height: 38px;
}

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .info-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .article-hero-img img { height: 260px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 16px 40px; }
  .section { padding: 48px 16px; }
  .hero-title { letter-spacing: -0.8px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .contact-section { padding: 56px 16px; }
  #cookie-banner { padding: 16px; }
}
