/* ============================================
   CHILUDOS Fine Street Tacos
   Professional Restaurant Website Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors - from logo */
  --red-primary: #B22222;
  --red-dark: #8B1A1A;
  --red-deep: #6B1515;
  --red-light: #D4413B;
  --red-glow: rgba(178, 34, 34, 0.15);
  --green-accent: #2E7D32;
  --green-light: #4CAF50;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --cream: #FFF8F0;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --charcoal: #2D2D2D;

  /* Warm accents */
  --gold: #D4A843;
  --gold-light: #F0D78C;
  --orange-warm: #E8712B;

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

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-red: 0 10px 40px rgba(178, 34, 34, 0.25);

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: #1a0808;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
  touch-action: manipulation;
}

button {
  touch-action: manipulation;
}

ul { list-style: none; }

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

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.btn--outline,
.btn--outline:visited {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline-dark {
  background: transparent;
  color: var(--red-primary);
  border: 2px solid var(--red-primary);
}

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

@media (hover: hover) {
  .btn--primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(178, 34, 34, 0.35);
  }

  .btn--outline:hover {
    background: var(--white);
    color: var(--red-primary);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .btn--outline-dark:hover {
    background: var(--red-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
  }

  .btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }
}

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

.cta__actions .btn--outline,
.cta__actions .btn--outline:visited,
.cta__actions .btn--outline:link {
  color: #FFFFFF;
}

@media (hover: hover) {
  .cta__actions .btn--outline:hover {
    color: var(--red-primary);
    background: var(--white);
    border-color: var(--white);
  }
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

/* ---------- Logo Images ---------- */
.navbar__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.navbar__logo-img {
  height: 50px;
  width: auto;
  transition: all var(--transition-smooth);
}

/* Show white logo on dark hero, hide color logo */
.navbar__logo-white {
  display: block;
}

.navbar__logo-color {
  display: none;
}

/* On scroll: show color logo, hide white logo */
.navbar.scrolled .navbar__logo-white {
  display: none;
}

.navbar.scrolled .navbar__logo-color {
  display: block;
}

.navbar.scrolled .navbar__logo-img {
  height: 42px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .navbar__link {
  color: var(--gray-700);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: width var(--transition-smooth);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--red-primary);
}

.navbar__cta {
  padding: 10px 28px;
  background: var(--red-primary);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

@media (hover: hover) {
  .navbar__cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
  }
}

.navbar__cta::after {
  display: none;
}

/* Mobile Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.navbar__toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.navbar.scrolled .navbar__toggle span {
  background: var(--gray-800);
}

.navbar__toggle.active span {
  background: var(--white) !important;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(178, 34, 34, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

@media (hover: hover) {
  .mobile-menu a:hover {
    color: var(--gold-light);
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a0808;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__bg-slide.active {
  opacity: 1;
}

.hero__bg-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Subtle dark overlay for when real photos are added */
  background: linear-gradient(
    180deg,
    rgba(15, 5, 5, 0.4) 0%,
    rgba(15, 5, 5, 0.2) 50%,
    rgba(15, 5, 5, 0.5) 100%
  );
  z-index: 2;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(20px, 4vw, 60px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}

.hero__badge-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.hero__badge-text {
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero__logo {
  margin: 0 auto 16px;
  max-width: 500px;
  width: 80%;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  animation: fadeInUp 1s ease 0.4s both;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-accent);
  animation: fadeInUp 1s ease 1s both;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: var(--red-dark);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 999;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.announcement-bar a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(240, 215, 140, 0.4);
  text-underline-offset: 3px;
}

.announcement-bar a:hover {
  text-decoration-color: var(--gold-light);
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--white);
  padding: 0;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 44px 20px;
  position: relative;
}

.trust-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 28%;
  height: 44%;
  width: 1px;
  background: var(--gray-200);
}

.trust-strip__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red-primary);
  line-height: 1;
  letter-spacing: -0.5px;
}

.trust-strip__star {
  color: var(--gold);
  font-size: 0.65em;
  vertical-align: middle;
  margin-left: 2px;
}

.trust-strip__pct {
  font-size: 0.6em;
  color: var(--red-light);
  font-weight: 600;
  vertical-align: super;
  margin-left: 1px;
}

.trust-strip__divider {
  width: 28px;
  height: 2px;
  background: var(--red-primary);
  border-radius: 2px;
  opacity: 0.35;
}

.trust-strip__label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- About Section ---------- */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__content {
  position: relative;
}

.about__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about__highlight {
  background: var(--red-glow);
  border-left: 4px solid var(--red-primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}

.about__highlight p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gray-800);
  line-height: 1.7;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
}

.about__feature i {
  color: var(--red-primary);
  font-size: 0.85rem;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

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

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

.about__image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border: 4px solid var(--red-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--red-primary);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  text-align: center;
}

.about__image-badge .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about__image-badge .text {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ---------- Menu Section ---------- */
.menu {
  padding: var(--section-padding) 0;
  background: var(--off-white);
  position: relative;
}

.menu__header {
  text-align: center;
  margin-bottom: 60px;
}

.menu__header .section-subtitle {
  margin: 0 auto;
}

.menu__categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.menu__cat-btn {
  padding: 10px 24px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.menu__cat-btn:hover,
.menu__cat-btn.active {
  color: var(--white);
  background: var(--red-primary);
  border-color: var(--red-primary);
  box-shadow: var(--shadow-red);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.menu__card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid var(--gray-100);
}

.menu__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.menu__card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

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

.menu__card:hover .menu__card-image img {
  transform: scale(1.08);
}

.menu__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red-primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu__card-body {
  padding: 20px;
}

.menu__card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.menu__card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.menu__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu__card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red-primary);
}

.menu__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--green-accent);
  font-weight: 600;
}

.menu__cta {
  text-align: center;
}

/* ---------- Featured / Parallax Section ---------- */
.featured {
  position: relative;
  padding: 100px 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(178, 34, 34, 0.92), rgba(139, 26, 26, 0.92));
}

.featured__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.featured__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.featured__text {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.featured__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.featured__stat {
  text-align: center;
}

.featured__stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.featured__stat-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 8px;
}

/* ---------- Reviews Section ---------- */
.reviews {
  padding: var(--section-padding) 0;
  background: var(--white);
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews__header .section-subtitle {
  margin: 0 auto;
}

.reviews__overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.reviews__overall-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.reviews__overall-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 600;
}

.reviews__slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform var(--transition-slow);
}

.reviews__card {
  min-width: 100%;
  padding: 0 20px;
}

.reviews__card-inner {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  border: 1px solid var(--gray-100);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.reviews__card-quote {
  font-size: 3rem;
  color: var(--red-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.reviews__card-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.reviews__card-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 28px;
}

.reviews__card-author {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.reviews__card-source {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.reviews__dot.active {
  background: var(--red-primary);
  transform: scale(1.2);
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.reviews__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  transition: all var(--transition-smooth);
}

.reviews__nav-btn:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: var(--white);
}

/* ---------- Hours & Location ---------- */
.location {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.location__block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.location__block-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-glow);
  border-radius: var(--radius-md);
  color: var(--red-primary);
  font-size: 1.1rem;
}

.location__block-content h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.location__block-content p,
.location__block-content a:not(.btn) {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.location__block-content a:not(.btn):hover {
  color: var(--red-primary);
}

.hours-table {
  width: 100%;
  margin-top: 8px;
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  gap: 16px;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table .day {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.93rem;
  min-width: 110px;
}

.hours-table .time {
  color: var(--red-primary);
  font-weight: 600;
  font-size: 0.93rem;
  white-space: nowrap;
  text-align: right;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
  min-height: 450px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

/* ---------- CTA Section ---------- */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta__text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.cta__phone {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  display: block;
}

.cta__phone:hover {
  color: var(--gold-light);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  max-width: 200px;
  opacity: 0.85;
}

.footer__desc {
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: all var(--transition-smooth);
}

.footer__social a:hover {
  background: var(--red-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__col a:hover {
  color: var(--red-light);
  padding-left: 4px;
}

.footer__col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__col .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__col .footer-contact-item i {
  color: var(--red-primary);
  margin-top: 3px;
  min-width: 16px;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.82rem;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.82rem;
}

.footer__bottom-links a:hover {
  color: var(--red-light);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  z-index: 900;
  cursor: pointer;
}

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

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.45s ease-out;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.45s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: all 0.45s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered reveal */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  max-width: 250px;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

.loader__bar {
  width: 160px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.loader__bar-inner {
  height: 100%;
  width: 40%;
  background: var(--red-primary);
  border-radius: 4px;
  animation: loading 1.2s ease infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about__grid {
    gap: 50px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .featured__stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__item:not(:last-child)::after {
    display: none;
  }

  .trust-strip__item {
    padding: 28px 16px;
  }

  .trust-strip__value {
    font-size: 2rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-wrapper {
    order: -1;
  }

  .about__image img {
    height: 350px;
  }

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

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

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

  .location__map {
    min-height: 300px;
  }

  .location__map iframe {
    min-height: 300px;
  }

  .reviews__card-inner {
    padding: 32px 20px;
  }

  .reviews__card-text {
    font-size: 1.05rem;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .featured__stats {
    gap: 30px;
  }

  .featured__stat-value {
    font-size: 2.2rem;
  }

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

@media (max-width: 480px) {
  .trust-strip__item {
    padding: 22px 10px;
  }

  .trust-strip__value {
    font-size: 1.7rem;
  }

  .trust-strip__label {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

  .hero__logo {
    max-width: 300px;
  }

  .menu__categories {
    gap: 6px;
  }

  .menu__cat-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

/* Print Styles */
@media print {
  .navbar, .back-to-top, .hero__scroll, .loader {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
