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

:root {
  --canvas: #f5f1ec;
  --surface-1: #ffffff;
  --surface-2: #ede8e1;
  --ink: #111111;
  --ink-muted: #626260;
  --ink-subtle: #7b7b78;
  --hairline: #d3cec6;
  --hairline-soft: #e5e0d8;
  --inverse-canvas: #000000;
  --inverse-ink: #ffffff;
  --fin-orange: #ff5600;
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-xxl: 24px;
}

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

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

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

.top-nav {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--ink); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  margin-left: auto;
  color: var(--ink);
}

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

.hero {
  padding: 96px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: var(--ink-muted);
  max-width: 600px;
}

.section { padding: 96px 24px; max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.section h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin-bottom: 24px;
}
.section-lead {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card img {
  border-radius: var(--rounded-xl);
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 8px;
}
.card-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.card-body { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }
.card-link { font-size: 14px; font-weight: 500; color: var(--ink); margin-top: auto; }

.article-header {
  padding: 64px 24px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.article-header h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}
.article-header .meta { font-size: 14px; color: var(--ink-subtle); }
.article-hero-img {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.article-hero-img img {
  border-radius: var(--rounded-xl);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.article-body h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin: 48px 0 16px;
}
.article-body h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 32px 0 12px;
}
.article-body p { font-size: 16px; line-height: 1.6; margin-bottom: 16px; color: var(--ink); }
.article-body ul { margin: 16px 0 16px 24px; list-style: disc; }
.article-body ul li { font-size: 16px; line-height: 1.6; margin-bottom: 8px; color: var(--ink); }
.article-body a { color: var(--ink); text-decoration: underline; }
.article-body .info-box {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 24px;
  margin: 32px 0;
}
.article-body .info-box h3 { margin-top: 0; }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.article-body table th, .article-body table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--hairline-soft);
}
.article-body table th { font-weight: 500; background: var(--surface-2); }
.article-body .caption { font-size: 12px; color: var(--ink-subtle); margin-top: 8px; }

.testimonial-strip {
  background: var(--inverse-canvas);
  color: var(--inverse-ink);
  padding: 64px 24px;
  text-align: center;
}
.testimonial-strip blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.testimonial-strip cite { display: block; margin-top: 24px; font-size: 14px; font-style: normal; opacity: 0.7; }

.cta-banner {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 48px;
  text-align: center;
  margin: 0 24px 96px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.cta-banner p { color: var(--ink-muted); margin-bottom: 0; }

.contact-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px;
}
.contact-section h2 { font-size: 40px; font-weight: 500; letter-spacing: -0.8px; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-md);
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.15s;
  min-height: 44px;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-primary {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--rounded-md);
  cursor: pointer;
  min-height: 40px;
  font-family: inherit;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
#form-msg { margin-top: 12px; font-size: 14px; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--inverse-canvas);
  color: var(--inverse-ink);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 9999;
}
.cookie-banner p { font-size: 14px; flex: 1; min-width: 200px; }
.cookie-banner a { color: #ccc; text-decoration: underline; }
.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--rounded-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--inverse-ink);
  background: transparent;
  color: var(--inverse-ink);
  font-family: inherit;
}
.cookie-btn.accept { background: var(--inverse-ink); color: var(--inverse-canvas); }

.page-header {
  padding: 64px 24px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}
.page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.page-body h2 { font-size: 28px; font-weight: 500; letter-spacing: -0.5px; margin: 32px 0 12px; }
.page-body p { font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
.page-body ul { margin: 12px 0 16px 24px; list-style: disc; }
.page-body ul li { font-size: 16px; line-height: 1.6; margin-bottom: 8px; }
.page-body a { color: var(--ink); text-decoration: underline; }

.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-col strong { font-size: 14px; font-weight: 500; display: block; margin-bottom: 12px; }
.footer-col p, .footer-col ul li, .footer-col ul li a { font-size: 12px; color: var(--ink-muted); line-height: 1.6; }
.footer-col ul { margin: 0; }
.footer-col ul li { margin-bottom: 4px; }
.footer-col ul li a:hover { color: var(--ink); text-decoration: none; }
.footer-bottom { max-width: 1280px; margin: 0 auto; border-top: 1px solid var(--hairline-soft); padding-top: 24px; }
.footer-bottom p { font-size: 12px; color: var(--ink-subtle); }

.breadcrumb { font-size: 12px; color: var(--ink-subtle); padding: 12px 24px; max-width: 1280px; margin: 0 auto; }
.breadcrumb a { color: var(--ink-subtle); text-decoration: underline; }

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 40px; letter-spacing: -0.8px; }
  .section h2 { font-size: 40px; letter-spacing: -0.8px; }
  .article-header h1 { font-size: 40px; letter-spacing: -0.8px; }
  .page-header h1 { font-size: 40px; letter-spacing: -0.8px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: 16px 24px; gap: 12px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .cta-banner { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
}
