:root{
  --navy:#111b34;
  --navy-2:#1c2b52;
  --ink:#172033;
  --muted:#667085;
  --line:rgba(17,27,52,.11);
  --honey:#ffb800;
  --gold:#ffd34e;
  --orange:#ff7900;
  --pink:#f72585;
  --blue:#47c7ff;
  --mint:#dff9f2;
  --cream:#fff8dd;
  --white:#fff;
  --shadow:0 34px 90px rgba(17,27,52,.15);
  --radius:34px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit}

.page-shell{
  min-height:100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,184,0,.22), transparent 26%),
    radial-gradient(circle at 96% 8%, rgba(71,199,255,.18), transparent 28%),
    linear-gradient(180deg,#fffdf6,#ffffff 48%,#fff9e4);
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  height:82px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:28px;
  align-items:center;
  padding:0 clamp(22px,5vw,84px);
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line);
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:950;
}
.logo-text{letter-spacing:.01em}
.nav{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:.9rem;
  font-weight:850;
  color:#34405b;
}
.nav a{position:relative}
.nav a:after{
  content:"";
  position:absolute;
  left:0;right:100%;bottom:-8px;
  height:3px;
  background:linear-gradient(90deg,var(--honey),var(--orange));
  border-radius:99px;
  transition:.25s;
}
.nav a:hover:after{right:0}
.lang-switcher{
  display:flex;
  gap:3px;
  padding:5px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  box-shadow:0 12px 28px rgba(17,27,52,.08);
}
.lang-switcher a,.lang-switcher button{
  border:0;
  background:transparent;
  color:#667085;
  padding:8px 9px;
  border-radius:999px;
  font-weight:900;
  font-size:.78rem;
  cursor:pointer;
}
.lang-switcher .active{
  background:var(--navy);
  color:#fff;
}
.nav-toggle{display:none}

.section-pad{
  padding:clamp(68px,8vw,128px) clamp(22px,5vw,84px);
}
.hero{
  min-height:calc(100vh - 82px);
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:36px;
  position:relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(30deg, rgba(17,27,52,.055) 12%, transparent 12.5%, transparent 87%, rgba(17,27,52,.055) 87.5%, rgba(17,27,52,.055)),
    linear-gradient(150deg, rgba(17,27,52,.055) 12%, transparent 12.5%, transparent 87%, rgba(17,27,52,.055) 87.5%, rgba(17,27,52,.055));
  background-size:72px 42px;
  opacity:.28;
  mask-image:radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
  pointer-events:none;
}
.hero-copy{position:relative;z-index:3}
.eyebrow,.section-kicker,.product-type{
  margin:0 0 16px;
  font-size:.82rem;
  line-height:1;
  font-weight:950;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.19em;
}
h1,h2,h3{
  font-family:"Barlow Condensed",Inter,sans-serif;
  margin:0;
  line-height:.9;
  text-transform:uppercase;
  letter-spacing:-.035em;
}
h1{
  font-size:clamp(4rem,8.6vw,9.4rem);
  max-width:920px;
}
h1 span{
  display:block;
  color:var(--honey);
  text-shadow:0 3px 0 rgba(17,27,52,.07);
}
h2{
  font-size:clamp(2.7rem,5.7vw,6.3rem);
  max-width:1050px;
}
h3{font-size:clamp(1.8rem,2.6vw,3rem)}
.lead{
  max-width:720px;
  margin:28px 0 0;
  color:#59657a;
  font-size:clamp(1.06rem,1.5vw,1.34rem);
  line-height:1.7;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:36px 0 32px;
}
.btn{
  display:inline-flex;
  min-height:58px;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:999px;
  font-weight:950;
  transition:.25s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{
  background:linear-gradient(135deg,var(--honey),var(--orange));
  color:#1f1500;
  box-shadow:0 20px 36px rgba(255,121,0,.22);
}
.btn-soft{
  background:#fff;
  box-shadow:0 16px 35px rgba(17,27,52,.10);
  border:1px solid var(--line);
}
.trust-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(120px,1fr));
  gap:14px;
  max-width:720px;
}
.trust-row div{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.65);
  box-shadow:0 16px 40px rgba(17,27,52,.08);
}
.trust-row strong{
  display:block;
  font-family:"Barlow Condensed";
  font-size:2.2rem;
  line-height:.85;
  color:var(--navy);
  text-transform:uppercase;
}
.trust-row span{
  display:block;
  margin-top:6px;
  font-weight:800;
  color:#607086;
  font-size:.88rem;
}
.hero-visual{
  position:relative;
  min-height:620px;
  display:grid;
  place-items:center;
  z-index:2;
}
.hero-visual img{
  width:min(760px,100%);
  position:relative;
  z-index:4;
  filter:drop-shadow(0 42px 54px rgba(17,27,52,.22));
  transform:rotate(-2deg);
}
.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(20px);
  opacity:.78;
}
.orb-a{
  width:500px;height:500px;
  background:radial-gradient(circle,var(--gold),rgba(255,184,0,.22) 50%,transparent 72%);
  right:9%;top:9%;
}
.orb-b{
  width:310px;height:310px;
  background:radial-gradient(circle,rgba(247,37,133,.28),transparent 68%);
  right:3%;bottom:16%;
}
.hex-cloud span{
  position:absolute;
  width:70px;height:80px;
  clip-path:polygon(25% 3%,75% 3%,100% 50%,75% 97%,25% 97%,0 50%);
  border:5px solid rgba(17,27,52,.12);
}
.hex-cloud span:nth-child(1){right:7%;top:13%;border-color:rgba(255,184,0,.5)}
.hex-cloud span:nth-child(2){left:8%;top:29%;border-color:rgba(247,37,133,.38);width:52px;height:60px}
.hex-cloud span:nth-child(3){right:5%;bottom:28%;border-color:rgba(71,199,255,.42);width:45px;height:52px}
.hex-cloud span:nth-child(4){left:18%;bottom:12%;border-color:rgba(255,121,0,.42);width:82px;height:94px}
.hex-cloud span:nth-child(5){right:33%;bottom:5%;border-color:rgba(17,27,52,.22);width:40px;height:46px}

.ticker{
  overflow:hidden;
  background:var(--navy);
  color:white;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.ticker-track{
  display:flex;
  width:max-content;
  gap:38px;
  padding:16px 0;
  animation:scroll 24s linear infinite;
}
.ticker span{
  font-weight:900;
  text-transform:uppercase;
  white-space:nowrap;
}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.split{
  display:grid;
  grid-template-columns:1fr .82fr;
  gap:36px;
  align-items:stretch;
}
.about p,.section-head p,.panel-copy p,.contact p,.ingredients p{
  color:#5d687d;
  line-height:1.75;
  font-size:1.05rem;
}
.about .split > div:first-child p{
  max-width:790px;
}
.brand-punch{
  margin-top:18px;
  font-weight:800;
  color:var(--navy)!important;
  padding-left:18px;
  border-left:5px solid var(--honey);
}
.story-card{
  border-radius:var(--radius);
  padding:36px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,184,0,.28), transparent 38%),
    linear-gradient(135deg,#fff,#fff4c8);
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.big-quote{
  font-family:"Barlow Condensed";
  font-size:clamp(2.5rem,4vw,4rem)!important;
  line-height:.95!important;
  color:var(--navy)!important;
  text-transform:uppercase;
  letter-spacing:-.02em;
  margin:0 0 30px!important;
}
.mini-stats{
  display:grid;
  gap:12px;
}
.mini-stats div{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
  border-top:1px solid rgba(17,27,52,.12);
}
.mini-stats b{font-size:1.2rem}
.mini-stats span{color:#687387;text-align:right}

.benefits{
  background:
    radial-gradient(circle at top right, rgba(71,199,255,.18), transparent 35%),
    linear-gradient(180deg,#fff,#f8fbff);
}
.section-head{
  margin-bottom:38px;
}
.section-head p{max-width:840px}
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.benefit-card{
  padding:28px 26px 30px;
  border-radius:30px;
  background:linear-gradient(180deg,#fff,#fbfcff);
  border:1px solid var(--line);
  box-shadow:0 24px 70px rgba(17,27,52,.08);
  transition:.25s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}
.benefit-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow);
}
.benefit-media{
  min-height:124px;
  margin-bottom:20px;
  border-radius:24px;
  background:linear-gradient(135deg,#fff8d8 0%, #ffffff 100%);
  border:1px solid rgba(225, 198, 102, .26);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.benefit-media img{
  width:96px;
  height:96px;
  object-fit:contain;
  filter:drop-shadow(0 12px 20px rgba(17,27,52,.12));
}
.benefit-media--guarana{
  background:radial-gradient(circle at top, rgba(255,196,0,.3), rgba(255,255,255,1) 62%), linear-gradient(135deg,#fff8d8 0%, #ffffff 100%);
}
.benefit-media--guarana span{
  display:grid;
  place-items:center;
  width:86px;
  height:86px;
  border-radius:28px;
  background:linear-gradient(135deg, var(--orange), var(--honey));
  color:#fff;
  font-size:2.5rem;
  box-shadow:0 16px 28px rgba(255, 160, 0, .28);
}
.benefit-card h3{
  margin-bottom:10px;
}
.benefit-card p{
  color:#667085;
  line-height:1.65;
  margin:0;
}

.products{
  background:#fff;
}
.product-showcase{
  display:grid;
  gap:26px;
}
.product-panel{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:32px;
  align-items:center;
  min-height:480px;
  padding:clamp(26px,4vw,52px);
  border-radius:44px;
  border:1px solid var(--line);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.panel-gel{
  background:
    radial-gradient(circle at 82% 50%, rgba(247,37,133,.24), transparent 33%),
    radial-gradient(circle at 68% 20%, rgba(255,184,0,.34), transparent 28%),
    linear-gradient(135deg,#fff7cf,#fff);
}
.panel-iso{
  background:
    radial-gradient(circle at 85% 55%, rgba(71,199,255,.2), transparent 35%),
    radial-gradient(circle at 78% 20%, rgba(255,121,0,.28), transparent 32%),
    linear-gradient(135deg,#fff,#fff1cf);
}
.panel-protein{
  background:
    radial-gradient(circle at 86% 50%, rgba(71,199,255,.20), transparent 35%),
    linear-gradient(135deg,#f7fcff,#fff);
}
.panel-copy ul{
  margin:22px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.panel-copy li{
  position:relative;
  padding-left:28px;
  color:#4e5d73;
  font-weight:700;
}
.panel-copy li:before{
  content:"";
  position:absolute;
  left:0;top:.48em;
  width:12px;height:12px;
  background:linear-gradient(135deg,var(--honey),var(--orange));
  clip-path:polygon(25% 3%,75% 3%,100% 50%,75% 97%,25% 97%,0 50%);
}
.panel-image{
  min-height:330px;
  display:grid;
  place-items:center;
  position:relative;
}
.panel-image img{
  max-height:420px;
  object-fit:contain;
  filter:drop-shadow(0 30px 38px rgba(17,27,52,.19));
}
.two-products{
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.two-products img{
  max-height:350px;
}
.usage{
  background:var(--navy);
  color:white;
}
.usage .section-kicker{color:var(--honey)}
.timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.time-card{
  padding:34px;
  border-radius:30px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.time-card span{
  display:inline-grid;
  place-items:center;
  width:52px;height:52px;
  border-radius:18px;
  background:var(--honey);
  color:#171000;
  font-weight:950;
  margin-bottom:22px;
}
.time-card p{
  color:#d7deea;
  line-height:1.65;
}

.ingredients{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:center;
  background:
    radial-gradient(circle at 15% 40%, rgba(255,184,0,.22), transparent 30%),
    linear-gradient(180deg,#fff,#fff9df);
}
.ingredient-visual{
  min-height:430px;
  border-radius:44px;
  position:relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,184,0,.40), transparent 42%),
    linear-gradient(135deg,#fff,#fff3bf);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.ingredient-visual:before{
  content:"";
  position:absolute;
  inset:40px;
  border-radius:50%;
  border:2px dashed rgba(17,27,52,.14);
}
.ingredient-bubble{
  position:absolute;
  display:grid;
  place-items:center;
  width:128px;height:128px;
  border-radius:36px;
  background:white;
  box-shadow:0 20px 45px rgba(17,27,52,.12);
  font-family:"Barlow Condensed";
  font-size:2.1rem;
  text-transform:uppercase;
  color:var(--navy);
}
.honey{left:12%;top:15%;background:#fff4c5}
.fruit{right:12%;top:18%;background:#ffe8f2}
.salt{left:18%;bottom:12%;background:#e9fbff}
.whey{right:16%;bottom:16%;background:#fff}
.clear-list{
  display:grid;
  gap:14px;
  margin-top:26px;
}
.clear-list div{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:18px;
  align-items:center;
  padding:18px;
  border-radius:20px;
  background:white;
  border:1px solid var(--line);
  box-shadow:0 14px 35px rgba(17,27,52,.06);
}
.clear-list strong{font-size:1.04rem}
.clear-list span{color:#627087;line-height:1.55}


.above-contact{
  background:linear-gradient(180deg,#fff,#fff7d2);
  padding-top:70px;
  padding-bottom:30px;
}
.above-contact img{
  width:100%;
  max-width:245px;
  margin:0 auto;
  border-radius:28px;
  box-shadow:var(--shadow);
  object-fit:cover;
}


.presentation-download{
  background:linear-gradient(180deg,#fff7d2,#fff);
  padding-top:28px;
  padding-bottom:26px;
}
.presentation-card{
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  width:min(980px,100%);
  margin:0 auto;
  padding:clamp(22px,4vw,38px);
  border-radius:34px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255,184,0,.26), transparent 30%),
    linear-gradient(135deg,#ffffff,#fff3b8);
  border:1px solid var(--line);
  box-shadow:0 18px 45px rgba(17,27,52,.08);
}
.presentation-card h2{
  margin:6px 0 10px;
  font-size:clamp(2rem,4.2vw,4rem);
}
.presentation-card p:not(.section-kicker){
  max-width:680px;
  color:#627087;
  line-height:1.65;
}
.download-icon{
  width:118px;
  height:118px;
  display:grid;
  place-items:center;
  border-radius:30px;
  background:linear-gradient(135deg,var(--navy),#23355f);
  color:#fff;
  box-shadow:0 18px 36px rgba(17,27,52,.20);
  position:relative;
  overflow:hidden;
}
.download-icon::before{
  content:"";
  position:absolute;
  inset:-40% auto auto -20%;
  width:90px;
  height:190px;
  background:rgba(255,255,255,.16);
  transform:rotate(28deg);
}
.download-icon svg{
  width:62px;
  height:62px;
  position:relative;
  z-index:1;
}
.download-icon .doc-shape{fill:#fff8dc}
.download-icon .doc-fold{fill:none;stroke:#ffb800;stroke-width:4;stroke-linejoin:round}
.download-icon .download-line,
.download-icon .download-arrow,
.download-icon .download-base{
  fill:none;
  stroke:var(--orange);
  stroke-width:5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.download-icon span{
  position:relative;
  z-index:1;
  margin-top:-12px;
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.18em;
}
.download-icon:hover{
  transform:translateY(-3px) scale(1.02);
}


/* Activities teaser + gallery page */
.activities-teaser{
  background:
    radial-gradient(circle at 12% 18%, rgba(255,184,0,.22), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(71,199,255,.16), transparent 26%),
    linear-gradient(180deg,#fff,#fff8df);
}
.activity-preview-grid,
.activity-gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:34px;
}
.activity-card,
.gallery-card{
  background:white;
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(17,27,52,.10);
  transition:transform .25s ease, box-shadow .25s ease;
}
.activity-card:hover,
.gallery-card:hover{
  transform:translateY(-5px);
  box-shadow:0 30px 70px rgba(17,27,52,.14);
}
.activity-card img,
.gallery-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  background:#fff7d8;
}
.activity-card div,
.gallery-card div{
  padding:20px;
}
.activity-card span,
.gallery-card span{
  display:inline-flex;
  margin-bottom:10px;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.72rem;
  font-weight:950;
}
.activity-card h3,
.gallery-card h3{
  font-size:clamp(1.55rem,2vw,2.15rem);
  line-height:.95;
}
.activity-card p,
.gallery-card p{
  color:#627087;
  line-height:1.65;
  margin:12px 0 0;
}
.activities-cta{
  display:flex;
  justify-content:center;
  margin-top:34px;
}
.activities-page-hero{
  min-height:440px;
  display:grid;
  align-items:center;
  background:
    radial-gradient(circle at 10% 25%, rgba(255,184,0,.30), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(71,199,255,.18), transparent 28%),
    linear-gradient(135deg,#ffffff,#fff4c2);
}
.activities-page-hero .lead{
  max-width:820px;
}
.activities-page-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:32px;
}
@media(max-width:1100px){
  .activity-preview-grid,
  .activity-gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .activity-preview-grid,
  .activity-gallery-grid{grid-template-columns:1fr}
  .activities-page-actions{flex-direction:column;align-items:flex-start}
}

.contact{
  background:#fff;
}
.contact-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
  border-radius:46px;
  padding:clamp(28px,5vw,58px);
  background:
    radial-gradient(circle at 90% 15%, rgba(71,199,255,.20), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(255,184,0,.28), transparent 28%),
    linear-gradient(135deg,#ffffff,#fff7d8);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact-details{
  display:grid;
  gap:12px;
}
.contact-details > a{
  display:block;
  padding:18px 20px;
  border-radius:22px;
  background:white;
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(17,27,52,.06);
}
.contact-details span{
  display:block;
  color:var(--orange);
  text-transform:uppercase;
  font-size:.72rem;
  font-weight:950;
  letter-spacing:.14em;
  margin-bottom:6px;
}
.contact-details strong{
  overflow-wrap:anywhere;
}
.socials{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.socials a{
  display:inline-flex;
  align-items:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  color:white;
  background:var(--navy);
  font-weight:900;
}
.footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:28px clamp(22px,5vw,84px);
  color:#667085;
  border-top:1px solid var(--line);
  background:#fff;
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:1100px){
  .site-header{grid-template-columns:1fr auto; height:auto; min-height:82px}
  .nav{
    display:none;
    position:absolute;
    left:22px;right:22px;top:76px;
    padding:18px;
    background:white;
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:flex-start;
  }
  .nav.open{display:flex}
  .nav-toggle{
    display:grid;
    place-items:center;
    width:48px;height:48px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
  }
  .nav-toggle span{
    width:20px;height:2px;
    background:var(--navy);
    display:block;
    margin:3px 0;
  }
  .lang-switcher{grid-column:1/-1;justify-self:start;margin-bottom:12px}
  .hero,.split,.product-panel,.ingredients,.contact-card{grid-template-columns:1fr}
  .hero{min-height:auto;padding-top:54px;padding-bottom:70px}
  .hero-visual{min-height:360px}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .section-pad{padding:60px 20px}
  h1{font-size:3.7rem}
  h2{font-size:3.2rem}
  .trust-row,.benefit-grid,.timeline{grid-template-columns:1fr}
  .hero-actions{margin-bottom:20px}
  .two-products{grid-template-columns:1fr}
  .clear-list div{grid-template-columns:1fr}
  .footer{flex-direction:column}
}


.ingredient-image{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
  min-height:72px;
  padding:10px 14px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 40px rgba(17,27,52,.08);
}
.ingredient-image img{
  width:100%;
  max-width:82px;
  max-height:44px;
  object-fit:contain;
  display:block;
}

@media (max-width:720px){
  .presentation-card{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }
  .presentation-card p:not(.section-kicker){
    margin-left:auto;
    margin-right:auto;
  }
  .download-icon{
    width:106px;
    height:106px;
  }
}

/* hard remove old scroll cue */
.scroll-cue{display:none !important;}

.nav a{
  font-weight:800;
  color:#42506a;
  position:relative;
  padding:8px 9px;
  border-radius:999px;
  transition:color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.nav a:after{
  content:""; position:absolute; left:10px; right:10px; bottom:2px; height:2px;
  background:linear-gradient(90deg,var(--honey),var(--orange));
  transform:scaleX(0); transform-origin:left; transition:.22s ease;
}
.nav a:hover:after,
.nav a.active:after{transform:scaleX(1)}
.nav a:hover,
.nav a.active{
  color:var(--navy);
  background:linear-gradient(135deg, rgba(255,184,0,.18), rgba(255,121,0,.12));
  box-shadow:0 10px 24px rgba(17,27,52,.08);
  transform:translateY(-1px);
}

@media(max-width:1100px){
  .nav a{width:100%;}
}


/* anchor alignment below sticky header */
section[id]{scroll-margin-top:108px;}
.nav{gap:18px;}

.logo-mark{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.logo-mark img{
  width:42px;
  height:42px;
  display:block;
  object-fit:contain;
}

/* Multi-photo activities gallery v8 */
.activity-filters{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:30px 0 28px;
}
.activity-filters button{
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(17,27,52,.06);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.activity-filters button:hover,
.activity-filters button.active{
  transform:translateY(-2px);
  background:linear-gradient(135deg,var(--honey),var(--orange));
  box-shadow:0 18px 34px rgba(255,121,0,.20);
}
.activity-photo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:22px;
}
.activity-photo-card{
  border:0;
  padding:0;
  text-align:left;
  background:white;
  border-radius:28px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 22px 60px rgba(17,27,52,.10);
  border:1px solid var(--line);
  transition:transform .25s ease, box-shadow .25s ease;
}
.activity-photo-card:hover{
  transform:translateY(-5px);
  box-shadow:0 34px 80px rgba(17,27,52,.16);
}
.activity-photo-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
  background:#fff7d8;
}
.activity-photo-card div{
  padding:18px 18px 20px;
}
.activity-photo-card span{
  display:inline-flex;
  margin-bottom:10px;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.70rem;
  font-weight:950;
}
.activity-photo-card h3{
  font-size:clamp(1.45rem,1.8vw,2rem);
  line-height:.95;
}
.activity-photo-card p{
  margin:10px 0 0;
  color:#627087;
  line-height:1.55;
  font-size:.96rem;
}
.activity-photo-card.is-hidden{
  display:none;
}
.activity-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:clamp(18px,4vw,52px);
  background:rgba(17,27,52,.88);
  backdrop-filter:blur(10px);
}
.activity-lightbox.open{
  display:flex;
}
.activity-lightbox img{
  max-width:min(1100px,92vw);
  max-height:78vh;
  border-radius:28px;
  box-shadow:0 35px 90px rgba(0,0,0,.42);
  object-fit:contain;
}
.activity-lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:#fff;
  color:var(--navy);
  font-size:2rem;
  line-height:1;
  font-weight:900;
  cursor:pointer;
}
.activity-lightbox-caption{
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(920px,86vw);
  color:#fff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  padding:14px 18px;
  text-align:center;
  font-weight:800;
}
@media(max-width:1100px){
  .activity-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:720px){
  .activity-photo-grid{grid-template-columns:1fr;}
  .activity-filters button{flex:1 1 auto;}
  .activity-lightbox{padding:16px;}
  .activity-lightbox img{max-width:92vw;max-height:70vh;}
}

@media(max-width:640px){
  .benefit-card{padding:22px 20px 24px;}
  .benefit-media{min-height:106px; padding:14px;}
  .benefit-media img{width:78px; height:78px;}
  .benefit-media--guarana span{width:72px; height:72px; font-size:2rem;}
}
