/* ==========================================================================
   OBA OBA RESTAURANTE — PREMIUM CSS OVERHAUL
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Poppins:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* -----------------------------------------------------------------------
   CUSTOM PROPERTIES
   ----------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --clr-bg: #08090A;
  --clr-bg-2: #0D1117;
  --clr-surface: rgba(255, 255, 255, 0.04);
  --clr-surface-2: rgba(255, 255, 255, 0.08);
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-text: #F0EEE8;
  --clr-text-muted: rgba(240, 238, 232, 0.55);

  /* Brand Colors */
  --gold: #C9A84C;
  --gold-light: #E2C27D;
  --gold-dark: #9A7433;
  --teal: #1A8B8D;
  --teal-light: #36B8BB;
  --teal-dark: #0D5F61;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #C9A84C 0%, #E2C27D 50%, #C9A84C 100%);
  --grad-teal: linear-gradient(135deg, #1A8B8D 0%, #36B8BB 100%);
  --grad-hero: linear-gradient(180deg, rgba(8, 9, 10, 0) 0%, rgba(8, 9, 10, 0.5) 60%, rgba(8, 9, 10, 0.98) 100%);
  --grad-card: linear-gradient(to top, rgba(8, 9, 10, 0.95) 0%, rgba(8, 9, 10, 0.3) 60%, transparent 100%);

  /* Glow Effects */
  --glow-gold: 0 0 40px rgba(201, 168, 76, 0.35), 0 0 80px rgba(201, 168, 76, 0.15);
  --glow-teal: 0 0 40px rgba(26, 139, 141, 0.35), 0 0 80px rgba(26, 139, 141, 0.15);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --container-width: 1280px;
  --section-pad: 10rem;

  /* Easing */
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --r-sm: 10px;
  --r-md: 20px;
  --r-lg: 40px;
  --r-xl: 60px;
}

/* -----------------------------------------------------------------------
   RESET & BASE
   ----------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* -----------------------------------------------------------------------
   CUSTOM CURSOR
   ----------------------------------------------------------------------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.3s;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  top: -3px;
  left: -3px;
  box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(201, 168, 76, 0.5);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  top: -20px;
  left: -20px;
  transition: width 0.4s var(--ease-out-quint),
    height 0.4s var(--ease-out-quint),
    border-color 0.4s,
    background 0.4s;
}

body.cursor-hover .cursor-ring {
  width: 70px;
  height: 70px;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  top: -35px;
  left: -35px;
}

/* -----------------------------------------------------------------------
   NOISE TEXTURE OVERLAY
   ----------------------------------------------------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* -----------------------------------------------------------------------
   NOISE GRAIN CANVAS (JS-controlled)
   ----------------------------------------------------------------------- */
#grain-canvas {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.03;
}

/* -----------------------------------------------------------------------
   AURORA BACKGROUND LAYER
   ----------------------------------------------------------------------- */
.aurora-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: aurora-drift 20s ease-in-out infinite alternate;
  will-change: transform;
}

.aurora-orb:nth-child(1) {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26, 139, 141, 0.18) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-duration: 24s;
}

.aurora-orb:nth-child(2) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  bottom: 20%;
  right: -100px;
  animation-duration: 18s;
  animation-delay: -8s;
}

.aurora-orb:nth-child(3) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(54, 184, 187, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation-duration: 30s;
  animation-delay: -15s;
}

@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(80px, -60px) scale(1.15);
  }

  66% {
    transform: translate(-40px, 100px) scale(0.9);
  }

  100% {
    transform: translate(120px, 40px) scale(1.1);
  }
}

/* -----------------------------------------------------------------------
   LAYOUT UTILITIES
   ----------------------------------------------------------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* -----------------------------------------------------------------------
   SECTION HEADER SYSTEM
   ----------------------------------------------------------------------- */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.s-label::before,
.s-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--grad-gold);
}

.s-label::after {
  width: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}

.section-title .highlight {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 560px;
}

.center {
  text-align: center;
}

.center .section-desc {
  margin-inline: auto;
}

.center .s-label::before {
  display: none;
}

/* -----------------------------------------------------------------------
   SPLIT TEXT SYSTEM (JS splits into spans)
   ----------------------------------------------------------------------- */
.split-word {
  overflow: hidden;
  display: inline-block;
}

.split-char {
  display: inline-block;
  will-change: transform, opacity;
}

/* -----------------------------------------------------------------------
   BUTTONS
   ----------------------------------------------------------------------- */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-bg);
  background: var(--grad-gold);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.45), 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  transition: all 0.4s var(--ease-out-quint);
  overflow: hidden;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-quint);
}

.btn-ghost:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold);
}

.btn-ghost:hover::before {
  transform: scaleX(1);
}

.btn-large {
  padding: 1.3rem 3.5rem;
  font-size: 0.95rem;
}

/* -----------------------------------------------------------------------
   LOADER — CINEMATIC
   ----------------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.8);
  transition: width 0.05s linear;
}

.loader-panels {
  position: absolute;
  inset: 0;
  display: flex;
}

.loader-panel {
  flex: 1;
  background: var(--clr-bg-2);
  transform-origin: top;
  will-change: transform;
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader-logo-wrap {
  position: relative;
  width: 130px;
  height: 130px;
}

.loader-logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: conic-gradient(var(--gold) 0deg, transparent 120deg, transparent 360deg) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: ring-spin 3s linear infinite;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-logo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.3), 0 20px 60px rgba(0, 0, 0, 0.6);
}

.loader-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.loader-counter {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
  opacity: 0.7;
}

/* -----------------------------------------------------------------------
   HEADER
   ----------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 1000;
  transition: padding 0.6s var(--ease-out-quint);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 10, 0);
  backdrop-filter: blur(0px) saturate(100%);
  border-bottom: 1px solid transparent;
  transition: background 0.6s ease, backdrop-filter 0.6s ease, border-color 0.6s ease;
}

.header.scrolled {
  padding: 1.2rem 0;
}

.header.scrolled::before {
  background: rgba(8, 9, 10, 0.75);
  backdrop-filter: blur(24px) saturate(160%);
  border-color: rgba(201, 168, 76, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo-wrap {
  position: relative;
  width: 54px;
  height: 54px;
}

.logo-ring-svg {
  position: absolute;
  inset: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  animation: ring-spin 8s linear infinite;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.logo-wrap:hover .logo-ring-svg {
  opacity: 1;
}

.logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.4s;
}

.logo-wrap:hover .logo {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.5), var(--glow-gold);
}

.nav {
  display: flex;
  gap: 3.5rem;
}

.nav-link {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color 0.3s;
  padding: 0.4rem 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out-quint);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* -----------------------------------------------------------------------
   HERO
   ----------------------------------------------------------------------- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

/* Color tint layer */
.hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 10, 0.25);
  z-index: 1;
}

/* Vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8, 9, 10, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 950px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  opacity: 0 !important;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  /* Reduced from 2.5rem */
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.12);
}

.hero-badge svg {
  opacity: 0.8;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--clr-text);
  margin-bottom: 1.2rem;
  /* Reduced from 2rem */
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  will-change: transform;
}

.hero-title .em {
  font-style: italic;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(240, 238, 232, 0.65);
  margin-bottom: 2rem;
  /* Reduced from 3rem */
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero morphing shapes */
.hero-shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  pointer-events: none;
  will-change: transform;
  animation: morph 12s ease-in-out infinite alternate;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-duration: 14s;
  z-index: 2;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 139, 141, 0.08) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-duration: 18s;
  animation-delay: -6s;
  z-index: 2;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
  }

  100% {
    border-radius: 70% 30% 50% 50% / 50% 50% 70% 30%;
  }
}

/* Horizontal golden line */
.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.2;
  z-index: 11;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 11;
  opacity: 0;
}

.scroll-track {
  width: 1px;
  height: 60px;
  background: rgba(240, 238, 232, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-thumb {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-gold);
  animation: scroll-run 2s ease-in-out infinite;
  border-radius: 1px;
}

@keyframes scroll-run {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

.scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

/* -----------------------------------------------------------------------
   ABOUT SECTION
   ----------------------------------------------------------------------- */
.about {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-2) 50%, var(--clr-bg) 100%);
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text>*+* {
  margin-top: 2rem;
}

.about-text .section-title {
  margin-top: 0.8rem;
}

.about-divider {
  width: 60px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin-top: 2rem;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

/* Info list with glass cards */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem 1.8rem;
  border-radius: var(--r-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(8px);
  transition: background 0.4s, border-color 0.4s, transform 0.5s var(--ease-spring), box-shadow 0.4s;
  cursor: default;
}

.info-item:hover {
  background: var(--clr-surface-2);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.4s;
}

.info-item:hover .info-icon {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.info-icon svg {
  color: var(--gold);
}

.info-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.3rem;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* About images mosaic */
.about-images {
  position: relative;
  height: 640px;
}

.img-wrapper {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  will-change: transform;
}

.img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 1;
}

.img-wrapper:hover::after {
  opacity: 1;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-quint);
}

.img-wrapper:hover img {
  transform: scale(1.06);
}

.img-1 {
  width: 68%;
  height: 78%;
  top: 0;
  right: 0;
  z-index: 1;
  box-shadow: var(--shadow-deep);
}

.img-2 {
  width: 50%;
  height: 58%;
  bottom: -5%;
  left: 0;
  z-index: 2;
  border: 6px solid var(--clr-bg);
  box-shadow: var(--shadow-deep);
}

/* Floating accent */
.about-float-badge {
  position: absolute;
  bottom: 20%;
  right: -2%;
  z-index: 3;
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(8, 9, 10, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-glass);
  text-align: center;
  animation: badge-float 4s ease-in-out infinite alternate;
}

.about-float-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.about-float-badge .badge-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

@keyframes badge-float {
  0% {
    transform: translateY(0) rotate(-1deg);
  }

  100% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* -----------------------------------------------------------------------
   GASTRONOMY — 3D CAROUSEL
   ----------------------------------------------------------------------- */
.carousel-3d-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-2);
}

.carousel-3d-section::before,
.carousel-3d-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
  z-index: 5;
  pointer-events: none;
}

.carousel-3d-section::before {
  top: 0;
}

.carousel-3d-section::after {
  bottom: 0;
}

.ground-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 400px;
  background: radial-gradient(ellipse at center bottom,
      rgba(201, 168, 76, 0.08) 0%,
      rgba(26, 139, 141, 0.04) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.carousel-3d-header {
  margin-bottom: 5rem;
  text-align: center;
}

.carousel-3d-header .s-label {
  justify-content: center;
}

/* Remove the left decorative line when centred */
.carousel-3d-header .s-label::before {
  display: none;
}

.carousel-3d-header .section-title {
  margin-top: 0.8rem;
}

.carousel-3d-header .section-desc {
  margin-top: 1.5rem;
  margin-inline: auto;
}

/* ── Stage ─────────────────────────────── */
.carousel-stage-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
  perspective-origin: 50% 42%;
  user-select: none;
  cursor: grab;
}

.carousel-stage-wrap:active {
  cursor: grabbing;
}

/* Side fade masks */
.carousel-stage-wrap .fade-left,
.carousel-stage-wrap .fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 10;
  pointer-events: none;
}

.carousel-stage-wrap .fade-left {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg-2) 0%, transparent 100%);
}

.carousel-stage-wrap .fade-right {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg-2) 0%, transparent 100%);
}

/* ── Rotating ring ──────────────────────── */
.carousel-ring {
  position: relative;
  width: 260px;
  height: 370px;
  transform-style: preserve-3d;
  will-change: transform;
  /* NO transition here — GSAP controls this */
}

/* ── Card face ──────────────────────────── */
.c3d-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  backface-visibility: hidden;
  transition: box-shadow 0.55s ease;
  transform-style: preserve-3d;
}

.c3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.c3d-card:hover img {
  transform: scale(1.07);
}

/* Bottom gradient */
.c3d-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 9, 10, 0.94) 0%,
      rgba(8, 9, 10, 0.3) 48%,
      transparent 72%);
  z-index: 1;
  border-radius: 22px;
  transition: opacity 0.5s;
}

/* Active card — gold glow crown */
.c3d-card.is-active {
  box-shadow:
    0 0 0 1.5px rgba(201, 168, 76, 0.7),
    0 50px 100px rgba(0, 0, 0, 0.85),
    0 0 80px rgba(201, 168, 76, 0.3),
    0 0 200px rgba(201, 168, 76, 0.12);
}

.c3d-card.is-active img {
  transform: scale(1.04);
}

/* Gold corner shine — active only */
.c3d-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  z-index: 3;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.35) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  border-radius: 22px 0 0 0;
}

.c3d-card.is-active::before {
  opacity: 1;
}

/* ── Caption ────────────────────────────── */
.c3d-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem 1.8rem 1.8rem;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}

.c3d-card.is-active .c3d-caption {
  transform: translateY(0);
}

.c3d-tag {
  display: block;
  width: fit-content;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.32);
  padding: 0.22rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s 0.06s, transform 0.4s 0.06s;
}

.c3d-card.is-active .c3d-tag {
  opacity: 1;
  transform: translateY(0);
}

.c3d-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.15;
}

.c3d-desc {
  font-size: 0.85rem;
  color: rgba(240, 238, 232, 0.62);
  margin-top: 0.4rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.12s, transform 0.4s 0.12s;
}

.c3d-card.is-active .c3d-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ─────────────────────────── */
.carousel-3d-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 10;
}

.c3d-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.4s,
    border-color 0.4s,
    box-shadow 0.4s,
    transform 0.4s var(--ease-spring);
}

.c3d-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.65);
  box-shadow: var(--glow-gold), 0 12px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.06);
}

.c3d-btn:active {
  transform: scale(0.95);
}

/* Dots */
.carousel-3d-dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.c3d-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.45s var(--ease-spring);
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.c3d-dot.is-active {
  width: 30px;
  border-radius: 4px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.65);
}

/* Drag hint */
.carousel-drag-hint {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  opacity: 0.5;
  pointer-events: none;
  white-space: nowrap;
}

.carousel-drag-hint svg {
  animation: drag-pulse 2s ease-in-out infinite;
}

@keyframes drag-pulse {

  0%,
  100% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
  .carousel-stage-wrap {
    height: 340px;
    perspective: 800px;
  }

  .carousel-ring {
    width: 200px;
    height: 280px;
  }

  .c3d-title {
    font-size: 1.1rem;
  }

  .carousel-stage-wrap .fade-left,
  .carousel-stage-wrap .fade-right {
    width: 40px;
  }
}

/* -----------------------------------------------------------------------
   MARQUEE STRIP
   ----------------------------------------------------------------------- */
.marquee-section {
  padding: 2.5rem 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-run 22s linear infinite;
  will-change: transform;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--clr-bg);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.marquee-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--clr-bg);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes marquee-run {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* -----------------------------------------------------------------------
   HIGHLIGHTS
   ----------------------------------------------------------------------- */
.highlights {
  padding: var(--section-pad) 0;
  position: relative;
}

.highlights-header {
  text-align: center;
  margin-bottom: 6rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--clr-bg-2);
  will-change: transform;
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-md) + 1px);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.3), transparent 40%, transparent 60%, rgba(26, 139, 141, 0.2));
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 4;
  pointer-events: none;
}

.highlight-card:hover::before {
  opacity: 1;
}

.h-card-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 640px;
}

.h-card-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: 310px;
}

.h-card-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 310px;
}

.h-card-4 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  height: 370px;
}

.card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-quint);
}

.highlight-card:hover .card-bg img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--grad-card);
  transition: background 0.6s ease;
}

.highlight-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(8, 9, 10, 0.97) 0%, rgba(8, 9, 10, 0.4) 55%, transparent 100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  z-index: 3;
  color: var(--clr-text);
}

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

.highlight-card:hover .card-tag {
  opacity: 1;
  transform: translateY(0);
}

.card-content h4 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  transform: translateY(15px);
  transition: transform 0.5s var(--ease-out-quint);
}

.highlight-card:hover .card-content h4 {
  transform: translateY(0);
}

.card-content p {
  font-size: 0.9rem;
  color: rgba(240, 238, 232, 0.7);
  max-width: 380px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s 0.05s, transform 0.5s 0.05s var(--ease-out-quint);
  line-height: 1.6;
}

.highlight-card:hover .card-content p {
  opacity: 1;
  transform: translateY(0);
}

.card-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 9, 10, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: opacity 0.4s, transform 0.5s var(--ease-spring);
  color: var(--gold);
}

.highlight-card:hover .card-arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* -----------------------------------------------------------------------
   FOOTER — CTA
   ----------------------------------------------------------------------- */
.footer {
  position: relative;
  padding: 8rem 0 0;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.4);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 9, 10, 0.2) 0%,
      rgba(8, 9, 10, 0.5) 30%,
      rgba(13, 17, 23, 0.97) 100%);
  z-index: 1;
}

/* Teal aurora in footer */
.footer-glow {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(26, 139, 141, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.footer-content {
  position: relative;
  z-index: 2;
  color: var(--clr-text);
}

.footer-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 7rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}

.footer-title .em {
  display: block;
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.footer-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 3rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}

.f-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2), 0 0 40px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s;
}

.f-logo img:hover {
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.4), var(--glow-gold);
}

.f-info {
  display: flex;
  gap: 3rem;
}

.f-info-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color 0.3s;
}

.f-info-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.f-info-item:hover {
  color: var(--clr-text);
}

.f-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  transition: all 0.4s var(--ease-out-quint);
}

.f-social .social-link:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.07);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.15);
}

.footer-credits {
  text-align: center;
  padding: 1.8rem 0;
  font-size: 0.8rem;
  color: rgba(240, 238, 232, 0.3);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* -----------------------------------------------------------------------
   MAGNETIC HOVER ELEMENTS
   ----------------------------------------------------------------------- */
[data-magnetic] {
  display: inline-block;
  will-change: transform;
}

/* -----------------------------------------------------------------------
   REVEAL ANIMATIONS
   ----------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="scale"] {
  transform: scale(0.9);
}

/* -----------------------------------------------------------------------
   FLOATING PARTICLES (canvas-based, JS driven)
   ----------------------------------------------------------------------- */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

/* -----------------------------------------------------------------------
   SECTION DIVIDERS
   ----------------------------------------------------------------------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin: 0;
}

/* -----------------------------------------------------------------------
   GLASS STAT CARDS (optional future use)
   ----------------------------------------------------------------------- */
.glass-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  backdrop-filter: blur(16px);
  padding: 2rem;
  transition: background 0.4s, border-color 0.4s, transform 0.5s var(--ease-spring);
}

.glass-card:hover {
  background: var(--clr-surface-2);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* -----------------------------------------------------------------------
   RESPONSIVE DESIGN
   ----------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-pad: 7rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .about-text {
    order: 2;
  }

  .about-images {
    order: 1;
    height: 500px;
  }

  .about-float-badge {
    right: 2%;
  }

  .footer-bottom {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
  }

  .f-info {
    grid-column: 1 / -1;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 5rem;
  }

  .nav {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

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

  .h-card-1,
  .h-card-2,
  .h-card-3,
  .h-card-4 {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 320px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .f-info {
    justify-content: center;
  }

  .f-logo {
    display: flex;
    justify-content: center;
  }

  .f-social {
    display: flex;
    justify-content: center;
  }

  .about-images {
    height: 420px;
  }

  .about-float-badge {
    display: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .f-info {
    flex-direction: column;
    gap: 0.8rem;
  }

  /* Faster marquee on mobile */
  .marquee-track {
    animation-duration: 12s;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* -----------------------------------------------------------------------
   GSAP WILL-CHANGE OPTIMIZATION
   ----------------------------------------------------------------------- */
.loader,
.hero-img,
.hero-content,
.hero-bg,
.img-wrapper,
.highlight-card .card-bg,
.footer-bg,
.about-text>* {
  will-change: transform, opacity;
}