/* ─── Custom properties ─── */
:root {
  --bg: #F8F5F0;
  --bg-alt: #EFE9E0;
  --primary: #0F4C5C;
  --accent: #E8614D;
  --accent-light: #F4A261;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; color: var(--primary); }
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; }
p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
em { font-style: italic; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

/* ─── Section shared ─── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ─── Hero ─── */
.hero {
  padding: 5rem 5% 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  max-width: 420px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.wave-orb {
  position: absolute;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.wave-orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle at 40% 40%, #f4a26122, #0F4C5C22);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation-delay: 0s;
}
.wave-orb-2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle at 60% 60%, #E8614D33, transparent);
  top: 20%; right: 10%;
  animation-delay: 1s;
}
.wave-orb-3 {
  width: 160px; height: 160px;
  background: radial-gradient(circle at 50% 50%, #0F4C5C44, transparent);
  bottom: 15%; left: 5%;
  animation-delay: 2s;
}

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

.bowl-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(15, 76, 92, 0.12);
  text-align: center;
  width: 220px;
}

.bowl-card-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1rem;
}

.bowl-ingredient {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: hsl(var(--hue), 60%, 70%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.bowl-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 0;
  border-top: 1px solid var(--bg-alt);
  border-bottom: 1px solid var(--bg-alt);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 0.3rem;
}

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--bg-alt);
  flex: 0;
}

/* ─── Manifesto ─── */
.manifesto {
  background: var(--primary);
  padding: 6rem 5%;
  margin-top: 0;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin: 1.5rem 0 2.5rem;
}

.manifesto blockquote em { font-style: italic; }

.manifesto .section-tag { color: var(--accent-light); }

.manifesto-body {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Bowls ─── */
.bowls { padding: 7rem 5%; }

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

.bowls h2 { margin: 0.5rem 0 0.75rem; }

.bowls-sub { font-size: 1.1rem; margin-bottom: 3.5rem; }

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

.bowl-card-sig {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(15, 76, 92, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.bowl-card-sig:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 76, 92, 0.12);
}

.sig-visual {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.sig-layer {
  flex: 1;
  background: var(--c);
}

.bowl-card-sig h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.bowl-card-sig p { font-size: 0.88rem; margin-bottom: 1rem; }

.bowl-price {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ─── Process ─── */
.process { background: var(--bg-alt); padding: 7rem 5%; }

.process-inner { max-width: 1200px; margin: 0 auto; }

.process h2 { margin: 0.5rem 0 3.5rem; }

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

.step {}

.step-num {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 { margin-bottom: 0.75rem; color: var(--primary); font-size: 1.2rem; }

.step p { font-size: 0.9rem; }

/* ─── Closing ─── */
.closing {
  padding: 8rem 5%;
  text-align: center;
  background: var(--bg);
}

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

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.closing h2 em { color: var(--accent); }

.closing p { font-size: 1.1rem; }

/* ─── Footer ─── */
footer {
  background: var(--primary);
  padding: 3rem 5%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }

  .hero-visual { height: 280px; }

  .bowl-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; gap: 2rem; }

  .hero-stats { gap: 0; }

  .stat-num { font-size: 2.2rem; }

  .nav-links { display: none; }

  .manifesto blockquote { font-size: 1.4rem; }
}

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

  .hero { padding-top: 3rem; }

  .bowl-card { width: 180px; padding: 1.25rem; }

  .bowl-ingredient { width: 40px; height: 40px; }
}
