:root {
  --bg: #FAF6F1;
  --bg-alt: #F2EBE1;
  --fg: #1A1A1A;
  --fg-muted: #6B6358;
  --accent: #D4551A;
  --accent-warm: #E8864A;
  --navy: #1A1A2E;
  --border: #E2D9CE;
  --white: #FFFFFF;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
}
.nav-sub {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}
.hero-headline {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  font-style: italic;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* PROOF */
.proof {
  padding: 40px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.proof-label {
  font-size: 13px;
  color: var(--fg-muted);
  white-space: nowrap;
  font-weight: 400;
}
.proof-logos {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.proof-tag {
  font-size: 13px;
  color: var(--fg-muted);
}

/* SERVICES */
.services {
  padding: 88px 48px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--fg);
}
.services-header {
  margin-bottom: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--bg);
  padding: 40px 36px;
  position: relative;
}
.service-card--primary {
  background: var(--navy);
  color: var(--white);
}
.service-card--primary .service-tag {
  color: rgba(255,255,255,0.6);
}
.service-card--primary .service-desc {
  color: rgba(255,255,255,0.75);
}
.service-icon {
  margin-bottom: 24px;
  color: var(--accent);
}
.service-card--primary .service-icon {
  color: var(--accent-warm);
}
.service-title {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  color: inherit;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* SAUCE */
.sauce {
  padding: 88px 48px;
  background: var(--white);
}
.sauce-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sauce-desc {
  font-size: 17px;
  color: var(--fg-muted);
  margin-top: 16px;
}
.sauce-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.sauce-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.sauce-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* PROCESS */
.process {
  padding: 88px 48px;
}
.process-header {
  margin-bottom: 64px;
}
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child {
  border-bottom: none;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  font-style: italic;
}
.step-title {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  color: var(--fg);
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 96px 48px 88px;
  background: var(--navy);
  color: var(--white);
}
.closing-headline {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 24px;
  line-height: 1.25;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 56px;
}
.closing-image img {
  width: 100%;
  max-width: 600px;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  opacity: 0.7;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-meta p {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sauce-inner { grid-template-columns: 1fr; gap: 48px; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .process-step { grid-template-columns: 56px 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .hero, .services, .sauce, .process, .closing, .footer { padding: 56px 24px; }
  .nav { padding: 16px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .sauce-list { grid-template-columns: 1fr; }
  .proof-logos { gap: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}