:root {
  --bg: #F7F4EF;
  --fg: #1C1917;
  --accent: #C9642B;
  --accent-light: #F0DDD0;
  --muted: #78716C;
  --border: #E7E3DC;
  --surface: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
  padding: 80px 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero .lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.hero-aside { display: flex; flex-direction: column; gap: 32px; padding-top: 20px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 220px;
}

/* SERVICES */
.services { padding: 100px 80px; background: var(--surface); }

.services-header { max-width: 560px; margin-bottom: 64px; }

.services-header h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
}

.services-header p { font-size: 17px; color: var(--muted); line-height: 1.6; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
}

.service-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* DIFFERENCE */
.difference { padding: 100px 80px; background: var(--fg); color: var(--bg); }

.difference-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.diff-text h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 24px;
  line-height: 1.15;
}

.diff-text p { font-size: 16px; color: #A8A29E; line-height: 1.75; margin-bottom: 20px; }
.diff-text em { color: var(--bg); font-style: italic; }

.diff-list { list-style: none; margin-top: 28px; }

.diff-list li {
  font-size: 15px;
  color: #D6D3CE;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-left: 20px;
  position: relative;
}

.diff-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

.quote-block {
  padding: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}

.quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--bg);
  line-height: 1.4;
  margin-bottom: 16px;
}

.quote-attr { font-size: 14px; color: #78716C; }

/* PROCESS */
.process { padding: 100px 80px; background: var(--bg); }

.process h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px var(--accent);
}

.step h3 { font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* CLOSING */
.closing { padding: 120px 80px; background: var(--accent); color: white; }

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 32px;
}

.closing p { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 20px; }

.closing-statement {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: white;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

/* FOOTER */
.site-footer { padding: 60px 80px; background: var(--fg); color: var(--bg); }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p { font-size: 14px; color: #78716C; max-width: 300px; line-height: 1.6; }
.footer-contact p { font-size: 14px; color: #78716C; margin-bottom: 10px; }

.footer-email {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-email:hover { opacity: 0.7; }
.footer-meta { text-align: right; }
.footer-meta p { font-size: 13px; color: #57534E; line-height: 1.8; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 40px; }
  .hero-aside { flex-direction: row; flex-wrap: wrap; }
  .stat-block { min-width: 140px; }
  .services { padding: 80px 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .difference { padding: 80px 40px; }
  .difference-inner { grid-template-columns: 1fr; gap: 48px; }
  .process { padding: 80px 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 80px 40px; }
  .site-footer { padding: 60px 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-meta { text-align: left; }
}

@media (max-width: 640px) {
  .hero, .services, .difference, .process, .closing, .site-footer { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-aside { flex-direction: column; }
}