/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F8F5F0;
  --bg-alt: #EDE8E0;
  --fg: #1A1614;
  --fg-muted: #6B635A;
  --accent: #BF7D2C;
  --accent-dark: #8F5E1F;
  --ink: #2C2420;
  --border: #D4CCC4;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 5rem 2.5rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 44ch;
}

.hero-stat-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--ink);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.hero-stat-divider {
  height: 1px;
  background: var(--border);
}

/* === SERVICES === */
.services {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.services-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.services-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.services-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 0;
}

.service-card--primary {
  background: var(--ink);
}

.service-card--primary .service-number,
.service-card--primary .service-title,
.service-card--primary .service-desc {
  color: var(--bg);
}

.service-card--primary .service-number {
  color: var(--accent);
}

.service-card-inner {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.25;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
}

/* === DIFFERENTIATOR === */
.diff {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.diff-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.diff-left {
  padding: 3rem;
  background: var(--accent);
  border-radius: 4px;
}

.diff-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

.diff-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.diff-attr {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.diff-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  letter-spacing: -0.015em;
}

.diff-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.diff-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.diff-point-icon {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.diff-point p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2.5rem;
  background: var(--ink);
}

.closing-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 52ch;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.closing-cta {
  display: inline-block;
  padding: 1.5rem 3rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
}

.closing-cta-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.closing-cta-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}

/* === FOOTER === */
.footer {
  padding: 2.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}

.footer-desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stat-block { padding: 2rem; }
  .services { padding: 3.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .diff { padding: 3.5rem 1.5rem; }
  .diff-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diff-left { padding: 2rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .service-card-inner { padding: 1.75rem; }
  .closing-headline { font-size: 1.5rem; }
}