/* ============================================
   SC2NY RC Shop — Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --red: #CC1A1A;
  --red-hover: #e02020;
  --black: #0D0D0D;
  --off-white: #F5F5F5;
  --dark-gray: #1A1A1A;
  --blue: #1C4FC4;
  --white: #FFFFFF;

  --font-heading: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--white);
}

.section-subheading {
  text-align: center;
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: 2px solid transparent;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(204, 26, 26, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.15rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-social {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 4px;
}

.nav-social a {
  color: var(--off-white);
  transition: color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
}

.nav-social a:hover {
  color: var(--red);
  transform: scale(1.15);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--off-white);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-call-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-call-btn:hover {
  background-color: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(204, 26, 26, 0.4);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ============================================
   HERO SECTION (Carousel)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 70px;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 500px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide--logo {
  flex-direction: column;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide-bg--dark {
  background: var(--black);
}

.hero-slide-bg--logo {
  background-color: var(--white);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.5) 0%,
    rgba(13, 13, 13, 0.7) 50%,
    rgba(13, 13, 13, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.hero-slide.active .hero-content {
  animation: fadeUp 0.8s ease-out;
}

.hero-content--logo {
  margin-top: auto;
  padding-bottom: 80px;
}

.hero-slide--logo .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.5) 0%,
    rgba(13, 13, 13, 0.7) 50%,
    rgba(13, 13, 13, 0.92) 100%
  );
}

/* Spanish badge */
.hero-spanish-badge {
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 10;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: none;
  -webkit-text-stroke: 1px var(--black);
  paint-order: stroke fill;
}

.hero-sub {
  -webkit-text-stroke: 0.5px var(--black);
  paint-order: stroke fill;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #ccc;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Carousel Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: rgba(204, 26, 26, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow--left {
  left: 20px;
}

.hero-arrow--right {
  right: 20px;
}

/* Carousel Dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background-color: var(--dark-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--black);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  padding: 32px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Center the 5th (odd) card */
.services-grid .service-card:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

.services-cta-banner {
  background: var(--red);
  padding: 24px 32px;
  border-radius: 8px;
  text-align: center;
}

.services-cta-banner p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.services-cta-banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-cta-banner a:hover {
  text-decoration-thickness: 3px;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
  background-color: var(--black);
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.event-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.event-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--dark-gray);
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid var(--red);
}

.event-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.event-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}

.event-when {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.event-where {
  color: #999;
  font-size: 0.85rem;
}

.events-disclaimer {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.events-social {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.events-social a {
  color: var(--off-white);
  transition: color 0.25s ease, transform 0.25s ease;
}

.events-social a:hover {
  color: var(--red);
  transform: scale(1.15);
}

.events-photo {
  border-radius: 12px;
  overflow: hidden;
}

.events-photo img,
.events-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================================
   HOURS & LOCATION
   ============================================ */
.hours {
  background-color: var(--dark-gray);
}

.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.hours-table td {
  padding: 12px 16px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--white);
}

.hours-table td:last-child {
  text-align: right;
  color: #ccc;
}

.appointment-note {
  background: rgba(204, 26, 26, 0.1);
  border: 1px solid rgba(204, 26, 26, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.appointment-note p {
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.6;
}

.appointment-note a {
  color: var(--red);
  font-weight: 600;
}

.hours-address {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: var(--white);
}

.hours-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  background: var(--black);
}

.hours-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: 12px;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background-color: var(--black);
}

.video-wrapper {
  max-width: 800px;
  margin: 32px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* ============================================
   SHOP GALLERY
   ============================================ */
.shop-gallery {
  background-color: var(--black);
}

.gallery-hint {
  text-align: center;
  color: rgba(245, 245, 245, 0.6);
  font-size: 0.9rem;
  margin-top: 8px;
}

.gallery-carousel {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  /* Soft fade at left/right edges so the seam looks intentional */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.gallery-track {
  width: 100%;
  overflow: hidden;
}

.gallery-track-inner {
  display: flex;
  width: max-content;
  animation: gallery-scroll 80s linear infinite;
  will-change: transform;
}

.gallery-track-inner:hover,
.gallery-track-inner:focus-within,
body.lightbox-open .gallery-track-inner {
  animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
  .gallery-track-inner {
    animation: none;
  }
  .gallery-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.gallery-item {
  flex: 0 0 auto;
  width: 360px;
  height: 260px;
  margin-right: 16px;
  border: none;
  padding: 0;
  background: var(--dark-gray);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(204, 26, 26, 0.25);
}

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

.gallery-item:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lightbox-fade 0.2s ease;
}

.lightbox[hidden] { display: none; }

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-counter {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 245, 245, 0.1);
  color: var(--off-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: var(--red);
}

.lightbox-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 245, 245, 0.1);
  color: var(--off-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.lightbox-arrow:hover {
  background: var(--red);
  transform: scale(1.08);
}

.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ============================================
   HOURS CTAs (book + call)
   ============================================ */
.hours-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================
   BOOK APPOINTMENT
   ============================================ */
.book {
  background-color: var(--dark-gray);
}

.book-form {
  max-width: 800px;
  margin: 32px auto 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.book-field {
  display: flex;
  flex-direction: column;
}

.book-field-full {
  grid-column: 1 / -1;
}

.book-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.book-field .req {
  color: var(--red);
}

.book-field input,
.book-field select,
.book-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--off-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 26, 26, 0.2);
}

.book-field textarea {
  resize: vertical;
  min-height: 100px;
}

.book-field input::placeholder,
.book-field textarea::placeholder {
  color: #777;
}

.book-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.book-submit {
  display: block;
  width: 100%;
}

.book-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  display: none;
}

.book-status.success {
  display: block;
  background: rgba(34, 139, 34, 0.15);
  border: 1px solid rgba(34, 139, 34, 0.5);
  color: #b8e8b8;
}

.book-status.error {
  display: block;
  background: rgba(204, 26, 26, 0.15);
  border: 1px solid rgba(204, 26, 26, 0.5);
  color: #f5a8a8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--dark-gray);
  border-top: 4px solid var(--red);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.footer-address {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: #aaa;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--red);
}

.footer-phone a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--red);
  letter-spacing: 1px;
}

.footer-phone a:hover {
  color: var(--red-hover);
}

.footer-hours-summary {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  color: #aaa;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  color: var(--red);
  transform: scale(1.15);
}

.footer-cta {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
}

/* ============================================
   FLOATING CALL BUTTON (mobile only)
   ============================================ */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--red);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(204, 26, 26, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 2s infinite;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(204, 26, 26, 0.6);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(204, 26, 26, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(204, 26, 26, 0.8); }
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 768px) {

  .section {
    padding: 60px 0;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-social {
    display: none;
  }

  .nav-call-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* Hero */
  .hero-carousel {
    height: calc(100vh - 70px);
  }

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

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

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .hero-arrow--left {
    left: 12px;
  }

  .hero-arrow--right {
    right: 12px;
  }

  .hero-spanish-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:nth-last-child(1):nth-child(odd) {
    max-width: 100%;
  }

  /* Events */
  .events-layout {
    grid-template-columns: 1fr;
  }

  .events-photo {
    order: -1;
  }

  /* Hours */
  .hours-layout {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-item {
    width: 280px;
    height: 220px;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
    margin: 0 6px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-nav ul {
    align-items: center;
  }

  /* Floating call btn */
  .floating-call-btn {
    display: flex;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hours-table td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }

  .gallery-item {
    width: 240px;
    height: 200px;
  }

  .gallery-track-inner {
    animation-duration: 60s;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-arrow {
    margin: 0 2px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

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

  .book-form {
    padding: 24px;
  }

  .hours-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hours-ctas .btn {
    width: 100%;
  }
}
