:root{
  --cream:#f9f6f0;
  --green:#1b3022;
  --green-bright:#0b5d2a;
  --gold:#a67c00;
  --text:#3d4540;
  --top-bar-height:40px;
  --navbar-height:86px;
  --site-header-height:calc(var(--top-bar-height) + var(--navbar-height));
}

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

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--top-bar-height) + var(--navbar-height) + 16px);
}

[id]{
  scroll-margin-top:calc(var(--top-bar-height) + var(--navbar-height) + 16px);
}

html[data-spin-promo="paused"] [data-spin-open],
html[data-spin-promo="paused"] .spin-promo-trigger{
  display:none !important;
}

body{
  font-family:'Inter', sans-serif;
  background:var(--cream);
  color:#1f2d1d;
  line-height:1.7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* SITE HEADER — sticky top bar + navbar */

.site-header{
  position:relative;
  z-index:10;
}

.top-bar{
  position:sticky;
  top:0;
  z-index:130;
  background:linear-gradient(90deg, #0f4d28 0%, var(--green) 50%, #14281c 100%);
  color:rgba(249, 246, 240, 0.92);
  font-size:12px;
  font-weight:500;
  border-bottom:1px solid rgba(214, 186, 130, 0.2);
  box-shadow:0 2px 12px rgba(0, 0, 0, 0.12);
}

.top-bar__inner{
  min-height:var(--top-bar-height);
  display:flex;
  align-items:center;
  justify-content:center;
}

.top-bar__list{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:6px 28px;
  width:100%;
  list-style:none;
  padding:8px 0;
}

.top-bar__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.top-bar__icon{
  flex-shrink:0;
  color:#e8c878;
}

.top-bar__item a{
  color:inherit;
  text-decoration:none;
  transition:color 0.2s ease;
}

.top-bar__item a:hover{
  color:#e8c878;
}

/* NAVBAR */

.navbar{
  padding:22px 0;
  position:relative;
  z-index:3;
  background:var(--cream);
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo a{
  display:block;
  line-height:0;
}

.logo img{
  width:150px;
  transition:transform 0.3s ease;
}

.logo a:hover img{
  transform:scale(1.03);
}

.nav-links{
  display:flex;
  gap:40px;
  list-style:none;
}

.nav-links a{
  position:relative;
  text-decoration:none;
  color:#1f2d1d;
  font-weight:500;
  transition:color 0.25s ease;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible{
  color:var(--green-bright);
}

.nav-links a:hover::after,
.nav-links a.active::after{
  transform:scaleX(1);
}

.nav-links .active{
  color:var(--green-bright);
}

.nav-chevron{
  font-size:11px;
  margin-left:2px;
  opacity:0.7;
  transition:transform 0.2s ease;
}

.nav-item--dropdown{
  position:relative;
}

.nav-dropdown__toggle{
  display:inline-flex;
  align-items:center;
  gap:2px;
  padding:0;
  border:none;
  background:none;
  font:inherit;
  font-weight:500;
  color:#1f2d1d;
  cursor:pointer;
  transition:color 0.25s ease;
}

.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible,
.nav-dropdown__toggle[aria-expanded="true"]{
  color:var(--green-bright);
}

.nav-dropdown__toggle[aria-expanded="true"] .nav-chevron{
  transform:rotate(180deg);
}

.nav-dropdown{
  position:absolute;
  top:calc(100% + 12px);
  left:50%;
  z-index:50;
  min-width:210px;
  margin:0;
  padding:8px;
  list-style:none;
  background:#fff;
  border:1px solid rgba(27, 48, 34, 0.1);
  border-radius:14px;
  box-shadow:0 16px 40px rgba(27, 48, 34, 0.14);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%, 8px);
  transition:opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown.is-open{
  opacity:1;
  visibility:visible;
  transform:translate(-50%, 0);
}

.nav-dropdown a{
  display:block;
  padding:10px 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:500;
  color:var(--text);
  text-decoration:none;
  transition:background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a::after{
  display:none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible{
  background:rgba(27, 48, 34, 0.06);
  color:var(--green);
}

.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--green);
  color:white;
  padding:9px 16px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  transition:background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn svg{
  width:16px;
  height:16px;
}

.whatsapp-btn:hover{
  background:#14281c;
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(27, 48, 34, 0.2);
}

.whatsapp-sticky{
  position:fixed;
  right:24px;
  bottom:max(24px, env(safe-area-inset-bottom, 0px));
  z-index:120;
  display:flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  box-shadow:0 4px 20px rgba(0, 0, 0, 0.22);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-sticky:hover{
  transform:scale(1.08);
  box-shadow:0 8px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-sticky svg{
  display:block;
}

/* SPIN & WIN PROMO — shared brand */

.spin-brand{
  --spin-grad:linear-gradient(145deg, #0f4d28 0%, var(--green) 45%, #14281c 100%);
  color:var(--cream);
}

.spin-brand__badge{
  flex-shrink:0;
  padding:5px 10px;
  font-size:10px;
  font-weight:800;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--green);
  background:var(--gold);
  border-radius:50px;
  animation:promoBadgePulse 2s ease-in-out infinite;
}

.spin-brand__title{
  font-family:'Playfair Display', serif;
  font-weight:700;
  color:var(--cream);
  line-height:1.15;
}

.spin-brand__sub{
  font-size:12px;
  line-height:1.35;
  color:rgba(249, 246, 240, 0.82);
}

.spin-brand__cta{
  flex-shrink:0;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--gold);
  white-space:nowrap;
}

.spin-brand__cta::after{
  content:" →";
}

.spin-brand__sparkles{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}

.spin-brand__sparkles span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold);
  opacity:0.5;
  animation:spinSparkle 3s ease-in-out infinite;
}

.spin-brand__sparkles span:nth-child(1){ top:18%; left:12%; animation-delay:0s; }
.spin-brand__sparkles span:nth-child(2){ top:28%; right:15%; animation-delay:0.6s; }
.spin-brand__sparkles span:nth-child(3){ bottom:30%; left:20%; animation-delay:1.2s; }
.spin-brand__sparkles span:nth-child(4){ bottom:22%; right:10%; animation-delay:1.8s; }

@keyframes spinSparkle{
  0%, 100%{ opacity:0.2; transform:scale(0.8); }
  50%{ opacity:0.9; transform:scale(1.2); }
}

.spin-brand--header{
  position:relative;
  padding:28px 24px 22px;
  background:var(--spin-grad);
  overflow:hidden;
  text-align:center;
}

.spin-brand--header::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}

.spin-brand--header .spin-brand__badge{
  display:inline-block;
  margin-bottom:8px;
  padding:4px 12px;
  letter-spacing:0.14em;
}

.spin-brand--header .spin-brand__title{
  margin:0 0 6px;
  font-size:clamp(28px, 6vw, 36px);
}

.spin-brand--header .spin-brand__sub{
  margin:0;
  font-size:13px;
  font-weight:500;
  letter-spacing:0.06em;
  color:rgba(249, 246, 240, 0.75);
}

.promo-banner{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  max-width:520px;
  margin:0 0 20px;
  padding:12px 16px;
  border:1.5px solid rgba(214, 186, 130, 0.35);
  border-radius:14px;
  background:var(--spin-grad);
  font-family:inherit;
  text-align:left;
  cursor:pointer;
  box-shadow:0 8px 28px rgba(27, 48, 34, 0.2);
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation:promoBannerIn 0.7s ease 0.15s both;
}

.promo-banner:hover{
  transform:translateY(-2px);
  border-color:var(--gold);
  box-shadow:0 12px 36px rgba(27, 48, 34, 0.28);
}

.promo-banner__copy{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}

.promo-banner .spin-brand__title{
  font-size:15px;
  font-family:inherit;
  letter-spacing:0.02em;
}

.promo-banner .spin-brand__sub{
  font-size:12px;
}

.spin-promo-trigger--played.promo-banner .spin-brand__badge{
  background:rgba(249, 246, 240, 0.9);
  animation:none;
}

.spin-promo-trigger--played.promo-banner .spin-brand__cta{
  color:rgba(232, 200, 120, 0.85);
}

@keyframes promoBannerIn{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes promoBadgePulse{
  0%, 100%{ transform:scale(1); }
  50%{ transform:scale(1.05); }
}

.spin-promo-trigger{
  position:fixed;
  left:24px;
  bottom:max(92px, calc(24px + env(safe-area-inset-bottom, 0px)));
  z-index:125;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border:2px solid rgba(214, 186, 130, 0.45);
  border-radius:50px;
  background:var(--spin-grad);
  font-family:inherit;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.04em;
  cursor:pointer;
  box-shadow:0 6px 24px rgba(27, 48, 34, 0.35);
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation:spinTriggerPulse 2.5s ease-in-out infinite;
}

.spin-promo-trigger:hover{
  transform:translateY(-3px) scale(1.03);
  border-color:var(--gold);
  box-shadow:0 10px 32px rgba(27, 48, 34, 0.45);
}

.spin-promo-trigger.spin-brand--compact .spin-brand__title{
  font-family:inherit;
  font-size:13px;
  letter-spacing:0.04em;
}

.spin-promo-trigger__icon{
  font-size:18px;
  line-height:1;
}

@keyframes spinTriggerPulse{
  0%, 100%{ box-shadow:0 6px 24px rgba(27, 48, 34, 0.35); }
  50%{ box-shadow:0 8px 32px rgba(27, 48, 34, 0.5); }
}

body.spin-modal-open{
  overflow:hidden;
}

.spin-modal[hidden]{
  display:none;
}

.spin-modal{
  position:fixed;
  inset:0;
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.spin-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15, 30, 20, 0.82);
  backdrop-filter:blur(8px);
  animation:spinBackdropIn 0.35s ease;
}

@keyframes spinBackdropIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

.spin-modal__panel{
  position:relative;
  z-index:1;
  width:min(100%, 460px);
  max-height:min(94vh, 720px);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--cream);
  border-radius:28px;
  border:1px solid rgba(214, 186, 130, 0.35);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  text-align:center;
  opacity:0;
  transform:scale(0.92) translateY(16px);
  transition:opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.spin-modal__panel--open{
  opacity:1;
  transform:scale(1) translateY(0);
}

.spin-modal__body{
  flex:1;
  overflow-y:auto;
  padding:20px 24px 12px;
}

.spin-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:5;
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:rgba(0, 0, 0, 0.25);
  color:var(--cream);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  transition:background 0.2s ease, transform 0.2s ease;
}

.spin-modal__close:hover{
  background:rgba(0, 0, 0, 0.4);
  transform:scale(1.05);
}

.spin-prizes-preview{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin:0 0 18px;
  padding:0;
  list-style:none;
}

.spin-prizes-preview li{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 11px;
  font-size:11px;
  font-weight:600;
  color:var(--green);
  background:#fff;
  border:1px solid rgba(27, 48, 34, 0.1);
  border-radius:50px;
  box-shadow:0 2px 8px rgba(27, 48, 34, 0.06);
}

.spin-prizes-preview li span{
  font-size:14px;
  line-height:1;
}

.spin-chrome{
  margin-bottom:4px;
}

.spin-screen__lead{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.55;
  color:var(--text);
}

.spin-screen-card{
  margin-bottom:16px;
  padding:20px 18px;
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(27, 48, 34, 0.08);
  box-shadow:0 8px 28px rgba(27, 48, 34, 0.08);
  animation:spinStageIn 0.45s ease;
}

.spin-screen-card__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  margin:0 auto 12px;
  border-radius:50%;
  background:linear-gradient(145deg, rgba(166, 124, 0, 0.15) 0%, rgba(27, 48, 34, 0.06) 100%);
  color:var(--gold);
}

.spin-screen-card__icon--lock{
  display:block;
  width:auto;
  height:auto;
  margin:0 auto 10px;
  font-size:28px;
  background:none;
}

.spin-screen-card__label{
  margin:0 0 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold);
}

.spin-wheel-error{
  margin:0 0 12px;
  padding:10px 12px;
  font-size:13px;
  font-weight:600;
  line-height:1.45;
  color:#8b1a1a;
  background:rgba(139, 26, 26, 0.08);
  border-radius:8px;
}

.spin-screen-card__title{
  margin:0 0 8px;
  font-family:'Playfair Display', serif;
  font-size:20px;
  font-weight:700;
  color:var(--green);
}

.spin-screen-card__text{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:var(--text);
}

.spin-screen-card--wheel{
  padding:18px 16px 20px;
}

.spin-screen-card--locked{
  text-align:center;
}

.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

.spin-steps{
  display:flex;
  justify-content:center;
  gap:6px;
  margin:0 0 16px;
  padding:0;
  list-style:none;
}

.spin-steps__item{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  font-size:11px;
  font-weight:600;
  color:rgba(61, 69, 64, 0.55);
  transition:color 0.2s ease;
}

.spin-steps__item span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:50%;
  font-size:11px;
  font-weight:800;
  background:rgba(27, 48, 34, 0.08);
  color:var(--text);
  transition:background 0.2s ease, color 0.2s ease;
}

.spin-steps__item.is-active{
  color:var(--green);
}

.spin-steps__item.is-active span{
  background:var(--green);
  color:var(--cream);
}

.spin-steps__item.is-done span{
  background:var(--gold);
  color:var(--green);
}

.spin-code-form{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:0;
}

.spin-code-form__label{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:rgba(27, 48, 34, 0.65);
  margin-top:4px;
}

.spin-code-form__label:first-child{
  margin-top:0;
}

.spin-code-form__input{
  width:100%;
  padding:14px 16px;
  border:2px solid rgba(27, 48, 34, 0.15);
  border-radius:10px;
  background:#fff;
  font-family:inherit;
  font-size:16px;
  font-weight:600;
  color:var(--green);
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
}

.spin-code-form__input--text{
  font-weight:500;
  letter-spacing:normal;
  text-transform:none;
  text-align:left;
}

.spin-code-form__input--code{
  letter-spacing:0.08em;
  text-transform:uppercase;
  text-align:center;
}

.spin-code-form__consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:12px;
  line-height:1.45;
  color:rgba(61, 69, 64, 0.85);
  cursor:pointer;
  margin:4px 0 2px;
}

.spin-code-form__consent input{
  margin-top:3px;
  flex-shrink:0;
  accent-color:var(--green);
}

.spin-code-form__input:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(166, 124, 0, 0.2);
}

.spin-code-form__input::placeholder{
  color:rgba(61, 69, 64, 0.45);
  font-weight:500;
  letter-spacing:0.04em;
  text-transform:none;
}

.spin-code-form__input--code::placeholder{
  letter-spacing:0.04em;
}

.spin-btn--primary,
.spin-code-form__submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 20px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg, var(--green) 0%, #0f4d28 100%);
  color:var(--cream);
  font-family:inherit;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 6px 20px rgba(27, 48, 34, 0.25);
  transition:background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.spin-btn--primary:hover:not(:disabled),
.spin-code-form__submit:hover:not(:disabled){
  background:linear-gradient(135deg, #14281c 0%, var(--green) 100%);
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(27, 48, 34, 0.3);
}

.spin-btn--primary:disabled,
.spin-code-form__submit:disabled{
  opacity:0.6;
  cursor:not-allowed;
}

.spin-code-gate__attempts{
  margin:12px 0 0;
  font-size:12px;
  font-weight:600;
  color:var(--gold);
  letter-spacing:0.04em;
}

.spin-code-gate__error{
  margin:10px 0 0;
  padding:10px 12px;
  font-size:13px;
  font-weight:600;
  line-height:1.4;
  color:#8b1a1a;
  background:rgba(139, 26, 26, 0.08);
  border-radius:8px;
}

.spin-wheel-stage{
  /* animation inherited from .spin-screen-card */
}

@keyframes spinStageIn{
  from{
    opacity:0;
    transform:translateY(12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.spin-wheel-wrap{
  position:relative;
  width:min(100%, 320px);
  margin:0 auto 8px;
  aspect-ratio:1;
  overflow:visible;
}

.spin-wheel-glow{
  position:absolute;
  inset:-12px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(166, 124, 0, 0.25) 0%, transparent 70%);
  animation:spinGlowPulse 2.5s ease-in-out infinite;
  pointer-events:none;
}

@keyframes spinGlowPulse{
  0%, 100%{ opacity:0.6; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.03); }
}

.spin-wheel--spinning .spin-wheel-glow{
  animation:spinGlowSpin 0.8s linear infinite;
}

@keyframes spinGlowSpin{
  to{ transform:rotate(360deg); }
}

.spin-wheel-pointer{
  position:absolute;
  top:-8px;
  left:50%;
  z-index:4;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:14px solid transparent;
  border-right:14px solid transparent;
  border-top:26px solid var(--gold);
  filter:drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.spin-wheel{
  position:absolute;
  inset:0;
  overflow:visible;
  border-radius:50%;
  border:6px solid var(--gold);
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.12),
    0 16px 48px rgba(27, 48, 34, 0.28),
    0 0 0 8px rgba(166, 124, 0, 0.12);
  background:conic-gradient(
    var(--green) 0deg 45deg,
    var(--gold) 45deg 90deg,
    #f3ebdc 90deg 135deg,
    var(--green) 135deg 180deg,
    var(--gold) 180deg 225deg,
    #f3ebdc 225deg 270deg,
    var(--green) 270deg 315deg,
    var(--gold) 315deg 360deg
  );
  transition:transform 4.2s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.spin-wheel__labels{
  position:absolute;
  inset:0;
  z-index:1;
  margin:0;
  padding:0;
  list-style:none;
  pointer-events:none;
}

.spin-wheel__labels li{
  --spin-r: 102px;
  position:absolute;
  left:50%;
  top:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  width:58px;
  margin:0;
  padding:0;
  text-align:center;
  color:#fff;
  text-shadow:0 1px 3px rgba(0, 0, 0, 0.4);
}

.spin-wheel__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:32px;
  height:32px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  box-shadow:0 2px 10px rgba(0, 0, 0, 0.22);
}

.spin-wheel__icon svg{
  width:18px;
  height:18px;
  display:block;
}

.spin-wheel__text{
  max-width:54px;
  font-size:7px;
  font-weight:800;
  letter-spacing:0.03em;
  line-height:1.15;
}

.spin-wheel__labels li:nth-child(1){
  transform:rotate(-67.5deg) translateY(calc(-1 * var(--spin-r))) rotate(67.5deg);
  color:#e8c878;
}

.spin-wheel__labels li:nth-child(2){
  transform:rotate(-22.5deg) translateY(calc(-1 * var(--spin-r))) rotate(22.5deg);
}

.spin-wheel__labels li:nth-child(3){
  transform:rotate(22.5deg) translateY(calc(-1 * var(--spin-r))) rotate(-22.5deg);
  color:var(--green);
  text-shadow:none;
}

.spin-wheel__labels li:nth-child(3) .spin-wheel__icon{
  background:var(--green);
  color:#e8c878;
}

.spin-wheel__labels li:nth-child(4){
  transform:rotate(67.5deg) translateY(calc(-1 * var(--spin-r))) rotate(-67.5deg);
  color:#e8c878;
}

.spin-wheel__labels li:nth-child(5){
  transform:rotate(112.5deg) translateY(calc(-1 * var(--spin-r))) rotate(-112.5deg);
}

.spin-wheel__labels li:nth-child(6){
  transform:rotate(157.5deg) translateY(calc(-1 * var(--spin-r))) rotate(-157.5deg);
  color:var(--green);
  text-shadow:none;
}

.spin-wheel__labels li:nth-child(6) .spin-wheel__icon{
  background:var(--green);
  color:#e8c878;
}

.spin-wheel__labels li:nth-child(7){
  transform:rotate(202.5deg) translateY(calc(-1 * var(--spin-r))) rotate(-202.5deg);
  color:#e8c878;
}

.spin-wheel__labels li:nth-child(8){
  transform:rotate(247.5deg) translateY(calc(-1 * var(--spin-r))) rotate(-247.5deg);
}

.spin-wheel__center{
  position:absolute;
  top:50%;
  left:50%;
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  transform:translate(-50%, -50%);
  width:76px;
  height:76px;
  padding:4px;
  border:4px solid var(--cream);
  border-radius:50%;
  background:var(--green);
  color:var(--gold);
  font-family:inherit;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(0, 0, 0, 0.25);
  transition:background 0.2s ease, transform 0.2s ease;
}

.spin-wheel__center-icon{
  width:22px;
  height:22px;
  flex-shrink:0;
}

.spin-wheel__center-text{
  font-size:11px;
  font-weight:800;
  letter-spacing:0.1em;
  color:var(--cream);
  line-height:1;
}

.spin-wheel__center:hover:not(:disabled){
  background:#14281c;
  transform:translate(-50%, -50%) scale(1.06);
}

.spin-wheel__center:disabled{
  opacity:0.75;
  cursor:not-allowed;
}

.spin-wheel__center:disabled .spin-wheel__center-icon{
  display:none;
}

.spin-wheel__center:disabled .spin-wheel__center-text{
  font-size:7px;
  line-height:1.2;
  letter-spacing:0.04em;
  text-align:center;
  padding:0 4px;
}

.spin-result.spin-screen-card{
  position:relative;
  padding:24px 16px 12px;
  overflow:hidden;
}

.spin-result{
  animation:spinResultIn 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes spinResultIn{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.spin-result__confetti{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}

.spin-result--win .spin-result__confetti::before,
.spin-result--win .spin-result__confetti::after{
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  border-radius:2px;
  animation:spinConfetti 1.2s ease-out forwards;
}

.spin-result--win .spin-result__confetti::before{
  top:20%;
  left:20%;
  background:var(--gold);
  animation-delay:0.1s;
}

.spin-result--win .spin-result__confetti::after{
  top:15%;
  right:25%;
  background:var(--green);
  animation-delay:0.2s;
}

@keyframes spinConfetti{
  0%{
    opacity:1;
    transform:translateY(0) rotate(0deg);
  }
  100%{
    opacity:0;
    transform:translateY(80px) rotate(360deg);
  }
}

.spin-result__badge{
  display:flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  margin:0 auto 14px;
  border-radius:50%;
  background:#fff;
  color:var(--gold);
  box-shadow:0 8px 24px rgba(27, 48, 34, 0.12);
  border:2px solid rgba(166, 124, 0, 0.4);
}

.spin-result--win .spin-result__badge{
  background:linear-gradient(145deg, var(--gold) 0%, #c9a227 100%);
  color:var(--green);
  animation:spinBadgePop 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.15s both;
}

.spin-result--try-again .spin-result__badge{
  color:var(--green);
  border-color:rgba(27, 48, 34, 0.15);
}

@keyframes spinBadgePop{
  from{
    opacity:0;
    transform:scale(0.5);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.spin-result__eyebrow{
  margin:0 0 8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gold);
}

.spin-result__prize{
  margin:0 0 10px;
  font-family:'Playfair Display', serif;
  font-size:clamp(22px, 5vw, 30px);
  font-weight:700;
  color:var(--green);
  line-height:1.2;
}

.spin-result__hint{
  margin:0 0 18px;
  font-size:14px;
  color:var(--text);
  line-height:1.55;
}

.spin-result__claim{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-bottom:12px;
  padding:14px 24px;
  background:#25d366;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  box-shadow:0 6px 20px rgba(37, 211, 102, 0.35);
  transition:background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.spin-result__claim:hover{
  background:#1da851;
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(37, 211, 102, 0.45);
}

.spin-result__again{
  display:block;
  margin:0 auto;
  padding:8px 16px;
  border:none;
  background:transparent;
  color:var(--text);
  font-family:inherit;
  font-size:13px;
  cursor:pointer;
  text-decoration:underline;
}

.spin-modal__terms{
  flex-shrink:0;
  margin:0;
  padding:14px 20px 18px;
  font-size:11px;
  line-height:1.5;
  color:rgba(61, 69, 64, 0.7);
  background:rgba(27, 48, 34, 0.04);
  border-top:1px solid rgba(27, 48, 34, 0.06);
}

/* HERO — full-page cover like mockup */

.hero{
  position:relative;
  min-height:calc(100vh - var(--site-header-height));
  min-height:calc(100dvh - var(--site-header-height));
  display:flex;
  flex-direction:column;
  background:var(--cream);
  overflow:hidden;
}

.hero-nav{
  flex-shrink:0;
}

.hero-media{
  position:absolute;
  top:2%;
  right:0;
  width:min(62vw, 920px);
  height:92%;
  z-index:1;
  pointer-events:none;
  animation:heroImageIn 1s ease 0.2s both;
}

.hero-photo{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:58% 42%;
  -webkit-mask-image:linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 14%,
    #000 28%,
    #000 100%
  );
  mask-image:linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 14%,
    #000 28%,
    #000 100%
  );
}

.hero-media-fade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      105deg,
      var(--cream) 0%,
      rgba(249, 246, 240, 0.97) 8%,
      rgba(249, 246, 240, 0.75) 16%,
      rgba(249, 246, 240, 0.25) 30%,
      transparent 46%
    ),
    linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(249, 246, 240, 0.4) 6%,
      transparent 18%,
      transparent 82%,
      rgba(249, 246, 240, 0.55) 94%,
      var(--cream) 100%
    ),
    linear-gradient(
      270deg,
      transparent 0%,
      transparent 90%,
      rgba(249, 246, 240, 0.35) 97%,
      var(--cream) 100%
    );
}

.hero-content{
  position:relative;
  z-index:2;
  flex:1;
  display:flex;
  align-items:center;
  padding:24px 0 64px;
}

.hero-text{
  max-width:540px;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
  animation:fadeUp 0.7s ease both;
}

.hero-eyebrow::after{
  content:"";
  width:40px;
  height:2px;
  background:var(--gold);
  opacity:0.55;
  border-radius:1px;
}

.hero-text h1{
  font-size:clamp(40px, 5.2vw, 64px);
  line-height:1.1;
  font-family:'Playfair Display', serif;
  font-weight:700;
  letter-spacing:-0.02em;
  animation:fadeUp 0.7s ease 0.1s both;
}

.hero-line{
  display:block;
  color:var(--green);
}

.hero-accent{
  display:block;
  margin-top:6px;
  color:var(--gold);
}

.hero-rotate{
  display:inline-block;
  height:1.12em;
  overflow:hidden;
  vertical-align:top;
  line-height:1.12;
}

.hero-rotate__track{
  display:block;
  animation:heroHeadlineRotate 16s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-rotate__line{
  display:block;
  height:1.12em;
  line-height:1.12;
  white-space:nowrap;
}

@keyframes heroHeadlineRotate{
  0%, 18%{
    transform:translateY(0);
  }
  20%, 38%{
    transform:translateY(-1.12em);
  }
  40%, 58%{
    transform:translateY(-2.24em);
  }
  60%, 78%{
    transform:translateY(-3.36em);
  }
  80%, 98%{
    transform:translateY(-4.48em);
  }
  100%{
    transform:translateY(0);
  }
}

.hero-lead{
  margin:20px 0 32px;
  font-size:16px;
  color:var(--text);
  max-width:460px;
  line-height:1.75;
  animation:fadeUp 0.7s ease 0.2s both;
}

.hero-lead__hook{
  display:block;
  margin-bottom:12px;
  font-size:18px;
  font-weight:600;
  line-height:1.45;
  color:var(--green);
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:32px;
  animation:fadeUp 0.7s ease 0.3s both;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  transition:background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn svg{
  width:16px;
  height:16px;
  flex-shrink:0;
}

.hero-btn--shop{
  background:var(--green);
  color:white;
  border:2px solid var(--green);
}

.hero-btn--shop:hover{
  background:#14281c;
  border-color:#14281c;
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(27, 48, 34, 0.22);
}

.hero-btn--whatsapp{
  background:white;
  color:var(--green);
  border:2px solid var(--green);
  text-transform:none;
  letter-spacing:0;
  font-weight:600;
}

.hero-btn--whatsapp:hover{
  background:rgba(27,48,34,0.04);
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(27, 48, 34, 0.08);
}

.hero-btn--shop svg{
  transition:transform 0.25s ease;
}

.hero-btn--shop:hover svg{
  transform:translateX(3px);
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:28px 36px;
  list-style:none;
  animation:fadeUp 0.7s ease 0.4s both;
}

.hero-trust li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:500;
  color:var(--text);
  transition:transform 0.25s ease;
}

.hero-trust li:hover{
  transform:translateY(-2px);
}

.trust-icon{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1.5px solid rgba(27,48,34,0.2);
  border-radius:50%;
  color:var(--green-bright);
  flex-shrink:0;
  background:white;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-trust li:hover .trust-icon{
  transform:scale(1.08);
  border-color:rgba(27,48,34,0.35);
  box-shadow:0 4px 12px rgba(27, 48, 34, 0.1);
}

.trust-icon--flag{
  padding:0;
  overflow:hidden;
  border:1.5px solid rgba(27,48,34,0.2);
  background:white;
}

.trust-icon--flag .ghana-flag{
  display:block;
  width:22px;
  height:auto;
  border-radius:2px;
}

.btn{
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
}

.primary-btn{
  background:var(--green-bright);
  color:white;
  transition:background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn:hover{
  background:#094a22;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(11, 93, 42, 0.25);
}

.outline-btn{
  border:2px solid var(--green-bright);
  color:var(--green-bright);
}

/* ABOUT */

.about{
  padding:90px 0;
  background:var(--cream);
}

.about-grid{
  display:grid;
  grid-template-columns:0.95fr 1.15fr 0.75fr;
  gap:48px;
  align-items:center;
}

.about-image__frame{
  position:relative;
  border-radius:28px 72px 28px 28px;
  overflow:hidden;
  box-shadow:0 20px 48px rgba(27, 48, 34, 0.14);
}

.about-image__frame::after{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(255, 255, 255, 0.35);
  border-radius:inherit;
  pointer-events:none;
}

.about-slider{
  position:relative;
}

.about-slider__viewport{
  overflow:hidden;
}

.about-slider__track{
  display:flex;
  transition:transform 0.45s ease;
}

.about-slider__slide{
  flex:0 0 100%;
  min-width:100%;
}

.about-slider__slide img{
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

.about-slider__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:rgba(27, 48, 34, 0.75);
  color:white;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.2s ease, transform 0.2s ease;
}

.about-slider__arrow:hover{
  background:var(--green);
  transform:translateY(-50%) scale(1.05);
}

.about-slider__arrow--prev{
  left:12px;
}

.about-slider__arrow--next{
  right:12px;
}

.about-slider__dots{
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  display:flex;
  gap:8px;
}

.about-slider__dot{
  width:8px;
  height:8px;
  padding:0;
  border:none;
  border-radius:50%;
  background:rgba(255, 255, 255, 0.55);
  cursor:pointer;
  transition:transform 0.2s ease, background 0.2s ease;
}

.about-slider__dot.is-active{
  background:white;
  transform:scale(1.2);
}

.section-tag{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
}

.text-gold{
  color:var(--gold);
}

.about-content h2{
  font-size:clamp(32px, 3.8vw, 46px);
  line-height:1.15;
  margin:0 0 22px;
  font-family:'Playfair Display', serif;
  font-weight:700;
  color:var(--green);
}

.about-content p{
  margin-bottom:18px;
  font-size:16px;
  color:var(--text);
  line-height:1.75;
  max-width:520px;
}

.btn-about{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:8px;
  padding:12px 22px;
  background:var(--green);
  color:white;
  border-radius:6px;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  transition:background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-about:hover{
  background:#14281c;
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(27, 48, 34, 0.22);
}

.btn-about svg{
  transition:transform 0.25s ease;
}

.btn-about:hover svg{
  transform:translateX(4px);
}

.about-features{
  display:flex;
  flex-direction:column;
  gap:8px;
  list-style:none;
}

.about-feature{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid rgba(27, 48, 34, 0.1);
  transition:transform 0.25s ease, padding-left 0.25s ease;
}

.about-feature:last-child{
  border-bottom:none;
}

.about-feature:hover{
  padding-left:6px;
}

.about-feature__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  flex-shrink:0;
  border:1.5px solid rgba(166, 124, 0, 0.45);
  border-radius:50%;
  color:var(--green);
  background:white;
  transition:border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.about-feature:hover .about-feature__icon{
  border-color:var(--gold);
  box-shadow:0 6px 16px rgba(27, 48, 34, 0.1);
  transform:scale(1.05);
}

.about-feature strong{
  font-size:15px;
  font-weight:700;
  color:var(--green);
  line-height:1.35;
}

.about.is-visible .about-feature{
  animation:fadeUp 0.6s ease both;
}

.about.is-visible .about-feature:nth-child(1){ animation-delay:0.1s; }
.about.is-visible .about-feature:nth-child(2){ animation-delay:0.2s; }
.about.is-visible .about-feature:nth-child(3){ animation-delay:0.3s; }
.about.is-visible .about-feature:nth-child(4){ animation-delay:0.4s; }

.about-team{
  margin-top:56px;
  padding-top:48px;
  border-top:1px solid rgba(27, 48, 34, 0.1);
}

.about-team__layout{
  display:grid;
  grid-template-columns:minmax(220px, 0.85fr) 1.15fr;
  gap:40px 56px;
  align-items:start;
}

.about-team__intro{
  position:sticky;
  top:100px;
  text-align:left;
}

.about-team__intro h3{
  margin:0 0 14px;
  font-family:'Playfair Display', serif;
  font-size:clamp(26px, 3vw, 36px);
  font-weight:700;
  line-height:1.2;
  color:var(--green);
}

.about-team__intro h3::after{
  content:"";
  display:block;
  width:40px;
  height:3px;
  margin-top:14px;
  background:linear-gradient(90deg, var(--gold), transparent);
  border-radius:2px;
}

.about-team__intro p{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:var(--text);
}

.about-team__main{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.about-team-spotlight{
  display:flex;
  align-items:stretch;
  gap:0;
  background:var(--green);
  border-radius:24px 64px 24px 24px;
  overflow:hidden;
  box-shadow:0 18px 48px rgba(27, 48, 34, 0.2);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-spotlight:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 56px rgba(27, 48, 34, 0.26);
}

.about-team-spotlight__photo{
  flex:0 0 42%;
  max-width:280px;
  position:relative;
}

.about-team-spotlight__photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent 55%, var(--green) 100%);
  pointer-events:none;
}

.about-team-spotlight__photo img{
  display:block;
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
}

.about-team-spotlight__content{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:32px 36px 32px 8px;
  color:rgba(249, 246, 240, 0.92);
}

.about-team-spotlight__label{
  display:inline-block;
  width:fit-content;
  margin-bottom:10px;
  padding:5px 12px;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--green);
  background:var(--gold);
  border-radius:50px;
}

.about-team-spotlight__content h4{
  margin:0 0 4px;
  font-family:'Playfair Display', serif;
  font-size:clamp(24px, 2.5vw, 30px);
  font-weight:700;
  color:var(--cream);
  line-height:1.15;
}

.about-team-spotlight__role{
  margin:0 0 14px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold);
}

.about-team-spotlight__content p:last-child{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:rgba(249, 246, 240, 0.78);
  max-width:420px;
}

.about-team__row{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.about-team-member{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:22px 22px 22px 20px;
  background:white;
  border-radius:16px;
  border-left:4px solid var(--gold);
  box-shadow:0 6px 24px rgba(27, 48, 34, 0.06);
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-team-member:hover{
  transform:translateX(4px);
  border-left-color:var(--green);
  box-shadow:0 12px 32px rgba(27, 48, 34, 0.1);
}

.about-team-member__avatar{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:52px;
  height:52px;
  border:1.5px solid rgba(166, 124, 0, 0.5);
  border-radius:50%;
  background:var(--cream);
  color:var(--green);
  font-size:15px;
  font-weight:700;
  letter-spacing:0.04em;
  transition:border-color 0.25s ease, background 0.25s ease;
}

.about-team-member:hover .about-team-member__avatar{
  border-color:var(--gold);
  background:white;
}

.about-team-member__content h4{
  margin:0 0 4px;
  font-size:17px;
  font-weight:700;
  color:var(--green);
  line-height:1.25;
}

.about-team-member__role{
  margin:0 0 8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--gold);
}

.about-team-member__content p:last-child{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:var(--text);
}

.about.is-visible .about-team-spotlight,
.about.is-visible .about-team-member{
  animation:fadeUp 0.65s ease both;
}

.about.is-visible .about-team-spotlight{ animation-delay:0.12s; }
.about.is-visible .about-team-member:nth-child(1){ animation-delay:0.22s; }
.about.is-visible .about-team-member:nth-child(2){ animation-delay:0.32s; }

/* GLOBAL REACH */

.global-reach{
  padding:88px 0;
  background:linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-top:1px solid rgba(27, 48, 34, 0.06);
}

.global-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.global-card{
  background:#fff;
  border:1px solid rgba(27, 48, 34, 0.08);
  border-radius:20px;
  padding:28px 26px;
  box-shadow:0 8px 28px rgba(27, 48, 34, 0.06);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.global-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(27, 48, 34, 0.1);
}

.global-card--featured{
  background:var(--green);
  color:var(--cream);
  border-color:transparent;
}

.global-card--featured h3,
.global-card--featured p{
  color:var(--cream);
}

.global-card--featured p{
  opacity:0.92;
}

.global-card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  margin-bottom:18px;
  border-radius:14px;
  background:rgba(249, 246, 240, 0.12);
  color:var(--gold-light, #d4a843);
}

.global-card__flag{
  display:block;
  margin-bottom:16px;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0, 0, 0, 0.12);
  line-height:0;
}

.global-card h3{
  margin:0 0 8px;
  font-family:'Playfair Display', serif;
  font-size:22px;
  font-weight:700;
  color:var(--green);
}

.global-card__role{
  margin:0 0 12px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold);
}

.global-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:var(--text);
}

.global-card__note{
  margin-top:14px !important;
  font-size:13px !important;
  opacity:0.85;
  font-style:italic;
}

.global-cta{
  margin-top:40px;
  text-align:center;
}

.global-cta__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 28px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--green) 0%, #0f4d28 100%);
  color:var(--cream);
  font-weight:700;
  font-size:14px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(27, 48, 34, 0.22);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.global-cta__btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(27, 48, 34, 0.28);
}

.global-cta__hint{
  margin:14px 0 0;
  font-size:13px;
  color:var(--muted, #6b7280);
  letter-spacing:0.02em;
}

.global-reach.is-visible .global-card{
  animation:fadeUp 0.65s ease both;
}

.global-reach.is-visible .global-card:nth-child(1){ animation-delay:0.08s; }
.global-reach.is-visible .global-card:nth-child(2){ animation-delay:0.16s; }
.global-reach.is-visible .global-card:nth-child(3){ animation-delay:0.24s; }

/* PRODUCTS */

.products{
  padding:90px 0;
  background:var(--cream);
}

.section-title{
  text-align:center;
  margin-bottom:52px;
}

.section-title .section-tag{
  margin-bottom:12px;
}

.section-title h2{
  font-size:clamp(32px, 4vw, 48px);
  color:var(--green);
  font-family:'Playfair Display', serif;
  font-weight:700;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  align-items:stretch;
}

.product-card{
  display:flex;
  flex-direction:column;
  background:white;
  border-radius:20px;
  overflow:hidden;
  text-align:center;
  border:1px solid rgba(27, 48, 34, 0.06);
  box-shadow:0 8px 24px rgba(27, 48, 34, 0.06);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(27, 48, 34, 0.12);
}

.products.is-visible .product-card{
  animation:fadeUp 0.65s ease both;
}

.products.is-visible .product-card:nth-child(1){ animation-delay:0.08s; }
.products.is-visible .product-card:nth-child(2){ animation-delay:0.16s; }
.products.is-visible .product-card:nth-child(3){ animation-delay:0.24s; }
.products.is-visible .product-card:nth-child(4){ animation-delay:0.32s; }

.product-card__media{
  padding:18px 18px 0;
  background:linear-gradient(180deg, #faf7f1 0%, #fff 100%);
}

.product-card__media img{
  display:block;
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:14px;
}

.product-card__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:20px 20px 24px;
}

.product-card h3{
  margin:0;
  font-family:'Playfair Display', serif;
  font-size:21px;
  font-weight:700;
  color:var(--green);
  line-height:1.25;
}

.product-card__tagline{
  margin:8px 0 0;
  font-size:14px;
  color:var(--text);
  font-weight:500;
}

.product-card__tagline--wide{
  margin-top:12px;
  margin-bottom:auto;
  padding:0 4px;
  font-size:15px;
  line-height:1.55;
}

.prices{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin:18px 0;
}

.product-card--lifestyle .prices{
  display:none;
}

.prices span{
  background:var(--green);
  color:white;
  padding:7px 12px;
  border-radius:30px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.02em;
  white-space:nowrap;
}

.product-card__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin-top:auto;
  text-decoration:none;
  color:var(--green-bright);
  font-weight:700;
  font-size:15px;
  transition:color 0.2s ease, gap 0.2s ease;
}

.product-card__link--spaced{
  margin-top:20px;
}

.product-card__link:hover{
  color:var(--gold);
  gap:10px;
}

/* WHY CHOOSE */

.why-choose{
  position:relative;
  padding:88px 0;
  background:linear-gradient(135deg, var(--green) 0%, #0a2415 100%);
  color:white;
  overflow:hidden;
}

.why-choose::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(166, 124, 0, 0.12) 0%, transparent 55%);
  pointer-events:none;
}

.why-choose .container{
  position:relative;
  z-index:1;
}

.why-choose h2{
  text-align:center;
  margin-bottom:56px;
  font-size:clamp(28px, 3.5vw, 42px);
  font-family:'Playfair Display', serif;
  font-weight:700;
  letter-spacing:0.02em;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:28px 20px;
}

.why-card{
  text-align:center;
  padding:8px 6px;
  transition:transform 0.3s ease;
}

.why-card:hover{
  transform:translateY(-6px);
}

.why-choose.is-visible .why-card{
  animation:fadeUp 0.65s ease both;
}

.why-choose.is-visible .why-card:nth-child(1){ animation-delay:0.06s; }
.why-choose.is-visible .why-card:nth-child(2){ animation-delay:0.12s; }
.why-choose.is-visible .why-card:nth-child(3){ animation-delay:0.18s; }
.why-choose.is-visible .why-card:nth-child(4){ animation-delay:0.24s; }
.why-choose.is-visible .why-card:nth-child(5){ animation-delay:0.3s; }

.why-card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:64px;
  margin-bottom:20px;
  border:1.5px solid rgba(214, 186, 130, 0.75);
  border-radius:50%;
  color:#e8c878;
  transition:border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.why-card:hover .why-card__icon{
  border-color:var(--gold);
  box-shadow:0 0 24px rgba(214, 186, 130, 0.25);
  transform:scale(1.06);
}

.why-card__icon--flag{
  padding:0;
  overflow:hidden;
  background:rgba(255, 255, 255, 0.06);
}

.why-card__icon--flag .ghana-flag{
  display:block;
  width:30px;
  border-radius:2px;
}

.why-card h4{
  margin-bottom:12px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  line-height:1.35;
}

.why-card p{
  font-size:14px;
  line-height:1.6;
  color:rgba(255, 255, 255, 0.82);
  max-width:200px;
  margin:0 auto;
}

/* RECIPES */

.recipes{
  padding:90px 0;
  background:#fff;
}

.section-title__lead{
  max-width:560px;
  margin:14px auto 0;
  font-size:16px;
  line-height:1.65;
  color:var(--text);
}

.recipe-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.recipe-card{
  display:flex;
  flex-direction:column;
  background:var(--cream);
  border:1px solid rgba(27, 48, 34, 0.06);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 8px 28px rgba(27, 48, 34, 0.06);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(27, 48, 34, 0.1);
}

.recipes.is-visible .recipe-card{
  animation:fadeUp 0.65s ease both;
}

.recipes.is-visible .recipe-card:nth-child(1){ animation-delay:0.08s; }
.recipes.is-visible .recipe-card:nth-child(2){ animation-delay:0.16s; }
.recipes.is-visible .recipe-card:nth-child(3){ animation-delay:0.24s; }

.recipe-card__media{
  position:relative;
  display:block;
  overflow:hidden;
  aspect-ratio:4/3;
  background:#f3ebdc;
}

.recipe-card__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.45s ease;
}

.recipe-card:hover .recipe-card__media img{
  transform:scale(1.04);
}

.recipe-card__tag{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:5px 12px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--green);
  background:var(--gold);
  border-radius:50px;
}

.recipe-card__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:22px 22px 24px;
}

.recipe-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  margin:0 0 10px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--gold);
}

.recipe-card__meta span{
  padding:4px 10px;
  background:rgba(166, 124, 0, 0.12);
  border-radius:50px;
}

.recipe-card h3{
  margin:0 0 10px;
  font-family:'Playfair Display', serif;
  font-size:22px;
  color:var(--green);
}

.recipe-card__body > p{
  margin:0 0 14px;
  font-size:15px;
  line-height:1.6;
  color:var(--text);
}

.recipe-card__steps{
  margin:0 0 18px;
  padding-left:18px;
  font-size:14px;
  line-height:1.55;
  color:var(--text);
}

.recipe-card__steps li + li{
  margin-top:6px;
}

.recipe-card__link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--green);
  text-decoration:none;
  transition:color 0.2s ease, gap 0.2s ease;
}

.recipe-card__link:hover{
  color:var(--gold);
  gap:10px;
}

/* TESTIMONIALS */

.testimonials{
  padding:90px 0;
  background:var(--cream);
}

.section-title--testimonials{
  margin-bottom:48px;
}

.section-title--testimonials h2{
  margin-top:12px;
  font-size:clamp(28px, 3.5vw, 42px);
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:0.06em;
}

.testimonial-title__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  margin:0 auto;
  border:1.5px solid rgba(27, 48, 34, 0.15);
  border-radius:50%;
  color:var(--green-bright);
}

.testimonial-title__line{
  display:block;
  width:56px;
  height:2px;
  margin:16px auto 0;
  background:var(--green);
  opacity:0.35;
  border-radius:2px;
}

.testimonial-slider__viewport{
  overflow:hidden;
}

.testimonial-slider__track{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  transition:transform 0.45s ease;
}

.testimonial-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:28px 26px 24px;
  background:#faf7f2;
  border:1px solid rgba(27, 48, 34, 0.06);
  border-radius:20px;
  box-shadow:0 8px 24px rgba(27, 48, 34, 0.06);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(27, 48, 34, 0.1);
}

.testimonials.is-visible .testimonial-card{
  animation:fadeUp 0.65s ease both;
}

.testimonials.is-visible .testimonial-card:nth-child(1){ animation-delay:0.08s; }
.testimonials.is-visible .testimonial-card:nth-child(2){ animation-delay:0.16s; }
.testimonials.is-visible .testimonial-card:nth-child(3){ animation-delay:0.24s; }

.testimonial-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.testimonial-card__avatar{
  display:flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  flex-shrink:0;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(166, 124, 0, 0.45);
  box-shadow:0 4px 14px rgba(27, 48, 34, 0.12);
}

.testimonial-card__avatar img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.testimonial-card__avatar--initials{
  background:linear-gradient(145deg, var(--green) 0%, #0a3d1c 100%);
  color:white;
  font-size:15px;
  font-weight:700;
  letter-spacing:0.04em;
}

.testimonial-card__quote{
  font-family:'Playfair Display', serif;
  font-size:52px;
  line-height:0.8;
  color:var(--gold);
  opacity:0.85;
  user-select:none;
}

.testimonial-card blockquote{
  margin:0;
  flex:1;
}

.testimonial-card blockquote p{
  font-family:'Playfair Display', serif;
  font-size:17px;
  font-style:italic;
  line-height:1.65;
  color:var(--text);
}

.testimonial-card__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:22px;
  padding-top:4px;
}

.testimonial-card cite{
  font-style:normal;
  font-size:15px;
  font-weight:700;
  color:var(--green);
}

.testimonial-card__stars{
  font-size:14px;
  letter-spacing:2px;
  color:var(--gold);
  line-height:1;
}

.testimonial-slider__dots{
  display:none;
  justify-content:center;
  gap:10px;
  margin-top:28px;
}

.testimonial-slider__dot{
  width:9px;
  height:9px;
  padding:0;
  border:none;
  border-radius:50%;
  background:rgba(27, 48, 34, 0.2);
  cursor:pointer;
  transition:transform 0.2s ease, background 0.2s ease;
}

.testimonial-slider__dot.is-active{
  background:var(--green);
  transform:scale(1.2);
}

/* FOOTER */

.footer{
  position:relative;
  overflow:hidden;
}

.footer-wave{
  display:block;
  line-height:0;
  margin-bottom:-1px;
}

.footer-wave svg{
  display:block;
  width:100%;
  height:48px;
}

.footer__body{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  min-height:320px;
}

.footer-left{
  position:relative;
  background:linear-gradient(135deg, #f3ebdc 0%, var(--cream) 55%, #efe6d6 100%);
}

.footer-left::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 70% 80% at 85% 50%, rgba(166, 124, 0, 0.08) 0%, transparent 60%);
  pointer-events:none;
}

.footer-left__inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  height:100%;
  min-height:300px;
  padding:48px 40px 48px 56px;
}

.footer-content{
  flex:1;
  max-width:360px;
}

.footer.is-visible .footer-content{
  animation:fadeUp 0.7s ease both;
}

.footer.is-visible .footer-bowl{
  animation:fadeUp 0.85s ease 0.15s both;
}

.footer.is-visible .footer-contact-wrap{
  animation:fadeUp 0.7s ease 0.1s both;
}

.footer.is-visible .footer-seal{
  animation:fadeUp 0.8s ease 0.2s both;
}

.footer-eyebrow{
  display:inline-block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
}

.footer-content h2{
  font-size:clamp(32px, 3.8vw, 50px);
  line-height:1.12;
  margin-bottom:16px;
  color:var(--green);
  font-family:'Playfair Display', serif;
  font-weight:700;
}

.footer-content h2::after{
  content:"";
  display:block;
  width:48px;
  height:3px;
  margin-top:14px;
  background:linear-gradient(90deg, var(--gold), transparent);
  border-radius:2px;
}

.footer-content p{
  margin-bottom:24px;
  color:var(--text);
  font-size:16px;
  font-weight:500;
  line-height:1.65;
}

.footer-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.footer-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 20px;
  border-radius:6px;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  transition:background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-cta--primary{
  background:var(--green);
  color:white;
  border:2px solid var(--green);
}

.footer-cta--primary:hover{
  background:#14281c;
  border-color:#14281c;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(27, 48, 34, 0.2);
}

.footer-cta--outline{
  background:transparent;
  color:var(--green);
  border:2px solid var(--green);
  text-transform:none;
  letter-spacing:0;
  font-weight:600;
}

.footer-cta--outline:hover{
  background:rgba(27, 48, 34, 0.06);
  transform:translateY(-2px);
}

.footer-bowl{
  flex-shrink:0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
}

.footer-bowl img{
  width:min(280px, 38vw);
  max-height:260px;
  object-fit:contain;
  filter:drop-shadow(0 12px 28px rgba(27, 48, 34, 0.12));
  animation:footerBowlFloat 5s ease-in-out infinite;
}

@keyframes footerBowlFloat{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

.footer-contact-wrap{
  flex:1;
}

.footer-contact__label{
  display:block;
  margin-bottom:20px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#e8c878;
}

.footer-right{
  position:relative;
  background:linear-gradient(145deg, #0f4d28 0%, var(--green) 45%, #071a0f 100%);
}

.footer-right::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 50% 70% at 100% 50%, rgba(214, 186, 130, 0.1) 0%, transparent 65%);
  pointer-events:none;
}

.footer-right__inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  height:100%;
  min-height:300px;
  padding:48px 48px 48px 56px;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:white;
  transition:opacity 0.2s ease, transform 0.2s ease;
}

.contact-item:hover{
  opacity:0.9;
  transform:translateX(4px);
}

.contact-item--static{
  cursor:default;
}

.contact-item--static:hover{
  transform:none;
  opacity:1;
}

.contact-item__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  flex-shrink:0;
  border:1.5px solid rgba(214, 186, 130, 0.85);
  border-radius:50%;
  color:#e8c878;
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover .contact-item__icon{
  border-color:var(--gold);
  box-shadow:0 0 16px rgba(214, 186, 130, 0.25);
}

.contact-item span:last-child{
  font-size:16px;
  font-weight:500;
  line-height:1.3;
}

.footer-social{
  margin-top:28px;
}

.footer-social__label{
  display:block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#e8c878;
}

.footer-social__list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  list-style:none;
}

.footer-social__link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1.5px solid rgba(214, 186, 130, 0.85);
  border-radius:50%;
  color:#e8c878;
  text-decoration:none;
  background:rgba(0, 0, 0, 0.12);
  transition:border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social__link:hover{
  border-color:var(--gold);
  color:var(--cream);
  background:rgba(214, 186, 130, 0.15);
  transform:translateY(-3px);
  box-shadow:0 6px 18px rgba(0, 0, 0, 0.2);
}

.footer-social__link svg{
  display:block;
}

.footer-seal{
  position:relative;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:min(210px, 24vw);
  aspect-ratio:1;
}

.footer-seal__ring{
  position:absolute;
  inset:-6px;
  border:1px dashed rgba(214, 186, 130, 0.45);
  border-radius:50%;
  animation:footerSealSpin 30s linear infinite;
}

.footer-rotate{
  position:relative;
  z-index:1;
  width:100%;
  max-width:160px;
  height:2.6em;
  overflow:hidden;
  text-align:center;
}

.footer-rotate__track{
  display:block;
  animation:footerTaglineRotate 12s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.footer-rotate__line{
  display:block;
  height:2.6em;
  line-height:2.6em;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
  white-space:nowrap;
}

@keyframes footerTaglineRotate{
  0%, 28%{
    transform:translateY(0);
  }
  30%, 58%{
    transform:translateY(-2.6em);
  }
  60%, 88%{
    transform:translateY(-5.2em);
  }
  90%, 98%{
    transform:translateY(-7.8em);
  }
  100%{
    transform:translateY(0);
  }
}

@keyframes footerSealSpin{
  to{ transform:rotate(360deg); }
}

.footer-bar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 56px;
  background:#06150c;
  border-top:1px solid rgba(214, 186, 130, 0.15);
}

.footer-bar__copy{
  font-size:13px;
  color:rgba(255, 255, 255, 0.65);
  font-weight:500;
}

.footer-bar__nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px 24px;
}

.footer-bar__nav a{
  color:rgba(255, 255, 255, 0.75);
  text-decoration:none;
  font-size:13px;
  font-weight:500;
  transition:color 0.2s ease;
}

.footer-bar__nav a:hover{
  color:var(--gold);
}

/* EFFECTS */

.reveal{
  opacity:0;
  transform:translateY(32px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(22px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes heroImageIn{
  from{
    opacity:0;
    transform:translateX(30px) scale(0.98);
  }
  to{
    opacity:1;
    transform:translateX(0) scale(1);
  }
}

@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  .hero-media,
  .hero-eyebrow,
  .hero-text h1,
  .hero-lead,
  .hero-buttons,
  .hero-trust{
    animation:none;
  }

  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }

  .product-card:hover,
  .about-feature:hover,
  .about-team-spotlight:hover,
  .about-team-member:hover,
  .testimonial-card:hover,
  .hero-btn:hover,
  .whatsapp-btn:hover,
  .whatsapp-sticky:hover,
  .footer-social__link:hover,
  .spin-promo-trigger:hover,
  .promo-banner:hover,
  .hero-trust li:hover{
    transform:none;
  }

  .spin-promo-trigger,
  .promo-banner,
  .spin-brand__badge,
  .spin-modal__panel,
  .spin-modal__backdrop,
  .spin-wheel-glow,
  .spin-wheel-stage,
  .spin-result,
  .spin-result--win .spin-result__badge{
    animation:none;
    transition:none;
  }

  .spin-modal__panel--open{
    opacity:1;
    transform:none;
  }

  .spin-wheel{
    transition:none;
  }

  .hero-rotate__track{
    animation:none;
  }

  .hero-rotate__line:not(:first-child){
    display:none;
  }

  .about.is-visible .about-feature,
  .about.is-visible .about-team-spotlight,
  .about.is-visible .about-team-member{
    animation:none;
  }

  .products.is-visible .product-card{
    animation:none;
  }

  .why-choose.is-visible .why-card{
    animation:none;
  }

  .why-card:hover{
    transform:none;
  }

  .testimonials.is-visible .testimonial-card{
    animation:none;
  }

  .footer.is-visible .footer-content,
  .footer.is-visible .footer-bowl,
  .footer.is-visible .footer-contact-wrap,
  .footer.is-visible .footer-seal{
    animation:none;
  }

  .footer-bowl img{
    animation:none;
  }

  .footer-seal__ring{
    animation:none;
  }

  .footer-rotate__track{
    animation:none;
  }

  .footer-rotate__line:not(:first-child){
    display:none;
  }

  .about-slider__track{
    transition:none;
  }
}

/* MOBILE NAV */

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  padding:10px;
  border:none;
  border-radius:8px;
  background:transparent;
  cursor:pointer;
  z-index:110;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--green);
  border-radius:2px;
  transition:transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2){
  opacity:0;
}

body.nav-open .nav-toggle span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* RESPONSIVE — tablet */

@media(max-width:992px){

  .container{
    width:92%;
  }

  .nav-wrapper{
    gap:8px;
  }

  .nav-toggle{
    display:flex;
    order:3;
    flex-shrink:0;
  }

  .logo{
    order:1;
    flex-shrink:0;
  }

  .nav-whatsapp{
    order:2;
    margin-left:auto;
    margin-right:4px;
    flex-shrink:0;
  }

  .main-nav{
    order:4;
    position:fixed;
    inset:0;
    z-index:100;
    background:rgba(27, 48, 34, 0.45);
    visibility:hidden;
    opacity:0;
    transition:opacity 0.25s ease, visibility 0.25s ease;
    pointer-events:none;
  }

  body.nav-open .main-nav{
    visibility:visible;
    opacity:1;
    pointer-events:auto;
  }

  .top-bar__list{
    gap:8px 16px;
    font-size:11px;
  }

  .top-bar__item--email{
    display:none;
  }

  .nav-links{
    position:absolute;
    top:0;
    right:0;
    width:min(300px, 85vw);
    height:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:calc(var(--top-bar-height) + 88px) 28px 32px;
    background:var(--cream);
    box-shadow:-8px 0 32px rgba(0, 0, 0, 0.12);
    transform:translateX(100%);
    transition:transform 0.3s ease;
  }

  body.nav-open .nav-links{
    transform:translateX(0);
  }

  .nav-links li{
    width:100%;
    border-bottom:1px solid rgba(27, 48, 34, 0.08);
  }

  .nav-links a{
    display:block;
    padding:16px 0;
    font-size:16px;
  }

  .nav-item--dropdown{
    width:100%;
  }

  .nav-dropdown__toggle{
    display:flex;
    width:100%;
    justify-content:space-between;
    padding:16px 0;
    font-size:16px;
  }

  .nav-dropdown{
    position:static;
    min-width:0;
    margin:0 0 8px;
    padding:0 0 8px 12px;
    background:transparent;
    border:none;
    border-radius:0;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.25s ease;
  }

  .nav-dropdown.is-open{
    max-height:240px;
  }

  .nav-dropdown a{
    padding:12px 0;
    font-size:15px;
  }

  .nav-links a::after{
    display:none;
  }

  body.nav-open{
    overflow:hidden;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .about-image__frame{
    border-radius:24px 56px 24px 24px;
    max-width:480px;
    margin:0 auto;
  }

  .about-features{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:0 20px;
  }

  .about-feature{
    border-bottom:none;
    padding:14px 0;
  }

  .about-team__layout{
    grid-template-columns:1fr;
    gap:32px;
  }

  .about-team__intro{
    position:static;
    text-align:center;
    max-width:560px;
    margin:0 auto;
  }

  .about-team__intro h3::after{
    margin-left:auto;
    margin-right:auto;
  }

  .about-team-spotlight{
    flex-direction:column;
    border-radius:24px;
  }

  .about-team-spotlight__photo{
    flex:none;
    max-width:none;
  }

  .about-team-spotlight__photo::after{
    background:linear-gradient(180deg, transparent 40%, var(--green) 100%);
  }

  .about-team-spotlight__photo img{
    min-height:200px;
    max-height:240px;
  }

  .about-team-spotlight__content{
    padding:28px 28px 32px;
  }

  .about-team__row{
    grid-template-columns:1fr;
  }

  .global-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .product-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
  }

  .recipe-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:22px;
  }

  .why-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:32px 24px;
  }

  .why-card__icon{
    width:58px;
    height:58px;
    margin-bottom:16px;
  }

  .testimonial-slider__track{
    display:flex;
    gap:0;
  }

  .testimonial-card{
    flex:0 0 100%;
    min-width:100%;
  }

  .testimonial-slider__dots{
    display:flex;
  }

  .footer__body{
    grid-template-columns:1fr;
  }

  .footer-bar{
    padding:18px 28px;
    justify-content:center;
    text-align:center;
  }

  .footer-bar__nav{
    justify-content:center;
  }

  .footer-left__inner{
    padding:40px 28px 40px 32px;
  }

  .footer-right__inner{
    padding:40px 28px;
  }

  .footer-content h2{
    font-size:36px;
  }

  .hero{
    min-height:auto;
  }

  .hero-media{
    width:92%;
    height:44%;
    top:auto;
    bottom:4%;
    right:4%;
    left:auto;
    opacity:0.95;
  }

  .hero-photo{
    object-position:50% 55%;
    -webkit-mask-image:linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
    mask-image:linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
  }

  .hero-media-fade{
    background:
      linear-gradient(180deg, var(--cream) 0%, rgba(249, 246, 240, 0.92) 14%, transparent 38%),
      linear-gradient(0deg, var(--cream) 0%, rgba(249, 246, 240, 0.85) 28%, transparent 55%);
  }

  .hero-content{
    align-items:flex-start;
    padding:16px 0 42vh;
  }

  .hero-text h1{
    font-size:42px;
  }

  .promo-banner{
    flex-wrap:wrap;
    gap:8px 10px;
    margin-bottom:16px;
    padding:10px 14px;
  }

  .spin-brand__cta{
    margin-left:auto;
  }

  .about{
    padding:64px 0;
  }

  .products,
  .why-choose,
  .recipes,
  .testimonials{
    padding:64px 0;
  }

  .section-title h2{
    font-size:38px;
  }

  .about-content h2{
    font-size:38px;
  }

  .why-choose h2{
    font-size:34px;
  }
}

@media(min-width:1200px){

  .hero-media{
    width:58vw;
    max-width:900px;
    right:2%;
  }

  .hero-text h1{
    font-size:60px;
  }
}

/* RESPONSIVE — mobile */

@media(max-width:768px){

  :root{
    --top-bar-height:36px;
    --navbar-height:62px;
  }

  .top-bar__list{
    justify-content:space-between;
    gap:6px 10px;
  }

  .top-bar__item:first-child{
    display:none;
  }

  .navbar{
    padding:16px 0;
  }

  .logo img{
    width:110px;
  }

  .nav-whatsapp{
    padding:8px 12px;
    font-size:12px;
  }

  .nav-whatsapp svg{
    width:15px;
    height:15px;
  }

  .hero-text h1{
    font-size:36px;
  }

  .hero-lead{
    font-size:15px;
    margin:16px 0 24px;
  }

  .hero-lead__hook{
    font-size:16px;
    margin-bottom:10px;
  }

  .promo-banner .spin-brand__sub{
    display:none;
  }

  .promo-banner .spin-brand__title{
    font-size:14px;
  }

  .hero-eyebrow{
    font-size:11px;
    margin-bottom:12px;
  }

  .hero-buttons{
    flex-direction:row;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:24px;
  }

  .hero-btn{
    width:auto;
    padding:8px 14px;
    font-size:12px;
    gap:5px;
    border-radius:5px;
  }

  .hero-btn svg{
    width:14px;
    height:14px;
  }

  .hero-btn--shop,
  .hero-btn--whatsapp{
    border-width:1.5px;
  }

  .hero-trust{
    flex-direction:column;
    gap:14px;
  }

  .hero-content{
    padding-bottom:38vh;
  }

  .about-content h2,
  .section-title h2,
  .why-choose h2{
    font-size:32px;
  }

  .about-features{
    grid-template-columns:1fr;
  }

  .about-feature__icon{
    width:46px;
    height:46px;
  }

  .about-feature strong{
    font-size:14px;
  }

  .btn-about{
    width:100%;
    justify-content:center;
  }

  .footer-left__inner,
  .footer-right__inner{
    flex-direction:column;
    text-align:center;
    padding:40px 28px;
    min-height:auto;
  }

  .footer-left__inner{
    gap:28px;
  }

  .footer-right__inner{
    gap:32px;
  }

  .footer-content{
    max-width:none;
  }

  .footer-bowl{
    justify-content:center;
  }

  .footer-bowl img{
    width:200px;
    max-height:none;
  }

  .footer-contact{
    align-items:center;
    width:100%;
  }

  .contact-item{
    justify-content:center;
  }

  .contact-item:hover{
    transform:none;
  }

  .footer-social{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
  }

  .footer-social__list{
    justify-content:center;
  }

  .footer-social__link:hover{
    transform:none;
  }

  .footer-content h2{
    font-size:30px;
  }

  .footer-actions{
    flex-direction:column;
  }

  .footer-cta{
    width:100%;
    justify-content:center;
  }

  .footer-bar{
    flex-direction:column;
    padding:20px;
  }
}

/* RESPONSIVE — small phones */

@media(max-width:480px){

  .container{
    width:94%;
  }

  .top-bar__item span{
    font-size:10px;
  }

  .spin-promo-trigger{
    left:16px;
    bottom:max(84px, calc(16px + env(safe-area-inset-bottom, 0px)));
    padding:10px 14px;
    font-size:0;
    gap:0;
  }

  .spin-promo-trigger .spin-brand__title{
    display:none;
  }

  .spin-promo-trigger__icon{
    font-size:20px;
  }

  .spin-steps__item{
    font-size:10px;
    padding:5px 6px;
  }

  .spin-steps__item span{
    width:20px;
    height:20px;
    font-size:10px;
  }

  .spin-prizes-preview li{
    font-size:10px;
    padding:5px 9px;
  }

  .spin-modal__body{
    padding:16px 16px 8px;
  }

  .spin-wheel-wrap{
    width:min(100%, 280px);
  }

  .nav-whatsapp{
    font-size:0;
    padding:10px;
    gap:0;
  }

  .nav-whatsapp svg{
    width:18px;
    height:18px;
  }

  .hero-media{
    width:96%;
    height:36%;
    right:2%;
    bottom:5%;
  }

  .hero-content{
    padding-bottom:34vh;
  }

  .hero-text h1{
    font-size:30px;
  }

  .hero-lead{
    font-size:14px;
  }

  .hero-lead__hook{
    font-size:15px;
  }

  .hero-buttons{
    gap:6px;
  }

  .hero-btn{
    flex:1;
    min-width:calc(50% - 4px);
    justify-content:center;
    padding:7px 10px;
    font-size:11px;
    gap:4px;
  }

  .hero-btn svg{
    width:13px;
    height:13px;
  }

  .trust-icon{
    width:32px;
    height:32px;
  }

  .hero-trust li{
    font-size:13px;
  }

  .product-grid{
    grid-template-columns:1fr;
  }

  .recipe-grid{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .why-card{
    padding:4px 12px;
  }

  .why-card h4{
    font-size:12px;
  }

  .why-card p{
    font-size:13px;
  }

  .why-card__icon{
    width:52px;
    height:52px;
  }

  .products,
  .why-choose,
  .testimonials,
  .about{
    padding:48px 0;
  }

  .section-title{
    margin-bottom:36px;
  }

  .section-title h2{
    font-size:28px;
  }

  .about-content h2{
    font-size:28px;
  }

  .why-choose h2{
    font-size:26px;
    margin-bottom:36px;
  }

  .testimonial-card{
    padding:28px 24px;
  }

  .prices span{
    font-size:12px;
    padding:6px 12px;
  }

  .footer-left__inner,
  .footer-right__inner{
    padding:32px 20px;
  }

  .footer-content h2{
    font-size:26px;
  }

  .footer-bowl img{
    width:160px;
  }

  .primary-btn{
    display:block;
    text-align:center;
  }
}