:root {
  --bg: #f3f0eb;
  --surface: #ffffff;
  --surface-alt: #f8f5f1;
  --border: #e5ddd4;
  --border-strong: #d9d2c8;
  --text: #12171d;
  --muted: #52606d;
  --muted-2: #6c7782;
  --dark: #1d232b;
  --accent: #ff4b15;
  --accent-dark: #d94417;
  --accent-soft: #fff1ec;
  --shadow: 0 16px 40px rgba(18, 23, 29, 0.05);
  --shadow-lg: 0 18px 42px rgba(18, 23, 29, 0.12);
  --radius: 2rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--border); background: rgba(243,240,235,.92); backdrop-filter: blur(14px); }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:16px 0; }
.brand { display:flex; align-items:center; gap:14px; }
.brand-mark-wrap { width:44px; height:44px; display:flex; align-items:center; justify-content:center; border-radius:18px; border:1px solid #e4ddd4; background:#fff; box-shadow:0 4px 14px rgba(18,23,29,.06); }
.brand-mark { width:28px; height:28px; object-fit:contain; }
.brand-name { font-size:.72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--muted-2); }
.brand-subtitle { font-size:.92rem; color:var(--muted); }
.site-nav { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.site-nav a { padding:10px 16px; border-radius:999px; font-size:.92rem; font-weight:600; color:var(--muted); transition:.2s ease; }
.site-nav a:hover, .site-nav a.active { background:#fff; color:var(--text); box-shadow:0 2px 8px rgba(18,23,29,.06); }
.site-nav a.nav-cta { background:var(--dark); color:#fff; }
.site-nav a.nav-cta:hover, .site-nav a.nav-cta.active { background:#000; color:#fff; }
.hero { position:relative; overflow:hidden; border-bottom:1px solid var(--border); }
.hero::before, .hero::after { content:""; position:absolute; border-radius:999px; pointer-events:none; }
.hero::before { width:420px; height:420px; right:-140px; top:-220px; background:radial-gradient(circle, rgba(255,75,21,.14), transparent 65%); }
.hero::after { width:360px; height:360px; left:-160px; top:120px; background:radial-gradient(circle, rgba(108,119,130,.10), transparent 65%); }
.hero-inner { position:relative; padding:96px 0 124px; }
.eyebrow-pill { display:inline-flex; padding:8px 16px; border-radius:999px; border:1px solid #e2dbd2; background:rgba(255,255,255,.8); color:#5f6b76; font-size:.92rem; font-weight:600; box-shadow:0 4px 14px rgba(18,23,29,.05); }
.hero h1, .page-hero h1 { margin:20px 0 0; max-width:900px; font-size:clamp(3rem,7vw,4.5rem); line-height:.98; letter-spacing:-.05em; }
.hero p, .page-hero p { margin:28px 0 0; max-width:760px; font-size:1.17rem; line-height:1.8; color:var(--muted); }
.button-row { display:flex; flex-wrap:wrap; gap:16px; margin-top:36px; }
.button { display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:14px 24px; border-radius:999px; font-size:.95rem; font-weight:700; transition:.2s ease; }
.button-primary { background:var(--accent); color:#fff; }
.button-primary:hover { background:var(--accent-dark); }
.button-secondary { background:rgba(255,255,255,.8); border:1px solid var(--border-strong); }
.button-secondary:hover { background:#fff; }
.section { padding:80px 0; }
.page-hero { padding:72px 0 12px; }
.page-eyebrow, .section-label { font-size:.9rem; font-weight:700; text-transform:uppercase; letter-spacing:.18em; color:var(--muted-2); }
.grid-3, .grid-2, .grid-2-uneven, .card-grid { display:grid; gap:24px; }
.grid-3, .card-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid-2-uneven { grid-template-columns:1.05fr .95fr; }
.card { border:1px solid var(--border); background:var(--surface); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow); }
.card-alt { background:var(--surface-alt); }
.card-dark { background:var(--dark); color:#fff; box-shadow:var(--shadow-lg); }
.card h2, .card h3 { margin:0; letter-spacing:-.03em; }
.card h2 { font-size:1.7rem; }
.card h3 { font-size:1.35rem; }
.card p { margin:16px 0 0; color:var(--muted); line-height:1.75; }
.card-dark p, .card-dark .muted-on-dark, .card-dark .section-label { color:#d8e0e8; }
.card-dark .section-label { color:#ff8b66; }
.stat-card p { font-size:1.65rem; font-weight:700; line-height:1.35; letter-spacing:-.03em; color:var(--text); }
.card-dark.stat-card p { color:#fff; }
.service-group + .service-group { margin-top:32px; }
.service-group-header { max-width:740px; margin-bottom:32px; }
.list-stack { display:grid; gap:16px; margin-top:24px; }
.list-item { display:flex; gap:16px; border:1px solid #ece5dd; background:var(--surface-alt); border-radius:18px; padding:16px; align-items:flex-start; }
.number-chip { width:32px; height:32px; border-radius:999px; background:var(--accent); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:.95rem; font-weight:700; flex-shrink:0; }
.check-chip { width:20px; height:20px; color:var(--accent); flex-shrink:0; margin-top:3px; font-weight:700; }
.cta-band { padding-top:0; }
.cta-inner { text-align:center; background:var(--dark); color:#fff; box-shadow:0 30px 80px rgba(18,23,29,.18); }
.cta-inner h2 { font-size:2rem; margin:0; }
.site-footer { border-top:1px solid var(--border); }
.footer-grid { display:grid; grid-template-columns:1.1fr 1fr .9fr; gap:32px; padding:40px 0; }
.footer-title { font-size:1.1rem; font-weight:700; }
.footer-copy { margin-top:10px; color:var(--muted-2); font-size:.95rem; line-height:1.75; }
.footer-links { display:flex; flex-wrap:wrap; gap:14px 18px; align-content:flex-start; color:var(--muted-2); font-size:.95rem; }
.footer-links a:hover { color:var(--text); }
.footer-contact { color:var(--muted-2); }
.spacer-top { margin-top:14px; }
@media (max-width:980px) {
  .header-inner, .footer-grid, .grid-3, .grid-2, .grid-2-uneven, .card-grid { grid-template-columns:1fr; }
  .header-inner { display:flex; flex-direction:column; align-items:flex-start; }
  .site-nav { width:100%; }
}
@media (max-width:640px) {
  .container { width:min(1120px, calc(100% - 28px)); }
  .hero-inner { padding:72px 0 92px; }
  .section { padding:56px 0; }
  .page-hero { padding:52px 0 12px; }
  .card { padding:24px; border-radius:24px; }
  .site-nav a { padding:9px 14px; }
}

.footer-grid-four {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.footer-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-copy-tight {
  margin-top: 18px;
}

.legal-page {
  padding: 72px 0 88px;
}

.legal-page h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.legal-page-intro {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.legal-content {
  margin-top: 42px;
  max-width: 860px;
  display: grid;
  gap: 28px;
}

.legal-section {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow);
}

.legal-section h2 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.legal-section p + p,
.legal-section ul,
.legal-section ol {
  margin-top: 14px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
}

@media (max-width: 980px) {
  .footer-grid-four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid-four {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-page {
    padding: 54px 0 68px;
  }

  .legal-section {
    padding: 24px;
  }
}
.stat-card h3 {
  margin: 12px 0 0;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text);
}


.card-dark.stat-card h3 {
  color: #fff;
}
.hero-inner {
  padding: 108px 0 132px;
}

.section {
  padding: 96px 0;
}

.stat-card h3 {
  margin: 12px 0 0;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text);
}

.card-dark.stat-card h3 {
  color: #fff;
}

.hero-inner {
  padding: 108px 0 132px;
}

.section {
  padding: 96px 0;
}

.card h2 {
  font-size: 1.9rem;
}

.card p {
  margin: 18px 0 0;
  line-height: 1.85;
}

.cta-inner {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: var(--dark);
  color: #fff;
  box-shadow: 0 30px 80px rgba(18, 23, 29, 0.18);
}

.cta-inner > * {
  margin: 0;
}

.cta-inner h2 {
  font-size: 2rem;
  line-height: 1.15;
}

.cta-inner p {
  max-width: 720px;
  line-height: 1.55;
}

.cta-inner .spacer-top {
  margin: 0;
}

.cta-inner .button {
  margin: 0;
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 72px 0 92px;
  }

  .section {
    padding: 56px 0;
  }

  .cta-inner {
    padding: 30px 22px;
    gap: 10px;
  }
}