/* ============================================
   LANDING PAGE
   Purpose: Styles for landing.ejs
   ============================================ */

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-image: url('https://res.cloudinary.com/dwlib8nke/image/upload/v1781203534/tacotruck_wbao4x.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 8s ease;
  will-change: transform, background-position;
}

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

.hero-bg.kenburns {
  animation: kenBurns 28s ease-in-out infinite;
}

@keyframes kenBurns {
  0%   { transform: scale(1.00) translate(0,      0);     }
  25%  { transform: scale(1.05) translate(-0.8%,  0.4%);  }
  50%  { transform: scale(1.08) translate( 0.5%, -0.5%);  }
  75%  { transform: scale(1.04) translate(-0.4%,  0.8%);  }
  100% { transform: scale(1.00) translate(0,      0);     }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg.kenburns { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.15) 30%,
    rgba(0,0,0,0.6) 70%,
    rgba(0,0,0,0.92) 100%
  );
}

/* Ambient gold glow from bottom */
.hero-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--page-px);
  max-width: 700px;
  width: 100%;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.65s both;
}

.hero-title .gold-word {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.8s both;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.95s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: calc(var(--bottom-nav-h) + 28px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 1.6s ease infinite;
}

@keyframes scrollBob {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ── Services Preview ─────────────────────────────────────────────────────────── */
.services-strip {
  background: var(--bg-secondary);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.service-card-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 260px;
  display: block;
  text-decoration: none;
  background: var(--bg-elevated);
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.82) 100%
  );
  transition: background 0.35s ease;
}

.service-card-preview:hover .service-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.88) 100%
  );
}

.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  z-index: 1;
}

.service-card-name {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
  margin-bottom: 14px;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-card-preview:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Gallery Slider Section heading ──────────────────────────────────────────── */
.gallery-slider-section .section-heading {
  padding: 0 var(--page-px);
}

.gallery-slider-section .gallery-view-all {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ── Featured Menu ────────────────────────────────────────────────────────────── */
.featured-menu-section {
  background: var(--cream);
  padding: 72px 0;
}

.featured-menu-section .section-heading h2 {
  color: var(--text-dark);
}

.featured-menu-section .section-label {
  color: var(--gold-dark);
}

.featured-menu-section .section-heading p {
  color: var(--text-dark-2);
}

.menu-cards-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px var(--page-px) 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.menu-cards-scroll:active {
  cursor: grabbing;
}

.menu-cards-scroll::-webkit-scrollbar {
  display: none;
}

.menu-card-preview {
  flex: 0 0 calc(100vw - 70px);
  max-width: 290px;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  position: relative;
  background: #1a1007;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-card-preview:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,0.4);
}

/* Image fills card with aspect ratio */
.mcp-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0f0a03;
}

.mcp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.55s ease;
}

.menu-card-preview:hover .mcp-img img {
  transform: scale(1.07);
}

/* Vignette: dark top + dark bottom, food clear in the middle */
.mcp-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.78) 0%,  rgba(0,0,0,0) 44%),
    linear-gradient(to bottom, rgba(0,0,0,0)    44%, rgba(0,0,0,0.65) 70%, rgba(0,0,0,0.93) 100%);
  pointer-events: none;
}

/* Category chip — gold on dark */
.mcp-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #1a1007;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
  z-index: 3;
  line-height: 1.5;
}

/* Spice dots — top right */
.mcp-spice {
  position: absolute;
  top: 17px;
  right: 14px;
  display: flex;
  gap: 4px;
  z-index: 3;
}

.mcp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 8px rgba(231,76,60,0.75);
}

.mcp-dot-off {
  background: rgba(255,255,255,0.22);
  box-shadow: none;
}

/* Text block on the gradient */
.mcp-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px 20px;
  z-index: 3;
}

.mcp-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.mcp-price {
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
}

/* Arrow CTA — appears on hover */
.mcp-arrow {
  position: absolute;
  bottom: 20px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1007;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  z-index: 4;
  opacity: 0;
  transform: scale(0.65) translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-card-preview:hover .mcp-arrow {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Menu Slider Controls ─────────────────────────────────────────────────────── */
.mcs-wrapper {
  position: relative;
}


.mcs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,39,0.35);
  background: rgba(255,255,255,0.96);
  color: var(--gold-dark);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: background 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, box-shadow 0.22s ease,
              transform 0.22s ease, opacity 0.22s ease;
}
.mcs-arrow:hover {
  background: var(--gold);
  color: #1a1007;
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,162,39,0.4);
  transform: translateY(-50%) scale(1.1);
}
.mcs-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.mcs-arrow--prev { left: 16px; }
.mcs-arrow--next { right: 16px; }

.mcs-footer {
  padding: 4px var(--page-px) 0;
}

.mcs-progress-wrap {
  height: 3px;
  background: rgba(0,0,0,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 10px;
}

.mcs-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  border-radius: 99px;
  transition: width 0.12s ease;
}

.mcs-swipe-hint {
  text-align: center;
  color: var(--text-dark-2);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin: 0;
}

@media (min-width: 600px) {
  .menu-card-preview {
    flex: 0 0 calc(44vw);
    max-width: 340px;
  }
  .mcs-swipe-hint { display: none; }
}

@media (min-width: 900px) {
  .menu-card-preview {
    flex: 0 0 260px;
    max-width: none;
  }
  .menu-cards-scroll {
    padding: 16px 72px 24px;
  }
  .mcs-arrow { display: flex; }
}

@media (min-width: 1200px) {
  .menu-card-preview { flex: 0 0 280px; }
  .menu-cards-scroll {
    justify-content: center;
    justify-content: safe center;
  }
}

/* ── Location Section ─────────────────────────────────────────────────────────── */
.location-section {
  background: var(--bg-secondary);
  padding: 72px 0;
}

.location-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Cards */
.loc-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.loc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.loc-card-body {
  flex: 1;
  min-width: 0;
}

.loc-card-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #86efac;
}

.open-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}

.closed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #fca5a5;
}

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

.location-map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.loc-map-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
  white-space: nowrap;
}

.loc-map-btn:hover {
  background: rgba(0,0,0,0.9);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-closed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
}

.map-closed-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.map-closed-icon { font-size: 2rem; line-height: 1; }

.map-closed-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Featured Partner Spotlight ──────────────────────────────────────────────── */
.ally-section {
  position: relative;
  background: #060606;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 48px;
}

.ally-section-head {
  text-align: center;
  padding: 48px var(--page-px) 28px;
}

.ally-section-head h2 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 6px;
}

.ally-section-head p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}

/* Stage */
.ally-stage-wrap {
  padding: 0 var(--page-px);
}

.ally-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ally-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
  min-height: 420px;
}

.ally-card.active {
  opacity: 1;
  pointer-events: all;
}

.ally-card.exit {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ally-card-inner {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

/* Image panel */
.ally-visual {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.ally-visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ally-visual-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.ally-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,6,6,0.85) 100%);
  pointer-events: none;
}

/* Text panel */
.ally-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px 28px;
  background: #0d0d0d;
}

.ally-kicker {
  display: none;
}

.ally-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px;
}

.ally-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ally-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ally-cta:hover {
  background: #fff;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.ally-ctas-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ally-name-link {
  text-decoration: none;
}

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

.ally-profile-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.ally-visual[href] {
  cursor: pointer;
  display: block;
  text-decoration: none;
}

/* Dots */
.ally-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 18px 0 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.ally-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.ally-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Section-level CTA */
.ally-section-cta {
  text-align: center;
  padding: 24px 0 0;
}

/* ── Negocios preview (landing) ──────────────────────────────────────────────── */
.negocios-preview {
  background: var(--bg-secondary);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.negocios-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-px);
}
.negocios-preview-head {
  text-align: center;
  margin-bottom: 36px;
}
.negocios-preview-head h2 {
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.negocios-preview-head p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.negocios-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .negocios-preview-grid { grid-template-columns: repeat(4, 1fr); }
}
.negocios-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--t-normal);
  display: flex;
  flex-direction: column;
}
.negocios-preview-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.negocios-preview-img {
  height: 120px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.negocios-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.negocios-preview-card:hover .negocios-preview-img img { transform: scale(1.05); }
.negocios-preview-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.negocios-preview-name {
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.negocios-preview-cta {
  text-align: center;
  margin-top: 28px;
}

/* ── Desktop: compact split ──────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .ally-stage       { min-height: 300px; }
  .ally-card        { min-height: 300px; }
  .ally-card-inner  { flex-direction: row; height: 300px; }

  .ally-visual {
    flex: 0 0 52%;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.06);
  }

  .ally-visual-overlay { background: none; }

  .ally-panel {
    flex: 1;
    padding: 28px 32px;
    justify-content: center;
  }

  .ally-name {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 10px;
  }

  .ally-desc {
    font-size: 13px;
    max-width: 40ch;
    margin-bottom: 18px;
  }

  .ally-cta { padding: 10px 24px; font-size: 12px; }
}

/* ── Desktop overrides ────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card-preview { min-height: 340px; }

  .location-inner {
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
  }

  .location-info { flex: 1; }
  .location-map  { flex: 1; height: auto; min-height: 420px; }
}

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

/* ── Landing hours chips ─────────────────────────────────────────────────────── */
.location-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.location-cta-btn {
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

/* ── Gallery slider lightbox ─────────────────────────────────────────────────── */
.slb-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.slb-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.slb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 90vw;
}

.slb-img {
  max-width: 88vw;
  max-height: 80svh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.93);
  transition: transform 0.3s ease;
  display: block;
}

.slb-backdrop.open .slb-img {
  transform: scale(1);
}

.slb-caption {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  text-align: center;
  margin: 0;
  min-height: 1em;
}

.slb-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease;
  z-index: 10;
}

.slb-close:hover { background: rgba(255,255,255,0.2); }

.slb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease;
  z-index: 10;
}

.slb-arrow:hover { background: var(--gold); color: #000; }
.slb-prev { left: 12px; }
.slb-next { right: 12px; }

@media (min-width: 768px) {
  .slb-prev { left: 24px; }
  .slb-next { right: 24px; }
}

.landing-addr-link {
  display: inline-block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: text-decoration-color 0.2s;
}

.landing-addr-link:hover {
  text-decoration-color: rgba(255,255,255,0.7);
}

.landing-hours-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.lhl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.lhl-row:last-child { border-bottom: none; }

.lhl-day {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.lhl-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.lhl-row--closed .lhl-day {
  color: var(--text-muted);
  font-weight: 600;
}

.lhl-row--closed .lhl-time {
  color: var(--text-primary);
  font-weight: 600;
}

.landing-hours-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0;
}
