/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --bg: #FAF7F2;
  --bg-dark: #F0EBE0;
  --fg: #1A1714;
  --fg-muted: #6B635A;
  --accent: #C4522A;
  --accent-dark: #A3421E;
  --green: #2D5016;
  --cream: #FFFDF9;
  --border: #E2DAC8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0 clamp(2rem, 6vw, 7rem);
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(196,82,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(45,80,22,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}

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

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

/* ===========================
   HERO VISUAL
   =========================== */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.food-art {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plate {
  position: relative;
  width: 280px;
  height: 280px;
}

.dish-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #E8D5B7, #D4BFA0, #C9A87C, #D4BFA0, #E8D5B7);
  box-shadow:
    0 8px 32px rgba(196,82,42,0.18),
    0 2px 8px rgba(0,0,0,0.08),
    inset 0 -4px 12px rgba(0,0,0,0.06);
}

.dish-inner {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 35%, #FFF8EE 0%, #F5EDE0 60%, #EAD9C8 100%);
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.05);
}

.dish-highlight {
  position: absolute;
  top: 20%;
  left: 22%;
  width: 30%;
  height: 15%;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  filter: blur(6px);
  transform: rotate(-20deg);
}

.garnish {
  position: absolute;
  border-radius: 50%;
}

.garnish-1 {
  width: 18px;
  height: 18px;
  background: #2D5016;
  top: 12%;
  right: 18%;
  opacity: 0.85;
  animation: float 4s ease-in-out infinite;
}

.garnish-2 {
  width: 10px;
  height: 10px;
  background: var(--accent);
  top: 20%;
  right: 12%;
  opacity: 0.7;
  animation: float 4s ease-in-out infinite 0.5s;
}

.garnish-3 {
  width: 14px;
  height: 14px;
  background: #7B9E50;
  top: 8%;
  right: 28%;
  opacity: 0.6;
  border-radius: 4px;
  transform: rotate(30deg);
  animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.steam {
  position: absolute;
  bottom: 55%;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(196,82,42,0.25), transparent);
  animation: steam-rise 3s ease-in-out infinite;
}

.steam-1 { left: 42%; height: 40px; animation-delay: 0s; }
.steam-2 { left: 48%; height: 55px; animation-delay: 0.7s; }
.steam-3 { left: 55%; height: 35px; animation-delay: 1.4s; }

@keyframes steam-rise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  30% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-60px) scaleX(1.5); }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 380px;
}

.tag {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ===========================
   SHARED SECTION STYLES
   =========================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 3rem;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.howitworks {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 7rem);
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.cycle-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.step {}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===========================
   CONTENT MIX
   =========================== */
.content-mix {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 7rem);
  background: var(--bg);
}

.mix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.mix-item {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  transition: background 0.2s;
}

.mix-item:nth-child(4n) { border-right: none; }
.mix-item:nth-last-child(-n+4) { border-bottom: none; }

.mix-item--featured {
  grid-column: span 2;
  background: var(--fg);
  color: var(--cream);
}

.mix-item--featured h3,
.mix-item--featured p {
  color: var(--cream);
}

.mix-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.mix-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.mix-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===========================
   CREATIVE GUARDRAILS
   =========================== */
.guardrails {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 7rem);
  background: var(--accent);
}

.guardrails-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.guardrails .section-label {
  color: rgba(255,255,255,0.7);
}

.guardrails .section-headline {
  color: var(--cream);
}

.guardrails-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.guardrails-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-list li {
  font-size: 0.95rem;
  color: var(--cream);
  padding-left: 1.5rem;
  position: relative;
  font-weight: 400;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  opacity: 0.6;
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 6vw, 7rem);
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 900px; }

.closing-badge {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 4rem;
}

.closing-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.stat {}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 3rem clamp(2rem, 6vw, 7rem);
  background: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .cycle-steps { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(4),
  .step:nth-child(5) { grid-column: span 1; }
  .mix-grid { grid-template-columns: repeat(2, 1fr); }
  .mix-item:nth-child(2n) { border-right: none; }
  .mix-item:nth-child(4n+1) { border-right: 1px solid var(--border); }
  .guardrails-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .hero-visual { margin-top: 3rem; }
  .food-art { width: 280px; height: 280px; }
  .plate { width: 220px; height: 220px; }
  .dish-inner { inset: 22px; }
  .cycle-steps { grid-template-columns: 1fr 1fr; }
  .mix-grid { grid-template-columns: 1fr; }
  .mix-item { border-right: none !important; }
  .mix-item--featured { grid-column: span 1; }
  .closing-stat-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .cycle-steps { grid-template-columns: 1fr; }
  .section-headline { font-size: 1.75rem; }
}