/* ============================================================
   STREET-14 DRIVE-IN — PREMIUM DESIGN SYSTEM
   Dark Luxury Theme with Amber/Gold Accents
   ============================================================ */

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

:root {
  /* Colors */
  --bg-primary: #050505;
  --bg-secondary: #0d0d0d;
  --bg-card: #121212;
  --bg-card-hover: #181818;
  --bg-glass: rgba(10, 10, 10, 0.85);
  --accent: #D4AF37;
  --accent-light: #E8CE71;
  --accent-dark: #A68521;
  --accent-glow: rgba(212, 175, 55, 0.15);
  --text-primary: #FDFBF7;
  --text-secondary: #A8A29E;
  --text-muted: #6B6560;
  --border: rgba(212, 175, 55, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.04);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Spacing */
  --section-pad: clamp(100px, 15vw, 180px);
  --container-max: 1280px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.25s var(--ease-out);
  --transition-medium: 0.5s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

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



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

/* ---- PREMIUM TYPOGRAPHY ---- */
.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out),
    border-color 0.3s, opacity 0.3s;
  opacity: 0.6;
}

body:hover .cursor {
  opacity: 1;
}

body .cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent);
}

body .cursor-follower.hover {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* ---- PRELOADER ---- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
}

.loader-s {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--text-primary);
}

.loader-14 {
  font-family: var(--font-mono);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--accent);
}

.loader-bar-track {
  width: 200px;
  height: 2px;
  background: var(--border-subtle);
  border-radius: 4px;
  margin: 0 auto 16px;
  overflow: hidden;
}

#loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 4px;
  transition: width 0.1s linear;
}

#loader-percent {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

/* ---- NAVBAR ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-medium);
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  z-index: 1001;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-accent {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition-medium);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  border: none;
  cursor: none;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  transform-origin: center;
}

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

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

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

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

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-bg-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.6) 40%,
      rgba(10, 10, 10, 0.92) 100%);
}

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

.hero-label {
  display: inline-block;
  margin-bottom: 24px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
}

.section-label-light {
  color: var(--accent-light);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.3em;
}

.word {
  display: inline-block;
  transform: translateY(110%);
}

.accent-word {
  color: var(--accent);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 14px 36px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  cursor: none;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  padding: 14px 36px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--border);
  transition: all var(--transition-fast);
  cursor: none;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.15);
}

.btn-large {
  padding: 18px 44px;
  font-size: 15px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ---- MARQUEE ---- */
.marquee-section {
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-muted);
  letter-spacing: 0.05em;
  animation: marqueeScroll 30s linear infinite;
  flex-shrink: 0;
}

.marquee-reverse .marquee-text {
  animation-direction: reverse;
  -webkit-text-stroke-color: var(--accent);
  opacity: 0.3;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

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

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

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-heading-light {
  color: var(--text-primary);
}

.section-body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 20px;
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.feature-tag:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.feature-icon {
  font-size: 18px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid var(--border);
  pointer-events: none;
}

/* ---- STATS SECTION ---- */
.stats-section {
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  pointer-events: none;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat {
  padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all var(--transition-fast);
}

.stat:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(245, 166, 35, 0.1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--accent-light);
  margin-left: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ---- MENU BENTO ---- */
.menu-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}

.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-medium);
  cursor: none;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.bento-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 580px;
}

.bento-wide {
  grid-column: 2 / 4;
  background: linear-gradient(135deg, #1a2e1a 0%, #0d1f0d 100%);
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow);
}

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

.bento-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
}

.bento-veg {
  background: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bento-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.bento-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.bento-price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---- ACCORDION MENU ---- */
.accordion {
  max-width: 800px;
  margin: 48px auto 0;
}

.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  cursor: none;
  transition: color var(--transition-fast);
  text-align: left;
}

.accordion-header:hover {
  color: var(--accent);
}

.accordion-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.accordion-title {
  flex: 1;
}

.accordion-arrow {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--accent);
  transition: transform var(--transition-fast);
  font-weight: 300;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.menu-list {
  padding: 0 0 24px 42px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 15px;
  color: var(--text-secondary);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-price {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ---- EXPERIENCE / DRIVE-IN FLOW ---- */
.experience-intro {
  max-width: 600px;
  margin-bottom: 48px;
}

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

.flow-card {
  perspective: 1000px;
  height: 360px;
  cursor: none;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-out);
  transform-style: preserve-3d;
}

.flow-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.flip-front {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.flip-back {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--bg-primary);
  transform: rotateY(180deg);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.flow-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  right: 28px;
}

.flow-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.flow-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: none;
  transform-style: preserve-3d;
}

.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-wide {
  grid-column: 2 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  pointer-events: none;
  transition: border-color var(--transition-fast);
}

.gallery-item:hover::after {
  border-color: var(--accent);
}

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  padding: clamp(100px, 14vw, 200px) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.accent-text {
  color: var(--accent);
  font-style: italic;
}

.cta-section .section-body {
  max-width: 680px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- CONTACT BENTO ---- */
.contact-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px auto;
  gap: 16px;
  margin-top: 48px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  transition: all var(--transition-fast);
}

.contact-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.contact-map {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  padding: 8px;
  overflow: hidden;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-card p,
.contact-card a {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  display: block;
}

.contact-card a {
  transition: color var(--transition-fast);
}

.contact-card a:hover {
  color: var(--accent);
}

.open-now {
  color: #4ade80 !important;
  font-weight: 600;
  margin-top: 8px;
  font-size: 14px !important;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 32px;
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  grid-column: 1 / -1;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: none;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
}

/* ============================================================
   PREMIUM ANIMATIONS — Scroll Progress, Particles, Glows, Reveals
   ============================================================ */

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  z-index: 10001;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.6), 0 0 30px rgba(245, 166, 35, 0.3);
}

/* ---- FLOATING AMBIENT PARTICLES ---- */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
  box-shadow: 0 0 6px rgba(245, 166, 35, 0.4);
}

.particle:nth-child(1) {
  left: 10%;
  animation-duration: 18s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-duration: 22s;
  animation-delay: 2s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(3) {
  left: 35%;
  animation-duration: 25s;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 45%;
  animation-duration: 20s;
  animation-delay: 1s;
  width: 4px;
  height: 4px;
}

.particle:nth-child(5) {
  left: 55%;
  animation-duration: 28s;
  animation-delay: 3s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(6) {
  left: 65%;
  animation-duration: 19s;
  animation-delay: 5s;
}

.particle:nth-child(7) {
  left: 75%;
  animation-duration: 24s;
  animation-delay: 0.5s;
  width: 4px;
  height: 4px;
}

.particle:nth-child(8) {
  left: 85%;
  animation-duration: 21s;
  animation-delay: 6s;
}

.particle:nth-child(9) {
  left: 15%;
  animation-duration: 26s;
  animation-delay: 7s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(10) {
  left: 90%;
  animation-duration: 17s;
  animation-delay: 3.5s;
}

.particle:nth-child(11) {
  left: 50%;
  animation-duration: 23s;
  animation-delay: 8s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(12) {
  left: 30%;
  animation-duration: 27s;
  animation-delay: 1.5s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* ---- CARD LIGHT SWEEP ---- */
.bento-card::before,
.stat::before,
.flow-card::before,
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 166, 35, 0.06),
      rgba(245, 166, 35, 0.12),
      rgba(245, 166, 35, 0.06),
      transparent);
  transition: left 0.8s var(--ease-out);
  z-index: 3;
  pointer-events: none;
}

.bento-card:hover::before,
.stat:hover::before,
.flow-card:hover::before,
.contact-card:hover::before {
  left: 100%;
}

/* ---- ANIMATED GRADIENT BORDER ON STATS ---- */
.stat {
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(from var(--stat-angle, 0deg),
      transparent 0%,
      var(--accent) 10%,
      transparent 20%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: statBorderSpin 4s linear infinite;
}

.stat:hover::after {
  opacity: 1;
}

@property --stat-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes statBorderSpin {
  to {
    --stat-angle: 360deg;
  }
}

/* ---- BUTTON SHIMMER EFFECT ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 150%;
  }
}

/* ---- CTA GLOW PULSE ---- */
.cta-section {
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

/* ---- IMAGE REVEAL ANIMATION ---- */
.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  z-index: 5;
  transform-origin: right;
  border-radius: 20px;
}

.about-image.revealed::before {
  animation: imageReveal 1.2s var(--ease-out) forwards;
}

@keyframes imageReveal {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

/* ---- GALLERY HOVER ZOOM + CAPTION ---- */
.gallery-item {
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition-medium);
  border-radius: 16px;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.12) !important;
  filter: brightness(1.1) saturate(1.2);
}

/* ---- SECTION DIVIDER GLOW LINES ---- */
.section+.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

/* ---- ACCORDION SMOOTH ANIMATION ---- */
.accordion-item {
  transition: all 0.4s var(--ease-out);
}

.accordion-item:hover {
  background: rgba(245, 166, 35, 0.03);
}

.accordion-arrow {
  transition: transform 0.4s var(--ease-out), color 0.3s ease;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(45deg);
  color: var(--accent);
}

/* ---- FLOW CARD GLOW ON HOVER ---- */
.flow-card {
  position: relative;
}

.flow-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.flow-card:hover::after {
  opacity: 1;
}

/* ---- NAV LINK ACTIVE INDICATOR ---- */
.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  width: 100%;
}

/* ---- FOOTER REVEAL ANIMATION ---- */
.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.5;
}

/* ---- PRELOADER ENHANCED ---- */
.loader-brand {
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* ---- HERO VIGNETTE ---- */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

/* ---- FEATURE TAG GLOW ---- */
.feature-tag {
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(245, 166, 35, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-tag:hover::before {
  opacity: 1;
}

/* ---- SMOOTH TEXT SELECTION ---- */
::selection {
  background: rgba(245, 166, 35, 0.3);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(245, 166, 35, 0.3);
  color: var(--text-primary);
}


/* ---- CHATBOT STYLES ---- */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-light);
}

.chat-icon {
  font-size: 24px;
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
}

.chat-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  padding: 20px;
  background: rgba(245, 166, 35, 0.1);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.chat-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.chat-close:hover {
  color: var(--accent);
}

.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.chat-body::-webkit-scrollbar {
  width: 4px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.5;
  animation: messageSlide 0.3s ease forwards;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.bot-message {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.user-message {
  background: var(--accent);
  color: #000;
  font-weight: 500;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* CHAT FOOTER & INPUT */
.chat-footer {
  padding: 16px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 10, 10, 0.95);
}

.quick-replies {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  /* Firefox */
}

.quick-replies::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.quick-reply {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.quick-reply:hover {
  background: var(--accent-glow);
}

/* NEW: Chat Input Area */
.chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

#chat-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

#chat-input:focus {
  border-color: var(--accent);
}

#chat-input::placeholder {
  color: var(--text-muted);
}

#chat-submit {
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

#chat-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent-glow);
}

.chat-submit:active {
  transform: scale(0.95);
}

.typing {
  font-style: italic;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bento-large {
    grid-column: 1 / 2;
    grid-row: auto;
    min-height: 350px;
  }

  .bento-wide {
    grid-column: 1 / 3;
  }

  .contact-bento {
    grid-template-columns: 1fr 1fr;
  }

  .contact-map {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--transition-medium);
    border-left: 1px solid var(--border-subtle);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-heading {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    order: -1;
    max-height: 300px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .menu-bento {
    grid-template-columns: 1fr;
  }

  .bento-large {
    min-height: 300px;
  }

  .bento-wide {
    grid-column: auto;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-card {
    height: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-tall {
    grid-row: auto;
  }

  .gallery-wide {
    grid-column: 1 / 3;
  }

  .cta-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .contact-bento {
    grid-template-columns: 1fr;
  }

  .contact-map {
    grid-column: auto;
    grid-row: auto;
    height: 250px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .section-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .marquee-text {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat {
    padding: 20px 12px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .gallery-wide,
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }
}