
:root{
  --bg:#f7f7f4;
  --paper:#fbfaf7;
  --white:#fff;
  --text:#16211c;
  --muted:#59675e;
  --brand:#14b12e;
  --brand-deep:#004e00;
  --brand-soft:#e8f3ec;
  --line:rgba(24,36,28,.08);
  --shadow:0 10px 26px rgba(18,34,25,.08);
  --container:1360px;

  --section-actions:#ffffff;
  --section-partner:#f3f0ea;
  --section-food:#184847;
  --section-partner-logos:#ffffff;
  --section-impact:#f3f0ea;

  --sdg2:#d7a43a;
  --sdg3:#4da236;
  --sdg4:#c9172c;
  --sdg12:#bf8b2e;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Noto Sans TC",system-ui,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

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

.skip-link{position:absolute;left:-9999px}
.skip-link:focus{
  left:12px;
  top:12px;
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  z-index:999;
}

#actions,#partner,#food,#impact{scroll-margin-top:86px}

.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(247,247,244,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(24,36,28,.07);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.header-left{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}
.amart-logo-link img{width:170px;height:auto}
.amart-logo-link{
  margin-right: 20px;
  margin-left: 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.brand-copy strong{font-size:14px}
.brand-copy span{font-size:11px;color:var(--muted)}
.site-nav{
  display:flex;
  gap:10px;
  align-items:center;
}
.site-nav a{
  padding:9px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}
.site-nav a:hover{
  background:#e9efe9;
  color:var(--brand);
}
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  margin:4px auto;
  border-radius:2px;
}

.hero{
  position:relative;
  min-height:600px;
  display:flex;
  align-items:flex-start;
  overflow:hidden;
}
.hero-media,.hero-video,.hero-fallback{
  position:absolute;
  inset:0;
}
.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}
.hero-fallback{
  background:#dce8dd;
  z-index:0;
  opacity:1;
  transition:opacity .35s ease;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(13,35,36,.12),rgba(13,35,36,.22));
  z-index:1;
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:1280px;
  padding-top:132px;
  padding-bottom:78px;
}
.hero-copy{max-width:840px}
.hero-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.28);
  border:1px solid rgba(255,255,255,.55);
  font-size:12px;
  font-weight:900;
  color:#fff;
  text-shadow:0 2px 6px rgba(0,0,0,.45);
}
.hero h1{
  margin:18px 0 10px;
  font-size:76px;
  line-height:1.03;
  letter-spacing:.2px;
  color:#fff;
  text-shadow:0 4px 18px rgba(0,0,0,.55);
}
.hero-desc{
  max-width:820px;
  margin:0;
  font-size:22px;
  color:#fff;
  text-shadow:0 3px 12px rgba(0,0,0,.45);
}
.scroll-cue{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  z-index:2;
  width:38px;
  height:56px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.8);
  display:grid;
  place-items:start center;
  padding-top:8px;
  background:rgba(255,255,255,.18);
}
.scroll-cue span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#fff;
  animation:scrollDot 1.8s infinite ease-in-out;
}
@keyframes scrollDot{
  0%{transform:translateY(0);opacity:0}
  30%{opacity:1}
  100%{transform:translateY(22px);opacity:0}
}
.hero-copy > *{
  opacity:0;
  transform:translateY(24px);
  animation:heroFadeUp .7s ease forwards;
}
.hero-copy .hero-badge{animation-delay:.05s}
.hero-copy h1{animation-delay:.18s}
.hero-copy .hero-desc{animation-delay:.32s}
@keyframes heroFadeUp{
  to{opacity:1;transform:translateY(0)}
}

.section{padding:34px 0}
.section-shell,
.section-sdg-shortcuts .container,
.section-awards .section-shell,
.section-actions .section-shell,
.actions-chart-wrap .container,
.section-partner .container,
.section-food .container,
.section-partner-logos .section-shell,
.section-impact .section-shell,
.impact-cards-wrap .container,
.footer .container{
  max-width:1280px;
  margin-left:auto;
  margin-right:auto;
}
.section-copy{margin-bottom:18px}
.section-kicker{
  margin:0 0 8px;
  color:#295b48;
  font-size:14px;
  font-weight:900;
}
.section-title-row{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:6px;
}
.section-title-row h2{
  margin:0;
  font-size:46px;
  line-height:1.06;
  color:#1a2a22;
  font-weight:900;
  letter-spacing:-.02em;
}
.section-intro{
  margin:0;
  color:#5c6b63;
  font-size:15px;
  line-height:1.8;
  max-width:1120px;
}
.section-dots{
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.section-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#a7e764;
}
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}
.reveal-delay-4{transition-delay:.32s}
.reveal-delay-5{transition-delay:.40s}
.reveal-delay-6{transition-delay:.48s}

.section-sdg-shortcuts{
  padding:18px 0 14px;
  background:#ffffff;
}
.sdg-shortcuts-grid{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.sdg-shortcut-card{
  display:block;
  background:transparent;
  border-radius:0;
  overflow:visible;
  box-shadow:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.sdg-shortcut-card img{
  width:100%;
  height:auto;
  display:block;
  border-radius:0;
}
.sdg-shortcut-card:hover{
  transform:translateY(-3px) scale(1.01);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.section-awards{
  background:#f3f0ea;
  padding-top:8px;
  padding-bottom:14px;
}
.awards-layout{
  display:grid;
  grid-template-columns:1.05fr 1.45fr;
  gap:0;
  align-items:center;
}
.awards-photo{
  position:relative;
  z-index:2;
  padding-right:12px;
}
.awards-photo img{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  border-radius:22px;
  box-shadow:0 8px 18px rgba(18,34,25,.05);
}
.awards-card{
  background:#ffffff;
  border-radius:30px;
  padding:34px 34px 30px;
  display:grid;
  grid-template-columns:270px 1fr;
  gap:26px;
  align-items:center;
  box-shadow:0 10px 24px rgba(18,34,25,.05);
}
.awards-card__media{
  display:flex;
  align-items:center;
  justify-content:center;
}
.awards-card__media img{
  width:100%;
  max-width:240px;
  height:auto;
  object-fit:contain;
}
.awards-card__copy{text-align:center}
.awards-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#111111;
  color:#ffffff;
  border-radius:999px;
  padding:8px 20px;
  font-size:16px;
  font-weight:900;
  line-height:1;
  margin-bottom:18px;
}
.awards-card__copy h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.1;
  color:#111111;
  font-weight:900;
}
.awards-card__copy h3{
  margin:0 0 16px;
  font-size:62px;
  line-height:1;
  color:#111111;
  font-weight:900;
}
.awards-card__copy p{
  margin:0;
  color:#cc2a2a;
  font-size:32px;
  line-height:1.18;
  font-weight:900;
}

.section-marquee-inline{
  width:100%;
  overflow:hidden;
  background:transparent;
  border:none;
  margin:0 0 10px;
  padding:0;
}
.section-marquee-inline__track{
  display:flex;
  width:max-content;
  min-width:100%;
  gap:52px;
  white-space:nowrap;
  padding:0;
  animation:sectionMarquee 18s linear infinite;
}
.section-marquee-inline__track span{
  display:inline-block;
  font-weight:900;
  font-size:30pt;
  line-height:1;
  letter-spacing:.04em;
}
.section-actions .section-marquee-inline__track span,
.section-partner .section-marquee-inline__track span,
.section-impact .section-marquee-inline__track span{
  color:#8ac33f;
}
.section-food .section-marquee-inline__track span{
  color:rgba(255,255,255,.92);
}
@keyframes sectionMarquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

.section-actions{
  background:var(--section-actions);
  padding-top:18px;
  padding-bottom:0;
}
.actions-top,
.sdg-panel{display:none !important}
.action-carousel{
  margin-top:10px;
  margin-bottom:0;
  background:transparent;
}
.action-carousel__viewport{
  overflow:hidden;
  background:transparent;
}
.action-carousel__track{
  display:flex;
  width:100%;
  transition:transform .6s ease;
  background:transparent;
}
.action-carousel__slide{
  flex:0 0 100%;
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  background:transparent;
}
.action-carousel__dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:12px;
  padding:0;
  background:transparent;
}
.action-carousel__dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:rgba(27,55,56,.18);
  cursor:pointer;
  padding:0;
}
.action-carousel__dot.is-active{background:#1b3738}
.action-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(24,36,28,.07);
  box-shadow:0 8px 18px rgba(18,34,25,.05);
  transition:transform .22s ease, box-shadow .22s ease;
}
.action-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.10);
}
.action-card__visual{
  position:relative;
  min-height:188px;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.action-card__visual::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:inherit;
  background-size:cover;
  background-position:center;
  transition:transform .35s ease;
  z-index:0;
}
.action-card:hover .action-card__visual::before{transform:scale(1.05)}
.action-card__overlay{
  position:absolute;
  inset:0;
  background:rgba(34,40,39,.48);
  z-index:1;
}
.action-card__content{
  position:relative;
  z-index:2;
  padding:13px 14px;
  color:#fff;
}
.action-card__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:6px;
  margin-bottom:6px;
}
.action-card__no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:32px;
  height:24px;
  border-radius:999px;
  background:rgba(255,255,255,.2);
  font-size:11px;
  font-weight:900;
}
.action-card__tag{
  display:inline-flex;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  font-size:10px;
  font-weight:900;
}
.action-card h3{
  margin:0 0 6px;
  font-size:16px;
  line-height:1.25;
  text-shadow:0 2px 8px rgba(0,0,0,.34);
}
.action-card p{
  margin:0;
  font-size:11px;
  line-height:1.5;
  text-shadow:0 2px 8px rgba(0,0,0,.34);
}
.action-card__metric{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:8px;
  background:#fff;
  padding:12px 14px 13px;
}
.action-card__num{
  font-size:30px;
  line-height:2;
  font-weight:900;
  color:#8ac33f;
}
.action-card__unit{
  font-size:13px;
  font-weight:900;
  color:#f18f3e;
  text-align:right;
  line-height:1.1;
  white-space:nowrap;
}
.action-card__unit::first-line{
  font-size:17px;
  line-height:1;
}
.chart-copy{margin:18px 0 10px}
.actions-chart-wrap{
  background:#184847;
  padding:12px 0 0;
  margin-bottom:0;
}
.chart-shell{
  max-width:1180px;
  margin:0 auto;
  background:#fff;
  border-radius:20px 20px 0 0;
  padding:18px 20px 18px 18px;
  box-shadow:0 8px 22px rgba(7,17,17,.18);
}
.chart-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.mini-title{font-size:22px;font-weight:900}
.muted{margin:4px 0 0;color:var(--muted)}
.sort-btn{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(27,111,75,.14);
  background:#edf7f1;
  color:var(--brand);
  font-weight:900;
  cursor:pointer;
}
.bar-chart{display:grid;gap:10px}
.bar-row{
  display:grid;
  grid-template-columns:160px 1fr 112px;
  gap:12px;
  align-items:center;
}
.bar-name{font-size:13px;font-weight:800}
.bar-track{
  height:10px;
  border-radius:999px;
  background:#edf3ef;
  overflow:hidden;
}
.bar-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#2e8b67,#68b08c);
}
.bar-value{
  text-align:right;
  font-size:12px;
  font-weight:800;
  color:var(--muted);
}

.section-partner{
  background:var(--section-partner);
  padding-top:18px;
  padding-bottom:28px;
  margin-top:0;
}
.partner-grid{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.partner-link{
  display:block;
  color:inherit;
}
.partner-card{
  background:linear-gradient(180deg,#fff,#fafdfb);
  border:1px solid rgba(24,36,28,.08);
  border-radius:22px;
  padding:14px;
  box-shadow:0 8px 18px rgba(18,34,25,.05);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.partner-link:hover .partner-card{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
  border-color:rgba(27,111,75,.24);
  background:linear-gradient(180deg,#fff,#f7fcf8);
}
.partner-card__media{
  height:210px;
  margin:0 0 12px;
  overflow:hidden;
  border-radius:16px;
}
.partner-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:16px;
  transition:transform .35s ease;
}
.partner-link:hover .partner-card__media img{transform:scale(1.04)}
.partner-card h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.25;
  color:var(--brand-deep);
}
.partner-card p,
.partner-card__plaintext{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.section-food{
  background:var(--section-food);
  padding-top:16px;
  padding-bottom:30px;
}
.food-inner,
.food-hero{
  max-width:1220px;
  margin-left:auto;
  margin-right:auto;
}
.food-hero{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:18px;
}
.food-copy{
  max-width:620px;
  color:#d9eddf;
}
.food-copy__eyebrow{
  margin:0 0 10px;
  font-size:14px;
  color:#ffffff;
  opacity:.95;
  font-weight:800;
}
.food-copy h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.15;
  color:#c9ff66;
  font-weight:900;
}
.food-copy p{
  margin:0;
  font-size:14px;
  line-height:1.8;
  max-width:620px;
  color:#d9eddf;
}
.food-cta{
  margin-top:0;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:6px 16px 6px 6px;
  border-radius:999px;
  background:#fff;
  color:#15211e;
  font-weight:900;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.food-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}
.food-cta__icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#1f2023;
  color:#fff;
  font-size:20px;
}
.food-visuals{
  max-width:920px;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:460px 460px;
  justify-content:center;
  gap:0;
}
.food-visual{
  width:460px;
  height:460px;
  min-height:460px;
}
.food-visual--link{
  cursor:pointer;
  transition:transform .2s ease;
}
.food-visual--link:hover{transform:translateY(-2px)}
.food-visual--image{
  background:#f2f0ea;
  display:flex;
  align-items:center;
  justify-content:center;
}
.food-visual--sdg{
  background:#4da236;
  display:flex;
  align-items:center;
  justify-content:center;
}
.food-visual--image img,
.food-visual--sdg img{
  width:460px;
  height:460px;
  object-fit:contain;
  object-position:center center;
}

.section-partner-logos{
  background:var(--section-partner-logos);
  padding-top:18px;
  padding-bottom:18px;
  overflow:hidden;
}
.partner-logo-marquee{
  display:block;
  width:100%;
  overflow:hidden;
  margin-top:14px;
}
.partner-logo-marquee__track{
  display:flex;
  align-items:center;
  gap:52px;
  width:max-content;
  min-width:max-content;
  white-space:nowrap;
  animation:partnerLogoMarquee 26s linear infinite;
}
.partner-logo-marquee__item{
  flex:0 0 auto;
  width:196px;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
}
.partner-logo-marquee__img{
  width:160px;
  height:68px;
  max-width:160px;
  max-height:68px;
  object-fit:contain;
  display:block;
  transition:transform .22s ease, opacity .22s ease;
}
.partner-logo-marquee__item:hover .partner-logo-marquee__img{
  transform:scale(1.05);
  opacity:.92;
}
@keyframes partnerLogoMarquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

.section-impact{
  background:var(--section-impact);
  padding-top:18px;
  padding-bottom:40px;
}
.impact-head-wrap,
.impact-head,
.impact-sdgs,
.impact-title,
.kpi-grid{display:none !important}
.impact-cards-wrap{padding-top:0}
.impact-grid{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.impact-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}
.impact-card{
  min-height:132px;
  background:#fff;
  border:1px solid rgba(24,36,28,.08);
  border-radius:16px;
  padding:18px 20px;
  box-shadow:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.impact-card-link:hover .impact-card{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}
.impact-card__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) 120px;
  gap:14px;
  align-items:center;
}
.impact-card__text{min-width:0}
.impact-card__tag{
  display:inline-flex;
  padding:4px 8px;
  border-radius:999px;
  background:#8aa096;
  color:#fff;
  font-size:9px;
  font-weight:900;
}
.impact-card__value.countup::after {
  content: "+";
  display: inline-block;
  font-size:28px;
  margin-left: 2px;
}
.sdg2-tag{background:var(--sdg2)}
.sdg4-tag{background:var(--sdg4)}
.impact-card h3{
  margin:8px 0 8px;
  font-size:18px;
  line-height:1.2;
}
.impact-card__value{
  font-size:40px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.02em;
  margin-bottom:6px;
  color:#1f7b56;
}
.impact-card p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:#7a877e;
}
.impact-card__media-slot{
  width:120px;
  min-width:120px;
  height:120px;
  border:none;
  background:transparent;
  box-shadow:none;
  border-radius:0;
  display:flex;
  align-items:center;
  justify-content:center;
  align-self:center;
  text-align:center;
  padding:0;
}
.impact-card__media-slot span{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  font-size:0;
  line-height:0;
}
.impact-card__media-slot .impact-icon,
.impact-card__media-slot img{
  width:85px;
  height:85px;
  max-width:85px;
  max-height:85px;
  object-fit:contain;
  display:block;
}
.total-box{
  max-width:1280px;
  margin:20px auto 0;
  padding:20px 24px;
  border-radius:18px;
  background:linear-gradient(135deg,#1f7b56,#165a42);
  color:#fff;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  box-shadow:var(--shadow);
}
.total-box__label{font-weight:800}
.total-box__value{
  font-size:42px;
  font-weight:900;
  line-height:1;
}
.total-box__value span{
  display:block;
  margin-top:6px;
  font-size:12px;
  font-weight:700;
  opacity:.88;
}

.footer{
  background:#1b3738;
  padding:18px 0;
  color:#fff;
}
.footer-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}
.footer-logo-wrap{flex:0 0 auto}
.footer-logo{
  max-width:280px;
  height:auto;
  flex-shrink:0;
  margin:20px 0;
}
.footer-text{flex:1 1 auto}
.footer-desc{
  text-align:justify;
  text-justify:inter-ideograph;
  line-height:1.6;
  margin:0 0 10px;
  color:#ffffff;
  font-weight:400;
}
.footer .social-links{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  width:100%;
  margin-top:12px;
}
.footer .social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:45px;
  height:45px;
  border-radius:50%;
  color:#9de621;
  text-decoration:none;
  transition:background-color .2s ease, box-shadow .2s ease, color .2s ease;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.footer .social-links a i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  font-size:24px;
  line-height:1;
  transform-origin:center;
  transition:transform .16s cubic-bezier(.2,.6,.2,1), text-shadow .2s ease;
  will-change:transform;
  color:inherit;
}
.footer .social-links a:hover,
.footer .social-links a:focus-visible{
  background:rgba(255,255,255,.10);
  color:#da881d;
  outline:none;
}
.footer .social-links a:hover i,
.footer .social-links a:focus-visible i{
  transform:scale(1.18);
  text-shadow:0 6px 12px rgba(255,255,255,.18);
}
.footer-divider{
  margin:18px 0 0;
  border:none;
  border-top:1px solid rgba(255,255,255,.18);
}
.footer-bottom{
  text-align:center;
  padding-top:16px;
}
.footer-copy{
  margin:0;
  color:#ffffff;
  font-weight:300;
  font-size:10pt;
  letter-spacing:.2px;
}

.backtop{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.12);
  font-weight:900;
  color:#ffffff;
}
.backtop:hover{background:rgba(255,255,255,.18)}
.back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  width:58px;
  height:58px;
  border:none;
  border-radius:50%;
  background:#9de621;
  color:#ffffff;
  box-shadow:0 14px 30px rgba(18,34,25,.20);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .25s ease;
}
.back-to-top i{
  font-size:14px;
  line-height:1;
}
.back-to-top span{
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
  line-height:1;
}
.back-to-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.back-to-top:hover{background:#da881d}

@media (max-width:1200px){
  .section-shell,
  .section-sdg-shortcuts .container,
  .section-awards .section-shell,
  .section-actions .section-shell,
  .actions-chart-wrap .container,
  .section-partner .container,
  .section-food .container,
  .section-partner-logos .section-shell,
  .section-impact .section-shell,
  .impact-cards-wrap .container,
  .footer .container{
    max-width:1160px;
  }

  .food-visuals{
    max-width:100%;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  }
  .food-visual{
    width:100%;
    height:auto;
    min-height:380px;
  }
  .food-visual--image img,
  .food-visual--sdg img{
    width:100%;
    height:380px;
  }
}

@media (max-width:1100px){
  .awards-layout{
    grid-template-columns:1fr;
    gap:18px;
  }
  .awards-photo{
    padding-right:0;
  }
  .awards-photo img{
    max-width:560px;
    margin:0 auto;
  }
  .awards-card{
    grid-template-columns:220px 1fr;
  }
}

@media (max-width:900px){
  .section{padding-top:30px;padding-bottom:30px}
  .section-title-row h2{font-size:38px}
  .hero{
    min-height:520px;
  }
  .hero h1{font-size:58px}
  .hero-desc{font-size:20px}
  .sdg-shortcuts-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:100%;
  }
  .partner-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .food-hero{
    flex-direction:column;
    align-items:flex-start;
  }
  .action-carousel__slide{
    grid-template-columns:1fr;
    gap:12px;
  }
}

@media (max-width:768px){
  .container,
  .section-sdg-shortcuts .container,
  .section-awards .section-shell,
  .section-actions .section-shell,
  .actions-chart-wrap .container,
  .section-partner .container,
  .section-food .container,
  .section-partner-logos .section-shell,
  .section-impact .section-shell,
  .impact-cards-wrap .container,
  .footer .container{
    padding-left:16px;
    padding-right:16px;
  }

  .site-nav{
    display:none;
    position:absolute;
    right:20px;
    top:66px;
    z-index:70;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:10px;
    min-width:220px;
    box-shadow:var(--shadow);
    flex-direction:column;
    gap:6px;
    align-items:stretch;
  }
  .site-nav a{width:100%}
  .nav-toggle{display:inline-block}
  
  .brand-copy{display:none}

  .section{padding-top:26px;padding-bottom:26px}
  .section-copy{margin-bottom:14px}
  .section-title-row h2{font-size:30px}

  .hero{min-height:430px}
  .hero-inner{
    padding-top:104px;
    padding-bottom:52px;
  }
  .hero h1{font-size:46px}
  .hero-desc{font-size:18px;max-width:440px}

  .section-sdg-shortcuts{padding-top:14px;padding-bottom:10px}
  .section-awards{padding-top:6px;padding-bottom:12px}

  .awards-card{
    grid-template-columns:1fr;
    gap:16px;
    padding:22px 18px;
    border-radius:20px;
  }
  .awards-card__media img{max-width:180px}
  .awards-pill{
    font-size:13px;
    padding:7px 16px;
    margin-bottom:14px;
  }
  .awards-card__copy h2{font-size:26px}
  .awards-card__copy h3{font-size:46px}
  .awards-card__copy p{font-size:24px}

  .section-actions{
    padding-top:14px;
    padding-bottom:0;
  }
  .section-marquee-inline{margin-bottom:8px}
  .section-marquee-inline__track{gap:28px}
  .section-marquee-inline__track span{font-size:20pt}
  .action-card__visual{min-height:160px}
  .action-card h3{font-size:15px}
  .action-card p{font-size:10px}
  .actions-chart-wrap{
    padding-top:10px;
    padding-bottom:0;
  }
  .bar-row{
    grid-template-columns:92px 1fr 74px;
    gap:8px;
  }
  .bar-name,.bar-value{font-size:10px}

  .section-partner,
  .section-food,
  .section-partner-logos,
  .section-impact{
    padding-top:14px;
    padding-bottom:22px;
  }
  .partner-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .partner-card__media{height:150px}
  .partner-card h3{font-size:15px}
  .partner-card p,.partner-card__plaintext{font-size:11px}

  .food-copy h2{font-size:24px}
  .food-copy p{font-size:12px}
  .food-visuals{
    grid-template-columns:1fr;
    max-width:100%;
  }
  .food-visual{
    min-height:240px;
    height:240px;
    width:100%;
  }
  .food-visual--image img,
  .food-visual--sdg img{
    width:100%;
    height:240px;
  }

  .partner-logo-marquee__track{
    gap:28px;
    animation-duration:20s;
  }
  .partner-logo-marquee__item{
    width:140px;
    height:72px;
  }
  .partner-logo-marquee__img{
    width:116px;
    height:52px;
    max-width:116px;
    max-height:52px;
  }

  .impact-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .impact-card{
    padding:14px;
  }
  .impact-card__inner{
    grid-template-columns:minmax(0,1fr) 78px;
    gap:8px;
  }
  .impact-card__media-slot{
    width:78px;
    min-width:78px;
    height:78px;
  }
  .impact-card__media-slot .impact-icon,
  .impact-card__media-slot img{
    width:56px;
    height:56px;
    max-width:56px;
    max-height:56px;
  }
  .impact-card h3{font-size:13px}
  .impact-card__value{font-size:28px}
  .impact-card p{font-size:8px;line-height:1.45}

  .total-box{
    padding:14px 16px;
    border-radius:12px;
    flex-direction:column;
    align-items:flex-start;
  }
  .total-box__label{font-size:10px}
  .total-box__value{font-size:28px}
  .total-box__value span{font-size:9px}

  .footer-flex{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }
  .footer-desc{text-align:center}
  .footer .social-links{justify-content:center}
  .footer-logo{max-width:220px}

  .back-to-top{
    right:16px;
    bottom:16px;
    width:52px;
    height:52px;
  }
}

@media (max-width:560px){
  .partner-grid,
  .impact-grid{
    grid-template-columns:1fr;
  }
}


.hero-inner{
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.hero-copy{
  max-width: 900px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero-badge{
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero h1{
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-actions{
  padding-bottom: 18px !important;
}

.actions-chart-wrap{
  padding: 18px 0 !important;
  margin: 0 !important;
}

.actions-chart-wrap .container{
  max-width: 1280px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.chart-shell{
  max-width: 1121px !important;
  margin: 0 auto !important;
  padding: 18px 20px !important;
  border-radius: 20px !important;
}

.partner-logo-marquee__item{
  width: 202px !important;
  height: 95px !important;
}

.partner-logo-marquee__img{
  width: 165px !important;
  height: 70px !important;
  max-width: 165px !important;
  max-height: 70px !important;
}

.total-box{
  display: none !important;
}

@media (max-width: 768px){
  .hero-inner{
    padding-top: 104px !important;
    padding-bottom: 52px !important;
  }

  .hero-copy{
    max-width: 100% !important;
  }

  .actions-chart-wrap{
    padding: 14px 0 !important;
  }

  .actions-chart-wrap .container{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .chart-shell{
    max-width: calc(100% - 0px) !important;
    padding: 16px !important;
  }

  .partner-logo-marquee__item{
    width: 136px !important;
    height: 74px !important;
  }

  .partner-logo-marquee__img{
    width: 119px !important;
    height: 54px !important;
    max-width: 119px !important;
    max-height: 54px !important;
  }
}


.section-actions{
  padding-bottom: 0 !important;
}

.actions-chart-wrap{
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.section-partner{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.section-partner .container{
  padding-top: 0 !important;
}

@media (max-width: 768px){
  .section-actions{
    padding-bottom: 0 !important;
  }

  .actions-chart-wrap{
    padding-bottom: 0 !important;
  }

  .section-partner{
    padding-top: 0 !important;
  }
}


.section-partner{
  padding-top: 12px !important;
  margin-top: 0 !important;
}

.section-partner .container{
  padding-top: 0 !important;
}

.actions-chart-wrap{
  background:transparent;
}

.section-actions{
  background:#fff;
}

@media (max-width: 768px){
  .section-partner{
    padding-top: 10px !important;
  }

  .actions-chart-wrap{
    padding-bottom: 20px !important;
  }
}


.section-food{
  background: #184847 !important;
  padding-top: 18px !important;
  padding-bottom: 30px !important;
}

.section-food .container{
  max-width: 1280px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.food-inner,
.food-hero,
.food-copy,
.food-cta,
.food-visuals,
.food-visual{
  display: none !important;
}

.food-panel{
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 46% 54% !important;
  align-items: stretch !important;
  overflow: hidden !important;
  background: transparent !important;
}

.food-panel__copy{
  background: #184847 !important;
  color: #ffffff !important;
  padding: 36px 44px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 365px !important;
}

.food-panel__eyebrow{
  margin: 0 0 14px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

.food-panel__copy h2{
  margin: 0 !important;
  color: #a7e764 !important;
  font-size: 32px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
}

.food-panel__dots{
  display: inline-flex !important;
  gap: 14px !important;
  align-items: center !important;
  margin: 18px 0 18px !important;
}

.food-panel__dots span{
  width: 15px !important;
  height: 15px !important;
  border-radius: 50% !important;
  background: #a7e764 !important;
  display: inline-block !important;
}

.food-panel__copy p:last-of-type{
  margin: 0 0 34px !important;
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
  max-width: 430px !important;
}

.food-panel__cta{
  align-self: flex-start !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 8px 20px 8px 8px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #15211e !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.18) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}

.food-panel__cta:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 26px rgba(0,0,0,.18) !important;
}

.food-panel__cta-icon{
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: #1f2023 !important;
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

.food-panel__visual{
  display: block !important;
  min-height: 365px !important;
  background: #f3f0ea !important;
}

.food-panel__visual img{
  width: 100% !important;
  height: 100% !important;
  min-height: 365px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.bar-value{
  font-variant-numeric: tabular-nums !important;
}

@media (max-width: 980px){
  .food-panel{
    grid-template-columns: 1fr !important;
  }

  .food-panel__copy{
    min-height: auto !important;
    padding: 30px 26px !important;
  }

  .food-panel__copy h2{
    font-size: 28px !important;
  }

  .food-panel__copy p:last-of-type{
    max-width: none !important;
    font-size: 15px !important;
    margin-bottom: 24px !important;
  }

  .food-panel__visual,
  .food-panel__visual img{
    min-height: 320px !important;
  }
}

@media (max-width: 768px){
  .section-food .container{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .food-panel__copy{
    padding: 24px 20px !important;
  }

  .food-panel__eyebrow{
    margin-bottom: 12px !important;
    font-size: 13px !important;
  }

  .food-panel__copy h2{
    font-size: 24px !important;
  }

  .food-panel__dots{
    gap: 10px !important;
    margin: 16px 0 16px !important;
  }

  .food-panel__dots span{
    width: 14px !important;
    height: 14px !important;
  }

  .food-panel__copy p:last-of-type{
    font-size: 14px !important;
    line-height: 1.85 !important;
  }

  .food-panel__cta{
    font-size: 15px !important;
    padding: 7px 18px 7px 7px !important;
  }

  .food-panel__cta-icon{
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
  }

  .food-panel__visual,
  .food-panel__visual img{
    min-height: 260px !important;
  }
}


.donut-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px 18px;
}

.donut-card{
  border:1px solid rgba(24,36,28,.08);
  border-radius:16px;
  padding:14px 16px;
  background:#fcfcfa;
  box-shadow:0 6px 14px rgba(18,34,25,.04);
}

.donut-card__name{
  font-size:15px;
  font-weight:900;
  color:#183b2f;
  margin-bottom:10px;
}

.donut-card__body{
  display:flex;
  align-items:center;
  gap:14px;
}

.donut-chart{
  --size:72px;
  width:var(--size);
  height:var(--size);
  min-width:var(--size);
  border-radius:50%;
  background:conic-gradient(#2e8b67 0 var(--p), #e6efe9 var(--p) 100%);
  display:grid;
  place-items:center;
}

.donut-chart__inner{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  color:#2e8b67;
  box-shadow:inset 0 0 0 1px rgba(24,36,28,.06);
}

.donut-card__meta{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}

.donut-card__value{
  font-size:26px;
  line-height:1;
  font-weight:900;
  color:#183b2f;
  letter-spacing:-.02em;
}

.donut-card__unit{
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
  font-weight:800;
}

@media (max-width: 900px){
  .donut-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .actions-chart-wrap .container{
    padding:0 16px;
  }

  .chart-shell{
    padding:18px 16px 20px;
    border-radius:18px 18px 0 0;
  }

  .chart-head{
    margin-bottom:14px;
  }

  .mini-title{
    font-size:20px;
  }

  .muted{
    font-size:12px;
  }

  .sort-btn{
    font-size:13px;
    padding:8px 12px;
  }

  .donut-grid{
    gap:12px;
  }

  .donut-card{
    padding:12px 14px;
    border-radius:14px;
  }

  .donut-card__name{
    font-size:14px;
    margin-bottom:8px;
  }

  .donut-card__body{
    gap:12px;
  }

  .donut-chart{
    --size:64px;
  }

  .donut-chart__inner{
    width:44px;
    height:44px;
    font-size:11px;
  }

  .donut-card__value{
    font-size:22px;
  }

  .donut-card__unit{
    font-size:11px;
  }
}
.store-data-fade{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.store-data-fade__scene{
  position: relative;
  width: 100%;
}

.store-data-fade__bg,
.store-data-fade__fg{
  width: 100%;
}

.store-data-fade__bg img,
.store-data-fade__fg img{
  display: block;
  width: 100%;
  height: auto;
}

.store-data-fade__fg{
  position: absolute;
  inset: 0;
  z-index: 2;
}

.store-data-fade__scene--desktop{
  display: block;
}

.store-data-fade__scene--mobile{
  display: none;
}

.store-data-fade__scene .store-data-fade__bg{
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1s ease, transform 1.4s ease;
}

.store-data-fade__scene .store-data-fade__fg{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease .28s, transform .9s ease .28s;
}

.store-data-fade.is-visible .store-data-fade__scene .store-data-fade__bg{
  opacity: 1;
  transform: scale(1);
}

.store-data-fade.is-visible .store-data-fade__scene .store-data-fade__fg{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px){
  .store-data-fade__scene--desktop{
    display: none;
  }

  .store-data-fade__scene--mobile{
    display: block;
  }

  .store-data-fade__scene .store-data-fade__bg{
    transform: scale(1.02);
  }

  .store-data-fade__scene .store-data-fade__fg{
    transform: translateY(16px);
  }
}

:root{
  --award-popup-width: 88vw;
  --award-popup-max-width: 600px;
  --award-popup-radius: 20px;
}

.food-award-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .24s ease, visibility .24s ease;
}

.food-award-modal.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.food-award-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(9,18,16,.72);
  backdrop-filter:blur(4px);
}

.food-award-modal__dialog{
  position:relative;
  z-index:2;
  width:min(var(--award-popup-width), var(--award-popup-max-width));
  line-height:0;
}

.food-award-modal__img{
  display:block;
  width:100%;
  height:auto;
  border-radius:var(--award-popup-radius);
  box-shadow:0 24px 70px rgba(0, 0, 0, 0.28);
}

body.modal-open{
  overflow:hidden;
}

@media (max-width:768px){
  :root{
    --award-popup-width: 92vw;
    --award-popup-max-width: 520px;
    --award-popup-radius: 16px;
  }

  .food-award-modal{
    padding:16px;
  }

  .food-award-modal__close{
    top:-10px;
    right:-10px;
    width:38px;
    height:38px;
    font-size:24px;
  }
}

.food-award-modal__content{
    padding:22px 20px 20px;
  }

  .food-award-modal__title{
    font-size:28px;
  }

  .food-award-modal__desc{
    font-size:15px;
    line-height:1.7;
  }

  .food-award-modal__close{
    width:40px;
    height:40px;
    font-size:24px;
  }
.hero-title-earth {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin: 0 0.08em;
  vertical-align: -0.18em;
  object-fit: contain;
}
.section-marquee-inline {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section-marquee-inline__track {
  width: max-content;
}

.section-marquee-inline__track span {
  font-family: "Baskerville Old Face", Baskerville, serif;
  font-weight: 400;
}
