/* ===== Calm & Pepper — tropical, bold, fun ===== */
:root {
  --orange:   #E8632A;
  --orange-d: #C94E1B;
  --teal:     #1E9C95;
  --teal-d:   #137771;
  --yellow:   #F7B731;
  --green:    #1E5E3A;
  --coral:    #F0552B;
  --cream:    #FFF6E6;
  --cream-2:  #FFEFD2;
  --ink:      #20302B;
  --ink-soft: #4a5a52;
  --white:    #fff;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --r: 22px;
  --shadow: 0 18px 40px -18px rgba(32,48,43,.45);
  --shadow-lg: 0 30px 70px -25px rgba(32,48,43,.55);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; font-weight: 800; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--teal-d);
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .6rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  padding: .85rem 1.6rem; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, background .2s;
  will-change: transform;
}
.btn--primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 22px -8px rgba(232,99,42,.7); }
.btn--primary:hover { background: var(--orange-d); transform: translateY(-3px) scale(1.03); }
.btn--ghost { background: transparent; color: var(--teal-d); border: 2.5px solid var(--teal); }
.btn--ghost:hover { background: var(--teal); color: var(--white); transform: translateY(-3px) scale(1.03); }
.btn--sm { padding: .6rem 1.2rem; font-size: .92rem; }
.btn--full { width: 100%; }
.btn:active { transform: translateY(-1px) scale(.99); }

/* ===== Floating leaves ===== */
.leaves { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.leaf { position: absolute; font-size: 2.4rem; opacity: .18; animation: drift 18s linear infinite; }
.leaf--1 { left: 6%;  top: -8%; animation-duration: 22s; }
.leaf--2 { left: 28%; top: -14%; animation-duration: 28s; font-size: 1.8rem; }
.leaf--3 { left: 62%; top: -10%; animation-duration: 25s; font-size: 3rem; }
.leaf--4 { left: 82%; top: -16%; animation-duration: 30s; }
.leaf--5 { left: 46%; top: -12%; animation-duration: 20s; font-size: 1.6rem; }
@keyframes drift {
  0%   { transform: translateY(-10vh) rotate(0deg); }
  100% { transform: translateY(120vh) rotate(360deg); }
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled { background: rgba(255,246,230,.92); backdrop-filter: blur(10px); box-shadow: 0 6px 20px -12px rgba(32,48,43,.4); padding-top: .65rem; padding-bottom: .65rem; }

.brand { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: inline-flex; gap: .28rem; align-items: baseline; }
.brand__calm   { color: var(--coral); }
.brand__amp    { color: var(--yellow); }
.brand__pepper { color: var(--teal); }

.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { font-family: var(--font-display); font-weight: 600; font-size: 1rem; position: relative; transition: color .2s; }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 3px; width: 0; border-radius: 3px;
  background: var(--orange); transition: width .25s;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { background: var(--teal); color: var(--white); padding: .55rem 1.1rem; border-radius: 100px; transition: transform .18s, background .2s; }
.nav__cta:hover { background: var(--teal-d); transform: translateY(-2px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 60; }
.nav__burger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .3s, opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; padding: 8.5rem clamp(1rem,4vw,2.5rem) 4rem; z-index: 2; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 80% 18%, rgba(247,183,49,.35), transparent 42%),
    radial-gradient(circle at 12% 85%, rgba(30,156,149,.28), transparent 45%),
    linear-gradient(180deg, var(--cream-2), var(--cream));
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
}
.hero__title { font-size: clamp(2.8rem, 6.5vw, 4.8rem); letter-spacing: -.01em; margin-bottom: 1.1rem; }
.hero__title span { display: block; }
.hero__title--accent { color: var(--orange); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 30ch; margin-bottom: 1.8rem; }
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.4rem; }

.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.hero__chips li {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  background: var(--white); color: var(--ink); padding: .5rem .95rem; border-radius: 100px;
  box-shadow: var(--shadow);
}

.hero__truck { position: relative; }
.hero__truck img {
  width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero__badge {
  position: absolute; top: -14px; right: -8px;
  background: var(--yellow); color: var(--ink); font-family: var(--font-display); font-weight: 800;
  padding: .5rem 1rem; border-radius: 100px; font-size: .95rem; box-shadow: var(--shadow);
  rotate: 6deg; animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.scroll-hint {
  position: absolute; bottom: 1.2rem; left: 50%; translate: -50% 0;
  font-size: 1.6rem; color: var(--teal-d); animation: bob 1.8s ease-in-out infinite; opacity: .8;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== Marquee ===== */
.marquee { background: var(--green); color: var(--cream); padding: .9rem 0; overflow: hidden; position: relative; z-index: 2; rotate: -1.4deg; margin: 1rem 0; box-shadow: var(--shadow); }
.marquee__track { display: flex; gap: 2.5rem; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; white-space: nowrap; opacity: .95; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Section shared ===== */
section { position: relative; z-index: 2; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; padding: 0 1rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .6rem; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; }

/* ===== Menu ===== */
.menu { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1rem,4vw,2.5rem); }
.menu__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; }
.dish {
  background: var(--white); border-radius: var(--r); padding: 1.8rem;
  box-shadow: var(--shadow); border: 2px solid transparent;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s, border-color .22s;
  position: relative; overflow: hidden;
}
.dish::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(247,183,49,.12), transparent 60%); opacity: 0; transition: opacity .25s; }
.dish:hover, .dish:focus-visible { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); border-color: var(--yellow); outline: none; }
.dish:hover::before, .dish:focus-visible::before { opacity: 1; }
/* dish__media = placeholder for future food photography (swap the emoji span for an <img>) */
.dish__media {
  height: 130px; margin: -.4rem -.4rem 1rem; border-radius: 16px;
  background: linear-gradient(135deg, var(--cream-2), #ffe6c2);
  display: grid; place-items: center; overflow: hidden;
}
.dish__media img { width: 100%; height: 100%; object-fit: cover; }
.dish__emoji { font-size: 3.4rem; transition: transform .25s; display: inline-block; }
.dish:hover .dish__emoji { transform: scale(1.15) rotate(-8deg); }
.dish h3 { font-size: 1.32rem; margin-bottom: .35rem; color: var(--ink); }
.dish p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1.1rem; }
.dish__foot { display: flex; align-items: center; justify-content: flex-start; }
.tag { font-family: var(--font-display); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; padding: .3rem .7rem; border-radius: 100px; background: var(--cream-2); color: var(--ink-soft); }
.tag--hot { background: #ffe0d6; color: var(--coral); }
.tag--veg { background: #d8f0df; color: var(--green); }
.tag--cool { background: #d4eeed; color: var(--teal-d); }

/* ===== Signature flavours ===== */
.flavours { margin-top: 3rem; text-align: center; }
.flavours__title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--ink); }
.flavours__sub { color: var(--ink-soft); margin: .4rem 0 1.6rem; }
.flavours__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }
.flavours__list li {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  background: var(--white); color: var(--ink); padding: .85rem 1.4rem; border-radius: 100px;
  box-shadow: var(--shadow); border: 2px solid var(--cream-2);
  display: inline-flex; align-items: center; gap: .5rem;
}
.flavours__list li span {
  font-family: var(--font-body); font-weight: 700; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .04em; background: #ffe0d6; color: var(--coral); padding: .2rem .55rem; border-radius: 100px;
}

.menu__note {
  margin-top: 3rem; background: var(--teal); color: var(--white); border-radius: var(--r);
  padding: 1.8rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.menu__note p { font-size: 1.1rem; }
.menu__note .btn--primary { background: var(--yellow); color: var(--ink); box-shadow: none; }
.menu__note .btn--primary:hover { background: #ffca4d; }

/* ===== Story ===== */
.story { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1rem,4vw,2.5rem); display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; align-items: center; }
.story__art { position: relative; display: grid; place-items: center; min-height: 320px; }
.blob {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, var(--orange), var(--coral) 60%, var(--yellow));
  border-radius: 42% 58% 63% 37% / 42% 38% 62% 58%;
  animation: morph 9s ease-in-out infinite; box-shadow: var(--shadow-lg);
}
@keyframes morph {
  0%,100% { border-radius: 42% 58% 63% 37% / 42% 38% 62% 58%; }
  50% { border-radius: 62% 38% 41% 59% / 55% 62% 38% 45%; }
}
.story__emoji { position: absolute; font-size: 6rem; animation: float 5s ease-in-out infinite; }
.story__copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.story__copy p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.06rem; }
.story__points { list-style: none; margin-top: 1.4rem; display: grid; gap: .7rem; }
.story__points li { font-family: var(--font-display); font-weight: 600; background: var(--white); padding: .8rem 1.1rem; border-radius: 14px; box-shadow: var(--shadow); }

/* ===== Events & Festivals (dual audience) ===== */
.events { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1rem,4vw,2.5rem); }
.events__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.audience {
  background: var(--white); border-radius: var(--r); padding: 2rem;
  box-shadow: var(--shadow); border-top: 6px solid var(--orange);
  transition: transform .22s, box-shadow .22s;
}
.audience:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.audience:nth-child(2) { border-top-color: var(--teal); }
.audience__icon { font-size: 2.6rem; margin-bottom: .6rem; }
.audience h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.audience > p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.audience__list { list-style: none; display: grid; gap: .6rem; margin-bottom: 1.6rem; }
.audience__list li { position: relative; padding-left: 1.7rem; color: var(--ink); font-weight: 600; }
.audience__list li::before { content: '🌶️'; position: absolute; left: 0; top: 0; font-size: .95rem; }

/* ===== Testimonials ===== */
.quotes { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1rem,4vw,2.5rem) 3rem; }
.quotes__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; }
.quote {
  background: var(--white); border-radius: var(--r); padding: 1.8rem;
  box-shadow: var(--shadow); border-left: 6px solid var(--yellow);
}
.quote p { font-size: 1.05rem; color: var(--ink); margin-bottom: 1rem; font-style: italic; }
.quote cite { font-family: var(--font-display); font-weight: 700; color: var(--teal-d); font-style: normal; }

/* ===== Book ===== */
.book { padding: 5rem clamp(1rem,4vw,2.5rem); }
.book__card {
  max-width: 760px; margin: 0 auto; background: linear-gradient(150deg, var(--teal), var(--teal-d));
  color: var(--white); border-radius: 28px; padding: clamp(2rem, 5vw, 3.2rem); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.book__card::after { content: '🌴'; position: absolute; right: -10px; bottom: -20px; font-size: 9rem; opacity: .12; }
.book__card h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: .6rem; }
.book__card > p { opacity: .92; margin-bottom: 1.4rem; max-width: 48ch; }
.book__direct { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; position: relative; z-index: 1; }
.book__direct-btn {
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  background: rgba(255,255,255,.14); color: var(--white); padding: .7rem 1.15rem; border-radius: 100px;
  border: 2px solid rgba(255,255,255,.35); transition: background .2s, transform .18s;
}
.book__direct-btn:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.book__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 1; }
.field select {
  font-family: var(--font-body); font-size: 1rem; padding: .8rem 1rem; border-radius: 12px; border: 2px solid transparent;
  background: rgba(255,255,255,.95); color: var(--ink); transition: border-color .2s, box-shadow .2s; cursor: pointer;
}
.field select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(247,183,49,.3); }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: .8rem 1rem; border-radius: 12px; border: 2px solid transparent;
  background: rgba(255,255,255,.95); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(247,183,49,.3); }
.book__form .btn { grid-column: 1 / -1; background: var(--yellow); color: var(--ink); box-shadow: none; }
.book__form .btn:hover { background: #ffca4d; }
.book__status { grid-column: 1/-1; font-family: var(--font-display); font-weight: 600; min-height: 1.2em; margin: 0; }

/* ===== Newsletter ===== */
.news { padding: 1rem clamp(1rem,4vw,2.5rem) 4rem; }
.news__card {
  max-width: 900px; margin: 0 auto; background: var(--white); border-radius: var(--r);
  padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow); border: 2px solid var(--cream-2);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.news__card h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.news__card p { color: var(--ink-soft); max-width: 42ch; }
.news__form { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.news__form input {
  font-family: var(--font-body); font-size: 1rem; padding: .8rem 1.1rem; border-radius: 100px;
  border: 2px solid var(--cream-2); background: var(--cream); color: var(--ink); min-width: 220px;
  transition: border-color .2s, box-shadow .2s;
}
.news__form input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232,99,42,.18); }
.news__status { flex-basis: 100%; font-family: var(--font-display); font-weight: 600; margin: 0; min-height: 1.1em; color: var(--teal-d); }

/* ===== Footer ===== */
.footer { background: var(--green); color: var(--cream); padding: 3.5rem clamp(1rem,4vw,2.5rem) 1.5rem; margin-top: 2rem; position: relative; z-index: 2; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.brand--footer { font-size: 1.7rem; }
.footer__brand p { opacity: .85; margin-top: .5rem; }
.footer__cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer__cols h4 { font-size: 1.05rem; margin-bottom: .8rem; color: var(--yellow); }
.footer__cols a { display: block; opacity: .85; padding: .25rem 0; transition: opacity .2s, transform .2s; }
.footer__cols a:hover { opacity: 1; transform: translateX(4px); }
.footer__copy { text-align: center; opacity: .7; margin-top: 2.5rem; font-size: .9rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.2,.64,1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 2.2rem; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__chips { justify-content: center; }
  .hero__truck { max-width: 480px; margin: 0 auto; }
  .story { grid-template-columns: 1fr; text-align: center; }
  .story__points li { text-align: left; }
  .story__art { order: -1; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; justify-content: center; gap: 1.8rem;
    background: var(--cream); box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); padding: 2rem;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.3rem; }
  .nav__burger { display: flex; }
  .book__form { grid-template-columns: 1fr; }
  .menu__note { text-align: center; justify-content: center; }
  .news__card { flex-direction: column; align-items: flex-start; }
  .news__form input { flex: 1; min-width: 0; width: 100%; }
}
