:root {
  --bg: #1a1209;
  --bg-warm: #231a0e;
  --fg: #f5ede3;
  --fg-muted: #b8a68e;
  --accent: #e8652a;
  --accent-glow: #ff7b3a;
  --gold: #d4a94c;
  --card-bg: #2a1f13;
  --card-border: #3d2e1c;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(232,101,42,.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,169,76,.1) 0%, transparent 50%),
    var(--bg);
}

.hero-inner {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: .45rem 1.2rem;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

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

.lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-chip {
  font-size: .85rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: .05em;
}

.detail-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* ---- BOWLS / MENU ---- */
.bowls {
  padding: 6rem 2rem;
  background: var(--bg-warm);
}

.bowls-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bowls h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .75rem;
}

.bowls-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.bowl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.bowl-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .25s ease, transform .25s ease;
}

.bowl-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.bowl-icon {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--accent-glow);
  margin-bottom: 1rem;
  opacity: .6;
}

.bowl-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.bowl-card p {
  color: var(--fg-muted);
  font-size: .92rem;
  line-height: 1.55;
}

/* ---- ROOTS / WHY ---- */
.roots {
  padding: 6rem 2rem;
  background: var(--bg);
}

.roots-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.roots-text .section-tag { margin-bottom: 1rem; }

.roots-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.roots-text p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.roots-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.stat {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-size: .88rem;
  color: var(--fg-muted);
  line-height: 1.45;
  font-weight: 300;
}

/* ---- CLOSING ---- */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232,101,42,.08) 0%, transparent 60%),
    var(--bg-warm);
}

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

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--card-border);
  background: var(--bg);
}

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

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-loc {
  font-size: .85rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .bowl-grid {
    grid-template-columns: 1fr;
  }

  .roots-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    min-height: 85vh;
    padding: 4rem 1.5rem;
  }

  .bowls, .roots, .closing {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-detail {
    gap: .6rem;
  }

  .detail-chip {
    font-size: .78rem;
  }
}