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

:root {
  --bg: #F7F3EE;
  --bg-alt: #EDE7DE;
  --surface: #FFFFFF;
  --text: #1C1917;
  --text-muted: #78716C;
  --accent: #C9500C;
  --accent-light: #FEF0E7;
  --accent-dark: #9B3D08;
  --border: #DDD6CE;
  --hero-dot: #C9500C;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.1;
  font-weight: 700;
}

/* === NAV === */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 96px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hero-dot);
  display: inline-block;
}

.hero-headline {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}

.hero-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 1px solid var(--border);
  padding-left: 48px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

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

/* === PROBLEM === */
.problem {
  background: var(--text);
  padding: 96px 48px;
}

.problem-inner { max-width: 1200px; margin: 0 auto; }

.problem-label, .services-label, .process-label, .testimonials-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-headline {
  font-size: clamp(32px, 4vw, 56px);
  color: #F7F3EE;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

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

.problem-card {
  background: #292524;
  border: 1px solid #44403C;
  border-radius: 12px;
  padding: 32px;
}

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

.problem-card h3 {
  font-size: 20px;
  color: #F7F3EE;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: #A8A29E;
  line-height: 1.65;
}

/* === SERVICES === */
.services { padding: 96px 48px; }
.services-inner { max-width: 1200px; margin: 0 auto; }

.services-headline {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-right: none;
}

.service-card:last-child { border-right: 1px solid var(--border); }

.service-card--accent {
  background: var(--accent);
  color: white;
}

.service-card--accent .service-specs span {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.service-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
}

.service-card--accent .service-num { color: white; }

.service-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.service-card--accent p { color: rgba(255,255,255,0.85); }

.service-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-specs span {
  font-size: 12px;
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* === PROCESS === */
.process {
  background: var(--bg-alt);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-inner { max-width: 1200px; margin: 0 auto; }

.process-headline {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 64px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step { flex: 1; }

.step-marker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  background: var(--accent-light);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  width: 64px;
  height: 1px;
  background: var(--border);
  margin-top: 32px;
  flex-shrink: 0;
}

/* === TESTIMONIALS === */
.testimonials { padding: 96px 48px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials-headline {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

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

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-attr { display: flex; flex-direction: column; gap: 2px; }

.attr-name {
  font-weight: 600;
  font-size: 14px;
}

.attr-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* === CLOSING === */
.closing {
  background: var(--accent);
  padding: 96px 48px;
  text-align: center;
}

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

.closing-headline {
  font-size: clamp(36px, 5vw, 72px);
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--text);
  padding: 40px 48px;
}

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

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 900;
  color: #F7F3EE;
  margin-bottom: 6px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: #78716C;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #78716C;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 56px 24px 72px; }
  .hero-sub-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 1px solid var(--border); border-bottom: none; }
  .service-card:last-child { border-bottom: 1px solid var(--border); }
  .process { padding: 64px 24px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 32px; height: 32px; margin-top: 0; border-top: 1px solid var(--border); border-left: none; }
  .testimonials { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 40px; }
  .stat-number { font-size: 28px; }
  .hero-stats { gap: 20px; }
}
