/* ===========================================================
   NAO BITES — stylesheet
   Theme: deep forest green + warm cream + gold
   =========================================================== */

:root {
  --cream:      #f5f1e8;   /* matches the logo background exactly */
  --cream-2:    #ece4d4;
  --green:      #1d3b2e;
  --green-2:    #284f3c;
  --green-deep: #15302454;
  --gold:       #c0954a;
  --gold-2:     #d8ab5e;
  --ink:        #2c271f;
  --muted:      #6a6354;
  --wa:         #25d366;
  --shadow:     0 18px 50px -22px rgba(29, 59, 46, .45);
  --radius:     18px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Cormorant Garamond", Georgia, serif; line-height: 1.1; font-weight: 600; color: var(--green); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .9rem;
}
.eyebrow--gold { color: var(--gold-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 10px 24px -10px var(--gold); }
.btn--gold:hover { background: var(--gold-2); }
.btn--ghost { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn--ghost:hover { background: var(--green); color: var(--cream); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,241,232,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29,59,46,.08);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 8px 30px -18px rgba(29,59,46,.5); }
.nav__inner {
  max-width: 1180px; margin: 0 auto;
  padding: .75rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__logo { height: 26px; width: auto; display: block; }
.nav__mark {
  font-family: "Cinzel", serif; font-weight: 600; font-size: 1.5rem;
  color: var(--green); letter-spacing: .04em; line-height: 1;
}
.nav__mark .leaf { color: var(--gold); font-size: .7em; vertical-align: super; }
.nav__name { font-family: "Cinzel", serif; font-size: 1.05rem; letter-spacing: .22em; color: var(--green); }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { font-size: .92rem; font-weight: 400; color: var(--ink); transition: color .2s; }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--green); color: var(--cream) !important;
  padding: .55rem 1.25rem; border-radius: 999px; font-weight: 500;
}
.nav__cta:hover { background: var(--gold); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--green); border-radius: 2px; transition: .3s; }

/* ===========================================================
   HERO
   =========================================================== */
/* ---------- Shared top-of-page canvas (hero + story + boxes) ---------- */
.top-scene {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(46rem 34rem at 8% -6%,  rgba(216,171,94,.10), transparent 60%),
    radial-gradient(42rem 36rem at 100% 8%, rgba(40,79,60,.08),  transparent 58%),
    linear-gradient(168deg, #f8f4ec 0%, #f4ecdd 55%, var(--cream-2) 100%);
}
.top-scene > section { position: relative; z-index: 1; }  /* content sits above the orbs (sections are transparent, so they show through) */

/* Soft aurora orbs — blurred gold/green color washes that drift slowly behind the content */
.top-scene__orb {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
  animation: orbFloat 24s ease-in-out infinite;
}
.top-scene__orb--gold-a {
  width: 34rem; height: 34rem; top: -7rem; left: -9rem;
  background: radial-gradient(circle, rgba(216,171,94,.55), transparent 70%);
  animation-duration: 23s;
}
.top-scene__orb--green-a {
  width: 30rem; height: 30rem; top: 6%; right: -10rem;
  background: radial-gradient(circle, rgba(40,79,60,.42), transparent 70%);
  animation-duration: 27s; animation-delay: -6s;
}
.top-scene__orb--green-b {
  width: 36rem; height: 36rem; top: 48%; left: -13rem;
  background: radial-gradient(circle, rgba(40,79,60,.36), transparent 70%);
  animation-duration: 31s; animation-delay: -12s;
}
.top-scene__orb--gold-b {
  width: 31rem; height: 31rem; top: 76%; right: -8rem;
  background: radial-gradient(circle, rgba(216,171,94,.5), transparent 70%);
  animation-duration: 25s; animation-delay: -3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(4%, -3%) scale(1.07); }
  66%      { transform: translate(-3%, 4%) scale(0.95); }
}

.hero { position: relative; padding: 8.5rem 1.4rem 5rem; text-align: center; }
.hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero__logo img {
  width: 158px; height: 158px; margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 18px 50px -18px rgba(29,59,46,.55);
}
.hero__tag { letter-spacing: .42em; font-size: .8rem; color: var(--gold); font-weight: 600; margin-bottom: 1.1rem; }
.hero__title { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1.2rem; }
.hero__title em { color: var(--gold); }
.hero__lead { font-size: 1.12rem; color: var(--muted); max-width: 600px; margin: 0 auto 2rem; }
.hero__lead strong { color: var(--green); font-weight: 600; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 2.2rem; font-size: .95rem; color: var(--muted); }
.hero__note span { font-style: italic; color: var(--green); }

/* ===========================================================
   STORY
   =========================================================== */
.story { padding: 5rem 1.4rem; max-width: 1180px; margin: 0 auto; }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.story__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.story__text h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.4rem; }
.story__text p { color: var(--muted); margin-bottom: 1.1rem; }
.story__text strong { color: var(--green); }
.story__quote {
  font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-style: italic;
  color: var(--green); border-left: 3px solid var(--gold); padding-left: 1.2rem; margin-bottom: 1.4rem !important;
}
.story__quote em { color: var(--gold); }

/* ===========================================================
   BOXES
   =========================================================== */
.boxes { padding: 4.5rem 1.4rem 5.5rem; max-width: 1180px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .8rem; }
.section-head p { color: var(--muted); }
.section-head--light h2, .section-head--light .eyebrow { color: var(--cream); }
.section-head--light .eyebrow { color: var(--gold-2); }
.section-head--light p { color: rgba(245,241,232,.82); }

.boxes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.box-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 40px -26px rgba(29,59,46,.5);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(29,59,46,.06);
}
.box-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.box-card__img { aspect-ratio: 1/1; overflow: hidden; background: var(--cream-2); }
.box-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.box-card:hover .box-card__img img { transform: scale(1.05); }
.box-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; position: relative; }
.box-card__body h3 { font-size: 1.7rem; margin-bottom: .15rem; }
.box-card__sub { color: var(--gold); font-style: italic; font-size: .95rem; margin-bottom: .7rem; }
.box-card__body > p { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.box-card__link { color: var(--green); font-weight: 600; font-size: .95rem; margin-top: auto; transition: color .2s; }
.box-card__link:hover { color: var(--gold); }
.box-card__badge {
  position: absolute; top: -1.5rem; right: 1.3rem;
  background: var(--gold); color: #fff; font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 999px;
}
.box-card--feature { grid-column: span 3; flex-direction: row; }
.box-card--feature .box-card__img { aspect-ratio: auto; width: 42%; min-height: 320px; }
.box-card--feature .box-card__body { padding: 2.4rem; justify-content: center; }
.box-card--feature h3 { font-size: 2.3rem; }
.box-card__opts {
  list-style: none; margin: 0 0 1.3rem; display: grid; gap: .5rem;
  border-top: 1px dashed rgba(29,59,46,.18); padding-top: .9rem;
}
.box-card__opts li { font-size: .85rem; color: var(--muted); padding-left: 1.2rem; position: relative; display: flex; align-items: baseline; gap: .4rem; }
.box-card__opts li::before { content: "\2727"; color: var(--gold); position: absolute; left: 0; top: 0; }
.box-card__opts strong { color: var(--green); }
.box-card__price { margin-left: auto; font-weight: 800; color: var(--green); background: rgba(198,160,74,.16); border: 1px solid rgba(198,160,74,.4); border-radius: 999px; padding: .05rem .5rem; font-size: .82rem; white-space: nowrap; }
/* Feature card keeps a slightly larger options list */
.box-card--feature .box-card__opts li { font-size: .92rem; }

/* ===========================================================
   MENU
   =========================================================== */
.menu { padding: 5rem 1.4rem; background: var(--cream-2); }
.menu .section-head, .menu__tabs, .menu__panel { max-width: 1080px; margin-left: auto; margin-right: auto; }
.menu__tabs { display: flex; justify-content: center; gap: .6rem; margin-bottom: 2.6rem; }
.menu__tab {
  font-family: "Poppins", sans-serif; font-size: .95rem; font-weight: 500;
  padding: .7rem 1.6rem; border-radius: 999px; border: 1.5px solid var(--green);
  background: transparent; color: var(--green); cursor: pointer; transition: .2s;
}
.menu__tab.is-active { background: var(--green); color: var(--cream); }
.menu__panel { display: none; }
.menu__panel.is-active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.menu__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.menu__figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.flavor-list { list-style: none; display: grid; gap: .2rem; }
.flavor-list--two { grid-template-columns: 1fr 1fr; gap: .2rem 2rem; }
.flavor-list li {
  padding: .85rem .2rem; border-bottom: 1px solid rgba(29,59,46,.12);
  display: flex; flex-direction: column;
}
.flavor-list__name { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; font-weight: 600; color: var(--green); }
.flavor-list__desc { font-size: .85rem; color: var(--gold); font-style: italic; }

/* ===========================================================
   BEST SELLERS
   =========================================================== */
.best { padding: 5rem 1.4rem; background:
  radial-gradient(circle at 80% 0%, rgba(192,149,74,.16), transparent 50%), var(--green); }
.best .section-head { margin-bottom: 3rem; }
.best__grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.best__card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 22px 50px -26px rgba(0,0,0,.6);
  transition: transform .25s ease;
}
.best__card:hover { transform: translateY(-6px); }
.best__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.best__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.best__card:hover .best__img img { transform: scale(1.06); }
.best__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(245,241,232,.95); color: var(--green);
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 999px; box-shadow: 0 6px 16px -8px rgba(0,0,0,.5);
}
.best__body { padding: 1.5rem 1.6rem 1.8rem; }
.best__body h3 { font-size: 1.7rem; margin-bottom: .5rem; }
.best__body p { color: var(--muted); font-size: .94rem; }
.best__quote {
  margin-top: 1rem !important; font-family: "Cormorant Garamond", serif;
  font-style: italic; font-size: 1.2rem; color: var(--gold) !important;
}

/* ===========================================================
   TESTIMONIALS (chat-bubble marquee)
   =========================================================== */
.reviews { padding: 5rem 0; background: var(--cream-2); overflow: hidden; }
.reviews .section-head { padding: 0 1.4rem; }
.marquee {
  display: flex; flex-direction: column; gap: 1.3rem;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__row { display: flex; gap: 1.3rem; width: max-content; will-change: transform; }
.marquee__row--left  { animation: scrollLeft 42s linear infinite; }
.marquee__row--right { animation: scrollRight 50s linear infinite; }
.marquee:hover .marquee__row { animation-play-state: paused; }
@keyframes scrollLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.bubble {
  flex: 0 0 auto; max-width: 340px;
  background: #fff; color: var(--ink);
  border: 1px solid rgba(29,59,46,.06);
  border-radius: 20px 20px 20px 5px;
  padding: 1.05rem 1.35rem;
  box-shadow: 0 12px 30px -20px rgba(29,59,46,.6);
}
.bubble p { font-size: .98rem; line-height: 1.5; }
.bubble--green { background: var(--green); color: var(--cream); border-radius: 20px 20px 5px 20px; border-color: transparent; }
.bubble__stars { display: block; margin-top: .45rem; font-size: .8rem; letter-spacing: .12em; color: var(--gold); }
.bubble--green .bubble__stars { color: var(--gold-2); }
@media (prefers-reduced-motion: reduce) {
  .marquee__row { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ===========================================================
   HOW TO ORDER
   =========================================================== */
.how { padding: 5rem 1.4rem; background: var(--green); color: var(--cream); }
.how .section-head { margin-bottom: 3rem; }
.how__steps {
  max-width: 1080px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.how__step { text-align: center; }
.how__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: #fff; font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem; font-weight: 600; margin-bottom: 1rem;
}
.how__step h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: .4rem; }
.how__step p { color: rgba(245,241,232,.7); font-size: .95rem; }
.how__cards { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.how__info { background: rgba(245,241,232,.06); border: 1px solid rgba(245,241,232,.14); border-radius: var(--radius); padding: 1.8rem; }
.how__info h4 { color: var(--gold-2); font-size: 1.4rem; margin-bottom: .8rem; }
.how__info p, .how__info li { color: rgba(245,241,232,.82); font-size: .95rem; }
.how__info strong { color: var(--cream); }
.how__info ul { list-style: none; display: grid; gap: .5rem; }
.how__info li { padding-left: 1.2rem; position: relative; }
.how__info li::before { content: "\2727"; color: var(--gold-2); position: absolute; left: 0; }

/* ===========================================================
   ORDER / CONTACT
   =========================================================== */
.order { padding: 5.5rem 1.4rem; text-align: center; background:
  radial-gradient(circle at 50% 0%, rgba(192,149,74,.12), transparent 55%), var(--cream); }
.order__inner { max-width: 620px; margin: 0 auto; }
.order__inner h2 { font-size: clamp(2.1rem, 5vw, 3.1rem); margin-bottom: 1rem; }
.order__inner > p { color: var(--muted); margin-bottom: 2rem; }
.order__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--green); color: var(--cream); text-align: center; padding: 3.5rem 1.4rem 2.5rem; }
.footer__logo {
  width: 108px; height: 108px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--gold); box-shadow: 0 14px 34px -16px rgba(0,0,0,.6);
  margin: 0 auto 1.4rem;
}
.footer__made { font-style: italic; color: rgba(245,241,232,.7); font-family: "Cormorant Garamond", serif; font-size: 1.15rem; }
.footer__copy { font-size: .8rem; color: rgba(245,241,232,.45); margin-top: 1.2rem; }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s ease;
  animation: fabpop .4s ease;
}
.fab:hover { transform: scale(1.08); }
@keyframes fabpop { from { transform: scale(0); } to { transform: scale(1); } }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78%, 320px);
    flex-direction: column; justify-content: center; gap: 1.8rem;
    background: var(--green); padding: 2rem;
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--cream); font-size: 1.1rem; }
  .nav__links a:hover { color: var(--gold-2); }
  .nav__cta { background: var(--gold); align-self: flex-start; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .story__media { order: -1; }
  .story__media img { aspect-ratio: 16/11; }

  .boxes__grid { grid-template-columns: 1fr 1fr; }
  .box-card--feature { grid-column: span 2; flex-direction: column; }
  .box-card--feature .box-card__img { width: 100%; aspect-ratio: 16/10; min-height: 0; }
  .box-card__badge { top: -1.5rem; }

  .menu__layout { grid-template-columns: 1fr; gap: 2rem; }
  .menu__figure { order: -1; }
  .how__steps { grid-template-columns: 1fr; gap: 2.4rem; }
  .how__cards { grid-template-columns: 1fr; }
  .best__grid { grid-template-columns: 1fr; max-width: 460px; }
  .bubble { max-width: 280px; }
}

@media (max-width: 560px) {
  .nav__name { display: none; }
  .hero { padding-top: 7rem; }
  .hero__logo img { width: 116px; height: 116px; }
  .boxes__grid { grid-template-columns: 1fr; }
  .box-card--feature { grid-column: span 1; }
  .flavor-list--two { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero__cta .btn { width: auto; }

  /* Lighter aurora on phones: smaller blur, fewer orbs to keep paint cheap */
  .top-scene__orb { filter: blur(48px); }
  .top-scene__orb--green-b, .top-scene__orb--gold-b { display: none; }
}
