:root {
  --bg: #f8f6f1;
  --bg-alt: #eceae4;
  --fg: #1a2744;
  --fg-muted: #5a6580;
  --accent: #d4a847;
  --accent-dark: #b8922f;
  --white: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Hero */
.hero {
  padding: 6rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

/* Proof bar */
.proof {
  background: var(--fg);
  color: var(--white);
  padding: 2.5rem 2rem;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.proof-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.proof-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Services */
.services {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 3.5rem;
}
.services-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--fg);
  font-weight: 400;
  max-width: 500px;
  line-height: 1.3;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background: var(--fg-muted);
  border: 1px solid rgba(26, 39, 68, 0.1);
}
.service-card {
  background: var(--bg);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--bg-alt);
}
.service-icon {
  margin-bottom: 1.25rem;
}
.service-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Philosophy */
.philosophy {
  background: var(--fg);
  padding: 5rem 2rem;
}
.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
}
.philosophy-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
}
.philosophy-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.philosophy-attribution {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(26, 39, 68, 0.1);
}
.closing-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg);
  font-weight: 700;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.closing-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.closing-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(26, 39, 68, 0.2);
  border-radius: 2px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 700;
}
.footer-loc {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-link {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
}
.footer-link:hover { color: var(--fg); }

/* Responsive */
@media (max-width: 640px) {
  .proof-inner { flex-direction: column; gap: 1.5rem; }
  .proof-divider { width: 40px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}