/* ============================================================
   CORNEXI — Premium Oat Brand Stylesheet
   Style ref: rauch.cc — dark header, editorial, animated
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 400; color: var(--text); background: var(--light); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { border: none; outline: none; cursor: pointer; background: none; }

/* ── CSS Variables ── */
:root {
  --dark:     #111111;
  --dark2:    #1C1C1C;
  --light:    #F6F4F0;
  --gray:     #EDEBE7;
  --orange:   #E8551A;
  --orange-l: #FF6D35;
  --green:    #2C5C2E;
  --text:     #181818;
  --muted:    #6B6B6B;
  --white:    #FFFFFF;
}

/* ── Page Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
#loader-logo { height: 52px; filter: brightness(0) invert(1); margin-bottom: 40px; }
#loader-bar-wrap { width: 200px; height: 2px; background: rgba(255,255,255,.12); overflow: hidden; }
#loader-bar { height: 100%; background: var(--orange); width: 0; transition: width .08s linear; }

/* ── Scroll Reveal ── */
.rv  { opacity: 0; transform: translateY(40px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.rvl { opacity: 0; transform: translateX(-48px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.rvr { opacity: 0; transform: translateX(48px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.rv.in, .rvl.in, .rvr.in { opacity: 1; transform: none; }
.rv.delay-1  { transition-delay: .1s; }
.rv.delay-2  { transition-delay: .2s; }
.rv.delay-3  { transition-delay: .3s; }
.rv.delay-4  { transition-delay: .4s; }
.rv.delay-5  { transition-delay: .5s; }
.rvl.delay-1 { transition-delay: .1s; }
.rvl.delay-2 { transition-delay: .2s; }
.rvl.delay-3 { transition-delay: .3s; }
.rvr.delay-1 { transition-delay: .1s; }
.rvr.delay-2 { transition-delay: .2s; }
.rvr.delay-3 { transition-delay: .3s; }

/* ── Float Keyframes ── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(1deg); }
}

/* ─────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--dark);
  padding: 0 clamp(20px, 4vw, 64px);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .4s, box-shadow .4s, height .4s;
}
header.scrolled {
  background: rgba(17,17,17,.97);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
  height: 60px;
}
.logo a { display: flex; align-items: center; }
.logo img { height: 36px; filter: brightness(0) invert(1); transition: height .4s; }
header.scrolled .logo img { height: 30px; }

/* Nav */
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links > li > a {
  font-size: 13px; letter-spacing: .5px;
  color: rgba(255,255,255,.72);
  transition: color .3s;
  font-weight: 400;
}
.nav-links > li > a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background .3s !important;
}
.nav-cta:hover { background: var(--orange-l) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-trigger {
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; letter-spacing: .5px;
  color: rgba(255,255,255,.72);
  transition: color .3s;
  background: none; border: none; font-family: inherit; font-weight: 400;
}
.has-dropdown:hover .dropdown-trigger { color: var(--white); }
.dropdown-arrow {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s;
  display: inline-block;
  flex-shrink: 0;
}
.has-dropdown:hover .dropdown-arrow { transform: rotate(-135deg) translateY(2px); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  min-width: 220px; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 13px; color: rgba(255,255,255,.6);
  transition: all .2s;
}
.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,.05);
  padding-left: 28px;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; z-index: 300;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 250;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px clamp(24px,6vw,60px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px,6vw,48px);
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .3s, padding-left .3s;
}
.mobile-menu a:hover { color: var(--orange); padding-left: 12px; }
.mobile-menu-sub {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu-sub a {
  font-size: 15px; font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,.45);
  border-bottom: none; padding: 6px 0;
}
.mobile-menu-sub a:hover { color: var(--orange); padding-left: 8px; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px clamp(24px,5vw,80px) 80px;
  gap: 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 72% 50%, rgba(232,85,26,.13) 0%, transparent 58%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,.06);
}

.hero-label {
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px; font-weight: 500;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 800; color: var(--white);
  line-height: 1.05; margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.52);
  font-weight: 300; line-height: 1.8;
  max-width: 460px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  padding: 16px 36px; font-size: 13px;
  font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  transition: background .3s, transform .3s;
}
.btn-primary:hover { background: var(--orange-l); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.72);
  padding: 16px 36px; font-size: 13px;
  font-weight: 500; letter-spacing: .8px; text-transform: uppercase;
  transition: all .3s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

.hero-img {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,85,26,.22) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-img img {
  max-width: 90%; max-height: 560px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.55));
  position: relative; z-index: 1;
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.3); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: rgba(255,255,255,.25); fill: none; stroke-width: 1.5; }

/* ─────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────── */
.section-label {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px; font-weight: 600;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800; color: var(--text);
  line-height: 1.1; margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 16px; color: var(--muted);
  font-weight: 300; line-height: 1.75;
  max-width: 560px;
}
.section-sub.light { color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────────
   PRODUCTS SECTION
───────────────────────────────────────── */
.products-section {
  background: var(--light);
  padding: 100px clamp(24px,5vw,80px);
}
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 24px; flex-wrap: wrap;
}
.products-header-right a {
  font-size: 13px; font-weight: 500; color: var(--orange);
  letter-spacing: .5px;
  display: flex; align-items: center; gap: 6px;
  transition: gap .3s;
}
.products-header-right a:hover { gap: 12px; }
.products-header-right svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }

.prod-card {
  background: var(--white);
  overflow: hidden; cursor: pointer; position: relative;
  aspect-ratio: 3/4;
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.prod-card:hover { z-index: 2; box-shadow: 0 24px 64px rgba(0,0,0,.14); transform: translateY(-6px); }

.prod-card-img {
  height: 62%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 28px; background: var(--gray);
  transition: background .4s;
}
.prod-card:hover .prod-card-img { background: #E8E6E2; }
.prod-card-img img {
  max-height: 170px; width: auto; object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.prod-card:hover .prod-card-img img { transform: scale(1.08) translateY(-8px); }

.prod-card-body { padding: 20px 20px 52px; }
.prod-card-tag {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 6px; font-weight: 600;
}
.prod-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.2;
}
.prod-card-desc {
  margin-top: 8px; font-size: 13px; color: var(--muted); line-height: 1.6;
}

.prod-card-link {
  position: absolute; bottom: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8);
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.prod-card-link svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }
.prod-card:hover .prod-card-link { opacity: 1; transform: scale(1); }

/* ─────────────────────────────────────────
   PARTNER MARQUEE BAND
───────────────────────────────────────── */
.partners-band {
  background: var(--dark);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.partners-label {
  text-align: center;
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  margin-bottom: 28px;
}
.marquee-wrap { display: flex; }
.marquee-row {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-row:nth-child(2) { animation-direction: reverse; }
.marquee-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 48px; height: 60px; flex-shrink: 0;
}
.marquee-item img {
  height: 34px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .42; transition: opacity .3s;
}
.marquee-item:hover img { opacity: .85; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   BRAND STORY SPLIT
───────────────────────────────────────── */
.brand-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.brand-split-img {
  position: relative; overflow: hidden;
  min-height: 500px;
}
.brand-split-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.brand-split:hover .brand-split-img img { transform: scale(1.04); }
.brand-split-content {
  background: var(--dark);
  padding: 80px clamp(32px,5vw,80px);
  display: flex; flex-direction: column; justify-content: center;
}
.brand-split-content .section-label { color: var(--orange); }
.brand-split-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px,3.5vw,52px);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 24px;
}
.brand-split-content p {
  font-size: 16px; color: rgba(255,255,255,.5);
  font-weight: 300; line-height: 1.8; margin-bottom: 16px;
}
.brand-split-content .btn-primary { margin-top: 16px; align-self: flex-start; }

/* ─────────────────────────────────────────
   STATS / AWARDS SECTION
───────────────────────────────────────── */
.stats-section {
  background: var(--gray);
  padding: 100px clamp(24px,5vw,80px);
}
.stats-inner {
  max-width: 960px; margin: 0 auto; text-align: center;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-top: 60px;
}
.stat-card {
  background: var(--white); padding: 48px 32px;
  text-align: center;
  transition: transform .4s, box-shadow .4s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.09); }
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px,5vw,72px); font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 12px;
  display: block;
}
.stat-label {
  font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500;
}

.awards-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; margin-top: 64px; flex-wrap: wrap;
}
.award-badge img { height: 80px; width: auto; object-fit: contain; opacity: .85; }

/* ─────────────────────────────────────────
   LIFESTYLE STRIP
───────────────────────────────────────── */
.lifestyle-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  height: 320px;
}
.lifestyle-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.lifestyle-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .6s;
  filter: brightness(.88);
}
.lifestyle-item:hover img { transform: scale(1.07); filter: brightness(1); }
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%);
  pointer-events: none;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 80px clamp(24px,5vw,80px) 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr repeat(3,1fr);
  gap: 48px; margin-bottom: 64px;
}
.footer-brand .logo img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 280px; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,.35);
  transition: color .3s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.6; }
.footer-contact-item a { font-size: 13px; color: rgba(255,255,255,.38); transition: color .3s; }
.footer-contact-item a:hover { color: var(--white); }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.45); fill: none; stroke-width: 1.5; }
.social-link:hover { background: var(--orange); border-color: var(--orange); }
.social-link:hover svg { stroke: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,.25); }
.szechenyi-badge img { height: 52px; opacity: .7; }

/* ─────────────────────────────────────────
   PRODUCT HERO (inner pages)
───────────────────────────────────────── */
.prod-hero {
  min-height: 92svh;
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px clamp(24px,5vw,80px) 80px;
  gap: 60px; position: relative; overflow: hidden;
}
.prod-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(232,85,26,.14) 0%, transparent 58%);
  pointer-events: none;
}

.prod-hero-content { position: relative; z-index: 1; }
.prod-hero-content .hero-label { color: var(--orange); }
.prod-hero-content h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px,5vw,78px); font-weight: 800;
  color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.prod-hero-content p {
  font-size: 17px; color: rgba(255,255,255,.5);
  font-weight: 300; line-height: 1.8; margin-bottom: 28px; max-width: 480px;
}
.prod-hero-flavors {
  margin-bottom: 36px;
}
.prod-hero-flavors h3 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 12px; font-weight: 600;
}
.flavor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.flavor-tag {
  font-size: 12px; padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.55);
  transition: all .25s;
  cursor: default;
}
.flavor-tag:hover { border-color: var(--orange); color: var(--orange); }

.prod-hero-img {
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.prod-hero-img::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,85,26,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.prod-hero-img img {
  max-width: 88%; max-height: 520px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.5));
  position: relative; z-index: 1;
}

/* ─────────────────────────────────────────
   FLAVORS GRID (inner pages)
───────────────────────────────────────── */
.flavors-section {
  background: var(--light); padding: 100px clamp(24px,5vw,80px);
}
.flavors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.flavor-card {
  padding: 48px 40px; position: relative; overflow: hidden;
  transition: transform .4s;
  cursor: default;
}
.flavor-card:hover { transform: translateY(-4px); }
.flavor-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.flavor-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px; font-weight: 800;
  color: rgba(255,255,255,.12); line-height: 1;
  margin-bottom: 16px;
}
.flavor-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.flavor-card-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ─────────────────────────────────────────
   WHERE TO BUY (inner pages)
───────────────────────────────────────── */
.where-section {
  background: var(--gray); padding: 100px clamp(24px,5vw,80px);
}
.where-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 52px;
}
.where-card {
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 32px; aspect-ratio: 16/9;
  transition: all .35s;
}
.where-card:hover { background: var(--light); transform: scale(1.02); }
.where-card img { max-height: 44px; width: auto; object-fit: contain; opacity: .7; transition: opacity .3s; }
.where-card:hover img { opacity: 1; }

/* ─────────────────────────────────────────
   MAGAZINE CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 80px clamp(24px,5vw,80px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px,4vw,52px); font-weight: 800;
  color: var(--white); line-height: 1.1;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,.75); font-weight: 300; margin-top: 8px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--orange);
  padding: 16px 36px; font-size: 13px;
  font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.btn-white:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-white svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────── */
.breadcrumb {
  background: var(--dark2);
  padding: 14px clamp(24px,5vw,80px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; }
.breadcrumb-inner a, .breadcrumb-inner span {
  font-size: 12px; color: rgba(255,255,255,.35);
  transition: color .3s;
}
.breadcrumb-inner a:hover { color: rgba(255,255,255,.7); }
.breadcrumb-inner .sep { font-size: 10px; color: rgba(255,255,255,.2); }
.breadcrumb-inner .current { color: rgba(255,255,255,.65); }

/* ─────────────────────────────────────────
   RESPONSIVE: TABLET (≤1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
  .hero { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title { font-size: clamp(36px,5vw,64px); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .where-grid { grid-template-columns: repeat(2,1fr); }
  .brand-split { grid-template-columns: 1fr; }
  .brand-split-img { min-height: 340px; }
  .flavors-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .lifestyle-strip { grid-template-columns: repeat(2,1fr); height: auto; }
  .lifestyle-item { height: 240px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE: MOBILE (≤768px)
───────────────────────────────────────── */
@media (max-width: 768px) {
  header { height: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 64px;
    text-align: center;
    min-height: auto;
  }
  .hero-text { order: 2; }
  .hero-img { order: 1; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-img img { max-height: 280px; }

  .prod-hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .prod-hero-content { order: 2; }
  .prod-hero-img { order: 1; }
  .prod-hero-content p { margin-left: auto; margin-right: auto; }
  .prod-hero-content .btn-primary { align-self: center; }
  .flavor-tags { justify-content: center; }

  .products-grid { grid-template-columns: repeat(2,1fr); }
  .flavors-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 2px; }
  .where-grid { grid-template-columns: repeat(2,1fr); }
  .lifestyle-strip { grid-template-columns: repeat(2,1fr); height: auto; }
  .lifestyle-item { height: 180px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { flex-direction: column; text-align: center; align-items: center; }
  .brand-split { grid-template-columns: 1fr; }
  .brand-split-img { min-height: 260px; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .awards-row { gap: 24px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .where-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-strip { grid-template-columns: 1fr 1fr; }
}
