:root {
  --lp-bg: #060b18;
  --lp-surface: #0f172a;
  --lp-card: #111827;
  --lp-border: rgba(148, 163, 184, 0.14);
  --lp-text: #e2e8f0;
  --lp-muted: #94a3b8;
  --lp-accent: #38bdf8;
  --lp-accent-2: #818cf8;
  --lp-glow: rgba(56, 189, 248, 0.35);
  --lp-radius: 20px;
  --lp-font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.landing-body {
  margin: 0;
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  overflow-x: hidden;
}

.container-xl {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  min-height: 96px;
  background: rgba(6, 11, 24, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
}

.brand-mark.sm { width: 32px; height: 32px; font-size: 0.95rem; border-radius: 10px; }

.nav-links {
  gap: 28px;
}

.nav-links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn-nav {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-nav.ghost {
  color: var(--lp-muted);
  border: 1px solid var(--lp-border);
}

.btn-nav.ghost:hover { color: #fff; border-color: rgba(255,255,255,0.25); }

.btn-nav.primary {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #0f172a;
}

.btn-nav.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--lp-glow);
}

/* Hero — full viewport */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(96px + 28px) 0 40px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero > .hero-grid {
  flex: 1;
  align-self: center;
  min-height: calc(100vh - 96px - 68px);
  min-height: calc(100dvh - 96px - 68px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(56, 189, 248, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(129, 140, 248, 0.15), transparent 45%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(6, 182, 212, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148,163,184,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  gap: clamp(24px, 3vw, 40px) clamp(28px, 4vw, 56px);
  align-items: center;
  width: min(1440px, 94vw);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--lp-accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.hero-sub {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 100%;
  margin: 0 0 16px;
  font-weight: 500;
}

.hero-lead {
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 100%;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.2s ease;
  font-family: inherit;
}

.btn-hero.primary {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #0f172a;
}

.btn-hero.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--lp-glow);
  color: #0f172a;
}

/* Hero highlights — full-width scrolling ticker */
.hero-highlights-ticker {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  width: 100vw;
  max-width: 100vw;
  margin: 8px 0 0 calc(50% - 50vw);
  padding: 14px 0;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid var(--lp-border);
  background: rgba(6, 11, 24, 0.92);
  overflow: hidden;
}

.hero-highlights-label {
  flex: 0 0 auto;
  margin: 0;
  padding-left: max(16px, calc((100vw - min(1440px, 94vw)) / 2 + 16px));
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-muted);
  white-space: nowrap;
}

.hero-highlights-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.hero-highlights-track {
  display: flex;
  width: max-content;
  animation: hero-highlights-marquee 36s linear infinite;
  will-change: transform;
}

.hero-highlights-track:hover {
  animation-play-state: paused;
}

.hero-highlights-set {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

.hero-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--lp-text);
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-highlight-pill i {
  color: var(--lp-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

@keyframes hero-highlights-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-highlights-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 16px 8px;
  }

  .hero-highlights-set[aria-hidden='true'] {
    display: none;
  }

  .hero-highlights-marquee {
    mask-image: none;
  }
}

@media (max-width: 768px) {
  .hero-highlights-ticker {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 0 12px;
  }

  .hero-highlights-label {
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }

  .hero-highlights-track {
    animation-duration: 28s;
  }
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 6px 22px;
  margin-bottom: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-search i { color: var(--lp-muted); font-size: 1.1rem; }

.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 16px 0;
  font-size: 1rem;
  font-family: inherit;
}

.hero-search input::placeholder { color: #64748b; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: rgba(15, 23, 42, 0.6);
  color: var(--lp-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
}

.chip:hover, .chip.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  color: var(--lp-accent);
}

/* Hero banner carousel — right column, auto-rotates via landing.js */
.hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  min-height: 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-carousel-slideshow {
  position: relative;
  flex: 1;
  min-height: clamp(380px, 62vh, 720px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  background: var(--lp-card);
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  pointer-events: none;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 6s ease-out;
}

.hero-carousel-slide.is-active img {
  transform: scale(1.05);
}

.hero-carousel-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a5f, #0ea5e9);
}

.hero-carousel-slide figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.92) 100%);
  text-align: left;
}

.hero-carousel-slide figcaption strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.hero-carousel-slide figcaption span {
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.9rem;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  border: none;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.hero-carousel-dot:hover {
  background: rgba(148, 163, 184, 0.55);
}

.hero-carousel-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--lp-accent);
}

/* Stats */
.stats-strip {
  padding: 0 0 60px;
  margin-top: -20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
}

.stat-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--lp-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span {
  color: var(--lp-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Sections */
.section-block {
  padding: 80px 0;
}

.section-block.alt-bg {
  background: rgba(15, 23, 42, 0.45);
}

.section-head {
  margin-bottom: 40px;
  max-width: 560px;
}

.section-label {
  color: var(--lp-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-head p { color: var(--lp-muted); margin: 0; line-height: 1.6; }

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.category-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
  transition: 0.25s ease;
  width: 100%;
}

.category-tile:hover, .category-tile.active {
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.12);
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.12);
  display: grid;
  place-items: center;
  color: var(--lp-accent);
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}

.category-icon img { width: 100%; height: 100%; object-fit: cover; }

.category-tile h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
}

.category-tile span { color: var(--lp-muted); font-size: 0.85rem; }

.category-arrow {
  margin-left: auto;
  color: var(--lp-muted);
  transition: transform 0.2s;
}

.category-tile:hover .category-arrow { transform: translateX(4px); color: var(--lp-accent); }

/* Business cards */
.category-section { margin-bottom: 48px; }

.category-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-border);
}

.category-section-head h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.section-cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.category-section-head span { color: var(--lp-muted); font-size: 0.9rem; }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.biz-card {
  --biz-card-media-h: 200px;
  position: relative;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: 0.3s ease;
}

.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  border-color: rgba(56, 189, 248, 0.3);
}

.biz-card.hidden-card { display: none; }

.biz-card-media {
  position: relative;
  height: var(--biz-card-media-h);
  background: #1e293b;
  overflow: hidden;
}

.biz-card-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.biz-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.85s ease;
  z-index: 0;
  pointer-events: none;
}

.biz-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.biz-card-placeholder.biz-slide {
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: #475569;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.3s ease;
}

.slide-dot.active {
  width: 18px;
  border-radius: 999px;
  background: var(--lp-accent);
}

.slide-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  color: #e2e8f0;
  backdrop-filter: blur(6px);
}

.biz-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.badge-pill.featured {
  background: rgba(251, 191, 36, 0.9);
  color: #422006;
}

.badge-pill.verified {
  background: rgba(34, 197, 94, 0.9);
  color: #052e16;
}

/* Owner avatar — centered on image/body seam, half in each */
.biz-card-owner-avatar {
  position: absolute;
  right: 14px;
  top: var(--biz-card-media-h);
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--lp-card);
  background: #1e293b;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 6;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.biz-card-owner-avatar img,
.biz-card-owner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e2e8f0;
}

.biz-card-owner-initials {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--lp-accent);
  line-height: 1;
}

.biz-card-body {
  padding: 20px 14px 16px 20px;
  position: relative;
}

.biz-card-owner-label,
.biz-card-body h3,
.biz-card-meta,
.biz-card-desc {
  padding-right: 88px;
}

.biz-card-owner-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--lp-accent);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.biz-card-body h3 {
  margin: 4px 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

.biz-card-meta {
  color: var(--lp-muted);
  font-size: 0.88rem;
  margin: 0 0 8px;
}

.biz-card-desc {
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 14px;
}

.biz-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding-right: 0;
}

.photo-count {
  color: var(--lp-muted);
  font-size: 0.82rem;
  flex: 1;
  min-width: 0;
}

.btn-view {
  margin-left: auto;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  background: rgba(56, 189, 248, 0.15);
  color: var(--lp-accent);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s;
}

.btn-view:hover {
  background: var(--lp-accent);
  color: #0f172a;
}


/* Gallery spotlight + ticker */
.gallery-spotlight {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 16px;
  margin-bottom: 28px;
}

.gallery-spotlight-slideshow {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
}

.gallery-spotlight-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  z-index: 0;
}

.gallery-spotlight-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.gallery-spotlight-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-spotlight-slide figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.spotlight-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-accent);
}

.spotlight-view {
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  background: var(--lp-accent);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}

.gallery-spotlight-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.55;
  transition: 0.2s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--lp-accent);
}

.gallery-ticker-wrap {
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.gallery-ticker {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.gallery-ticker img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Gallery masonry */
.masonry-gallery {
  columns: 4;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--lp-border);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.gallery-item figcaption strong {
  display: block;
  font-size: 0.9rem;
}

.gallery-item figcaption span {
  font-size: 0.78rem;
  color: var(--lp-muted);
}

/* CTA & footer */
.cta-band {
  padding: 60px 0 80px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(129,140,248,0.2));
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.cta-inner h2 { margin: 0 0 8px; font-weight: 800; }
.cta-inner p { margin: 0; color: var(--lp-muted); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--lp-glow);
  color: #0f172a;
}

.btn-cta.light { flex-shrink: 0; }

.site-footer {
  padding: 24px 0 28px;
  background: var(--lp-bg);
  border-top: 1px solid var(--lp-border);
  color: var(--lp-text);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.site-footer .footer-brand {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer .footer-brand:hover {
  opacity: 0.88;
}

.site-footer .jcom-logo--footer {
  height: 68px;
  max-height: 68px;
  width: auto;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--lp-muted);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.footer-rs-logo {
  display: inline-block;
  line-height: 0;
  background: #000;
  border-radius: 10px;
  padding: 8px 12px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-rs-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer-rs-logo img {
  display: block;
  width: auto;
  max-width: min(220px, 40vw);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.footer-dev {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.footer-dev a {
  color: var(--lp-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-dev a:hover {
  color: var(--lp-accent);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-copy {
    font-size: 0.82rem;
  }
}

.empty-state, .empty-note, .no-results {
  text-align: center;
  padding: 48px 24px;
  color: var(--lp-muted);
}

.empty-state i, .no-results i {
  font-size: 3rem;
  color: #475569;
  display: block;
  margin-bottom: 16px;
}

.no-results.hidden { display: none; }

.category-section.hidden-section { display: none; }

/* Modal */
.biz-modal .modal-dialog {
  max-width: 920px;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
}

.biz-modal .modal-content {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  color: var(--lp-text);
}

/* Full modal scroll + themed scrollbar */
.biz-modal-scroll {
  max-height: calc(100vh - 2rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.35) rgba(15, 23, 42, 0.5);
}

.biz-modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.biz-modal-scroll::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.35);
  border-radius: 0 20px 20px 0;
}

.biz-modal-scroll::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.35);
  border-radius: 99px;
}

.biz-modal-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(56, 189, 248, 0.55);
}

.modal-hero-wrap {
  position: relative;
  flex-shrink: 0;
}

.modal-hero {
  height: 280px;
  background: linear-gradient(135deg, #1e293b, #334155);
  background-size: cover;
  background-position: center;
}

.modal-body-wrap {
  position: relative;
  padding: 0 28px 32px;
}

.modal-profile-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: -48px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--lp-border);
}

.modal-profile-aside {
  flex: 0 0 auto;
}

.modal-profile-main {
  flex: 1;
  min-width: 0;
  /* Clear hero banner so Owner label sits on dark body background */
  padding: 52px 0 6px;
}

.modal-owner-head {
  margin-bottom: 8px;
}

.modal-owner-label {
  margin: 0 0 2px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-muted);
}

.modal-owner-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lp-accent);
  line-height: 1.2;
}

.modal-business-section {
  padding-top: 0;
}

.modal-section-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-muted);
  margin: 0 0 6px;
}

.modal-profile-main .modal-section-title {
  margin-top: 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.modal-close:hover {
  background: rgba(15, 23, 42, 0.95);
}

.modal-logo {
  position: relative;
  left: 0;
  bottom: auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--lp-card);
  border: 4px solid var(--lp-surface);
  margin: 0;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: var(--lp-accent);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.modal-logo img { width: 100%; height: 100%; object-fit: cover; }

.modal-owner-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modal-owner-inline img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.modal-badges { display: flex; gap: 8px; margin: 12px 0; flex-wrap: wrap; }

#modalTitle { margin: 0 0 4px; font-weight: 800; font-size: 1.6rem; }

.modal-business-section #modalTitle { margin-top: 0; }

.modal-desc { color: var(--lp-muted); line-height: 1.6; }

.modal-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.modal-detail-item--full {
  grid-column: 1 / -1;
}

.modal-detail-item {
  min-width: 0;
  padding: 0;
}

.modal-detail-item small {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--lp-muted);
  margin-bottom: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-detail-item small i {
  font-size: 0.75rem;
  color: var(--lp-accent);
}

.modal-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
  color: var(--lp-text);
}

.modal-detail-item strong a {
  color: var(--lp-accent);
  text-decoration: none;
}

.modal-detail-item strong a:hover {
  text-decoration: underline;
}

.modal-profile-main .modal-social {
  display: flex;
  gap: 8px;
  margin: 10px 0 0;
  flex-wrap: wrap;
}

.modal-profile-main .modal-social a {
  width: 34px;
  height: 34px;
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .modal-profile-header {
    gap: 14px;
    align-items: flex-start;
  }

  .modal-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .modal-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -44px;
  }

  .modal-profile-main {
    width: 100%;
    padding-top: 8px;
  }

  .modal-owner-head {
    margin-bottom: 8px;
  }

  .modal-details {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .modal-detail-item small {
    justify-content: flex-start;
  }

  .modal-profile-main .modal-social {
    justify-content: center;
  }
}

.modal-social { display: flex; gap: 10px; margin-bottom: 20px; }

.modal-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--lp-accent);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.1rem;
}

.modal-gallery-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.modal-gallery-stage {
  position: relative;
}

.modal-gallery-stage:has(.modal-gallery-slideshow) {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  overflow: hidden;
}

.modal-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.modal-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: 0.2s ease;
}

.modal-gallery-dot.active,
.modal-gallery-dot:hover {
  background: var(--lp-accent);
}

.modal-gallery-dot:disabled {
  cursor: default;
  opacity: 0.5;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.modal-gallery.modal-gallery-slideshow {
  position: relative;
  height: min(420px, 55vh);
  min-height: 320px;
  display: block;
  background: transparent;
  border: none;
}

.modal-gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.modal-gallery-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.modal-gallery:not(.modal-gallery-slideshow) img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  cursor: pointer;
}

.modal-gallery.empty-gallery {
  color: var(--lp-muted);
  font-size: 0.9rem;
  padding: 12px 0;
}

/* Animations */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.js-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay { transition-delay: 0.15s; } 

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.whatsapp-float__label {
  padding: 10px 16px;
  background: #fff;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
}

.whatsapp-float__label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}

.whatsapp-float:hover .whatsapp-float__label,
.whatsapp-float:focus-visible .whatsapp-float__label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float__btn,
.whatsapp-float:focus-visible .whatsapp-float__btn {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero > .hero-grid {
    min-height: 0;
  }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: center; }
  .hero-visual { justify-content: center; }
  .hero-carousel { min-height: 0; }
  .hero-carousel-slideshow {
    min-height: clamp(280px, 50vh, 440px);
    flex: none;
  }

  .gallery-spotlight { grid-template-columns: 1fr; }
  .gallery-spotlight-thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
  }
  .gallery-thumb img { width: 88px; height: 64px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-gallery { columns: 2; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
  .nav-links { display: none !important; }
  .nav-actions { display: none; }
  .masonry-gallery { columns: 1; }
  .biz-grid { grid-template-columns: 1fr; }
}
