:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #C8553D;
  --accent-light: rgba(200, 85, 61, 0.08);
  --gold: #B8860B;
  --gold-light: rgba(184, 134, 11, 0.1);
  --border: #E0DAD0;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-width: 1120px;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-brand span { color: var(--accent); }
.nav-tag {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--gold-light);
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 100px 0 80px;
  text-align: left;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero .lede {
  font-size: 19px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}
.hero-visual {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.stat-card .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.stat-card .value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}
.stat-card .value.accent { color: var(--accent); }
.stat-card .value.gold { color: var(--gold); }

/* SERVICES */
.services {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* DIFFERENCE */
.difference {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.diff-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.diff-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.diff-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer p {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-location {
  margin-top: 6px;
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 36px; }
  .hero .lede { font-size: 17px; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-title { font-size: 30px; }
  .closing h2 { font-size: 32px; }
  .stat-card .value { font-size: 26px; }
}