/* Force transparent background for hero content wrappers */
.hero__content,
.hero__text {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Remove all inner shadows within the hero content wrappers */
.hero__content *,
.hero__text * {
  text-shadow: none !important;
  box-shadow: none !important;
}
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&display=swap');

/* Reduce top spacing before Contact heading */
.contact {
  padding-top: 0;
}
/* Force OUR MENU title to be solid black */
.statement-section__title {
  color: #000 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  text-shadow: none !important;
}

/* =================== Contact Heading Background =================== */
.contact__title {
  display: inline-block;
  background: linear-gradient(180deg, #FF914C 0%, #FF7D2C 100%);
  color: #0b0b0b; /* strong contrast on brand bg */
  padding: 10px 14px;
  border-radius: 12px;
  border: 3px solid #111;
  box-shadow: 10px 10px 0 #111;
  -webkit-text-stroke: 0.4px rgba(255,255,255,0.7);
  text-shadow: 0 1px 0 rgba(255,255,255,0.6), 0 0 6px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .contact__title { padding: 8px 12px; border-width: 2px; border-radius: 10px; box-shadow: 8px 8px 0 #111; }
}

/* =================== Filler Section (BG + Quote) =================== */
.filler {
  position: relative;
  padding: 100px 20px;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
  background:
    /* dark gradient for text contrast */
    linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.20)),
    /* white wash as a gradient layer so the image still renders */
    linear-gradient(0deg, rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    url('freepik__hyper-realistic-promotional-photograph-of-3-beauti__67898.png') center/cover no-repeat;
  /* Two-layer positions: keep gradient fixed, move image via CSS var */
  background-position: center 0, center 0, center var(--parallax-bg-y, 0px);
  will-change: background-position;
  min-height: 60vh; /* enlarge to reveal most of the image */
}

.filler__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }

.filler__overlay { display: none; }

.filler__title { margin: 0 0 8px 0; color: #fff; opacity: 0.85; letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Bungee', sans-serif; }

.filler__quote {
  margin: 14px auto 0;
  color: #FFFFFF;
  font-family: 'Dancing Script', cursive; /* legible handwritten script */
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem); /* larger, responsive */
  line-height: 1.18;
  display: block;
  width: min(1200px, 94vw); /* stretch across most of the section */
  text-align: center;
  text-wrap: balance; /* more even line breaks when supported */
  letter-spacing: 0.01em;
  word-spacing: 0.01em;
  background: rgba(0,0,0,0.45);
  border: 3px solid #111;
  border-radius: 14px;
  padding: 16px 22px; /* bigger padding for emphasis */
  box-shadow: 10px 10px 0 #111, 0 12px 30px rgba(0,0,0,0.35);
  font-style: italic; /* testimonial feel */
  position: relative;
  -webkit-text-stroke: 0.4px rgba(0,0,0,0.6); /* boost legibility */
  text-shadow: 0 2px 0 rgba(0,0,0,0.35);
}



@media (max-width: 768px) {
  .filler { padding: 80px 16px; margin-bottom: 0; }
  section { padding: 60px 20px; margin-bottom: 0; }
  .plant-comfort-demo { padding: 60px 0; }
  .feature-split { padding: 60px 20px 40px; }
}

/* =================== Statement/Menu Header =================== */
.statement-section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}

/* Ensure the inner container can anchor torn edges */
.statement-section__inner { position: relative; }

/* =================== Ripped Page Edges =================== */
.statement-section__tear {
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.035) 0 6px, rgba(0,0,0,0) 6px 12px),
    #fff;
  box-shadow: 0 10px 16px rgba(0,0,0,0.12);
}

.statement-section__tear--top {
  top: -8px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 62%, 95% 82%, 90% 68%, 85% 86%, 80% 70%, 75% 84%, 70% 72%, 65% 86%, 60% 70%, 55% 84%, 50% 70%, 45% 86%, 40% 72%, 35% 84%, 30% 70%, 25% 82%, 20% 64%, 15% 80%, 10% 66%, 5% 82%, 0% 62%);
}

.statement-section__tear--bottom {
  bottom: -8px;
  clip-path: polygon(0% 38%, 5% 18%, 10% 34%, 15% 20%, 20% 36%, 25% 22%, 30% 36%, 35% 24%, 40% 36%, 45% 22%, 50% 36%, 55% 24%, 60% 36%, 65% 20%, 70% 34%, 75% 18%, 80% 38%, 100% 38%, 100% 100%, 0% 100%);
}

.statement-section__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid #111;
  background: rgba(255,145,76,0.9);
  color: #fff; /* pure white text on brand icon */
  box-shadow: 6px 6px 0 #111;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease, filter 200ms ease;
  font-weight: 900;
}
.statement-section__scroll:hover { transform: translateY(-2px) rotate(-3deg); filter: brightness(1.05) saturate(1.05); box-shadow: 8px 8px 0 #111; }
.statement-section__scroll:active { transform: translateY(0) rotate(0deg); box-shadow: 4px 4px 0 #111; }
.statement-section__scroll:focus { outline: none; }
.statement-section__scroll:focus-visible { outline: 3px solid rgba(255,145,76,0.6); outline-offset: 3px; }

/* =================== Fullscreen Menu Modal =================== */
.menu-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 24px;
}
.menu-modal.active { display: flex; }
.menu-modal__content { position: relative; max-width: min(1100px, 95vw); max-height: 92vh; }
.menu-modal__img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  border: 4px solid #111;
  border-radius: 12px;
  box-shadow: 20px 20px 0 #111, 0 20px 60px rgba(0,0,0,0.5);
}
.menu-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 3px solid #111;
  background: #fff;
  color: #111;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 8px 8px 0 #111;
}

@media (prefers-reduced-motion: reduce) {
  .statement-section__scroll { transition: none; }
}

/* =================== Statement/Menu Ribbon =================== */
.statement-section__ribbon {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 3px solid #111;
  border-radius: 999px;
  /* subtle paper texture over white */
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.035) 0 6px, rgba(0,0,0,0) 6px 12px),
    #fff;
  box-shadow: 10px 10px 0 #111;
  transform: rotate(-3deg);
  transform-origin: center;
  width: max-content;
  margin: 8px auto 18px;
  position: relative;
  z-index: 2;
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  overflow: visible; /* allow torn corners to protrude */
  align-self: center;
}

.statement-section__ribbon span {
  color: #fff;               /* solid white text */
  font-family: 'Bungee', sans-serif;
  font-weight: 800;          /* bold */
  display: inline-block;
  text-shadow: 0 2px 0 rgba(0,0,0,0.35); /* subtle lift for legibility */
}

/* (Sheen animation removed for solid text request) */

/* (Tape ends removed by request) */
/* ===== Brutalist Base ===== */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.feature-split__caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: 'Bungee', sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
}

.feature-split__item:hover .feature-split__img {
  transform: scale(1.06) translate3d(0, -6px, 0);
}

.feature-split__item--left:hover .feature-split__img {
  transform: scale(1.07) translate3d(0, -10px, 0);
}

.feature-split__item--right:hover .feature-split__img {
  transform: scale(1.07) translate3d(0, 10px, 0);
}

/* Rounded frame styling for oyster mushroom wings image */
.feature-split__item--right .feature-split__img {
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
@keyframes text-glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(2px, 2px); }
  100% { transform: translate(0); }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Scribble&display=swap');

html {
  scroll-behavior: smooth;
  width: 100%;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
  font-size: 16px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Ensure all elements use border-box sizing and prevent overflow */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Global width constraint */
section, div, header, footer, main, article, aside, nav {
  max-width: 100%;
}

/* Ensure no element can extend beyond viewport */
.container, .inner, [class*="__inner"], [class*="__container"] {
  max-width: 100%;
  box-sizing: border-box;
}

/* Subscription Banner */
.subscription-banner {
  background: #FF914C; /* brand color */
  color: #111;
  text-align: left;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.subscription-banner__marquee { 
  overflow: hidden; 
  white-space: nowrap; 
  width: 100%;
  max-width: 100%;
}

@keyframes bannerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.subscription-banner__track {
  display: inline-flex;
  gap: 18px;
  padding-left: 100%;
  animation: bannerMarquee 22s linear infinite;
  will-change: transform;
}

.subscription-banner__track span { color: #111; }

/* Navigation */
.main-nav {
  transition: background-color 0.3s ease;
  background: #000; /* brutalist solid black */
  padding: 10px 0;
  position: fixed; /* remain fixed on scroll */
  top: 0; /* stick to very top */
  left: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  z-index: 1000;
  border-bottom: 0;
  box-sizing: border-box;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 60px; /* give bar presence */
  position: relative; /* allow absolute centering of links */
  width: 100%;
  box-sizing: border-box;
}

.nav-logo {
  height: 42px; /* enlarged to fit current header space */
  width: auto;
  display: block;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  gap: 44px; /* extra spacing between links */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 2px;
}

.nav-link {
  color: #fff; /* white links */
  text-decoration: none;
  font-weight: 800; /* bold */
  font-size: 12px;
  letter-spacing: 0.14em; /* extra letter spacing */
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
  opacity: 1;
}

.nav-link:hover { opacity: 0.9; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1pt; /* thin line as requested */
  background: #FF914C; /* brand color */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show underline only on active link */
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 0;
}

/* Tablet Navigation (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-links {
    gap: 28px;
  }
  
  .nav-link {
    font-size: 11px;
  }
  
  .nav-cta {
    font-size: 11px;
    padding: 8px 14px;
  }
}

/* Mobile Navigation (below 768px) */
@media (max-width: 768px) {
  .main-nav {
    padding: 8px 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-cta { display: none; }
  
  .nav-container { 
    height: 60px; 
    padding: 0 16px;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  
  .nav-logo { height: 36px; }
  
  /* Center logo on mobile */
  .logo { 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .nav-right { 
    margin-left: auto;
    position: relative;
    z-index: 11;
  }

  /* Mobile-only: subtle divider when compact */
  .main-nav.is-compact {
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
  .main-nav {
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    box-sizing: border-box;
  }
  
  .nav-container {
    height: 56px;
    padding: 0 12px;
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    box-sizing: border-box;
  }
  
  .nav-logo {
    height: 32px;
  }
  
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    margin-left: 8px;
  }
  
  .mobile-menu-btn span {
    width: 20px;
  }
}

/* Header CTA: Find Us Now */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FF914C 0%, #FF7D2C 100%);
  color: #fff; /* pure white for max contrast */
  border: 2px solid #111;
  box-shadow: 8px 8px 0 #111, 0 0 14px rgba(255,145,76,0.35);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.22s ease, filter 0.22s ease;
  -webkit-text-stroke: 0; /* remove stroke to keep white crisp */
}

@keyframes ctaPulseGlow {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 8px 8px 0 #111, 0 0 10px rgba(255,145,76,0.35); }
  50% { transform: translateY(-1px) scale(1.03); box-shadow: 10px 10px 0 #111, 0 0 18px rgba(255,145,76,0.55); }
}

.nav-cta { animation: ctaPulseGlow 2.8s ease-in-out infinite; }
.nav-cta:hover { transform: translateY(-2px) scale(1.04); filter: brightness(1.04) saturate(1.05); }
.nav-cta:active { transform: translateY(0) scale(0.99); }
.nav-cta:focus { outline: none; }
.nav-cta:focus-visible { outline: 3px solid rgba(255,145,76,0.6); outline-offset: 3px; }

/* icon spacing */
.nav-cta__icon { display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; line-height: 0; }
.nav-cta__icon svg { width: 16px; height: 16px; display: block; }

/* Optional shine sweep */
.nav-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 35%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg) translateX(-120%);
  opacity: 0;
  pointer-events: none;
}
.nav-cta:hover::before { animation: btnShine 900ms ease-in-out forwards; opacity: 1; }

/* Hide header CTA on very small screens to avoid crowding (mobile has Contact in menu) */
@media (max-width: 600px) {
  .nav-cta { display: none; }
}

/* Navigation Active States */
.nav-link--active,
.nav-link.active {
  position: relative;
  color: #FF914C !important;
}

.nav-link--active::after,
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: #FF914C;
  border-radius: 2px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Mobile Navigation Active States */
.mobile-link--active,
.mobile-link.active,
.mobile-nav-link--active,
.mobile-nav-link.active {
  color: #FF914C !important;
  font-weight: 600;
  position: relative;
}

.mobile-link--active::before,
.mobile-link.active::before,
.mobile-nav-link--active::before,
.mobile-nav-link.active::before {
  content: '●';
  position: absolute;
  left: -20px;
  color: #FF914C;
  font-size: 12px;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-5px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-icon {
  text-decoration: none;
  font-size: 18px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.cart-icon:hover {
  opacity: 0.7;
}
h1, h2, h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}
h1 {
    font-size: 3rem;
    text-shadow: 4px 4px 0 #FF8C42;
    position: relative;
    transition: transform 0.3s ease;
}

h1:hover {
    animation: text-glitch 0.3s ease;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 2rem;
}
a {
  color: #000;
  text-decoration: none;
}
@keyframes section-hover {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

section {
  padding: 80px 40px;
  margin-bottom: 0;
  border-bottom: 8px solid #000;
  position: relative;
  transition: transform 0.3s ease;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,140,66,0.1) 0%, rgba(255,255,255,0.2) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

section:hover::before {
  opacity: 1;
}

section > * {
  position: relative;
  z-index: 2;
}
img {
  max-width: 100%;
  display: block;
}
.block {
  border: 4px solid #000;
  padding: 24px;
  margin-bottom: 0;
  background: #fff;
}
.highlight {
  color: #F5B700; /* Mustard yellow */
  font-weight: bold;
}

/* Mission-specific highlight uses brand color and bold */
.mission .highlight {
  color: #FF914C; /* brand color */
  font-weight: 700;
}

/* Utility: Brand text color */
.text-brand {
  color: #FF914C;
}
@keyframes border-noise {
  0%, 100% { clip-path: polygon(0 0, 100% 0, 100% 97%, 98% 100%, 85% 98%, 75% 100%, 65% 98%, 50% 100%, 35% 98%, 25% 100%, 15% 98%, 0 100%); }
  50% { clip-path: polygon(0 0, 100% 0, 100% 98%, 90% 100%, 80% 98%, 70% 100%, 60% 98%, 45% 100%, 30% 98%, 20% 100%, 10% 98%, 0 100%); }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(150, 163, 154, 0.25);
  display: flex;
  align-items: flex-start;
  padding: 16px 0 12vh;
  /* Push hero content below fixed nav bar while minimizing extra clearance */
  margin-top: 0;
  padding-top: 96px;
  perspective: 2000px;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  will-change: transform;
}


.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.28;
}

.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(1.05);
  transform: scale(1);
  transition: all 0.8s ease;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.95) saturate(1.1);
  transform: scale(0.95);
  transition: all 0.8s ease;
  mix-blend-mode: soft-light;
  opacity: 0.9;
}

.hero:hover .hero__bg-img {
  transform: scale(1);
  filter: brightness(1) saturate(1.2);
  opacity: 1;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0) scale(1.5); }
  25% { transform: translate(10%, -5%) scale(1.5); }
  50% { transform: translate(-5%, 10%) scale(1.5); }
  75% { transform: translate(-10%, -5%) scale(1.5); }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,140,66,0.06), rgba(255,255,255,0.18));
  z-index: 2;
  backdrop-filter: blur(0.5px);
}

.hero__overlay::before {
  display: none;
}

.hero__overlay::after {
  display: none;
}



.hero__content {
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero__text {
  max-width: 1200px;
  text-align: left;
  padding-top: calc(6vh - 20px);
  padding-left: 0;
  margin-left: 60px;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  perspective: 2000px;
  transform: translateZ(0);
  will-change: transform;
  /* Subtle readability panel */
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  padding-right: 10px;
  padding-left: 8px;
  padding-bottom: 18px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.hero__mark {
  width: min(360px, 42vw);
  height: auto;
  display: block;
  margin: 0 0 10px 0;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
  transform: translateZ(20px);
  position: relative;
  top: -40px; /* moved down 40px toward the main heading */
  animation: heroLogoZoom 6s ease-in-out infinite alternate;
}

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

.hero__content h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 1.2;
  margin: 0 0 80px -2px;
  font-weight: 700; /* simulate bold */
  letter-spacing: 0.015em;
  color: #1F1F1F; /* dark grey charcoal */
  text-transform: uppercase;
  font-family: 'Rubik Scribble', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  max-width: min(860px, 92%);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  position: relative;
  word-spacing: 0.005em;
  /* subtle light edge for readability */
  -webkit-text-stroke: 1.6px rgba(255, 255, 255, 0.7);
  text-shadow:
    /* fill reinforcement to simulate weight */
    0 0 1px rgba(31, 31, 31, 0.9),
    0 0 2px rgba(31, 31, 31, 0.7),
    /* light rim for contrast */
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 0 3px rgba(255, 255, 255, 0.35),
    /* slight drop for depth */
    0 3px 3px rgba(0, 0, 0, 0.18);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(30px);
  backface-visibility: hidden;
  text-indent: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.3s ease-out;
  position: relative;
  top: -120px;
}

/* Mobile Hero Fixes */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 20px 0 8vh;
    margin-top: 0;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero__content {
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-height: auto;
    height: auto;
    text-align: center;
  }
  
  .hero__text {
    top: 0;
    padding: 32px 24px 40px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 95vw;
    margin: 0 auto;
    transform: none;
    perspective: none;
  }
  
  .hero__mark {
    top: 0;
    margin-bottom: 0;
    width: min(300px, 80vw);
    transform: none;
    animation: none;
  }
  
  .hero__content h1 {
    top: 0;
    margin: 0 0 80px 0;
    font-size: clamp(2.2rem, 8vw, 3rem);
    max-width: 100%;
    text-align: center;
    line-height: 1.1;
    transform: none;
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.8);
  }
  
  .hero__description {
    top: 0;
    display: block;
    margin: -100px 0 100px 0;
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    max-width: 100%;
    -webkit-text-stroke: 1px rgba(0,0,0,0.8);
    line-height: 1.3;
    text-align: center;
    transform: none;
  }
  
  .hero__actions {
    top: 0;
    margin: -100px 0 0 0;
    padding: 0;
    justify-content: center;
    transform: none;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* Utility to keep short phrases on one line */
.nowrap { white-space: nowrap; }

.hero__description {
  font-size: clamp(2.5rem, 3.5vw, 3.75rem);
  line-height: 1.2;
  color: #FF914C; /* brand color */
  margin: 0;
  margin-top: 0.5rem;
  font-weight: 700;
  max-width: min(900px, 85%);
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  letter-spacing: 0.01em;
  font-family: 'Bungee', sans-serif;
  position: relative;
  left: 0;
  top: -130px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(10px);
  text-indent: -0.01em;
  margin-bottom: 1rem;
  transition: transform 0.3s ease-out;
  display: inline;
  background: none; /* remove panel */
  padding: 0;       /* remove panel padding */
  border-radius: 0; /* remove rounded corners */
  border: 0;        /* remove border */
  box-shadow: none; /* remove panel glow */
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  word-wrap: break-word;
  text-transform: none; /* Title Case handled via JS for finer control */
  -webkit-text-stroke: 1.4px rgba(0, 0, 0, 0.85);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.7),
    0 0 5px rgba(0, 0, 0, 0.5),
    0 3px 4px rgba(0, 0, 0, 0.28),
    0 0 10px rgba(255, 145, 76, 0.35),
    0 0 16px rgba(255, 145, 76, 0.5); /* extra brand glow */
}

/* Accent the highlighted phrase inside the hero description */
.hero__description .accent {
  background: #FF914C; /* brand pill */
  color: #111; /* high contrast on brand bg */
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 800;
  -webkit-text-stroke: 0; /* keep pill text crisp */
  text-shadow: none;
}

/* Hero Actions (CTA Buttons) */
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 38px; /* more top margin above the button */
  flex-wrap: wrap;
  align-items: center;
  z-index: 5;
  position: relative;
  top: -140px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900; /* heavy weight for all buttons */
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 13px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, filter 0.22s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn:focus { outline: none; }
.btn:focus-visible { outline: 3px solid rgba(255,145,76,0.6); outline-offset: 3px; }
.btn:active { transform: translateY(1px); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }

.btn--xl {
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  padding: 16px 28px;
  border-radius: 14px;
}

.btn--primary {
  background: linear-gradient(180deg, #FF914C 0%, #FF7D2C 100%);
  color: #fff; /* pure white for maximum contrast on brand bg */
  border-color: #111;
  -webkit-text-stroke: 0; /* keep white crisp */
  text-shadow: 0 1px 0 rgba(0,0,0,0.22); /* subtle lift only */
}

.btn--primary:hover {
  filter: brightness(1.03) saturate(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.25);
  color: #fff; /* maintain white */
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

.btn--secondary {
  background: #111;
  color: #fff;
  border-color: #fff;
  backdrop-filter: blur(2px);
}

.btn--secondary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.25);
}

/* Button shine animation on hover */
@keyframes btnShine {
  0% { transform: skewX(-20deg) translateX(-120%); }
  100% { transform: skewX(-20deg) translateX(220%); }
}

.btn::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 40%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg) translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.btn:hover::before { animation: btnShine 900ms ease-in-out forwards; opacity: 1; }

/* Gentle pulse for hero primary CTA to draw attention */
@keyframes btnPulse {
  0%, 100% { transform: translateY(-2px) scale(1); box-shadow: 0 12px 22px rgba(0,0,0,0.25); }
  50% { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 28px rgba(0,0,0,0.28); }
}

.hero .btn--primary { animation: btnPulse 2.6s ease-in-out infinite; }
.hero .btn--primary:hover { animation-play-state: paused; }

/* Slightly increase left padding for the primary Explore Menu button */
.hero .btn--primary.btn--xl { padding-left: 36px; }

/* Social buttons: add light glow on hover */
.social-button:hover { box-shadow: 12px 12px 0 #111, 0 0 14px rgba(255,145,76,0.35); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn::before { display: none; }
  .hero .btn--primary { animation: none !important; }
}

/* Contextual embellishments for key CTAs */
.hero .btn--primary::after {
  content: '→';
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.18s ease;
}
.hero .btn--primary:hover::after { transform: translateX(2px); }

.apex-card .btn--secondary::after {
  content: '🍔';
  display: inline-block;
  margin-left: 10px;
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .hero__actions {
    gap: 20px;
    flex-direction: column;
    width: 100%;
  }
  
  .btn--xl {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    padding: 16px 32px;
    width: 100%;
    max-width: 280px;
  }
}

.hero__text::before,
.hero__text::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid #FF8C42;
  z-index: 4;
}

.hero__text::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.hero__text::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

@keyframes float-burger {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* Subtle zoom for hero logo */
@keyframes heroLogoZoom {
  0% { transform: translateZ(20px) scale(1); }
  100% { transform: translateZ(20px) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__mark { animation: none; }
}

.hero-burger {
  max-width: 350px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
  animation: float-burger 6s ease-in-out infinite;
  transform-origin: center center;
  position: relative;
  z-index: 4;
}

.hero-logo {
  max-width: 300px;
  margin-bottom: 20px;
  filter: drop-shadow(4px 4px 0 #000);
}

@keyframes text-distort {
  0%, 100% { transform: skew(-5deg) scale(1); }
  50% { transform: skew(5deg) scale(1.02); }
}

.hero__title-wrapper {
  position: relative;
  padding: 30px;
}

.hero__subtitle {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: #FF8C42;
  text-shadow: 1px 1px 0 rgba(255,140,66,0.3);
  transform: skew(-5deg);
}

.hero--legacy .hero__content h1 {
  font-family: Impact, sans-serif;
  font-size: 5.5rem;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  color: #FF8C42;
  text-shadow: 
    4px 4px 0 #FFA07A,
    -2px -2px 0 #FF8C42,
    8px 8px 0 rgba(255,140,66,0.3);
  padding: 10px 20px;
  animation: text-distort 8s ease-in-out infinite;
  letter-spacing: 4px;
  position: relative;
  background: linear-gradient(45deg, #FF8C42, #FFA07A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 0 rgba(255,140,66,0.5));
}

.hero__divider {
  font-size: 2rem;
  margin: 15px 0;
  transform: scale(1.5);
}

.hero__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  color: #fff;
  padding: 5px 15px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transform: rotate(3deg) translateY(-50%);
  border: 2px solid #FF8C42;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.hero--legacy .hero__content h1::before {
  content: 'EST.2025';
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 8px;
  color: #333;
  background: #FFF5EC;
  padding: 5px 10px;
  transform: rotate(3deg);
  -webkit-text-fill-color: #333;
  border: 2px solid #FF8C42;
}

.hero--legacy .hero__content p {
  font-family: "Courier New", monospace;
  font-size: 1.8rem;
  margin-top: 20px;
  color: #333;
  text-shadow: 1px 1px 0 rgba(255,140,66,0.3);
  padding: 15px 25px;
  background: rgba(255,255,255,0.9);
  border: 2px solid #FF8C42;
  transform: skew(2deg);
  position: relative;
  overflow: hidden;
}

.hero--legacy .hero__content p::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

.hero--legacy .hero__content p::after {
  content: '///';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  color: #FF8C42;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
@keyframes mission-block-hover {
  0% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-5px) rotate(1deg); }
  100% { transform: translateY(0) rotate(-2deg); }
}

.mission {
  background: linear-gradient(135deg, #FF8C42 0%, #FFA07A 100%);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 95%);
  padding: 56px 40px 80px; /* reduced top padding to move heading up */
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.05) 0px,
    rgba(0,0,0,0.05) 2px,
    transparent 2px,
    transparent 8px
  );
  pointer-events: none;
}

.mission::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mission__content {
  max-width: 1200px;
  margin: 0 auto;
}

.mission__title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 4px 4px 0 #000;
  position: relative;
  font-family: 'Bungee', sans-serif;
  letter-spacing: 0.12em;
  display: inline-block;           /* shrink to text width */
  margin-left: auto;               /* center inline-block */
  margin-right: auto;
  padding-bottom: 10px;            /* room for underline */
}

.mission__title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;                    /* span entire heading width */
  height: 6px;                    /* bolder line */
  background: linear-gradient(90deg, #FF914C 0%, #FF7D2C 100%);
  border-radius: 999px;           /* pill-like underline */
  animation: underlineGrow 900ms cubic-bezier(.2,.7,.2,1) 200ms forwards;
}

@keyframes underlineGrow {
  from { transform: translateX(-50%) scaleX(0); opacity: 0.8; }
  to   { transform: translateX(-50%) scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .mission__title::after { animation: none; transform: translateX(-50%) scaleX(1); }
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
  position: relative;
}

/* Hide divider on desktop */
.mission__grid::before {
  display: none;
}


/* Force single column layout on mobile */
@media (max-width: 1024px) {
  .mission__grid {
    grid-template-columns: 1fr !important;
  }
}

.mission__block {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border: 3px solid #111;
  border-radius: 14px;
  box-shadow: 12px 12px 0 #111;
  transform: rotate(-0.6deg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission__block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 20%, rgba(255,140,66,0.1) 40%, transparent 60%);
  transform: rotate(45deg);
  animation: shine 6s ease-in-out infinite;
  pointer-events: none;
}

/* soft radial highlight similar to other cards */
.mission__block::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(255,145,76,0.15), transparent 60%);
}

@keyframes shine {
  0% { transform: rotate(45deg) translateY(0%); }
  50% { transform: rotate(45deg) translateY(100%); }
  100% { transform: rotate(45deg) translateY(0%); }
}

.mission__block:hover {
  animation: mission-block-hover 3s ease-in-out infinite;
  box-shadow: 16px 16px 0 #111;
}

.mission__block h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #000;
  border-bottom: 3px solid #FF8C42;
  padding-bottom: 10px;
}

.mission__block p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
@keyframes border-pulse {
  0%, 100% { border-width: 4px; }
  50% { border-width: 8px; }
}

.grant {
  background: #ffffff;
  color: #111111;
  position: relative;
  padding: 0;
  overflow: hidden;
  border-bottom: 8px solid #000; /* brutalist accent */
}


/* Grant background image with soft white overlay for readability */
.grant::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Grant Sing 1_background.jpeg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
  will-change: background-position;
  transition: opacity 0.4s ease-in-out;
}

/* Dimmer hover animation */
.grant:hover::before {
  opacity: 0.15;
}

/* ensure content sits above the background */
.grant > * { position: relative; z-index: 1; }
.grant h2 {
  font-family: 'Bungee', sans-serif;
  color: #FF914C;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 14px 0;
}
.grant p {
  max-width: 1000px;
  margin: 0 auto 14px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Grant two-column layout */
.grant__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.grant__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 360px;
  overflow: visible;
}

.grant__img {
  width: min(598px, 115%); /* 15% larger: 520px * 1.15 = 598px */
  height: auto;
  object-fit: contain; /* PNG with transparency */
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.18));
  transform: translateZ(0) translateY(50px); /* Move down to touch bottom border */
  position: relative;
  z-index: 2;
  /* Edge blending effects */
  mask: linear-gradient(to bottom, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,1) 70%, 
    rgba(0,0,0,0.8) 85%, 
    rgba(0,0,0,0.3) 95%, 
    rgba(0,0,0,0) 100%);
  -webkit-mask: linear-gradient(to bottom, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,1) 70%, 
    rgba(0,0,0,0.8) 85%, 
    rgba(0,0,0,0.3) 95%, 
    rgba(0,0,0,0) 100%);
}

.grant__content {
  background: rgba(255,255,255,0.85);
  padding: 12px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .grant__inner { grid-template-columns: 1fr; }
  .grant__media { min-height: 260px; }
  .grant__content { background: rgba(255,255,255,0.9); }
}
.quote {
  font-size: 2.5rem;
  color: #F5B700;
  text-transform: uppercase;
  margin: 20px 0;
}
.apex {
  background: linear-gradient(135deg, #FF8C42 0%, #FFA07A 100%);
  position: relative;
}

/* =================== Apex Culinary (Interactive) =================== */
.apex {
  padding: 50px 20px; /* thinner section */
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
}

.apex__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.apex__header { text-align: center; margin-bottom: 18px; }
.apex__eyebrow { text-transform: uppercase; letter-spacing: 0.2em; margin: 0; color: #111; font-size: 0.9rem; }
.apex__title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 4px 0 6px;
  color: #111;
  display: inline-block; /* shrink to text width for highlight */
  background: linear-gradient(180deg, rgba(255,145,76,0.18) 0%, rgba(255,145,76,0.12) 100%);
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,145,76,0.28);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.apex__subtitle { margin: -20px 0 24px; color: #222; }

.apex__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.apex-card {
  background: rgba(255,255,255,0.9);
  border: 2px solid #111;
  border-radius: 14px;
  box-shadow: 10px 10px 0 #111;
  transform: translateY(0) rotate(-0.4deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.apex-card:focus { outline: none; box-shadow: 0 0 0 3px rgba(17,17,17,0.3), 10px 10px 0 #111; }
.apex-card:hover { transform: translateY(-4px) rotate(0.2deg); box-shadow: 16px 16px 0 #111; }
.apex-card__content { padding: 18px; }
.apex-card__content { padding: 18px; text-align: center; }
.apex-card__list {
  margin: 10px 0 14px 0;
  list-style: none; /* remove bullets */
  padding-left: 0;  /* remove indent */
}
.apex-card__list li { margin-bottom: 6px; }

/* =================== Apex Revamp Additions =================== */
@keyframes apex-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.apex__pills { display: inline-flex; gap: 8px; margin-top: 6px; }
.apex__pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 10px; border: 2px solid #111; border-radius: 999px;
  background: #fff; box-shadow: 4px 4px 0 #111; font-weight: 700; font-size: 0.8rem;
}

.apex__marquee {
  margin: 26px 0 20px; border-top: 4px solid #111; border-bottom: 4px solid #111;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,0.04) 0 10px, rgba(0,0,0,0.06) 10px 20px);
  overflow: hidden; /* hide track overflow for seamless loop */
  will-change: transform;
}
.apex__marquee::before, .apex__marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 20px; z-index: 1;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}
.apex__marquee::after { right: 0; transform: rotate(180deg); }
.apex__marquee::before { left: 0; }
.apex__marquee-track {
  display: inline-flex; gap: 18px; padding: 10px 0; font-family: 'Bungee', sans-serif; letter-spacing: 0.12em;
  text-transform: uppercase; white-space: nowrap; min-width: 200%;
  animation: apex-marquee 30s linear infinite; /* continuous one-direction loop */
  will-change: transform;
}
.apex__marquee-track span { color: #fff; text-shadow: 0 2px 0 rgba(0,0,0,0.35); }

/* Feature grid (3-up) */
.apex__grid--features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px;
}
.apex__grid--features .apex-card {
  border-width: 3px; box-shadow: 12px 12px 0 #111; border-radius: 16px; transform: rotate(-0.6deg);
}
.apex-card__title { font-family: 'Bungee', sans-serif; margin: 0 0 8px; font-size: 1.2rem; color: #111; }
.apex-card__list li { margin-bottom: 6px; }

/* Stats */
.apex__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0 8px;
}
.apex-stat {
  background: #fff; border: 3px solid #111; border-radius: 14px; box-shadow: 10px 10px 0 #111;
  padding: 16px; text-align: center; position: relative;
}
.apex-stat::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(255,145,76,0.15), transparent 60%);
}
.apex-stat__num { font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #FF914C; text-shadow: 2px 2px 0 #000; }
.apex-stat__label { margin-top: 6px; font-weight: 700; letter-spacing: 0.04em; }

/* Quote */
.apex__quote {
  background: #111; color: #fff; border: 3px solid #111; border-radius: 16px; box-shadow: 12px 12px 0 #111;
  margin: 10px 0 0; padding: 16px 18px; position: relative;
}
.apex__quote blockquote { margin: 0; font-size: clamp(1rem, 2.2vw, 1.2rem); line-height: 1.5; font-style: italic; }
.apex__quote figcaption { margin-top: 8px; opacity: 0.9; font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .apex__grid--features { grid-template-columns: 1fr; }
  .apex__stats { grid-template-columns: 1fr; }
}

/* =================== Section Separators (Reusable) =================== */
.section-sep { position: relative; }



@media (max-width: 768px) {
  .apex { padding: 50px 16px; }
}

/* =================== About Animations =================== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

.about__title,
.about__brand {
  opacity: 0;
  will-change: opacity, transform;
}

.about__title {
  animation:
    fadeInUp 800ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards,
    gentleFloat 5200ms ease-in-out 900ms infinite;
}

.about__brand {
  animation:
    fadeInUp 800ms cubic-bezier(0.2, 0.7, 0.2, 1) 150ms forwards,
    gentleFloat 5200ms ease-in-out 1050ms infinite;
}

@media (prefers-reduced-motion: reduce) {
  .about__title,
  .about__brand { animation: none; opacity: 1; transform: none; }
}

/* =================== Truck Locator =================== */
.truck-locator {
  background: #fff;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
  padding: 70px 20px;
}

.truck-locator__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.truck-locator__title {
  font-family: 'Bungee', sans-serif;
  color: #FF914C;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 4px 0;
}

.truck-locator__subtitle {
  margin: 0 0 40px 0;
  color: #222;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 2px 0 rgba(0,0,0,0.06);
}

.truck-locator__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.truck-locator__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
/* =================== Scroll Effects & Utilities =================== */
/* Compact header when scrolling */
.main-nav.is-compact {
  padding: 6px 0;
  background: #000; /* keep brutalist black when compact */
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  backdrop-filter: none;
}

.main-nav.is-compact .nav-logo {
  height: 22px;
  opacity: 0.92;
  transition: height 200ms ease;
}

/* Anchor offset for sticky header */
section { scroll-margin-top: 96px; }

/* Reveal-on-scroll base */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.reveal--visible {
  opacity: 1;
  transform: none;
}

/* Directional variants via data attribute */
.reveal[data-reveal="up"] { transform: translateY(24px); }
.reveal[data-reveal="down"] { transform: translateY(-24px); }
.reveal[data-reveal="left"] { transform: translateX(24px); }
.reveal[data-reveal="right"] { transform: translateX(-24px); }
.reveal[data-reveal="zoom"] { transform: scale(0.96); }

/* Optional subtle parallax lift when visible */
.reveal.reveal--visible[data-parallax="lift"] {
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Stagger helper using CSS variable set from JS */
.reveal[data-stagger] { transition-delay: var(--reveal-delay, 0ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.reveal--visible {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .main-nav.is-compact { backdrop-filter: none; }
  .contact__title { animation: none !important; }
  .contact-plus { animation: none !important; }
}

.truck-locator__info {
  background: #fff;
  border: 2px solid #111;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 8px 8px 0 #111;
}

.truck-locator__block h3 {
  margin: 6px 0 4px;
}

.truck-locator__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .truck-locator__grid { grid-template-columns: 1fr; }
  .truck-locator__map iframe { height: 280px; }
}

.apex::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.05);
  z-index: 1;
}

.apex > * {
  position: relative;
  z-index: 2;
}

.menu {
  background: #FF8C42; /* Matching the menu's orange color */
  text-align: center;
}

.menu img {
  max-width: 900px;
  margin: 0 auto;
  border: 4px solid #000;
  box-shadow: 8px 8px 0 #000;
  transition: transform 0.3s ease;
}

.menu img:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #000;
}
.contact {
  background: #fff;
  color: #111;
  text-align: center;
  padding: 70px 20px;
  position: relative;
}

/* =================== Contact/Socials (Interactive) =================== */
.contact__inner { max-width: 1200px; margin: 0 auto; }
.contact__title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin: 0 0 8px;
  color: #FF914C;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 0 rgba(0,0,0,0.06);
}

.contact-plus {
  display: inline-block;
  margin: 0 6px;
  color: #FF914C;
  -webkit-text-fill-color: initial; /* ensure plus remains visible if background-clip applied */
  text-shadow: 2px 2px 0 #000, 0 0 8px rgba(255,145,76,0.5);
  transform-origin: center;
  animation: contactPlusSpin 4s linear infinite, contactPlusPulse 1600ms ease-in-out infinite;
}

@keyframes contactPlusSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes contactPlusPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(180deg); }
}
.contact__subtitle {
  margin: 0 0 40px 0; /* increased spacing below */
  color: #111; /* darker for stronger contrast */
  font-size: clamp(1.1rem, 2.4vw, 1.6rem); /* enlarged */
  font-weight: 800; /* bold for visibility */
  letter-spacing: 0.02em; /* subtle emphasis */
  line-height: 1.5;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5), 0 0 6px rgba(0,0,0,0.15); /* eye-catching yet subtle */
}
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }

.contact-card { 
  background: rgba(255,255,255,0.9); 
  border: 2px solid #111; 
  border-radius: 14px; 
  box-shadow: 8px 8px 0 #111; 
  padding: 18px; 
  text-align: center; 
}
.contact-card--primary { 
  background: #fff; 
  text-align: center; 
}
.contact-card__link { 
  color: #111; 
  text-decoration: underline; 
}
.contact-card__link:hover { 
  color: #000; 
}
.contact-card__link:focus-visible { 
  outline: 3px solid rgba(0,0,0,0.5); 
  outline-offset: 2px; 
  border-radius: 4px; 
}
.contact-card__actions { 
  display: flex; 
  gap: 10px; 
  margin-top: 12px; 
  flex-wrap: wrap; 
  justify-content: center; 
}

.contact-card--socials { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
}
.social-buttons { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  justify-content: center; 
}
.social-button { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 10px 14px; 
  border-radius: 12px; 
  border: 2px solid #111; 
  background: #fff; 
  box-shadow: 6px 6px 0 #111; 
  text-decoration: none; 
  color: #111; 
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease, filter 200ms ease; 
}
.social-button:hover { 
  transform: translateY(-2px); 
  box-shadow: 10px 10px 0 #111; 
  background: #f9f9f9; 
}
.social-button:focus-visible { 
  outline: 3px solid rgba(0,0,0,0.5); 
  outline-offset: 2px; 
}
.social-button--fb { 
  background: #1877F2; 
  color: #fff; 
  border-color: #0F5DD1; 
}
.social-button--fb:hover { 
  filter: brightness(0.95); 
}
.social-button--ig { 
  background: linear-gradient(135deg, #F56040, #E1306C 50%, #C13584); 
  color: #fff; 
  border-color: #BD2561; 
}
.social-button--ig:hover { 
  filter: brightness(0.98); 
}

/* Contact card headings: underline + display font to complement preceding section */
.contact-card h3 {
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px 0;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.social-button--ig { background: linear-gradient(135deg, #F56040, #E1306C 50%, #C13584); color: #fff; border-color: #BD2561; }
.social-button--ig:hover { filter: brightness(0.98); }

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

/* Remove previous orange glow background effect for a clean white section */
.contact::before { content: none; }

/* Remove conflicting generic .contact link styles to preserve button and link contrast */
/* Intentionally left blank (previous .contact a overrides removed) */
footer {
  background: linear-gradient(45deg, #000, #222);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  position: relative;
  border-top: 4px solid #FF8C42;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,140,66,0.05);
}

/* =================== Fairy Dust Cursor Animation =================== */
.fairy-dust-cursor {
  cursor: none;
  position: relative;
}

.fairy-dust-cursor::before {
  content: '✨';
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  font-size: 16px;
  animation: fairy-sparkle 1.5s ease-out infinite;
  opacity: 0;
}

@keyframes fairy-sparkle {
  0% {
    opacity: 1;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.3) rotate(360deg);
  }
}

.fairy-dust-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  font-size: 12px;
  animation: fairy-trail 2s ease-out forwards;
}

@keyframes fairy-trail {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.3) translateY(-30px);
  }
}

/* =================== Feature Split Section =================== */
.feature-split {
  background: #FF914C; /* brand */
  padding: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #000;
  background: #000;
}

.feature-split__label {
  position: absolute;
  top: 24px;
  left: 22px;
  font-family: 'Bungee', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;
  border-radius: 12px;
  border: 3px solid #111;
  box-shadow: 8px 8px 0 #111, 0 8px 20px rgba(0,0,0,0.3);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
  z-index: 3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.feature-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 64vh;
}

.feature-split__item {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.feature-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1) translateZ(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 16px;
  margin: 16px 8px;
  width: calc(100% - 16px);
  height: calc(100% - 32px);
}

/* vertical divider mimic */
.feature-split__grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: translateX(-50%);
  z-index: 2;
}

.feature-split__sparkles {
  position: absolute;
  bottom: 16px;
  left: 22px;
  color: rgba(255,255,255,0.95);
  letter-spacing: 6px;
  font-size: 18px;
  z-index: 3;
}

@media (max-width: 768px) {
  .feature-split__grid {
    grid-template-columns: 1fr;
    min-height: 55vh;
    gap: 8px;
  }
  .feature-split__grid::before {
    display: none;
  }
  .feature-split__img {
    margin: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
}

/* =================== Pre-Menu Text Section =================== */
.pre-menu-hero {
  background: #ffffff;
  padding: 70px 20px;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  position: relative;
  overflow: hidden;
}

.pre-menu-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* Floating brand plants and geometric shapes */
@keyframes floatLoop {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-14px) translateX(10px) rotate(3deg); }
}

@keyframes panBg {
  0% { background-position: 0 0, 60px 80px, 140px -60px; }
  100% { background-position: 80px -60px, 0 0, 100px 60px; }
}

.pre-menu-hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% -10% -10%;
  background-repeat: no-repeat;
  background-size: 320px 320px, 260px 260px;
  background-position: left -40px top 20px, right -20px bottom -10px;
  /* Two stylized plant/leaf SVGs tinted with brand palette */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512' viewBox='0 0 512 512'%3E%3Cg fill='%23FF914C' fill-opacity='0.12'%3E%3Cpath d='M256 32c-40 80-40 160 0 240s120 120 240 120c-80-40-160-40-240 0S96 512 32 480c40-80 40-160 0-240S-88 120 32 32c80 40 160 40 224 0z'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512' viewBox='0 0 512 512'%3E%3Cg fill='%23FF4500' fill-opacity='0.09'%3E%3Cpath d='M256 20c-28 90-10 170 54 234s144 82 234 54c-90 28-170 10-234-54S164 60 192 20c28 18 46 18 64 0z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  animation: floatLoop 24s ease-in-out infinite;
  z-index: 0;
}

.pre-menu-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  /* three layers of subtle geometric dots/circles in brand palette */
  background-image:
    radial-gradient(circle 6px at 20% 30%, rgba(255,145,76,0.20) 0, rgba(255,145,76,0.20) 50%, transparent 52%),
    radial-gradient(circle 5px at 70% 60%, rgba(255,69,0,0.14) 0, rgba(255,69,0,0.14) 50%, transparent 52%),
    radial-gradient(circle 4px at 40% 80%, rgba(245,183,0,0.16) 0, rgba(245,183,0,0.16) 50%, transparent 52%);
  animation: panBg 44s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.pre-menu-hero > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .pre-menu-hero::before, .pre-menu-hero::after { animation: none !important; }
}

.pre-menu-hero__title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  color: #111;
  margin: 0;
  position: relative;
  display: inline-block;
  transition: transform 0.25s ease, text-shadow 0.25s ease;
  overflow: visible;
}

.pre-menu-hero__title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,145,76,0) 0%, rgba(255,145,76,0.85) 25%, #FF914C 60%, rgba(255,145,76,0.85) 85%, rgba(255,145,76,0) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  animation: underline-sweep 1000ms cubic-bezier(0.22, 1, 0.36, 1) 200ms forwards;
}

.pre-menu-hero__title:hover {
  transform: translateY(-2px) skew(-0.5deg);
  text-shadow: 0 6px 18px rgba(0,0,0,0.2), 0 0 16px rgba(255,145,76,0.35);
}

.pre-menu-hero__title:hover::after {
  animation: underline-sweep 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Shimmer pass in brand color */
.pre-menu-hero__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,145,76,0) 0%, rgba(255,145,76,0.55) 50%, rgba(255,145,76,0) 100%);
  filter: blur(0.3px);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
}

.pre-menu-hero__title:hover::before {
  animation: shimmer-pass 1400ms ease-in-out forwards;
}

@keyframes shimmer-pass {
  0% { transform: skewX(-20deg) translateX(0); opacity: 0; }
  10% { opacity: 0.65; }
  100% { transform: skewX(-20deg) translateX(130%); opacity: 0; }
}

@media (max-width: 768px) {
  .pre-menu-hero { padding: 50px 16px; min-height: 30vh; }
  .pre-menu-hero__title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
}

/* =================== Section 3: Statement + Ribbon + Menu Visual =================== */
.statement-section {
  background: #FF914C;
  position: relative;
  padding: 110px 20px 50px;
  overflow: hidden;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
}

.statement-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.statement-section__title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(1.8rem, 4.2vw, 3.8rem);
  line-height: 1.05;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
  font-weight: 900;
  position: relative;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
}

.statement-section__title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #FF914C 0%, #FF7D2C 100%);
  border-radius: 999px;
  animation: underlineGrow 900ms cubic-bezier(.2,.7,.2,1) 200ms forwards;
}

.statement-section__scroll {
  background: #e96f31; /* darker brand button */
  color: #fff;
  font-size: 22px;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  margin-bottom: 24px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.statement-section__ribbon {
  position: relative;
  background: #d54f17; /* deep brand ribbon */
  color: #fff;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  transform: rotate(-2.5deg);
  font-family: 'Bungee', sans-serif;
  letter-spacing: 0.08em;
  margin: 10px auto 26px;
  border-left: 8px solid #000;
  border-right: 8px solid #000;
}

.statement-section__ribbon span { white-space: nowrap; }

.statement-section__figure {
  margin: 0 auto;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(0,0,0,0.25);
  align-self: center;
  display: flex;
  justify-content: center;
}

.statement-section__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .statement-section { padding: 50px 16px 40px; }
  .statement-section__title { 
    font-size: clamp(1.8rem, 6vw, 2.4rem); 
    text-align: center; 
    color: #000 !important;
    font-weight: 900;
    position: relative;
    font-family: 'Bungee', sans-serif;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .statement-section__title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF914C 0%, #FF7D2C 100%);
    border-radius: 999px;
    animation: underlineGrow 900ms cubic-bezier(.2,.7,.2,1) 200ms forwards;
  }
  .statement-section__ribbon { transform: rotate(-1.5deg); gap: 12px; padding: 8px 14px; }
}

/* =================== About Us =================== */
.about {
  background: #fff;
  position: relative;
  padding: 70px 20px;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 10px;
  background: #FF914C;
}

.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.about__title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin: 0 0 10px 0;
  color: #111;
}

.about__brand {
  font-family: 'Bungee', sans-serif;
  color: #FF914C;
  margin: 0 0 10px 0;
}

.about__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
  margin: 0;
}

.about__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(0,0,0,0.22);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.about__media:hover .about__img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about { padding: 50px 16px; }
  .about__inner { grid-template-columns: 1fr; gap: 18px; }
  .about__content p { font-size: 1rem; }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 16px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  z-index: 2001;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform-origin: center;
}

.mobile-menu-btn span:nth-child(1) {
  top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
  bottom: 12px;
}

/* Animated hamburger to X transformation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 50%;
  margin-top: -1.5px;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1.5px;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu__content {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.mobile-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  font-family: 'Bungee', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-menu.active .mobile-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-link:hover,
.mobile-link:focus {
  color: #fff;
  background: linear-gradient(135deg, #FF914C 0%, #FF7D2C 100%);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(255, 145, 76, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.mobile-link:active {
  transform: translateY(0) scale(0.98);
}

/* Add shine effect on hover */
.mobile-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.mobile-link:hover::before {
  left: 100%;
}

/* Screen reader only class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Prevent mobile menu animation issues */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: opacity 0.2s ease;
  }
  
  .mobile-link {
    animation: none;
    transform: translateY(0);
    opacity: 1;
  }
  
  .mobile-link::before {
    display: none;
  }
  
  .mobile-menu-btn span {
    transition: none;
  }
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  body {
    width: 100%;
    max-width: 100%;
  }
  
  .subscription-banner {
    font-size: 10px;
    padding: 4px 0;
    width: 100%;
    box-sizing: border-box;
  }

  .main-nav {
    padding: 8px 0;
    top: 0;
    width: 100%;
  }

  .hero {
    margin-top: 0;
    padding-top: 76px;
    min-height: 90vh;
    padding: 20px 0 8vh;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero__content {
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero__text {
    padding-top: 2vh;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .hero__content h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    margin-bottom: clamp(20px, 3vh, 30px);
  }

  .hero__description {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    max-width: 100%;
  }

  .scroll-indicator {
    margin-bottom: 20px;
  }

}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
  .mobile-link {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    padding: 12px 20px;
    max-width: 260px;
  }
  
  .mobile-menu__content {
    gap: 6px;
    padding: 30px 16px;
  }
}

/* Tablet Navigation */
@media (min-width: 1921px) {
  .hero__text {
    margin-left: 12vw;
  }

  .hero__content h1 {
    font-size: 8rem;
    max-width: 1200px;
  }

  .hero__description {
    font-size: 1.35rem;
    max-width: 520px;
  }

  .hero__content {
    max-width: 1400px;
  }



  .hero__content h1 {
    font-size: 6.5rem;
  }

  .hero__description {
    font-size: 1.5rem;
    max-width: 600px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero__text {
    margin-left: 6vw;
    padding-top: 5vh;
  }

  .hero__content h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.6rem);
    margin-bottom: clamp(25px, 4vh, 35px);
  }

  .hero__description {
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    max-width: min(420px, 90%);
  }



  .nav-links {
    gap: 25px;
    margin-left: 25px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero {
    height: 85vh;
    padding: 50px 0;
  }

  .hero__content {
    padding: 0 30px;
  }
}

/* =================== Mobile Navigation =================== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid #333;
  display: none;
  height: 60px;
}

.mobile-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 100%;
}

.mobile-nav-logo {
  height: 35px;
  width: auto;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background: #000;
  transition: left 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #333;
}

.mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 18px;
  transition: background 0.3s;
}

.mobile-menu a:hover {
  background: #333;
  color: #FF914C;
}

/* Secondary Mobile Menu Styles */
.secondary-mobile-menu {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background: #000;
  transition: left 0.3s ease;
  z-index: 999;
}

.secondary-mobile-menu.active {
  left: 0;
}

.secondary-mobile-menu ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.secondary-mobile-menu li {
  border-bottom: 1px solid #333;
}

.secondary-mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 18px;
  transition: background 0.3s;
}

.secondary-mobile-menu a:hover,
.secondary-mobile-menu a.secondary-mobile-nav-link--active {
  background: #333;
  color: #FF914C;
}


@media (max-width: 900px) {
  .mobile-nav {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero {
    padding-top: 60px;
  }
}

/* =================== Mobile Optimization Tweaks (Overrides) =================== */
@media (max-width: 900px) {
  /* Stack feature items vertically */
  .feature-split__grid { display: grid; grid-template-columns: 1fr; gap: 16px; justify-items: center; }
  .feature-split__item { margin-bottom: 10px; display: flex; justify-content: center; align-items: center; }
  .feature-split__img { width: 90%; max-width: 400px; height: auto; display: block; border-radius: 16px; margin: 0 auto; }
  .feature-split__caption { left: 50%; bottom: 10px; transform: translateX(-50%); font-size: clamp(0.9rem, 3.2vw, 1rem); text-align: center; }

  /* Stack truck locator columns */
  .truck-locator__grid { grid-template-columns: 1fr; gap: 16px; }
  .truck-locator__map iframe { height: 260px; }
  .truck-locator__actions { justify-content: center; }

  /* Stack contact cards */
  .contact__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Mission: stack vertically on mobile and tablet */
@media (max-width: 1024px) {
  .mission { padding: 60px 16px; }
  .mission__title { margin-bottom: 40px; font-size: 2rem; }
  .mission__grid { 
    display: grid !important; 
    grid-template-columns: 1fr !important; 
    gap: 40px; 
    padding: 0; 
    justify-items: center;
  }
  .mission__block { 
    padding: 24px; 
    box-shadow: 8px 8px 0 #111; 
    transform: none; 
    margin: 0;
    position: relative;
    width: 90%;
    max-width: 400px;
    opacity: 1;
  }
  .mission__block:hover { 
    animation: none; 
    box-shadow: 8px 8px 0 #111; 
    transform: none; 
  }
  .mission__block h3 { font-size: 1.5rem; margin-bottom: 12px; }
  .mission__block p { font-size: 1.1rem; }
}

/* Enhanced mobile spacing for smaller screens */
@media (max-width: 768px) {
  .mission { padding: 50px 20px; }
  .mission__title { margin-bottom: 35px; }
  .mission__grid { 
    grid-template-columns: 1fr !important;
    gap: 35px;
  }
  .mission__block { 
    width: 95%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .mission { padding: 40px 16px; }
  .mission__title { margin-bottom: 30px; font-size: 1.8rem; }
  .mission__grid { 
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .mission__block { 
    padding: 20px;
    width: 100%;
    max-width: 320px;
  }
  .mission__block h3 { font-size: 1.3rem; }
  .mission__block p { font-size: 1rem; }
}

@media (max-width: 520px) {
  .feature-split__caption { bottom: 8px; left: 50%; transform: translateX(-50%); padding: 6px 10px; text-align: center; }
  .truck-locator { padding: 50px 16px; }
  .contact { padding: 50px 16px; }
}

/* Hero micro-adjustments on very small screens */
@media (max-width: 600px) {
  .hero__text { top: -30px; }
  .hero__description { top: -70px; }
  .hero__actions { top: -100px; }
}

