:root {
  --olive: #2C3E2D;
  --olive-mid: #3D5239;
  --olive-light: #4E6349;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --amber: #C8851A;
  --amber-light: #E0A43A;
  --text-dark: #1A1A1A;
  --text-mid: #5A5A5A;
  --text-light: #8A8A8A;
  --border: #D4CDBF;
  --card-bg: #FDFAF4;
}

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

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

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(200,133,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 440px;
}

/* Hero Visual — recipe card stack */
.hero-visual {
  position: relative;
  height: 420px;
}

.recipe-card {
  position: absolute;
  background: var(--cream);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  min-width: 220px;
}

.card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.card-meta {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  font-size: 10px;
  font-weight: 500;
  background: var(--cream-dark);
  color: var(--olive-mid);
  padding: 3px 8px;
  border-radius: 20px;
}

.recipe-card-1 {
  top: 0;
  right: 40px;
  transform: rotate(2deg);
}

.recipe-card-2 {
  top: 130px;
  right: 0;
  transform: rotate(-1.5deg);
}

.recipe-card-3 {
  top: 250px;
  right: 50px;
  transform: rotate(1deg);
}

/* ── FILTERS ─────────────────────────────────────────── */
.filters-section {
  padding: 100px 48px;
  background: var(--cream);
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 56px;
  line-height: 1.2;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.filter-item {
  border-top: 2px solid var(--border);
  padding-top: 24px;
}

.filter-icon {
  color: var(--amber);
  margin-bottom: 16px;
}

.filter-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 10px;
}

.filter-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── PHILOSOPHY ──────────────────────────────────────── */
.philosophy-section {
  background: var(--cream-dark);
  padding: 100px 48px;
}

.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
}

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

.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--olive);
  line-height: 1.35;
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--amber);
}

.philosophy-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 680px;
}

.philosophy-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--olive);
}

.stat-label {
  font-size: 14px;
  color: var(--text-mid);
}

/* ── CHEFS ───────────────────────────────────────────── */
.chefs-section {
  background: var(--olive);
  padding: 100px 48px;
}

.chefs-section .section-label,
.chefs-section .section-title {
  color: #fff;
}

.chefs-section .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 16px;
}

.chefs-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 56px;
  line-height: 1.2;
}

.chef-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.chef-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
}

.chef-initial {
  width: 48px;
  height: 48px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.chef-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.chef-cuisine {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 12px;
}

.chef-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.chefs-note {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CLOSING ─────────────────────────────────────────── */
.closing-section {
  background: var(--amber);
  padding: 100px 48px;
  text-align: center;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--olive);
  padding: 40px 48px;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 32px; }
  .hero-visual { display: none; }
  .filter-grid { grid-template-columns: repeat(2, 1fr); }
  .chef-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-inner { padding: 48px 24px; }
  .filters-section, .philosophy-section, .chefs-section { padding: 64px 24px; }
  .filter-grid { grid-template-columns: 1fr; gap: 24px; }
  .chef-grid { grid-template-columns: 1fr; }
  .philosophy-stats { flex-direction: column; gap: 24px; }
  .closing-section { padding: 72px 24px; }
  .site-footer { padding: 32px 24px; }
}