/* ===================================================================
   JUICE STORY — Design System
   Fonts: Fraunces (display) / Manrope (body) / Space Mono (labels)
   =================================================================== */

:root{
  /* -- palette, lifted from the brand bottle -- */
  --green-dark:   #2F5D1A;
  --green:        #6FAE3D;
  --green-mid:    #8FCB4E;
  --green-light:  #B7E36B;
  --green-tint:   #EAF6DC;

  --orange-deep:  #C24F0A;
  --orange:       #E8600A;
  --orange-mid:   #FB8B24;
  --orange-light: #FDB833;
  --orange-tint:  #FFF3D6;

  --pink:         #F2607A;
  --pink-tint:    #FCE3E8;
  --berry:        #5A4FB8;
  --berry-tint:   #E9E7F9;

  --cream:        #FFFCF5;
  --cream-deep:   #FFF8EF;
  --charcoal:     #1F2A17;
  --ink:          #2A3520;
  --ink-soft:     #5C6A50;
  --white:        #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', 'Segoe UI', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -20px rgba(47,93,26,0.28);
  --shadow-card: 0 10px 30px -12px rgba(47,93,26,0.22);

  --container-max: 1220px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

::selection{ background: var(--orange-light); color: var(--charcoal); }

a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; display: block; }
.container-xl{ max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }

h1,h2,h3,h4,.font-display{
  font-family: var(--font-display);
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
h1{ font-weight: 620; }
.h-huge{ font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 620; }
.h-xl{ font-size: clamp(2.1rem, 3.6vw, 3.1rem); }
.h-lg{ font-size: clamp(1.7rem, 2.6vw, 2.35rem); }
.h-md{ font-size: clamp(1.3rem, 1.8vw, 1.6rem); }

.lede{ font-size: 1.14rem; color: var(--ink-soft); line-height: 1.7; }
.text-soft{ color: var(--ink-soft); }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 26px; height: 2px;
  background: var(--orange);
  display: inline-block;
  border-radius: 2px;
}
.eyebrow.on-dark{ color: var(--green-light); }
.eyebrow.on-dark::before{ background: var(--green-light); }
.eyebrow.green{ color: var(--green-dark); }
.eyebrow.green::before{ background: var(--green); }

section{ position: relative; }
.section{ padding: 100px 0; }
.section-tight{ padding: 64px 0; }
@media (max-width: 767px){
  .section{ padding: 64px 0; }
  .section-tight{ padding: 44px 0; }
}

/* ---------- buttons ---------- */
.btn{
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 30px;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-3px); }
.btn-brand-orange{ background: var(--orange); color: var(--white); box-shadow: var(--shadow-card); }
.btn-brand-orange:hover{ background: var(--orange-deep); color: var(--white); }
.btn-brand-green{ background: var(--green-dark); color: var(--white); box-shadow: var(--shadow-card); }
.btn-brand-green:hover{ background: #234413; color:var(--white); }
.btn-outline-brand{ border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-outline-brand:hover{ background: var(--charcoal); color: var(--white); }
.btn-ghost-light{ border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-ghost-light:hover{ background: rgba(255,255,255,0.14); color: var(--white); }
.btn-sm{ padding: 10px 20px; font-size: 0.86rem; }

.btn-store{
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--charcoal); color: var(--white);
  border-radius: 14px; padding: 10px 20px;
  transition: transform .25s ease, background .25s ease;
}
.btn-store:hover{ transform: translateY(-3px); background: #16200f; color: var(--white); }
.btn-store svg{ width: 26px; height: 26px; flex-shrink: 0; }
.btn-store .store-label{ display:flex; flex-direction:column; line-height:1.15; }
.btn-store .store-label small{ font-size: 0.65rem; opacity: .75; font-weight:600; letter-spacing:.04em; text-transform:uppercase;}
.btn-store .store-label span{ font-family: var(--font-display); font-size: 1.05rem; font-weight:600; }

/* ---------- navbar ---------- */
.js-navbar{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,252,245,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47,93,26,0.08);
  transition: box-shadow .3s ease, background .3s ease;
}
.js-navbar.is-scrolled{ box-shadow: 0 10px 30px -18px rgba(47,93,26,0.35); }
.js-navbar .navbar{ padding: 14px 0; }
.js-navbar .navbar-brand{ display:flex; align-items:center; gap:10px; }
.js-navbar .navbar-brand img{ height: 60px; width:auto; }
.js-navbar .nav-link{
  font-weight: 700; color: var(--ink); margin: 0 12px; position: relative;
  padding: 6px 0 !important;
}
.js-navbar .nav-link::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background: var(--orange); transition: width .25s ease;
}
.js-navbar .nav-link:hover::after,
.js-navbar .nav-link.active::after{ width: 100%; }
.js-navbar .nav-link.active{ color: var(--orange-deep); }
.navbar-toggler{ border: none; box-shadow: none !important; }
.nav-cta{ display:flex; align-items:center; gap:10px; }

/* ---------- hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: 70px 0 40px;
  background: radial-gradient(120% 100% at 100% 0%, var(--green-tint) 0%, var(--cream) 46%);
}
.hero-blob{
  position:absolute; border-radius:50%; filter: blur(2px); opacity:.55; z-index:0;
}
.hero .badge-floating{
  position:absolute; background:var(--white); border-radius: 16px; box-shadow: var(--shadow-card);
  padding: 12px 16px; display:flex; align-items:center; gap:10px; font-weight:800; font-size:.85rem;
  animation: float 5s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

.stat-row{ display:flex; gap: 34px; flex-wrap:wrap; }
.stat-row .stat b{ display:block; font-family: var(--font-display); font-size: 1.9rem; color: var(--green-dark); }
.stat-row .stat span{ font-size: .82rem; color: var(--ink-soft); font-weight:600; }

/* ---------- wavy dividers ---------- */
.wave-divider{ display:block; width:100%; line-height:0; }
.wave-divider svg{ width:100%; height: 70px; display:block; }
@media (max-width: 767px){ .wave-divider svg{ height: 40px; } }

/* ---------- cards ---------- */
.card-feature{
  background: var(--white); border-radius: var(--radius-md); padding: 30px 26px;
  box-shadow: var(--shadow-card); height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(47,93,26,0.06);
}
.card-feature:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.card-feature img{ width: 74px; height: 74px; margin-bottom: 18px; }
.card-feature h3{ font-size: 1.18rem; margin-bottom: 8px; }
.card-feature p{ color: var(--ink-soft); font-size: .95rem; margin:0; }

.step-card{ position: relative; padding-left: 0; }
.step-num{
  font-family: var(--font-display); font-size: 2.6rem; color: var(--green-light);
  -webkit-text-stroke: 1.5px var(--green-dark); font-weight: 700; line-height:1;
}
.step-card h3{ font-size: 1.1rem; margin: 10px 0 6px; }
.step-card p{ color: var(--ink-soft); font-size: .92rem; }

.product-card{
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product-card .product-media{ background: var(--cream-deep); padding: 18px 26px 0; }
.product-card .product-body{ padding: 18px 22px 24px; }
.product-card .tag{
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-dark); background: var(--green-tint); padding: 4px 10px; border-radius: 999px; font-weight:700;
}
.product-card h3{ font-size: 1.05rem; margin: 10px 0 4px; }
.product-card p{ font-size: .88rem; color: var(--ink-soft); margin: 0; }

.quote-card{
  background: var(--white); border-radius: var(--radius-md); padding: 30px 28px;
  box-shadow: var(--shadow-card); height: 100%;
}
.quote-card .stars{ color: var(--orange-mid); letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem;}
.quote-card p{ font-size: .98rem; color: var(--ink); }
.quote-person{ display:flex; align-items:center; gap: 12px; margin-top: 18px; }
.avatar-badge{
  width: 46px; height: 46px; border-radius: 50%; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; color: var(--white); font-size: 1rem; flex-shrink:0;
}
.quote-person .who b{ display:block; font-size: .92rem; }
.quote-person .who span{ font-size: .78rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--green-dark), #3E7B1F 55%, var(--orange-deep));
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band h2{ color: var(--white); }
.cta-band .lede{ color: rgba(255,255,255,0.85); }
@media (max-width: 767px){ .cta-band{ padding: 44px 24px; } }

/* ---------- footer ---------- */
.site-footer{ background: var(--charcoal); color: rgba(255,255,255,0.78); padding-top: 70px; }
.site-footer a{ color: rgba(255,255,255,0.78); transition: color .2s ease; }
.site-footer a:hover{ color: var(--orange-light); }
.site-footer h6{ color: var(--white); font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing:.06em; text-transform:uppercase; margin-bottom: 18px;}
.site-footer .foot-brand img{ height: 80px; margin-bottom: 14px; }
.site-footer .foot-links li{ margin-bottom: 10px; font-size: .92rem; }
.site-footer .foot-contact li{ display:flex; gap:10px; margin-bottom: 14px; font-size:.9rem; align-items:flex-start; }
.site-footer .foot-contact img{ width: 20px; height:20px; margin-top:2px; flex-shrink:0; }
.site-footer .social-row{ display:flex; gap: 10px; margin-top: 6px; }
.social-circle{
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center; transition: background .2s ease, transform .2s ease;
}
.social-circle:hover{ background: var(--orange); transform: translateY(-3px); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding: 22px 0;
  font-size: .82rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-bottom a{ margin-left: 16px; }

/* ---------- page header (inner pages) ---------- */
.page-header{
  padding: 150px 0 70px;
  background: linear-gradient(160deg, var(--green-tint) 0%, var(--cream) 55%);
  position: relative; overflow: hidden;
}
.page-header .crumbs{ font-family: var(--font-mono); font-size: .78rem; color: var(--ink-soft); letter-spacing: .04em; }
.page-header .crumbs a{ color: var(--green-dark); font-weight:700; }
@media (max-width: 767px){ .page-header{ padding: 120px 0 50px; } }

/* ---------- forms ---------- */
.form-control-brand{
  border: 2px solid #E4E4D8; border-radius: 14px; padding: 14px 18px;
  font-family: var(--font-body); font-size: .96rem; background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control-brand:focus{
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-tint);
}
label.form-label-brand{ font-weight: 700; font-size: .84rem; margin-bottom: 6px; display:block; color: var(--ink); }

/* ---------- misc utilities ---------- */
.tint-green{ background: var(--green-tint); }
.tint-orange{ background: var(--orange-tint); }
.tint-pink{ background: var(--pink-tint); }
.tint-berry{ background: var(--berry-tint); }
.rounded-blob{ border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; }

.reveal{ opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
.js-reveal-ready .reveal{ opacity: 0; transform: translateY(26px); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

.back-to-top{
  position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-dark); color: var(--white); display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease; z-index: 999; border: none;
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }

.whatsapp-float{
  position: fixed; left: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-soft);
  z-index: 999; transition: transform .25s ease;
}
.whatsapp-float:hover{ transform: translateY(-4px) scale(1.05); }

.divider-line{ height:1px; background: rgba(47,93,26,0.12); border:none; margin: 60px 0; }

/* ---------- policy / prose pages ---------- */
.prose{ max-width: 840px; }
.prose h2{ font-size: 1.5rem; margin-top: 46px; margin-bottom: 14px; }
.prose h2:first-child{ margin-top: 0; }
.prose h3{ font-size: 1.12rem; margin-top: 26px; margin-bottom: 10px; color: var(--green-dark); font-family: var(--font-body); font-weight:800;}
.prose p{ color: var(--ink-soft); margin-bottom: 14px; }
.prose ul{ color: var(--ink-soft); margin-bottom: 16px; padding-left: 22px; }
.prose li{ margin-bottom: 8px; }
.prose li::marker{ color: var(--orange); }
.prose strong{ color: var(--ink); }
.toc-card{
  background: var(--white); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-card);
  position: sticky; top: 110px;
}
.toc-card a{ display:block; font-size: .88rem; font-weight:700; padding: 8px 0; color: var(--ink-soft); border-bottom: 1px dashed #E4E4D8; }
.toc-card a:last-child{ border-bottom:none; }
.toc-card a:hover{ color: var(--orange-deep); }

/* ---------- contact page ---------- */
.contact-info-card{
  background: var(--white); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-card);
  display:flex; gap:16px; align-items:flex-start; height:100%;
}
.contact-info-card img{ width: 52px; height: 52px; flex-shrink:0; }
.contact-info-card h3{ font-size: 1.02rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a{ font-size: .9rem; color: var(--ink-soft); margin:0; }
.map-frame{
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); border: 6px solid var(--white);
}
.map-frame iframe{ width:100%; height: 100%; min-height: 360px; border:0; display:block; }

/* ---------- gallery filters ---------- */
.filter-pill{
  border: 2px solid #E4E4D8; background: var(--white); border-radius: 999px; padding: 9px 20px;
  font-weight: 700; font-size: .86rem; color: var(--ink); transition: all .2s ease; cursor:pointer;
}
.filter-pill.active, .filter-pill:hover{ background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }

/* ---------- values / timeline (about) ---------- */
.value-row{ display:flex; gap:18px; padding: 22px 0; border-bottom: 1px solid rgba(47,93,26,0.1); }
.value-row:last-child{ border-bottom:none; }
.value-row .num{ font-family: var(--font-display); font-size: 1.4rem; color: var(--orange); width: 44px; flex-shrink:0; }

.badge-soft{
  display:inline-flex; align-items:center; gap:8px; background: var(--white); border-radius:999px;
  padding: 8px 16px; font-weight:700; font-size:.82rem; box-shadow: var(--shadow-card);
}

/* scrollbar accent */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: var(--cream-deep); }
::-webkit-scrollbar-thumb{ background: var(--green); border-radius: 10px; }
