:root {
  --bg: #faf9f6;
  --bg-alt: #f0ede8;
  --fg: #1a1a2e;
  --fg-muted: #5a5a7a;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --border: #e0dbd4;
  --card-bg: #ffffff;
}

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

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

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

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

/* Hero */
.hero {
  padding: 6rem 3rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.stat {}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

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

/* Services */
.services {
  background: var(--bg-alt);
  padding: 5rem 3rem;
}

.services-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 600px;
  color: var(--fg);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Difference */
.difference {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.difference h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 0.75rem 0 1.25rem;
  max-width: 440px;
}

.difference > p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.difference-points {}

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

.diff-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 2px;
}

.diff-point p {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.5;
}

.quote-card {
  background: var(--fg);
  color: white;
  padding: 3rem;
  border-radius: 4px;
}

.quote-text {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.quote-attr {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Process */
.process {
  background: var(--bg-alt);
  padding: 5rem 3rem;
  max-width: 100%;
}

.process > .section-eyebrow,
.process > h2 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.process > h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 3rem;
}

.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.step {}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.step h3 {
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.closing > p {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.closing-contact {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.contact-value {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .stat-divider { display: none; }
  .services { padding: 3rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .difference { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .closing-contact { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .quote-text { font-size: 1.3rem; }
}