/* =================================================================
   MAQ'COOL — tropical fruit syrups
   Tokens
================================================================= */
:root{
  --sand:      #FFF8EC;
  --card:      #FFFFFF;
  --ink:       #2B1B2E;
  --ink-soft:  #6B5A6E;

  --coral:     #C1440E;  /* terracotta */
  --coral-dark:#9C350A;
  --teal:      #1E6B3A;  /* savanna green */
  --teal-dark: #155429;
  --gold:      #F2A93B;  /* sunset gold */
  --pink:      #A32638;  /* kente red */
  --plum:      #4B2E1E;  /* earth brown */
  --plum-deep: #2E1B10;
  --lime:      #6B8E23;  /* olive */

  --whatsapp:  #25D366;
  --whatsapp-dark: #1DA851;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-card: 0 18px 40px -18px rgba(46,27,16,0.4);
  --shadow-soft: 0 10px 24px -14px rgba(46,27,16,0.32);

  --wrap: 1180px;
}

/* =================================================================
   Reset & base
================================================================= */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--sand);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3{
  font-family: 'Baloo 2', sans-serif;
  color: var(--ink);
  margin: 0 0 .4em;
  line-height: 1.1;
}
p{ margin: 0 0 1em; color: var(--ink-soft); }
img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* =================================================================
   Buttons
================================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn-icon{ width:20px; height:20px; flex:none; }

.btn-whatsapp{
  background: var(--whatsapp);
  color:#fff;
  box-shadow: 0 14px 28px -12px rgba(37,211,102,0.55);
}
.btn-whatsapp:hover{ background: var(--whatsapp-dark); }

.btn-ghost{
  background: rgba(255,255,255,0.14);
  color:#fff;
  border: 1.5px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.26); }

.btn-dark{
  background: var(--plum);
  color:#fff;
}
.btn-dark:hover{ background: var(--plum-deep); }

.btn-small{ padding: 10px 20px; font-size: .88rem; }
.btn-full{ width:100%; }

/* =================================================================
   Kente accent strip — used sparingly, top of page and above footer
================================================================= */
.kente-strip{
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--gold) 0 16px,
    var(--coral) 16px 32px,
    var(--teal) 32px 48px,
    var(--pink) 48px 64px,
    var(--plum) 64px 80px
  );
}

/* =================================================================
   Nav
================================================================= */
.nav{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(255,248,236,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46,27,16,0.1);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.scrolled{
  box-shadow: 0 8px 24px -18px rgba(46,27,16,0.35);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 76px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-badge{
  width: 48px; height: 32px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.brand-name{
  font-family:'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--plum);
  letter-spacing: .2px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 30px;
}
.nav-links a{
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a:not(.nav-cta)::after{
  content:'';
  position:absolute; left:0; right:100%; bottom:0;
  height:2px; background: var(--coral);
  transition: right .22s ease;
}
.nav-links a:not(.nav-cta):hover::after{ right:0; }
.nav-cta{
  background: var(--whatsapp);
  color:#fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight:600;
}
.nav-cta:hover{ background: var(--whatsapp-dark); }

.burger{
  display:none;
  flex-direction: column;
  gap:5px;
  background:none; border:none; padding: 8px;
}
.burger span{
  width: 24px; height: 2.5px; border-radius:2px;
  background: var(--plum);
  transition: transform .25s ease, opacity .25s ease;
}
.burger.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* =================================================================
   Hero
================================================================= */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
}
.hero-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(46,27,16,0.55) 0%, rgba(46,27,16,0.5) 45%, rgba(46,27,16,0.85) 100%),
    linear-gradient(100deg, rgba(163,38,56,0.35), rgba(30,107,58,0.22));
  z-index: 1;
}
.hero-content{ position:relative; z-index:2; max-width: 680px; padding-top: 40px; padding-bottom: 60px; }
.hero-eyebrow{
  font-weight:600;
  font-size: .92rem;
  letter-spacing: .3px;
  color: #FFE4B8;
  margin-bottom: 14px;
}
.hero-title{
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  color:#fff;
  margin-bottom: 20px;
}
.hero-sub{
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.scroll-cue{
  position:absolute;
  bottom: 26px; left:50%;
  transform: translateX(-50%);
  z-index:2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
}
.scroll-cue span{
  position:absolute; top:6px; left:50%;
  width:5px; height:5px; margin-left:-2.5px;
  background:#fff; border-radius:50%;
  animation: cue 1.8s infinite ease;
}
@keyframes cue{
  0%{ opacity:1; transform: translateY(0);}
  70%{ opacity:0; transform: translateY(16px);}
  100%{ opacity:0; }
}

/* =================================================================
   Marquee
================================================================= */
.marquee{
  background: var(--plum);
  color: #FFE4B8;
  overflow:hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee-track{
  display:inline-flex;
  gap: 16px;
  font-family:'Baloo 2', sans-serif;
  font-weight:600;
  font-size: 1.05rem;
  letter-spacing:.3px;
  animation: scroll-left 26s linear infinite;
}
.marquee-track span:nth-child(odd){ color: var(--coral); }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =================================================================
   Sections (generic)
================================================================= */
.section{ padding: 100px 0; }
.section-head{ max-width: 620px; margin: 0 auto 56px; text-align:center; }
.section-head-left{ text-align:left; margin: 0 0 40px; max-width: 520px; }
.section-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head p{ font-size: 1.05rem; }

.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* =================================================================
   Flavours
================================================================= */
.flavour-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.flavour-card{
  background: var(--card);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  display:flex;
  flex-direction:column;
}
.flavour-card:hover{
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow: 0 26px 50px -16px rgba(46,27,16,0.45);
}
.flavour-media{
  aspect-ratio: 4/5;
  overflow:hidden;
  background: var(--sand);
}
.flavour-media img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease;
}
.flavour-card:hover .flavour-media img{ transform: scale(1.06); }
.flavour-body{ padding: 22px 22px 26px; flex:1; display:flex; flex-direction:column; }
.flavour-body h3{ font-size:1.35rem; margin-bottom:8px; }
.flavour-body p{ font-size:.95rem; flex:1; }

.chip{
  display:inline-block;
  align-self:flex-start;
  font-family:'Baloo 2',sans-serif;
  font-size:.78rem;
  font-weight:700;
  padding: 4px 12px;
  border-radius: 999px;
  color:#fff;
  margin-bottom: 12px;
}
.chip-purple{ background: var(--plum); }
.chip-green{ background: var(--lime); }
.chip-pink{ background: var(--pink); }
.chip-orange{ background: var(--coral); }
.chip-lime{ background: #8FA31E; }

.flavour-card-cta{
  background: linear-gradient(150deg, var(--pink), var(--coral));
  color:#fff;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 30px;
}
.flavour-cta-inner h3{ color:#fff; }
.flavour-cta-inner p{ color: rgba(255,255,255,0.9); }
.flavour-card-cta .btn-dark{ background: rgba(46,27,16,0.85); }

/* =================================================================
   How it's made
================================================================= */
.section-made{ background: var(--card); }
.made-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items:center;
}
.ingredient-list{ margin-bottom: 36px; }
.ingredient-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46,27,16,0.1);
}
.ingredient-list li:last-child{ border-bottom:none; }
.ing-dot{
  width:12px; height:12px; margin-top:6px; border-radius:50%;
  background: var(--dot);
  flex:none;
}
.ingredient-list strong{ font-family:'Baloo 2',sans-serif; font-size:1.02rem; }
.ingredient-list p{ margin:2px 0 0; font-size:.92rem; }

.steps{ display:flex; flex-direction:column; gap:14px; }
.step{ display:flex; gap:14px; align-items:flex-start; }
.step-no{
  flex:none;
  width:30px; height:30px;
  display:flex; align-items:center; justify-content:center;
  background: var(--plum); color:#fff;
  border-radius:50%;
  font-family:'Baloo 2',sans-serif; font-weight:700; font-size:.9rem;
}
.step p{ margin:4px 0 0; font-size:.95rem; }

.made-visual{ display:flex; justify-content:center; }
.pour-art{ width:100%; max-width: 380px; }
.pour-stream{ stroke-dasharray: 8 10; animation: pour 1.4s linear infinite; }
@keyframes pour{ to{ stroke-dashoffset: -36; } }

/* =================================================================
   Lifestyle
================================================================= */
.section-life{ background: var(--sand); }
.life-art{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-card);
}
.life-svg{ width:100%; height:auto; display:block; }

/* =================================================================
   Reviews
================================================================= */
.section-reviews{ background: var(--plum); }
.section-reviews .section-head h2{ color:#fff; }
.section-reviews .section-head p{ color: rgba(255,255,255,0.75); }

.reviews-track{
  display:flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 24px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar{ height:8px; }
.reviews-track::-webkit-scrollbar-thumb{ background: rgba(255,255,255,0.25); border-radius:8px; }

.review-card{
  scroll-snap-align: start;
  flex: 0 0 300px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 26px;
  color: #fff;
}
.stars{ color: var(--gold); letter-spacing:2px; margin-bottom:12px; }
.review-card p{ color: rgba(255,255,255,0.92); font-size:.95rem; min-height: 90px; }
.review-who{ display:flex; align-items:center; gap:12px; margin-top: 14px; }
.avatar{
  width:40px; height:40px; border-radius:50%;
  background: var(--c);
  display:flex; align-items:center; justify-content:center;
  font-family:'Baloo 2',sans-serif; font-weight:700;
  flex:none;
}
.review-who strong{ display:block; font-size:.92rem; }
.review-who span{ font-size:.8rem; color: rgba(255,255,255,0.65); }

/* =================================================================
   Order form
================================================================= */
.section-order{ background: var(--card); }
.order-grid{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items:start;
}
.contact-cards{ display:flex; flex-direction:column; gap:14px; margin-top: 10px; }
.contact-card{
  display:flex; align-items:center; gap:14px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.contact-ico{
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1.1rem; color:#fff; flex:none;
}
.ico-whatsapp{ background: var(--whatsapp); }
.ico-mail{ background: var(--teal); }
.contact-card strong{ display:block; font-size:.98rem; }
.contact-card span{ font-size:.82rem; color: var(--ink-soft); }

.order-form{
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 34px;
  display:flex;
  flex-direction:column;
  gap: 18px;
  box-shadow: var(--shadow-card);
}
.order-form label{
  display:flex; flex-direction:column; gap:6px;
  font-size:.86rem; font-weight:600; color: var(--plum);
}
.order-form input[type="text"],
.order-form input[type="tel"],
.order-form textarea{
  font-family:'Poppins',sans-serif;
  font-size: .96rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(46,27,16,0.16);
  background:#fff;
  color: var(--ink);
  resize: vertical;
}
.order-form input:focus,
.order-form textarea:focus{
  outline: none;
  border-color: var(--coral);
}
.form-row.two{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }

.qty-fieldset{ border:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.qty-fieldset legend{ font-family:'Baloo 2',sans-serif; font-weight:600; color: var(--plum); margin-bottom:6px; padding:0; }
.qty-row{
  display:flex; align-items:center; justify-content:space-between;
  background:#fff; border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1.5px solid rgba(46,27,16,0.1);
}
.qty-label{ font-weight:500; font-size:.92rem; }
.qty-label em{ font-style:normal; color: var(--ink-soft); font-size:.82rem; margin-left:4px; }
.qty-control{ display:flex; align-items:center; gap:10px; }
.qty-btn{
  width:30px; height:30px; border-radius:50%;
  border:none; background: var(--plum); color:#fff;
  font-size:1.1rem; line-height:1;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, transform .15s ease;
}
.qty-btn:hover{ background: var(--coral); transform: scale(1.08); }
.qty-input{
  width: 34px; text-align:center; border:none; background:transparent;
  font-weight:700; font-size:1rem; color: var(--ink);
}
.qty-input::-webkit-inner-spin-button{ -webkit-appearance:none; }

.form-error{
  display:none;
  color: var(--coral-dark);
  background: rgba(255,106,69,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size:.85rem;
  margin: -4px 0 0;
}
.form-error.show{ display:block; }

/* =================================================================
   Footer
================================================================= */
.footer{ background: var(--plum-deep); color: rgba(255,255,255,0.82); padding: 70px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo{ width:120px; border-radius:10px; margin-bottom:14px; }
.footer-brand p{ color: rgba(255,255,255,0.65); font-size:.9rem; max-width:260px; }
.footer-col h4{ font-family:'Baloo 2',sans-serif; color:#FFE4B8; font-size:1rem; margin-bottom:14px; }
.footer-col a{ display:block; font-size:.92rem; margin-bottom:10px; color: rgba(255,255,255,0.8); }
.footer-col a:hover{ color: var(--coral); }
.footer-note{ font-size:.88rem; color: rgba(255,255,255,0.65); }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding: 22px 24px;
  font-size:.82rem;
  color: rgba(255,255,255,0.55);
}

/* =================================================================
   Floating WhatsApp button
================================================================= */
.fab-whatsapp{
  position:fixed; right:22px; bottom:22px; z-index:200;
  width:58px; height:58px; border-radius:50%;
  background: var(--whatsapp); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6);
  transition: transform .2s ease;
}
.fab-whatsapp svg{ width:28px; height:28px; }
.fab-whatsapp:hover{ transform: scale(1.08); }

/* =================================================================
   Responsive
================================================================= */
@media (max-width: 980px){
  .made-grid, .order-grid{ grid-template-columns: 1fr; }
  .made-visual{ order:-1; }
  .flavour-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .nav-links{
    position: fixed;
    top: 76px; left:0; right:0;
    background: var(--sand);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    transform: translateY(-130%);
    opacity:0;
    transition: transform .3s ease, opacity .3s ease;
    box-shadow: 0 20px 30px -20px rgba(46,27,16,0.35);
  }
  .nav-links.open{ transform: translateY(0); opacity:1; }
  .nav-links a{ padding: 12px 4px; border-bottom: 1px solid rgba(46,27,16,0.08); }
  .nav-cta{ text-align:center; margin-top:8px; }
  .burger{ display:flex; }

  .flavour-grid{ grid-template-columns: 1fr; }
  .form-row.two{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .section{ padding: 70px 0; }
  .hero{ min-height: 100vh; }
}
