/* south-bay.css — overrides + new components for /south-bay/ */

/* Header — add a subtle local indicator */
.nav-link-meta {
  color: var(--muted) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

/* Featured strip */
.featured-strip {
  padding: 64px 0 48px;
  background: var(--bg);
}
.featured-strip .section-head {
  margin-bottom: 32px;
  text-align: center;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.featured-tile {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.featured-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ft-video-wrap {
  display: block;
  background: var(--bg-dark);
  aspect-ratio: 9 / 16;
  position: relative;
}
.ft-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.ft-meta {
  padding: 16px 18px;
  border-top: 1px solid var(--hairline);
}
.ft-name {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ft-name-muted {
  color: var(--muted);
  font-style: italic;
  font-weight: 600;
}
.ft-city {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: var(--muted);
}
.ft-tagline {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

/* Empty (placeholder) tiles */
.featured-tile-empty .ft-empty-frame {
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border: 2px dashed var(--hairline);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
  padding: 0 16px;
}
.ft-empty-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.ft-empty-sub {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.featured-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 1rem;
}
.featured-foot .text-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--accent);
  padding-bottom: 1px;
}
.featured-foot .text-cta:hover { color: var(--accent-hover); }

/* Why-hub section */
.why-hub {
  padding: 64px 0 48px;
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.why-hub .section-head {
  text-align: center;
  margin-bottom: 36px;
}
.why-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.why-grid li {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.why-grid li strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Get-featured section */
.get-featured {
  padding: 64px 0 56px;
  background: var(--bg);
}
.get-featured .section-head {
  text-align: center;
  margin-bottom: 28px;
}
.gf-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .gf-form {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: stretch;
  }
}
.gf-form input[type="text"],
.gf-form input[type="email"] {
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  font-family: inherit;
  min-height: 48px;
}
.gf-form button {
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--cta);
  color: var(--cta-text);
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 120ms ease;
}
.gf-form button:hover { background: var(--cta-hover); }
.gf-micro {
  margin-top: 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Final CTA tighten */
.cta-band .btn-primary {
  margin-top: 16px;
  min-width: 280px;
}
