/* =============================================
   HOME REDESIGN — SWB-Inspired Longdon Foods
   ============================================= */

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

@font-face {
  font-family: 'TT Trailers';
  src: url('../TT Trailers Trial Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- Base Override --- */
html, body {
  overflow-x: clip; /* clip prevents horizontal scroll without breaking position: sticky! */
}

.home-redesign {
  background-color: #101820;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: clip;
}

/* --- Scroll Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* =============================================
   SECTION 1: HERO — SWB-Style Full-Screen
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible; /* Allow snacks to fall over the next section */
  padding: 0;
  background: #101820;
}

/* --- Product Navigation Pills (top center) --- */
.hero__nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 50; /* Above falling products (10), but behind navbar (100) */
  margin-top: 180px; /* Increased to avoid overlap with navbar logo */
  padding: 0 20px;
}

.hero__nav-item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3); /* Consistent 2px width to prevent jumping */
  border-radius: 50px;
  cursor: pointer;
  padding: 6px 18px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero__nav-item.active {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6); 
  font-weight: 800;
  background: transparent;
}

.hero__nav-item:hover,
.hero__nav-item.active:hover {
  color: #fff;
  border-color: #f7f33a; /* Yellow on hover for all states */
  background: transparent; /* Explicitly ensure no fill on hover */
}


/* --- Falling Product Rain --- */
.hero__falling-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

.hero__falling-item {
  position: absolute;
  left: var(--fall-left, 50%);
  top: -300px;
  width: var(--fall-size, 80px);
  height: auto;
  object-fit: contain;
  animation: productFall var(--fall-duration, 7s) linear var(--fall-delay, 0s) infinite;
  animation-fill-mode: backwards;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
  will-change: transform;
}

@keyframes productFall {
  0% {
    transform: translateY(0) rotate(var(--fall-rotate-start, -10deg));
    opacity: 0.9;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(calc(100vh + 400px)) rotate(var(--fall-rotate-end, 20deg));
    opacity: 0;
  }
}

/* --- "MADE FROM VEG!" accent (upper-right, rotated) --- */
.hero__accent {
  position: absolute;
  right: 8%;
  bottom: 15%;
  font-family: 'Permanent Marker', cursive;
  color: #c4d600;
  font-size: clamp(24px, 4vw, 48px);
  transform: rotate(-12deg);
  text-transform: uppercase;
  z-index: 60; /* Above falling products */
  line-height: 1.1;
  text-align: center;
}

/* --- Bottom Massive Text --- */
.hero__bottom-text {
  position: relative;
  z-index: 5; /* Below falling products (10) */
  padding: 0 5%;
  padding-bottom: 50px; /* Moved up a bit */
  transition: color 0.6s ease;
}

/* Theme Colors for Bottom Text */
.hero__bottom-text.theme-white { color: #ffffff; }
.hero__bottom-text.theme-white h1 { color: #ffffff; }

.hero__bottom-text.theme-yellow { color: #f7f33a; }
.hero__bottom-text.theme-yellow h1 { color: #f7f33a; }

.hero__bottom-text.theme-orange { color: #ff8c00; }
.hero__bottom-text.theme-orange h1 { color: #ff8c00; }

.hero__your {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(50px, 10vw, 150px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.8;
  color: inherit;
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}

.hero__brand-name {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(50px, 14vw, 210px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.8;
  color: inherit;
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero__with-row {
  display: inline;
}

.hero__side-accent {
  display: none;
}

.hero__word {
  display: inline;
}

.hero__word--snack::after,
.hero__word--with::after {
  content: ' ';
}

/* --- Hero Split Images (Meets in the middle) --- */
.hero-split {
  position: relative;
  z-index: 20; /* Sit above the hero background */
  display: flex;
  width: 100%;
  height: clamp(450px, 65vh, 800px); /* Increased height upwards */
  overflow: visible; /* ALLOW OVERLAY TEXT TO BLEED OUT */
  background: #101820;
  margin-top: 40px; /* Reduced space from text to push images up */
  margin-bottom: 600px; /* Further increased to accommodate the lower hand image */
  gap: 0; /* Ensure no space between images */
  padding: 0;
}

.hero-split__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  background-color: #101820; /* Match background just in case */
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.hero-split__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: scale(1);
  will-change: transform;
  /* Removed transition so scroll-linked JS zoom is instantaneous and smooth */
  transform-origin: center center;
}

/* Zoom animation is now handled via JS for scroll-linked smoothness */

/* Hero split layout */

/* --- Hero Section --- */

/* =============================================
   SECTION 2: Hero Split Overlay Content
   ============================================= */
.hero-split__overlay {
  position: absolute;
  top: 100%; /* Anchor to the bottom edge of the image split */
  left: 50%; /* Start exactly at the intersection */
  padding-left: 20px; /* Offset slightly to the right */
  z-index: 5;
  width: 50%; /* Constrain width to the right half */
  max-width: 550px;
  text-align: left;
  /* Shift up more assertively so "We're" is definitely inside the image */
  transform: translateY(calc(-1.6 * clamp(70px, 12vw, 160px)));
}

.hero-split__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(70px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0 !important; /* Ensure no default margin pushes it down */
  margin-bottom: 20px;
}

.hero-split__heading span {
  color: #c4d600;
}

.hero-split__subtext {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.hero-split__hand-left {
  position: absolute;
  left: -100px;
  bottom: -500px;
  height: clamp(450px, 60vh, 750px);
  width: auto;
  z-index: 30;
  pointer-events: none;
  transform: rotate(15deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  transition: transform 0.3s ease-out;
}

/* Add a subtle hover effect via JS/Scroll if needed, but for now fixed */

.marquee-background-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-background-wrapper .scrolling-marquee {
  position: sticky;
  top: 50%;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
  transform: translateY(-50%) rotate(3deg);
  padding: 0;
}

.scrolling-marquee {
  width: 110vw;
  margin-left: -5vw; /* Prevent edges from showing during rotation */
  overflow: hidden;
  background: #101820;
  padding: 120px 0;
  margin-top: 400px;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  transform: rotate(3deg); /* Left side down, right side up */
}

.scrolling-marquee__inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.scrolling-marquee__inner span {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(100px, 18vw, 300px);
  font-weight: 900;
  line-height: 1.2; /* Prevents clipping at the top */
  display: inline-block; /* Helps with proper line-height rendering */
  color: #101820; /* Matches background */
  -webkit-text-stroke: 1.5px rgba(255, 77, 77, 0.4); /* Muted/Faded Red Stroke */
  margin-right: 80px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.philosophy {
  position: relative;
  background: #101820;
  text-align: center;
}

/* Default state: marquee sits in normal flow */
.scrolling-marquee.sticky-background {
  position: relative;
  transform: rotate(3deg);
  z-index: 1;
  background: transparent;
  pointer-events: none;
  padding: 80px 0;
  margin-top: 0;
  margin-bottom: 0;
}

/* JS adds this class when the marquee should be fixed in the background */
.scrolling-marquee.sticky-background.is-fixed {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(3deg);
  z-index: 1;
}

/* JS adds this when the user has scrolled past the entire philosophy section */
.scrolling-marquee.sticky-background.is-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  top: auto;
  transform: rotate(3deg);
  z-index: 1;
}

/* Spacer to prevent layout jump when marquee becomes fixed */
.marquee-spacer {
  display: none;
}
.marquee-spacer.active {
  display: block;
}

.philosophy__foreground {
  position: relative;
  z-index: 10; /* Above the fixed marquee */
  padding: 200px 0 400px;
}

.philosophy__content {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.philosophy__top {
  position: relative;
  width: 100%;
  margin-bottom: 150px;
}

.philosophy__label {
  font-family: 'Permanent Marker', cursive;
  color: #FF585D;
  font-size: clamp(20px, 3vw, 32px);
  transform: rotate(-5deg);
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.philosophy__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 900;
  line-height: 0.85;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.philosophy__desc {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}

.philosophy__extra {
  margin-top: 150px;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.philosophy__label--straight {
  font-size: clamp(20px, 3vw, 32px) !important; /* Reduced size */
  margin-bottom: 30px !important;
  transform: none !important;
  color: #f7f33a !important;
  display: inline-block; /* Ensure centering works */
}

.philosophy__video-container {
  width: 95%;
  max-width: 1300px; /* Increased width as requested */
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  cursor: pointer;
}

.philosophy__video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out; /* Smooth scroll zoom */
  will-change: transform;
}

/* Play Button Styles (Matching About Page) */
.ab-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 5;
}

.ab-video-play__triangle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7f33a;
  color: #101820;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(247, 243, 58, 0.3);
}

.ab-video-play:hover .ab-video-play__triangle {
  transform: scale(1.06);
  background: #fff;
  color: #101820;
}

.philosophy__hand-right {
  position: absolute;
  right: 0 !important; /* Force to the far right */
  top: 35%;
  transform: translateY(-50%) rotate(-10deg);
  height: clamp(300px, 40vh, 550px);
  width: auto;
  z-index: 15;
  pointer-events: none;
  background: transparent !important;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.scattered-gallery {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px; /* Reduced vertical spacing */
  padding: 0 18%;
}

.scattered-item:nth-child(1) {
  margin-bottom: 40px;
}

.scattered-item {
  width: clamp(180px, 24vw, 420px); /* Reduced width for a more elegant look */
  position: relative;
  z-index: 10;
}

.scattered-item--right {
  align-self: flex-end;
}

.scattered-item--left {
  align-self: flex-start;
}

.scattered-container {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a2530;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative; /* For the WE'RE label */
}

.scattered-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.scattered-item:hover .scattered-container img {
  transform: scale(1.15);
}

/* "WE'RE" label overlaid at the bottom of each image card */
.scattered-container__label {
  position: absolute;
  bottom: 10px;
  left: 15px;
  font-family: 'TT Trailers', sans-serif;
  font-weight: 900;
  font-size: clamp(50px, 8vw, 120px); /* Same size as the heading */
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  z-index: 5;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* Decorative SVG icons hanging above each card */
.scattered-icon, .got-snacks__star {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  
  /* Initial state for animation */
  opacity: 0;
  transform: scale(0.3) rotate(-15deg);
  transition: opacity 0.5s ease;
}

.scattered-icon {
  width: clamp(100px, 14vw, 180px); /* Increased size */
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.got-snacks__star {
  left: -40px; 
  top: -20px;
  width: clamp(70px, 10vw, 140px);
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.scattered-icon.is-visible, .got-snacks__star.is-visible {
  opacity: 1;
  animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-15deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
  }
  70% {
    transform: scale(0.95) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.scattered-icon--top {
  top: -60px;
  left: -30px;
}

/* Alternate icon positions for right-aligned cards */
.scattered-item--right .scattered-icon--top {
  left: auto;
  right: -30px;
}

.scattered-item--left .scattered-icon--top {
  left: -30px;
  right: auto;
}

/* Text below each card */
.scattered-text {
  margin-top: 20px;
  text-align: left;
  max-width: 100%;
}

.scattered-text__heading {
  font-family: 'TT Trailers', sans-serif;
  font-weight: 900;
  font-size: clamp(50px, 8vw, 120px); /* Increased size */
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

.scattered-text__desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 380px;
}

/* =============================================
   WE'VE GOT SNACKS — Statement Section
   ============================================= */
.got-snacks {
  position: relative;
  background: #101820;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 5%;
  z-index: 20;
}

.got-snacks__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px; /* Increased max-width to accommodate larger text */
}


.got-snacks__heading {
  font-family: 'TT Trailers', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 30px 0; /* Reduced space below heading */
  letter-spacing: -0.02em;
  text-align: center;
}

.got-snacks__badges {
  display: flex;
  gap: 15px; /* Tightened gap */
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: -10px; /* Move up slightly */
}

.got-snacks__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.got-snacks__badge img {
  width: clamp(60px, 7vw, 110px); /* Reduced size further */
  height: auto;
}

.got-snacks__badge span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.got-snacks__dish {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(250px, 30vw, 500px);
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  z-index: 2;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

/* =============================================
   PRODUCT SHOWCASE — Horizontal Scroll
   ============================================= */
.product-showcase {
  position: relative;
  background: #101820;
  z-index: 20;
}

.product-showcase__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden; /* Hide horizontal overflow here */
}

.product-showcase__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.product-slide {
  flex: 0 0 68vw;
  width: 68vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 3vw;
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: visible;
}

.product-slide:last-child {
  flex: 0 0 74vw;
  width: 74vw;
  padding-right: 8vw;
}

.intro-slide {
  background: #101820;
  flex: 0 0 100vw;
  width: 100vw;
  padding: 0 4vw;
}

.intro-slide .product-slide__info {
  flex: 0 0 100%;
  margin-left: 0;
}

.product-slide__image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  z-index: 2;
  background: none;
  box-shadow: none;
  border: none;
}

.product-slide__image img {
  width: auto;
  max-width: none;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  margin-right: -280px;
  transform-origin: center center;
  transform: rotate(var(--bowl-rotate, 0deg));
  will-change: transform;
}

.product-slide__info {
  flex: 0 0 auto;
  text-align: left;
  transform: none;
  margin-left: -80px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 0;
}

.product-slide__name-img {
  width: clamp(320px, 42vw, 680px);
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 5px 20px rgba(0,0,0,0.3));
}

/* When slide has no image — center and enlarge the name badge */
.product-slide .product-slide__info:only-child {
  flex: 0 0 80%;
  align-items: center;
  text-align: center;
  margin-left: 0;
}

.product-slide .product-slide__info:only-child .product-slide__name-img {
  width: clamp(360px, 55vw, 800px);
}


.product-slide__name-text {
  font-family: 'TT Trailers', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 160px);
  line-height: 0.85;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 -15px 0; /* Tighter to description */
  letter-spacing: -0.02em;
}

.product-slide__desc {
  display: none; /* User requested removal of subtexts */
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 auto 15px;
  max-width: 500px;
}

.product-slide__btn {
  display: none; /* User requested removal for now */
  padding: 14px 36px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  position: relative;
  z-index: 20; /* Ensure button renders above product name images */
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-slide__btn:hover {
  background: #fff;
  color: #101820;
}

.philosophy__img {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
}

.philosophy__img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.6s;
}

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

/* =============================================
   SECTION 4: Video Section
   ============================================= */
.video-section {
  padding: 120px 0;
  text-align: center;
}

.video-section__label {
  font-family: 'Permanent Marker', cursive;
  color: #c4d600;
  font-size: clamp(20px, 3vw, 32px);
  transform: rotate(-5deg);
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.video-section__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.video-section__player {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #1a2530;
  cursor: pointer;
}

.video-section__player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(196, 214, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.video-section__play-btn::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #101820;
  margin-left: 4px;
}

.video-section__player:hover .video-section__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* =============================================
   SECTION 5: Features Grid
   ============================================= */
.features {
  padding: 120px 0;
}

.features__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(50px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 80px;
  text-align: center;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;
  padding: 50px 40px;
  transition: transform 0.4s, background 0.4s;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
}

.feature-card__number {
  font-family: 'TT Trailers', sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: #c4d600;
  line-height: 1;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
}

.feature-card__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   SECTION 6: Product Showcase
   ============================================= */
.products {
  padding: 120px 0;
}

.products__header {
  position: relative;
  margin-bottom: 80px;
}

.products__label {
  font-family: 'Permanent Marker', cursive;
  color: #FF585D;
  font-size: clamp(22px, 3vw, 40px);
  transform: rotate(-8deg);
  display: inline-block;
  text-transform: uppercase;
}

.products__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
}

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

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: #fff;
  display: block;
}

.product-card:hover {
  transform: translateY(-8px);
  color: #fff;
  text-decoration: none;
}

.product-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a2530;
}

.product-card__body {
  padding: 25px;
}

.product-card__name {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 10px;
}

.product-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.product-card__cta {
  font-family: 'Permanent Marker', cursive;
  color: #c4d600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.product-card:hover .product-card__cta {
  gap: 14px;
}

.product-card__cta::after {
  content: '→';
  font-family: 'Inter', sans-serif;
}

/* =============================================
   SECTION 7: CTA — "Our Snacks in Your Business?"
   ============================================= */
.cta-section {
  padding: 120px 0;
}

.cta-section__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.cta-section__text {
  flex: 1;
}

.cta-section__label {
  font-family: 'Permanent Marker', cursive;
  color: #c4d600;
  font-size: clamp(18px, 2.5vw, 28px);
  transform: rotate(-5deg);
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cta-section__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(50px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.cta-section__img {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
}

.cta-section__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
}

/* =============================================
   SECTION 8: Testimonials
   ============================================= */
.testimonials {
  padding: 120px 0;
}

.testimonials__label {
  font-family: 'Permanent Marker', cursive;
  color: #FF585D;
  font-size: clamp(18px, 2.5vw, 28px);
  transform: rotate(-5deg);
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.testimonials__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(50px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;
  padding: 40px;
}

.testimonial-card__quote {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-card__name {
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-card__role {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* =============================================
   SECTION 9: Press / Media
   ============================================= */
.press {
  padding: 100px 0;
  text-align: center;
}

.press__heading {
  font-family: 'Permanent Marker', cursive;
  color: #c4d600;
  font-size: clamp(20px, 3vw, 32px);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.press__logo {
  height: 40px;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.press__logo:hover {
  opacity: 0.8;
}

/* =============================================
   SECTION 10: Social / Instagram Feed
   ============================================= */
.social-feed {
  padding: 120px 0;
}

.social-feed__label {
  font-family: 'Permanent Marker', cursive;
  color: #FF585D;
  font-size: clamp(20px, 3vw, 32px);
  transform: rotate(-5deg);
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.social-feed__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(50px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.social-feed__item {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.social-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.social-feed__item:hover img {
  transform: scale(1.08);
}

.social-feed__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16,24,32,0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.social-feed__item:hover::after {
  opacity: 1;
}

.social-feed__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c4d600;
  text-decoration: none;
  transition: gap 0.3s;
}

.social-feed__link:hover {
  gap: 16px;
  color: #c4d600;
  text-decoration: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__brand-name {
    font-size: clamp(50px, 10vw, 160px);
    white-space: normal;
  }
}

@media (max-width: 991px) {
  .philosophy__inner {
    flex-direction: column;
    gap: 50px;
  }
  .cta-section__inner {
    flex-direction: column;
    gap: 50px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero__nav {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 110px;
    justify-content: center;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__nav-item {
    font-size: 10px;
    padding: 6px 14px;
    letter-spacing: 1px;
  }
  .hero__accent {
    font-size: clamp(20px, 3.5vw, 36px);
    right: 8%;
    top: auto;
    bottom: 12%;
  }
  .hero__discover-badge {
    left: 8%;
    bottom: 20%;
  }
  .social-feed__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero Split mobile */
  .hero-split {
    margin-bottom: 200px;
  }
  .hero-split__overlay {
    width: 90%;
    left: 5%;
    padding-left: 0;
    transform: translateY(-50%);
  }
  .hero-split__heading {
    font-size: clamp(50px, 10vw, 100px);
  }
  .hero-split__subtext {
    font-size: 14px;
  }
  .hero-split__hand-left {
    height: clamp(250px, 40vh, 400px);
    left: -60px;
    bottom: -300px;
  }

  /* Philosophy section mobile */
  .philosophy__foreground {
    padding: 100px 0 200px;
  }
  .philosophy__top {
    margin-bottom: 80px;
  }
  .philosophy__hand-right {
    height: clamp(200px, 30vh, 350px);
    right: -20px !important;
    top: 40%;
  }
  .philosophy__extra {
    margin-top: 80px;
  }

  /* Scattered gallery mobile */
  .scattered-gallery {
    padding: 0 8%;
  }
  .scattered-item {
    width: clamp(200px, 55vw, 350px);
  }

  /* Product showcase mobile (≤900px) — maintain horizontal side-by-side layout */
  .product-slide {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 3%;
    gap: 0;
    overflow: visible;
    flex: 0 0 82vw;
    width: 82vw;
  }
  .product-slide.intro-slide {
    flex: 0 0 100vw;
    width: 100vw;
  }
  .product-slide:last-child {
    flex: 0 0 88vw;
    width: 88vw;
    padding-right: 6vw;
  }
  .product-slide__image {
    flex: 0 0 50%;
    max-width: 50vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
  }
  .product-slide__image img {
    height: auto;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    margin-right: -40px;
    object-fit: contain;
    transform-origin: center center;
    transform: rotate(var(--bowl-rotate, 0deg));
    will-change: transform;
  }
  .product-slide__info {
    flex: 0 0 48%;
    max-width: 48vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: -20px;
    text-align: left;
    transform: none;
  }
  .product-slide__name-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    margin: 0;
  }
  .product-slide .product-slide__info:only-child {
    flex: 0 0 85%;
    max-width: 85vw;
    align-items: center;
    text-align: center;
    margin-left: 0;
  }
  .product-slide .product-slide__info:only-child .product-slide__name-img {
    width: clamp(280px, 70vw, 450px) !important;
    max-width: 85vw !important;
    margin: 0 auto !important;
  }
  .intro-slide .product-slide__info {
    flex: 0 0 100%;
    align-items: center;
    text-align: center;
  }
  .got-snacks__heading {
    font-size: clamp(85px, 22vw, 170px) !important;
    line-height: 0.84 !important;
    margin-bottom: 20px !important;
  }
  .got-snacks__badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .got-snacks__badge img {
    width: clamp(50px, 12vw, 80px);
  }
}

/* =============================================
   MOBILE HERO — SWB-Style (≤768px)
   ============================================= */
@media (max-width: 768px) {
  .brand-intro {
    padding: 80px 0;
  }
  .scrolling-marquee {
    padding: 20px 0;
    overflow: hidden;
  }
  .scrolling-marquee__inner {
    display: flex;
    white-space: nowrap;
    gap: 40px;
  }
  .philosophy {
    text-align: center;
  }
  .philosophy__image {
    margin-left: auto;
  }
  .video-section,
  .features,
  .products,
  .cta-section,
  .testimonials,
  .social-feed {
    padding: 80px 0;
  }
  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .product-card__body {
    padding: 15px;
  }
}

/* =============================================
   MOBILE HERO — SWB-Style (≤768px)
   ============================================= */
@media (max-width: 768px) {
  .brand-intro {
    padding: 80px 0;
  }
  .scrolling-marquee {
    padding: 20px 0;
    overflow: hidden;
  }
  .scrolling-marquee__inner {
    display: flex;
    white-space: nowrap;
    gap: 40px;
  }
  .philosophy {
    text-align: center;
  }
  .philosophy__image {
    margin-left: auto;
  }
  .video-section,
  .features,
  .products,
  .cta-section,
  .testimonials,
  .social-feed {
    padding: 80px 0;
  }
  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .product-card__body {
    padding: 15px;
  }

  /* --- HERO: Full SWB Mobile Layout --- */
  .hero {
    min-height: 100vh;
    min-height: 100svh; /* Safe viewport height for mobile browsers */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
    position: relative;
  }

  /* Nav pills: 2×2 centered grid */
  .hero__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 85px;
    padding: 0 6%;
    justify-items: center;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .hero__nav-item {
    font-size: 11px;
    padding: 7px 12px;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    border-width: 1.5px;
  }

  /* Hide falling product rain on mobile for clean look */
  .hero__falling-rain {
    display: none;
  }

  /* Bottom text: Left-aligned, HUGE stacked words filling the hero */
  .hero__bottom-text {
    text-align: left;
    padding: 0 4%;
    padding-bottom: 10px;
    margin-top: auto;
    position: relative;
    width: 100%;
  }
  .hero__your {
    font-family: 'TT Trailers', sans-serif !important;
    font-size: clamp(48px, 14vw, 75px) !important;
    text-align: left !important;
    line-height: 0.85 !important;
    margin: 0 !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
  }
  .hero__brand-name {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    line-height: 0.78 !important;
    white-space: normal !important;
  }
  .hero__word {
    display: block !important;
    font-family: 'TT Trailers', sans-serif !important;
    font-size: clamp(110px, 31vw, 185px) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    line-height: 0.78 !important;
    letter-spacing: -0.02em !important;
    color: inherit !important;
  }
  .hero__word--snack::after,
  .hero__word--with::after {
    content: none !important;
  }
  .hero__with-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    position: relative !important;
  }
  .hero__side-accent {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: 4px !important;
  }
  .hero__nugget-img {
    width: clamp(45px, 12.5vw, 72px) !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5)) !important;
    display: block !important;
    transform: rotate(10deg);
  }
  .hero__accent-text {
    font-family: 'Permanent Marker', cursive !important;
    color: #2ed573 !important; /* Vibrant green matching SWB */
    font-size: clamp(20px, 6vw, 34px) !important;
    transform: rotate(-10deg) !important;
    line-height: 0.95 !important;
    text-align: left !important;
    display: block !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6) !important;
  }

  /* Hide standalone accent on mobile as it is now integrated beside WITH */
  .hero__accent {
    display: none !important;
  }

  .hero__discover-badge {
    display: none;
  }
  .hero__product-img {
    max-width: 200px;
  }

  /* --- Hero Split Mobile: Image with overlapping "WE'RE" & Hand extending from left --- */
  .hero-split {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    margin-top: 30px !important;
    margin-bottom: 60px !important;
    padding: 0 !important;
    overflow: visible !important;
    position: relative !important;
  }
  .hero-split__item--right {
    display: none !important; /* Hide 2nd image on mobile */
  }
  .hero-split__item--left {
    display: block !important;
    width: 100% !important;
    height: clamp(420px, 68vh, 620px) !important; /* Big prominent image */
    min-height: 420px !important;
    flex: none !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1 !important;
  }
  .hero-split__item--left img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transform-origin: center center !important;
    will-change: transform !important;
  }
  .hero-split__overlay {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 5% !important;
    margin-top: calc(-1 * clamp(56px, 15vw, 95px)) !important; /* Pulls "WE'RE" inside the bottom of the photo */
    z-index: 10 !important;
    text-align: left !important;
  }
  .hero-split__heading {
    font-family: 'TT Trailers', sans-serif !important;
    font-size: clamp(65px, 17.5vw, 110px) !important;
    line-height: 0.84 !important;
    letter-spacing: -0.015em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6) !important;
  }
  .hero-split__heading span {
    color: #c4d600 !important;
  }
  .hero-split__subtext {
    font-size: clamp(16px, 4.4vw, 20px) !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 0 !important;
  }
  .hero-split__subtext br {
    display: none; /* Allow text to reflow naturally on mobile */
  }
  
  /* Hand holding bowl image pushed to the left extending into the page with scroll motion */
  .hero-split__hand-left {
    position: relative !important;
    left: -60px !important;
    bottom: auto !important;
    top: auto !important;
    right: auto !important;
    width: clamp(300px, 85vw, 440px) !important;
    max-width: none !important;
    height: auto !important;
    margin-top: 30px !important;
    margin-bottom: 10px !important;
    display: block !important;
    transform: rotate(12deg);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)) !important;
    pointer-events: none !important;
    z-index: 15 !important;
    will-change: transform;
  }

  /* --- Philosophy Mobile --- */
  .scrolling-marquee.sticky-background {
    padding: 10px 0 !important;
    margin: 0 !important;
  }
  .philosophy__foreground {
    padding: 0 0 70px !important; /* Brought all the way up */
  }
  .philosophy__top {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    margin-top: -55px !important; /* Pulled up */
    margin-bottom: 40px !important;
  }
  .philosophy__content {
    order: 2 !important;
    margin-top: 0 !important;
    padding: 0 5% !important;
  }
  .philosophy__heading {
    font-size: clamp(72px, 18vw, 135px) !important;
    line-height: 0.85 !important;
  }
  .philosophy__desc {
    font-size: clamp(16px, 4.4vw, 20px) !important;
    line-height: 1.65 !important;
  }
  .philosophy__hand-right {
    order: 1 !important; /* Positioned ABOVE "snack levels" */
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: 0 !important; /* Brought in from edge so fully visible */
    bottom: auto !important;
    align-self: flex-end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    margin-top: -45px !important;
    margin-bottom: 0px !important;
    width: clamp(210px, 55vw, 310px) !important;
    height: auto !important;
    transform: rotate(-8deg) !important;
    display: block !important;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5)) !important;
  }
  .philosophy__extra {
    margin-top: 35px !important;
  }
  .philosophy__video-container {
    width: 86% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.5) !important;
  }
  .ab-video-play__triangle {
    padding: 10px 22px !important;
    font-size: 13px !important;
  }

  /* --- Scrolling Marquee Mobile --- */
  .scrolling-marquee__inner span {
    font-size: clamp(60px, 14vw, 150px);
    margin-right: 40px;
  }

  /* --- Scattered Gallery Mobile: Slide to Center, Square Corners, Smaller Size --- */
  .scattered-gallery {
    padding: 0 5% !important;
    gap: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 50px !important;
  }
  .scattered-item {
    width: clamp(190px, 62vw, 280px) !important; /* Made a bit smaller */
    align-self: center !important;
    margin: 0 auto !important;
  }
  .scattered-item--left,
  .scattered-item--right {
    align-self: center !important;
  }
  .scattered-container {
    border-radius: 0 !important; /* Removed rounded corners */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
  }
  .scattered-container img {
    border-radius: 0 !important; /* Removed rounded corners */
  }
  .scattered-container__label {
    font-size: clamp(40px, 11vw, 70px) !important;
    bottom: 8px !important;
    left: 10px !important;
  }
  .scattered-text {
    margin-top: 16px !important;
    text-align: left !important;
  }
  .scattered-text__heading {
    font-size: clamp(42px, 11.5vw, 72px) !important;
    line-height: 0.88 !important;
    margin-bottom: 10px !important;
  }
  .scattered-text__desc {
    font-size: clamp(14px, 3.8vw, 17px) !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  /* Bigger floating decorative icons */
  .scattered-icon {
    width: clamp(110px, 28vw, 170px) !important;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5)) !important;
  }
  .scattered-icon--top {
    top: -45px !important;
    left: -15px !important;
  }
  .scattered-item--right .scattered-icon--top {
    left: auto !important;
    right: -15px !important;
  }
  .scattered-item--left .scattered-icon--top {
    left: -15px !important;
    right: auto !important;
  }

  /* --- Product Showcase Mobile (≤768px) — Horizontal Side-by-Side --- */
  .product-slide {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    gap: 0 !important;
    overflow: visible !important;
    flex: 0 0 92vw !important;
    width: 92vw !important;
    height: 100vh !important;
    min-height: 100svh !important;
    box-sizing: border-box !important;
  }
  .product-slide.intro-slide {
    flex: 0 0 100vw !important;
    width: 100vw !important;
  }
  .product-slide:last-child {
    flex: 0 0 96vw !important;
    width: 96vw !important;
    padding-right: 24px !important;
  }
  .product-slide__image {
    flex: 0 0 53% !important;
    max-width: 55vw !important;
    height: 56vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin-left: 0 !important;
    position: relative !important;
    z-index: 2 !important;
  }
  .product-slide__image img {
    height: auto !important;
    max-height: 105% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: -30px !important;
    object-fit: contain !important;
    transform-origin: center center !important;
    transform: scale(1.22) rotate(var(--bowl-rotate, 0deg)) !important;
    filter: drop-shadow(0 12px 35px rgba(0,0,0,0.45)) !important;
    will-change: transform;
  }
  .product-slide__info {
    flex: 0 0 45% !important;
    max-width: 45vw !important;
    margin-left: -12px !important;
    transform: none !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 10 !important;
    padding: 0 !important;
  }
  .product-slide__name-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 !important;
  }
  .product-slide .product-slide__info:only-child {
    flex: 0 0 85% !important;
    max-width: 85vw !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .product-slide .product-slide__info:only-child .product-slide__name-img {
    width: clamp(230px, 78vw, 360px) !important;
    max-width: 85vw !important;
    margin: 0 auto !important;
  }
  .intro-slide .product-slide__info {
    flex: 0 0 100% !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
  .got-snacks__content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
  }
  .got-snacks__heading {
    font-size: clamp(95px, 26vw, 175px) !important;
    line-height: 0.82 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  .got-snacks__badges {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin-top: 10px !important;
  }
  .got-snacks__badge img {
    width: clamp(45px, 11vw, 68px) !important;
  }

  /* --- Social feed mobile --- */
  .social-feed__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .press__logos {
    gap: 30px;
  }

  /* --- FAQ Mobile --- */
  .ab-faq {
    padding: 60px 0;
  }
  .ab-faq__title {
    font-size: clamp(50px, 12vw, 120px);
    margin-bottom: 32px;
  }
  .ab-faq__trigger {
    font-size: clamp(16px, 4vw, 22px);
    padding: 18px 0;
    gap: 12px;
  }

  /* --- Footer Mobile --- */
  .swb-footer {
    padding: 60px 0 30px;
  }
  .swb-footer .container {
    margin-left: 5% !important;
    width: 90% !important;
  }
  .swb-footer-huge-text {
    font-size: clamp(42px, 10vw, 100px);
    margin-bottom: 40px;
  }
  .swb-we-got-snacks {
    font-size: clamp(22px, 5vw, 36px);
    top: 30px;
    right: 3%;
  }
  .swb-socials {
    margin-bottom: 30px;
  }
}

/* =============================================
   SMALL MOBILE (≤480px) — Extra refinements
   ============================================= */
@media (max-width: 480px) {
  .products__grid {
    grid-template-columns: 1fr;
  }

  /* Hero pills tighter on very small screens */
  .hero__nav {
    padding: 0 4%;
    gap: 6px;
    margin-top: 90px;
    max-width: 340px;
  }
  .hero__nav-item {
    font-size: 9.5px;
    padding: 6px 8px;
    letter-spacing: 0.5px;
  }

  /* Huge stacked hero text */
  .hero__bottom-text {
    margin-top: auto;
    padding: 0 4%;
  }
  .hero__your {
    font-size: clamp(40px, 12vw, 56px) !important;
  }
  .hero__word {
    font-size: clamp(96px, 29vw, 150px) !important;
  }
  .hero__nugget-img {
    width: clamp(38px, 11vw, 56px) !important;
  }
  .hero__accent-text {
    font-size: clamp(18px, 5.5vw, 28px) !important;
  }

  .hero__product-img {
    max-width: 160px;
  }

  /* Hero split extra small */
  .hero-split__item--left {
    height: clamp(380px, 65vh, 520px) !important;
    min-height: 380px !important;
  }
  .hero-split__heading {
    font-size: clamp(50px, 14vw, 80px) !important;
  }
  .hero-split__hand-left {
    left: -45px !important;
    width: clamp(280px, 90vw, 380px) !important;
  }

  /* Scattered gallery small */
  .scattered-item {
    width: clamp(180px, 60vw, 260px) !important;
  }

  /* Got snacks small */
  .got-snacks__heading {
    font-size: clamp(65px, 18vw, 120px) !important;
  }

  /* Footer small */
  .swb-footer-huge-text {
    font-size: clamp(36px, 9vw, 80px);
  }
}

/* =============================================
   SECTION: Follow Our Trail of Snacks
   ============================================= */
.trail-section {
  background: #101820;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trail-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.trail-section__left {
  flex: 0 0 55%;
}

.trail-section__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 48px 0;
  line-height: 0.88;
}

.trail-section__follow {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(110px, 17vw, 240px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.88;
}

.trail-section__our {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(110px, 17vw, 240px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.88;
}

.trail-section__script {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: clamp(38px, 6vw, 88px);
  color: #f7f33a;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-top: 4px;
  transform: rotate(-3deg);
  display: inline-block;
}

.trail-section__ig-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 14px 28px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.trail-section__ig-pill:hover {
  background: #fff;
  border-color: #fff;
  color: #101820;
}

.trail-section__ig-pill svg {
  flex-shrink: 0;
}

.trail-section__right {
  flex: 0 0 38%;
  position: relative;
  height: 550px;
}

.trail-section__photo {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.trail-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trail-section__photo--top {
  width: 420px;
  height: 420px;
  top: 0;
  right: -40px;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
}

.trail-section__photo--bottom {
  width: 380px;
  height: 380px;
  bottom: 0;
  right: 200px;
  z-index: 3;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
}

@media (max-width: 900px) {
  .trail-section__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .trail-section__left {
    flex: none;
    width: 100%;
  }
  .trail-section__right {
    display: none;
  }
}

@media (max-width: 768px) {
  .trail-section {
    padding: 60px 0 50px;
  }
  .trail-section__inner {
    padding: 0 24px;
  }
  .trail-section__follow,
  .trail-section__our {
    font-size: clamp(60px, 16vw, 110px);
  }
  .trail-section__script {
    font-size: clamp(28px, 8vw, 56px);
  }
}

/* =============================================
   FOOTER: Nav Links
   ============================================= */
.swb-footer-nav {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
  padding-top: 16px;
}

.swb-footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.swb-footer-nav__col a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.swb-footer-nav__col a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .swb-footer-nav {
    gap: 40px;
  }
}

/* =============================================
   SECTION: FAQ
   ============================================= */
.ab-faq {
  background: #101820;
  padding: 100px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.ab-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.ab-faq__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 14vw, 185px);
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 56px 0;
  text-align: left;
}

.ab-faq-list {
  display: flex;
  flex-direction: column;
}

.ab-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ab-faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Reset button styles (Bootstrap override) */
.ab-faq__trigger,
.ab-faq__trigger:focus,
.ab-faq__trigger:active {
  width: 100%;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  padding: 26px 0;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left !important;
  transition: color 0.25s ease;
  gap: 24px;
  line-height: 1.3;
  letter-spacing: 0;
}

.ab-faq__trigger:hover {
  color: #f7f33a;
}

.ab-faq__trigger span:first-child {
  flex: 1;
  text-align: left;
}

.ab-faq__icon {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-faq__item--open .ab-faq__icon {
  transform: rotate(45deg);
  color: #f7f33a;
}

.ab-faq__item--open .ab-faq__trigger {
  color: #f7f33a;
}

.ab-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0;
}

.ab-faq__item--open .ab-faq__body {
  max-height: 500px;
  padding-bottom: 28px;
}

.ab-faq__body p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 820px;
}

@media (max-width: 768px) {
  .ab-faq {
    padding: 60px 0 80px;
  }
  .ab-faq__inner {
    padding: 0 24px;
  }
  .ab-faq__title {
    font-size: clamp(56px, 13vw, 110px);
    margin-bottom: 36px;
  }
  .ab-faq__trigger,
  .ab-faq__trigger:focus,
  .ab-faq__trigger:active {
    font-size: clamp(15px, 3.8vw, 20px);
    padding: 20px 0;
    gap: 16px;
  }
  .ab-faq__body p {
    font-size: clamp(14px, 3.5vw, 17px);
  }
}