:root {
  --cream: #faf6f0;
  --cream-dark: #f0e8dc;
  --green-deep: #2a3b2a;
  --green-mid: #3d5a3d;
  --green-light: #4e6e4e;
  --terracotta: #c2613a;
  --terracotta-light: #d47a52;
  --charcoal: #1c1c1a;
  --muted: #7a746e;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 60%);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--green-deep);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 440px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dish-frame {
  width: 100%;
  max-width: 420px;
}

.dish-illustration {
  width: 100%;
  height: auto;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 120px 60px;
  background: var(--green-deep);
  color: var(--cream);
}

.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.label-accent {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  padding-top: 8px;
}

.philosophy .label-accent {
  border-top: 1px solid rgba(194,97,58,0.4);
}

.phil-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--cream);
}

.phil-body h2 em {
  font-style: italic;
  color: var(--terracotta-light);
}

.phil-body p {
  font-size: 1.05rem;
  color: rgba(250,246,240,0.75);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ── SERVICES ── */
.services {
  padding: 100px 60px;
  background: var(--cream);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--cream-dark);
  border: 1px solid rgba(42,59,42,0.1);
  border-radius: 16px;
  padding: 48px 36px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42,59,42,0.12);
}

.service-card--featured {
  background: var(--green-deep);
  color: var(--cream);
  border-color: transparent;
}

.service-card--featured .service-icon svg rect,
.service-card--featured .service-icon svg circle,
.service-card--featured .service-icon svg path {
  stroke: var(--cream);
}

.service-card--featured h3 {
  color: var(--cream);
}

.service-card--featured p {
  color: rgba(250,246,240,0.72);
}

.service-icon {
  margin-bottom: 28px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 60px;
  background: var(--cream-dark);
}

.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-header {
  margin-bottom: 64px;
}

.hiw-header .label-accent {
  margin-bottom: 16px;
  border-top: 1px solid var(--terracotta);
  padding-top: 12px;
  display: block;
}

.hiw-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
}

.hiw-header h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.hiw-step {
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-deep);
  opacity: 0.12;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.hiw-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.hiw-step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 60px;
  background: var(--green-deep);
  text-align: center;
}

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

blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 40px;
}

.closing-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ── FOOTER ── */
footer {
  padding: 40px 60px;
  background: var(--cream);
  border-top: 1px solid rgba(42,59,42,0.1);
}

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

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  display: block;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

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

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { padding: 60px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .dish-frame { max-width: 280px; margin: 0 auto; }
  .philosophy { padding: 80px 32px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 32px; }
  .services { padding: 80px 32px; }
  .services-inner { grid-template-columns: 1fr; gap: 24px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 80px 32px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 40px 24px; }
  .hero-headline { font-size: 2.5rem; }
  .philosophy { padding: 60px 24px; }
  .services { padding: 60px 24px; }
  .how-it-works { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  footer { padding: 32px 24px; }
}