/* ==========================================================================
   Cars & Coffee — style.css
   Mobile-first, dark theme, multi-page site
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom properties (design tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-bg:          #0A0A0A;
  --color-bg-alt:      #111111;
  --color-bg-card:     #1A1A1A;
  --color-bg-elevated: #222222;
  --color-green:       #1B3D2F;
  --color-green-light: #2D5A44;
  --color-gold:        #C9A96E;
  --color-gold-light:  #DDBF87;
  --color-leather:     #8B5E3C;
  --color-text:        #F5F0EB;
  --color-text-muted:  #9B958E;
  --color-text-dim:    #948D85;
  --color-wa-green:    #25D366;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width:    1200px;
  --navbar-h:     68px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-full:  9999px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

address {
  font-style: normal;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for dark backgrounds */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Skip navigation link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-gold);
  color: #0A0A0A;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0.75rem; }

/* --------------------------------------------------------------------------
   3. Utility classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 600px) {
  .container {
    padding-inline: 2rem;
  }
}

@media (min-width: 900px) {
  .container {
    padding-inline: 3rem;
  }
}

.section {
  padding-block: var(--space-xl);
}

@media (min-width: 900px) {
  .section {
    padding-block: var(--space-2xl);
  }
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-fast),
              box-shadow var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background-color: var(--color-gold);
  color: #0A0A0A;
  border: 2px solid var(--color-gold);
}

.btn--gold:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid rgba(245, 240, 235, 0.4);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.15);
}

/* --------------------------------------------------------------------------
   5. Section shared styles
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.section-title-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-full);
  margin: 0.75rem auto 0;
}

.section-subtitle {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  overflow-wrap: break-word;
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.25;
}

/* --------------------------------------------------------------------------
   6. Scroll reveal animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --------------------------------------------------------------------------
   7. NAVBAR
   -------------------------------------------------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-base),
              backdrop-filter var(--transition-base),
              box-shadow var(--transition-base);
}

#site-header.scrolled {
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
  height: var(--navbar-h);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 600px) {
  .navbar__inner {
    padding-inline: 2rem;
  }
}

@media (min-width: 900px) {
  .navbar__inner {
    padding-inline: 3rem;
  }
}

/* Brand */
.navbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}

.navbar__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.navbar__brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Desktop nav links */
.navbar__links {
  display: none;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .navbar__links {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* Reserve button */
.navbar__reserve {
  display: none;
  font-size: 0.8rem;
  padding: 0.55rem 1.25rem;
}

@media (min-width: 900px) {
  .navbar__reserve {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base),
              opacity var(--transition-base);
  transform-origin: center;
}

/* Hamburger → X transform */
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-md) 1.5rem var(--space-lg);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-md);
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

.mobile-menu__cta {
  width: 100%;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   8. HERO — CSS-only cinematic dark hero, no background image
   -------------------------------------------------------------------------- */

/* ---- Keyframes ---- */
@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes particleFloat {
  0%   { transform: translateY(0);        opacity: 0; }
  8%   { opacity: 0.45; }
  88%  { opacity: 0.18; }
  100% { transform: translateY(-100vh);   opacity: 0; }
}

@keyframes horizonPulse {
  0%, 100% { opacity: 0.22; }
  50%       { opacity: 0.48; }
}

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

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

/* ---- Base hero container ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;

  /* Slow-shifting dark gradient — warm gold undertones like light on a dark car surface */
  background: linear-gradient(
    135deg,
    #0A0A0A    0%,
    #0F0D0A   25%,
    #141008   50%,
    #0D0B08   75%,
    #0A0A0A  100%
  );
  background-size: 400% 400%;
  animation: heroGradient 18s ease infinite;
}

/* ---- Blueprint grid overlay ---- */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ---- Gold horizon line ---- */
.hero__horizon {
  position: absolute;
  top: 62%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold) 30%,
    var(--color-gold) 70%,
    transparent 100%
  );
  animation: horizonPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ---- Floating gold particles ---- */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__particle {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  /* Use GPU-only properties: transform + opacity */
  will-change: transform, opacity;
  animation: particleFloat linear infinite;
}

/* 20 particles — each with unique x position, duration, delay, and size */
.hero__particle:nth-child(1)  { left: 5%;  animation-duration: 13s; animation-delay: 0s;    width: 2px; height: 2px; }
.hero__particle:nth-child(2)  { left: 12%; animation-duration: 17s; animation-delay: 1.5s;  width: 3px; height: 3px; }
.hero__particle:nth-child(3)  { left: 19%; animation-duration: 11s; animation-delay: 3.2s;  width: 2px; height: 2px; }
.hero__particle:nth-child(4)  { left: 26%; animation-duration: 19s; animation-delay: 0.8s;  width: 3px; height: 3px; }
.hero__particle:nth-child(5)  { left: 33%; animation-duration: 14s; animation-delay: 5.1s;  width: 2px; height: 2px; }
.hero__particle:nth-child(6)  { left: 40%; animation-duration: 16s; animation-delay: 2.3s;  width: 4px; height: 4px; }
.hero__particle:nth-child(7)  { left: 47%; animation-duration: 12s; animation-delay: 7.0s;  width: 2px; height: 2px; }
.hero__particle:nth-child(8)  { left: 54%; animation-duration: 20s; animation-delay: 1.0s;  width: 3px; height: 3px; }
.hero__particle:nth-child(9)  { left: 61%; animation-duration: 15s; animation-delay: 4.4s;  width: 2px; height: 2px; }
.hero__particle:nth-child(10) { left: 68%; animation-duration: 10s; animation-delay: 6.7s;  width: 3px; height: 3px; }
.hero__particle:nth-child(11) { left: 73%; animation-duration: 18s; animation-delay: 2.9s;  width: 2px; height: 2px; }
.hero__particle:nth-child(12) { left: 79%; animation-duration: 13s; animation-delay: 0.4s;  width: 4px; height: 4px; }
.hero__particle:nth-child(13) { left: 85%; animation-duration: 16s; animation-delay: 8.2s;  width: 2px; height: 2px; }
.hero__particle:nth-child(14) { left: 91%; animation-duration: 11s; animation-delay: 3.6s;  width: 3px; height: 3px; }
.hero__particle:nth-child(15) { left: 9%;  animation-duration: 22s; animation-delay: 5.8s;  width: 2px; height: 2px; }
.hero__particle:nth-child(16) { left: 22%; animation-duration: 14s; animation-delay: 9.1s;  width: 3px; height: 3px; }
.hero__particle:nth-child(17) { left: 37%; animation-duration: 19s; animation-delay: 1.7s;  width: 2px; height: 2px; }
.hero__particle:nth-child(18) { left: 58%; animation-duration: 12s; animation-delay: 6.3s;  width: 3px; height: 3px; }
.hero__particle:nth-child(19) { left: 77%; animation-duration: 17s; animation-delay: 4.0s;  width: 2px; height: 2px; }
.hero__particle:nth-child(20) { left: 95%; animation-duration: 15s; animation-delay: 10.5s; width: 3px; height: 3px; }

/* ---- Hero content ---- */
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--navbar-h) + 3rem);
  padding-bottom: 8rem;
  text-align: center;
}

/* ---- Brand display typography ---- */
.hero__brand {
  margin: 0 0 var(--space-lg) 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.hero__brand-main {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

.hero__brand-main--first {
  animation: textReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero__brand-main--second {
  animation: textReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.hero__brand-amp {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  color: var(--color-gold);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: block;
  margin: 0.2em 0;
  opacity: 0;
  transform: translateY(16px);
  animation: textReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
  will-change: transform, opacity;
}

.hero__tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--color-text-muted);
  margin: 0 auto var(--space-lg);
  max-width: 52ch;
  line-height: 1.7;
  opacity: 0;
  animation: textReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
  will-change: opacity;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  opacity: 0;
  animation: textReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
  will-change: opacity;
}

/* ---- Stats bar ---- */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(10, 10, 10, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-block: 1.25rem;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding-inline: var(--space-md);
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
}

.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(201, 169, 110, 0.25);
}

/* ---- Scroll indicator ---- */
.hero__scroll {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text-muted);
  border: 1px solid rgba(245, 240, 235, 0.2);
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), border-color var(--transition-fast);
  animation: scrollBounce 2s ease infinite;
}

.hero__scroll:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.hero__scroll-arrow {
  font-size: 1.1rem;
}

/* ---- Responsive breakpoints ---- */
@media (max-width: 599px) {
  .hero__brand-main { letter-spacing: 0.1em; }
  .hero__stats-inner { gap: 0; padding-block: 0.875rem; }
  .hero__stat { padding-inline: var(--space-sm); }
  .hero__stat-divider { display: none; }
  .hero__stat-label { font-size: 0.75rem; }
  .hero__scroll { bottom: 7rem; }

  /* Reduce particle count on mobile — hide half the particles */
  .hero__particle:nth-child(odd):nth-child(n+5) { display: none; }
}

@media (max-width: 400px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   9. ABOUT
   -------------------------------------------------------------------------- */
.about {
  background-color: var(--color-bg-alt);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-elevated);
  background-color: var(--color-bg-card);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.about__image-wrap:hover .about__image {
  transform: scale(1.03);
}

.about__body {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 65ch;
  margin-bottom: var(--space-sm);
}

.about__body em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-gold);
}

.about__body:last-child {
  margin-bottom: 0;
}

/* Feature cards */
.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .about__features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 600px) {
  .about__features {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (min-width: 900px) {
  .about__features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.08);
  transform: translateY(-3px);
}

.feature-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.625rem;
}

.feature-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.375rem;
  font-family: var(--font-body);
}

.feature-card__desc {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. MENU
   -------------------------------------------------------------------------- */
.menu-section {
  background-color: var(--color-bg);
}

/* Tabs */
.menu__tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.menu__tabs::-webkit-scrollbar { display: none; }

.menu__tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 1.25rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  flex: 1;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
}

.menu__tab:hover {
  color: var(--color-text);
}

.menu__tab--active,
.menu__tab[aria-selected="true"] {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

@media (min-width: 600px) {
  .menu__tabs { justify-content: center; }
  .menu__tab { flex: none; }
}

/* Panels */
.menu__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.menu__panel[hidden] {
  display: none;
}

@media (min-width: 600px) {
  .menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

@media (min-width: 900px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

/* Menu cards */
.menu-card {
  position: relative;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-base);
  opacity: 0;
  transform: translateY(16px);
}

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

.menu-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.menu-card--featured {
  border-color: rgba(201, 169, 110, 0.3);
}

.menu-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A0A0A;
  background-color: var(--color-gold);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.625rem;
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: 0.5rem;
}

.menu-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-gold);
}

.menu-card__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.menu-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Menu CTA */
.menu__cta-wrap {
  text-align: center;
  margin-top: var(--space-xl);
}

/* --------------------------------------------------------------------------
   11. GALLERY
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--color-bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 600px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .gallery__item--wide {
    grid-column: span 2;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-card);
  aspect-ratio: 4 / 3;
}

.gallery__item--wide {
  aspect-ratio: 16 / 9;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--transition-slow);
}

/* Caption overlay */
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 0.75rem;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, transparent 100%);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .gallery__caption {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
  }
}

/* Instagram CTA */
.gallery__ig-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  text-align: center;
}

.gallery__ig-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   12. EVENTS
   -------------------------------------------------------------------------- */
.events-section {
  background-color: var(--color-bg);
}

.events__card {
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-elevated));
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .events__card {
    padding: var(--space-xl);
  }
}

.events__card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .events__card-inner {
    flex-direction: row;
    align-items: flex-start;
  }
}

.events__icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}

.events__card-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.events__card-body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 65ch;
  margin-bottom: var(--space-sm);
}

.events__card-body:last-of-type {
  margin-bottom: var(--space-md);
}

.events__cta {
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--color-bg-alt);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.07);
}

.review-card__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.review-card__text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-md);
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.review-card__source {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

/* --------------------------------------------------------------------------
   14. CONTACT & MAP
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--color-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

  .contact__col--map {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr 1.2fr;
    align-items: start;
  }

  .contact__col--map {
    grid-column: auto;
  }
}

.contact__col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

/* Hours */
.hours-status {
  margin-bottom: var(--space-sm);
}

.hours-status__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
}

.hours-status__badge--open {
  background-color: rgba(27, 61, 47, 0.6);
  color: #4CAF7D;
  border: 1px solid rgba(76, 175, 125, 0.3);
}

.hours-status__badge--closed {
  background-color: rgba(80, 20, 20, 0.5);
  color: #E07070;
  border: 1px solid rgba(224, 112, 112, 0.3);
}

.hours-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hours-status__badge--open .hours-status__dot {
  background-color: #4CAF7D;
  box-shadow: 0 0 6px #4CAF7D;
  animation: pulse-green 2s ease infinite;
}

.hours-status__badge--closed .hours-status__dot {
  background-color: #E07070;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hours__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-sm);
}

.hours__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  padding-block: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
}

.hours__day {
  color: var(--color-text-muted);
}

.hours__time {
  color: var(--color-text);
  font-weight: 500;
  text-align: right;
}

.hours__item--highlight .hours__day,
.hours__item--highlight .hours__time {
  color: var(--color-gold);
}

.hours__note {
  font-size: 0.78rem;
  color: var(--color-text-dim);
  font-style: italic;
}

@media (max-width: 599px) {
  .hours__item { gap: 0.5rem; font-size: 0.8rem; }
  .hours__time { font-size: 0.8rem; flex-shrink: 0; }
}

/* Contact info */
.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.contact__info-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.05rem;
}

.contact__link {
  color: var(--color-gold);
  transition: color var(--transition-fast);
  display: inline-block;
  padding-block: 0.375rem;
}

.contact__link:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Map */
.map__wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: var(--shadow-card);
}

.map__iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.3) brightness(0.85);
}

@media (min-width: 600px) {
  .map__iframe {
    height: 320px;
  }
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-bg);
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.125rem;
}

.footer__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__social-link {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

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

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: var(--space-sm);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer__link:hover {
  color: var(--color-gold);
  padding-left: 0.375rem;
}

.footer__address {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.footer__wa-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-wa-green);
  transition: color var(--transition-fast);
}

.footer__wa-link:hover {
  color: #4DE880;
}

/* Footer bottom */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

@media (min-width: 600px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.footer__credit {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

/* --------------------------------------------------------------------------
   16. FLOATING BUTTONS
   -------------------------------------------------------------------------- */
.float-btn {
  position: fixed;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

/* WhatsApp */
.float-btn--wa {
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.5rem + env(safe-area-inset-right, 0px));
  background-color: var(--color-wa-green);
  color: #fff;
  animation: waPulse 2.4s ease infinite;
}

.float-btn--wa:hover {
  background-color: #1fba5a;
  animation: none;
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  60%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll to top */
.float-btn--top {
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  left: calc(1.5rem + env(safe-area-inset-left, 0px));
  background-color: var(--color-bg-elevated);
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--color-gold);
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.float-btn--top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.float-btn--top:hover {
  background-color: var(--color-bg-card);
  border-color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   17. Deal Banner
   -------------------------------------------------------------------------- */
.deal-banner {
  background: linear-gradient(135deg, var(--color-green) 0%, rgba(27, 61, 47, 0.8) 100%);
  padding-block: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.deal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.deal-banner__content {
  position: relative;
  z-index: 1;
}

.deal-banner__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-xs);
}

.deal-banner__price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.deal-banner__desc {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.deal-banner__note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   18. Car Club Section
   -------------------------------------------------------------------------- */
.car-club-section {
  background-color: var(--color-bg-alt);
  text-align: center;
}

.car-club__content {
  max-width: 700px;
  margin-inline: auto;
}

.car-club__body {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.car-club__body:last-of-type {
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   19. Menu Sample Badge
   -------------------------------------------------------------------------- */
.menu__sample-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   20. Reviews CTA
   -------------------------------------------------------------------------- */
.reviews__cta {
  text-align: center;
  margin-top: var(--space-lg);
}

.reviews__note {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   21. Section eyebrow (shared)
   -------------------------------------------------------------------------- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-xs);
}

/* --------------------------------------------------------------------------
   22. Print styles
   -------------------------------------------------------------------------- */
@media print {
  #site-header,
  .float-btn,
  .hero__scroll,
  .map__wrap {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 12pt;
  }

  .section {
    padding-block: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: #fff !important;
    animation: none !important;
  }

  .hero__grid,
  .hero__horizon,
  .hero__particles {
    display: none;
  }

  .hero__brand-main,
  .hero__brand-amp,
  .hero__tagline,
  .hero__ctas {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    color: #111 !important;
  }

  .hero__content {
    color: #111;
    padding-top: 0;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }
}

/* --------------------------------------------------------------------------
   23. PAGE HEADER BANNER (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  background-color: var(--color-bg-alt);
  padding-top: calc(var(--navbar-h) + 3rem);
  padding-bottom: 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.page-header__subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   24. TEASER SECTION (home page about teaser)
   -------------------------------------------------------------------------- */
.teaser-section {
  background-color: var(--color-bg-alt);
  text-align: center;
}

.teaser {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.teaser__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 60ch;
}
