:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --primary: #1b2d4f;
  --accent: #b87333;
  --accent-light: #f5ede2;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #e5e0d8;
  --navy: #1b2d4f;
  --copper: #b87333;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
}
.nav-os {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.pill-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.hero-visual {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 36px;
  flex-shrink: 0;
}
.hero-stat-block {
  text-align: center;
  padding: 0 20px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* SERVICES */
.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}
.section-header {
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 36px 32px;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* DIFFERENTIATORS */
.diff-section {
  background: var(--primary);
  padding: 80px 48px;
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.diff-quote {
  position: sticky;
  top: 40px;
}
.diff-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
}
.diff-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  letter-spacing: 0.05em;
}
.diff-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.3;
}
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.diff-list li {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.6;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}
.diff-list strong {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

/* AREAS */
.areas {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}
.areas-map {
  margin-top: 40px;
}
.area-tag-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.area-tag {
  padding: 8px 20px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}
.areas-note {
  font-size: 15px;
  color: var(--text-muted);
}

/* CLOSING */
.closing {
  background: var(--accent-light);
  padding: 100px 48px;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.cta-phone {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  display: block;
}
.footer-location {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.footer-contact {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-os {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
  }
  .hero-visual {
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .diff-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .diff-quote {
    position: static;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    padding: 16px 24px;
  }
  .services, .areas {
    padding: 56px 24px;
  }
  .diff-section {
    padding: 56px 24px;
  }
  .closing {
    padding: 64px 24px;
  }
  .footer {
    padding: 24px;
  }
}