:root {
  --bg: #F7F4EE;
  --fg: #1A1714;
  --muted: #7A756E;
  --accent: #C4893A;
  --accent-warm: #E8A445;
  --border: #E2DDD5;
  --card-bg: #FFFFFF;
  --warm-bg: #FBF5E9;
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ─────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: 1.5rem; }
.nav__link {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--fg); }

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero__lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero__badge {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-left: 1px solid var(--border);
  padding-left: 3rem;
}
.badge__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.badge__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
}
.badge__label {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Services ───────────────────────────────── */
.services { padding: 6rem 2rem; border-bottom: 1px solid var(--border); }
.services__inner { max-width: 1200px; margin: 0 auto; }
.services__header { margin-bottom: 3.5rem; }
.services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.services__subtitle {
  font-size: 1rem;
  color: var(--muted);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}
.service-card--warm { background: var(--warm-bg); }
.service-card__icon { margin-bottom: 1.25rem; color: var(--accent); }
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card__list li {
  font-size: 0.9375rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Philosophy ─────────────────────────────── */
.philosophy { padding: 6rem 2rem; background: var(--fg); color: var(--bg); }
.philosophy__inner { max-width: 1200px; margin: 0 auto; }
.philosophy__quote {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(247, 244, 238, 0.15);
}
.philosophy__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  max-width: 760px;
  color: var(--bg);
}
.philosophy__attribution {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(247, 244, 238, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.philosophy__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.value__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.75rem;
}
.value__body {
  font-size: 0.9375rem;
  color: rgba(247, 244, 238, 0.6);
  line-height: 1.65;
}

/* ── Clients ────────────────────────────────── */
.clients {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.clients__inner { max-width: 1200px; margin: 0 auto; }
.clients__label {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.clients__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.clients__logo-group {
  flex: 0 0 25%;
  padding: 1.75rem 2rem;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.clients__logo-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg);
}
.clients__logo-tag {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Closing ────────────────────────────────── */
.closing {
  padding: 7rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.closing__inner { max-width: 640px; margin: 0 auto; }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.closing__body {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.closing__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.closing__link {
  font-size: 1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.closing__link:hover { color: var(--fg); }
.closing__sep {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ── Footer ─────────────────────────────────── */
.footer { padding: 2.5rem 2rem; }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__left { display: flex; flex-direction: column; gap: 0.25rem; }
.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.footer__tagline { font-size: 0.8125rem; color: var(--muted); }
.footer__right { display: flex; gap: 1.75rem; }
.footer__link {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--fg); }

/* ── Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__badge {
    flex-direction: row;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    gap: 2rem;
  }
  .services__grid { grid-template-columns: 1fr; }
  .philosophy__values { grid-template-columns: 1fr; gap: 2rem; }
  .clients__logo-group { flex: 0 0 50%; }
  .footer__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer__right { flex-wrap: wrap; justify-content: center; }
}