:root {
  --bg: #F5F0E8;
  --bg-card: #EDE7DA;
  --ink: #1C1917;
  --ink-muted: #78716C;
  --accent: #C84B1A;
  --accent-warm: #E87040;
  --surface: #DDD8CE;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--surface);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

/* ── HERO ── */
.hero {
  padding: 100px 64px 120px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.cta-pill--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

/* ── PROBLEM ── */
.problem {
  background: var(--ink);
  color: #fff;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.problem-inner {
  padding: 40px 48px 40px 64px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.problem-inner:first-child { border-left: none; padding-left: 64px; }
.problem-inner--right { background: rgba(255,255,255,0.04); }
.problem-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--accent-warm);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.problem-heading {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.problem-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── SERVICES ── */
.services {
  padding: 100px 64px;
}
.services-header { margin-bottom: 60px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--surface);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.service-card__badge-top {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.04em;
}
.service-card__icon { color: var(--accent); }
.service-card--featured .service-card__icon { color: var(--accent-warm); }
.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  flex-grow: 1;
}
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.6); }
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-old {
  font-size: 15px;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.service-card--featured .price-old { color: rgba(255,255,255,0.4); }
.price-new {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
.service-card--featured .price-new { color: var(--accent-warm); }
.price-note {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-warm);
}
.service-card__badge {
  display: inline-block;
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.service-card--featured .service-card__badge { color: rgba(255,255,255,0.4); }

/* ── WHY ── */
.why {
  background: var(--bg-card);
  padding: 100px 64px;
  border-top: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
}
.why-header { margin-bottom: 64px; }
.why-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}
.why-item__line {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 2px;
}
.why-item__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.why-item__text {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 100px 64px;
  background: var(--ink);
  color: #fff;
}
.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface);
  margin: 0 auto 36px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  color: #fff;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-author strong {
  font-size: 16px;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 100px 64px;
  background: var(--bg);
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.philosophy-right p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 64px;
}
.footer-top {
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero { padding: 64px 24px 80px; }
  .problem { grid-template-columns: 1fr; padding: 60px 24px; }
  .problem-inner { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 40px 0; }
  .problem-inner:first-child { border-top: none; padding-top: 0; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why { padding: 64px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial { padding: 64px 24px; }
  .philosophy { padding: 64px 24px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}