:root {
  --bg: #ffffff;
  --bg-alt: #f7f6f3;
  --bg-dark: #0a0a0a;
  --bg-accent: #fff4ef;
  --ink: #0a0a0a;
  --ink-muted: #5a5a5a;
  --ink-faint: #9a9a9a;
  --line: #e6e4df;
  --line-dark: #1d1d1d;
  --accent: #ff5c35;
  --accent-ink: #c2421f;
  --radius: 4px;
  --container: 1120px;
  --container-narrow: 760px;
  --shadow: 0 1px 0 rgba(10, 10, 10, 0.04);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-ink); }

img, svg { display: block; max-width: 100%; }

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

.container.narrow {
  max-width: var(--container-narrow);
}

/* ------------------------ Header ------------------------ */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.brand-mark {
  width: 28px;
  height: 22px;
  color: var(--ink);
  flex: none;
}

.brand-name {
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--ink-muted);
}

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

/* ------------------------ Hero ------------------------ */

.hero {
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 280px at 85% 10%, rgba(255, 92, 53, 0.06), transparent 70%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h1 .muted {
  color: var(--ink-muted);
  font-weight: 500;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 0 22px;
}

.signoff {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  color: var(--ink);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.12s ease, background-color 0.18s ease, color 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--accent); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

.hero-art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* ------------------------ Sections ------------------------ */

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section-light { background: var(--bg-alt); }

.section-dark {
  background: var(--bg-dark);
  color: #f4f3ef;
  border-bottom: 1px solid var(--line-dark);
}

.section-accent { background: var(--bg-accent); }

.kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-ink);
  margin: 0 0 16px;
}

.kicker-light { color: var(--accent); }

h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 32px;
}

.body-lg {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 64ch;
  margin: 0 0 20px;
}

.section-dark .body-lg { color: #c8c5bc; }

/* ------------------------ Approach cards ------------------------ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.card-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ------------------------ Focus (dark) ------------------------ */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.focus-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: #111;
}

.focus-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: #fff;
}

.focus-card p {
  margin: 0;
  color: #b5b1a6;
  font-size: 16px;
  line-height: 1.65;
}

/* ------------------------ Principles list ------------------------ */

.principles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}

.principles li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  padding-left: 22px;
  position: relative;
}

.principles li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background: var(--accent);
}

.principles strong {
  color: var(--ink);
  font-weight: 600;
}

/* ------------------------ Contact ------------------------ */

.contact-block {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  padding-top: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-ink);
}

.contact-value {
  font-size: 17px;
  color: var(--ink);
  font-style: normal;
  line-height: 1.55;
}

a.contact-value { font-weight: 600; }
a.contact-value:hover { color: var(--accent-ink); }

/* ------------------------ Map ------------------------ */

.map-wrap {
  margin-top: 40px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.85);
}

/* ------------------------ Footer ------------------------ */

.site-footer {
  background: var(--bg);
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}

.footer-address {
  font-style: normal;
  line-height: 1.55;
}

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

.footer-meta {
  margin: 0;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ------------------------ Legal pages ------------------------ */

.legal-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

.legal-hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  margin: 0 0 12px;
}

.legal-meta {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
}

.legal-body {
  padding: 64px 0 80px;
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
}

.legal-body p,
.legal-body li {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 22px;
  margin: 0 0 14px;
}

.legal-body li { margin-bottom: 8px; }

.legal-body a { color: var(--accent-ink); text-decoration: underline; }
.legal-body a:hover { color: var(--ink); }

.legal-body .intro {
  font-size: 17px;
  color: var(--ink-muted);
}

.legal-body strong { color: var(--ink); }

/* ------------------------ Responsive ------------------------ */

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { justify-content: center; order: -1; }
  .hero-logo { max-width: 200px; }
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-block { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; text-align: left; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
