/* ═══════════════════════════════════════════════════════════════
   SMASH IT BURGER – Design System
   Retro Diner × Street Food Culture
   ═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Permanent+Marker&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  /* Primary – Brand Red (warmed up for visibility) */
  --clr-primary: #D42B35;
  --clr-primary-dark: #9B1E25;
  --clr-primary-light: #EF4F5A;
  --clr-primary-glow: rgba(212, 43, 53, 0.15);

  /* Secondary – Gold / Warm */
  --clr-gold: #D4A843;
  --clr-gold-light: #E8C76B;
  --clr-cream: #FFF8E7;
  --clr-warm-white: #FEFCF3;

  /* Neutral */
  --clr-dark: #1A1A1A;
  --clr-charcoal: #2D2D2D;
  --clr-gray: #6B6B6B;
  --clr-gray-light: #9A9A9A;
  --clr-light-gray: #F5F5F5;
  --clr-white: #FFFFFF;

  /* Accent */
  --clr-mustard: #E8A917;
  --clr-ketchup: #C41E2A;
  --clr-pickle: #4A7C3F;
  --clr-success: #2ECC71;
  --clr-whatsapp: #25D366;

  /* Gradients */
  --grad-hero: linear-gradient(180deg, #2D2D2D 0%, #1A1A1A 100%);
  --grad-red: linear-gradient(135deg, #D42B35 0%, #EF4F5A 100%);
  --grad-gold: linear-gradient(135deg, #D4A843 0%, #E8C76B 100%);
  --grad-dark: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
  --grad-cream: linear-gradient(180deg, #FFF8E7 0%, #FEFCF3 100%);

  /* Typography */
  --ff-display: 'Bebas Neue', 'Impact', sans-serif;
  --ff-body: 'DM Sans', 'Segoe UI', sans-serif;
  --ff-accent: 'Permanent Marker', cursive;

  /* Font Sizes (fluid) */
  --fs-hero: clamp(3rem, 8vw, 6rem);
  --fs-h1: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.5rem, 3vw, 2rem);
  --fs-h4: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: clamp(1rem, 1.5vw, 1.125rem);
  --fs-body-sm: clamp(0.875rem, 1.2vw, 1rem);
  --fs-caption: clamp(0.75rem, 1vw, 0.875rem);
  --fs-overline: clamp(0.7rem, 0.9vw, 0.8rem);

  /* Spacing (8px grid) */
  --space-2xs: 0.25rem;   /* 4px */
  --space-xs: 0.5rem;     /* 8px */
  --space-sm: 0.75rem;    /* 12px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */
  --space-5xl: 8rem;      /* 128px */

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-red: 0 4px 24px rgba(212, 43, 53, 0.35);
  --shadow-red-lg: 0 8px 32px rgba(212, 43, 53, 0.45);
  --shadow-gold: 0 4px 24px rgba(212, 168, 67, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;

  /* Z-Index Scale */
  --z-behind: -1;
  --z-base: 0;
  --z-above: 10;
  --z-nav: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --nav-height: 80px;
  --nav-height-scrolled: 64px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
  overflow-x: clip;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--clr-dark);
  background-color: var(--clr-warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-dark);
}

.hero-title {
  font-size: var(--fs-hero);
  letter-spacing: 0.04em;
}

h1, .h1 { font-size: var(--fs-h1); }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); }
h4, .h4 { font-size: var(--fs-h4); }

.text-accent {
  font-family: var(--ff-accent);
  text-transform: none;
  letter-spacing: 0;
}

.overline {
  font-family: var(--ff-body);
  font-size: var(--fs-overline);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
}

.text-gradient {
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-red {
  color: var(--clr-primary);
}

/* ─── Layout / Container ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--space-4xl) 0;
  position: relative;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--ff-display);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
  z-index: 0;
}

/* Button Shine Sweep – purely CSS micro-interaction */
.btn--primary::after,
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
  z-index: 1;
  pointer-events: none;
}

.btn--primary:hover::after,
.btn--gold:hover::after {
  animation: btn-shine 0.6s ease forwards;
}

@keyframes btn-shine {
  from { left: -100%; }
  to   { left: 120%; }
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-red);
}

.btn--primary::before {
  background: var(--clr-primary-dark);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.btn--secondary:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--grad-gold);
  color: var(--clr-dark);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.5);
}

.btn--whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
}

.btn--dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}

.btn--dark:hover {
  background: var(--clr-charcoal);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-warm-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn--sm {
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.9rem;
  min-height: 40px;
}

.btn--lg {
  padding: var(--space-md) var(--space-2xl);
  font-size: 1.25rem;
  min-height: 56px;
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* ─── Cards ─── */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 43, 53, 0.08);
  border-color: rgba(212, 43, 53, 0.12);
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card__body {
  padding: var(--space-lg);
}

.card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.card__text {
  color: var(--clr-gray);
  font-size: var(--fs-body-sm);
}

/* ─── Section Styles ─── */
.section--dark {
  background: var(--clr-dark);
  color: var(--clr-warm-white);
}

.section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--clr-warm-white);
}

.section--cream {
  background: var(--clr-cream);
}

.section--red {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.section--red h2, .section--red h3, .section--red h4 {
  color: var(--clr-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header .overline {
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header p {
  color: var(--clr-gray);
  font-size: var(--fs-body);
  margin-top: var(--space-md);
}

/* ─── Grid Helpers ─── */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3, .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Flex Helpers ─── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ─── Spacing Utilities ─── */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* ─── Text Utilities ─── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ─── Decorative Elements ─── */
.divider {
  width: 60px;
  height: 4px;
  background: var(--grad-red);
  border-radius: var(--radius-full);
  margin: var(--space-lg) auto;
}

/* Heading Underline – Brush-stroke accent under headings */
.heading-underline {
  position: relative;
  display: inline-block;
}

.heading-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-red);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.heading-underline.is-visible::after,
.reveal.is-visible .heading-underline::after {
  transform: scaleX(1);
}

.heading-underline--gold::after {
  background: var(--grad-gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-sm);
  background: var(--clr-primary-glow);
  color: var(--clr-primary);
  border-radius: var(--radius-full);
  font-size: var(--fs-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--clr-gold);
}

/* ─── Noise / Texture Overlay ─── */
.texture-overlay {
  position: relative;
}

.texture-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ─── Glow Spot – Radial highlights for visual depth ─── */
.glow-spot {
  position: relative;
}

.glow-spot::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 43, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ─── Wave Section Dividers ─── */
/*
 * ARCHITECTURE: The wave sits ON TOP of the previous section.
 * - background: transparent → shows previous section through (no color mismatch!)
 * - margin-top: -60px → pulls the wave 100% over the previous section
 * - SVG fill: next section's color
 * - margin-bottom: -2px → slight overlap with next section to prevent subpixel gap
 * Result: NO separate background = NO stripe/seam possible.
 */
.wave-divider {
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 0;
  font-size: 0;
  z-index: 3;
  pointer-events: none;
  display: block;
  background: transparent !important;
  margin-top: -62px;
  margin-bottom: -3px;
  padding: 0;
  border: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: calc(100% + 6px);
  position: relative;
  top: -1px;
}

.wave-divider--flip svg {
  transform: scaleY(-1);
}

/* SVG fill colors = color of the NEXT section */
.wave-divider--dark-white svg { fill: var(--clr-warm-white); }
.wave-divider--dark-cream svg { fill: var(--clr-warm-white); }
.wave-divider--dark-red svg { fill: var(--clr-primary); }
.wave-divider--cream-dark svg { fill: var(--clr-dark); }
.wave-divider--white-dark svg { fill: var(--clr-dark); }
.wave-divider--white-cream svg { fill: var(--clr-cream); }
.wave-divider--cream-cream svg { fill: var(--clr-warm-white); }
.wave-divider--cream-red svg { fill: var(--clr-primary); }
.wave-divider--red-dark svg { fill: var(--clr-dark); }

/* ─── Scroll Reveal Base ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

/* Reveal Variants */
.reveal--left {
  transform: translateX(-60px);
}
.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(60px);
}
.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.85);
}
.reveal--scale.is-visible {
  transform: scale(1);
}

.reveal--rotate {
  transform: translateY(30px) rotate(-3deg);
}
.reveal--rotate.is-visible {
  transform: translateY(0) rotate(0deg);
}

/* ─── Selection Color ─── */
::selection {
  background: var(--clr-primary);
  color: var(--clr-white);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-primary-dark);
}

/* ─── Focus Styles ─── */
:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── Mascot Watermarks (Ghost Decorations) ─── */
.mascot-ghost {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  width: clamp(180px, 18vw, 320px);
  height: auto;
  object-fit: contain;
  transition: opacity 0.6s ease;
}

/* Parent section needs relative + hidden overflow */
.has-mascot {
  position: relative;
  overflow: hidden;
}

/* On light backgrounds (warm-white, cream): dark silhouette */
.mascot-ghost--dark {
  opacity: 0.04;
  filter: brightness(0) saturate(0);
}

/* On dark backgrounds: light silhouette */
.mascot-ghost--light {
  opacity: 0.06;
  filter: brightness(0) saturate(0) invert(1);
}

/* On red backgrounds: dark silhouette, slightly more visible */
.mascot-ghost--on-red {
  opacity: 0.08;
  filter: brightness(0) saturate(0);
}

/* Position variants */
.mascot-ghost--bottom-right {
  bottom: 1rem;
  right: 1rem;
}

.mascot-ghost--bottom-left {
  bottom: 1rem;
  left: 1rem;
}

.mascot-ghost--top-right {
  top: 2rem;
  right: 1rem;
}

.mascot-ghost--top-left {
  top: 2rem;
  left: 1rem;
}

.mascot-ghost--center-right {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.mascot-ghost--center-left {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

/* Rotation for extra playfulness */
.mascot-ghost--tilt-left {
  transform: rotate(-12deg);
}

.mascot-ghost--tilt-right {
  transform: rotate(12deg);
}

.mascot-ghost--center-right.mascot-ghost--tilt-right {
  transform: translateY(-50%) rotate(12deg);
}

.mascot-ghost--center-left.mascot-ghost--tilt-left {
  transform: translateY(-50%) rotate(-12deg);
}

/* Larger variant for big sections */
.mascot-ghost--lg {
  width: clamp(240px, 24vw, 420px);
}

/* Smaller variant for compact sections */
.mascot-ghost--sm {
  width: clamp(120px, 12vw, 200px);
}

/* Hide on very small screens to avoid clutter */
@media (max-width: 600px) {
  .mascot-ghost {
    display: none;
  }
}

/* Show on tablets but smaller */
@media (min-width: 601px) and (max-width: 900px) {
  .mascot-ghost {
    width: clamp(100px, 14vw, 180px);
    opacity: 0.03;
  }
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad-red);
  z-index: 9999;
  transition: none;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(212, 43, 53, 0.5);
}

/* ─── Trust Marquee ─── */
.trust-marquee {
  overflow: hidden;
  background: var(--clr-dark);
  padding: var(--space-sm) 0;
  white-space: nowrap;
  position: relative;
}

.trust-marquee::before,
.trust-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--clr-dark), transparent);
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--clr-dark), transparent);
}

.trust-marquee__track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
  gap: var(--space-3xl);
}

.trust-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.trust-marquee__item--highlight {
  color: var(--clr-primary-light);
}

.trust-marquee__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-primary);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── 3D Tilt Container ─── */
.tilt-card {
  perspective: 800px;
}

.tilt-card__inner {
  transition: transform var(--duration-normal) var(--ease-out);
  transform-style: preserve-3d;
}

/* ─── Custom Cursor for Gallery ─── */
.cursor-view {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s var(--ease-bounce);
  mix-blend-mode: difference;
}

.custom-cursor.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── Magnetic Button ─── */
.btn--magnetic {
  transition: transform 0.25s var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

/* ─── Counter Animation ─── */
.truck-stat__number {
  transition: color 0.3s ease;
}

.truck-stat__number.is-counting {
  color: var(--clr-gold);
}

/* ─── Enhanced Grain on Cream Sections ─── */
.section--cream-grain {
  position: relative;
}

.section--cream-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── Parallax Layer Helper ─── */
.parallax-element {
  will-change: transform;
}

/* ─── Print Styles ─── */
@media print {
  .nav, .sticky-bar, .whatsapp-fab, .footer, .scroll-progress, .trust-marquee, .custom-cursor {
    display: none !important;
  }
}
