/* Keur — Warm African Catering Theme */

:root {
  --bg:        #FDF6EE;
  --bg-warm:   #F5E9D5;
  --surface:   #FFF9F2;
  --accent:    #C4622D;
  --amber:     #D4860A;
  --charcoal:  #2C1A0E;
  --text:      #3D2010;
  --text-muted:#7A5C44;
  --border:    #E2CDB4;
  --tag-bg:    #F0E4D6;
}

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

html { scroll-behavior: smooth; }

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

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,246,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 0.5rem; }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(212,134,10,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(196,98,45,0.12) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-warm) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 10%;
  width: 50vw;
  height: 70vh;
  background: radial-gradient(ellipse, rgba(196,98,45,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196,98,45,0.08);
  border: 1px solid rgba(196,98,45,0.2);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-pillars {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.pillar-icon {
  color: var(--accent);
  font-size: 0.7rem;
}

/* ── Promise ── */
.promise {
  padding: 8rem 3rem;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.promise-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.promise-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bg-warm);
  margin-bottom: 1.5rem;
}
.promise-body {
  font-size: 1rem;
  color: rgba(245,233,213,0.65);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 3rem;
}
.promise-stats {
  display: flex;
  gap: 3rem;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(245,233,213,0.5);
  letter-spacing: 0.05em;
}

/* Pot decoration */
.promise-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pot-display {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pot-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(212,134,10,0.3);
}
.pot-1 { width: 280px; height: 280px; }
.pot-2 { width: 200px; height: 200px; border-color: rgba(196,98,45,0.4); }
.pot-3 { width: 130px; height: 130px; border-color: rgba(212,134,10,0.5); }
.pot-center {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  z-index: 1;
  letter-spacing: -0.02em;
}

/* ── Cuisines ── */
.cuisines {
  padding: 8rem 3rem;
  background: var(--bg);
}
.cuisines-header {
  text-align: center;
  margin-bottom: 4rem;
}
.cuisines-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.cuisines-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cuisines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cuisine-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cuisine-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(44,26,14,0.08);
}
.cuisine-card-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.cuisine-card-accent .cuisine-desc,
.cuisine-card-accent .cuisine-tag {
  color: rgba(253,246,238,0.75);
}
.cuisine-card-accent .cuisine-name { color: var(--bg); }
.cuisine-flag {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.cuisine-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.cuisine-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.cuisine-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--tag-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

/* ── Manifesto ── */
.manifesto {
  padding: 5rem 3rem;
  background: var(--bg-warm);
}
.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 3rem;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.manifesto-attr {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Closing ── */
.closing {
  padding: 8rem 3rem;
  background: var(--bg);
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.closing-service {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.service-badge {
  display: inline-block;
  background: rgba(196,98,45,0.1);
  color: var(--accent);
  border: 1px solid rgba(196,98,45,0.2);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  letter-spacing: 0.05em;
}
.service-zone {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Footer ── */
.footer {
  padding: 4rem 3rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(122,92,68,0.5);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cuisines-grid { grid-template-columns: repeat(2, 1fr); }
  .promise { grid-template-columns: 1fr; gap: 3rem; }
  .promise-visual { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .promise { padding: 5rem 1.5rem; }
  .cuisines { padding: 5rem 1.5rem; }
  .cuisines-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .hero-pillars { gap: 1rem; }
  .promise-stats { gap: 2rem; }
}