/* =========================================================
   BUZZ LANDING
   VW ID. Buzz landing page — scoped to .buzz-* classes
   Reads design tokens from theme-dark.css
   ========================================================= */

/* =========================================================
   SECTION SHELL
   ========================================================= */

.buzz-section {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1rem, 4vw, 3rem);
}

.buzz-container {
  width: min(100%, 82rem);
  margin: 0 auto;
}

.buzz-section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-text-soft);
  margin-bottom: 0.6rem;
}

.buzz-section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--theme-text-strong);
  margin: 0 0 1rem;
  text-wrap: balance;
}

.buzz-section-intro {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--theme-text-muted);
  max-width: 52rem;
  margin: 0;
}

/* =========================================================
   HERO SUPPLEMENT
   VW brand badge — centered between copy and stat bar
   ========================================================= */

/* VW logo stat item inside the hero why-bar */
.buzz-why-stat--brand img {
  display: block;
  width: clamp(1.6rem, 2.5vw, 2.2rem);
  height: clamp(1.6rem, 2.5vw, 2.2rem);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

/* =========================================================
   UPGRADES SECTION
   ========================================================= */

.buzz-upgrades {
  /* background: var(--theme-page-bg); */
}

.buzz-upgrades__header {
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.buzz-upgrades__browse-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.62rem 1.1rem;
  border-radius: var(--theme-radius-pill);
  border: 1px solid var(--theme-border);
  background: var(--theme-surface-white-05);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--theme-text-main);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.buzz-upgrades__browse-link:hover {
  transform: translateY(-1px);
  background: var(--theme-surface-white-08);
  border-color: var(--theme-border-strong);
  color: var(--theme-text-strong);
  text-decoration: none;
}

.buzz-upgrades__browse-link i {
  font-size: 0.78rem;
  opacity: 0.75;
}

/* =========================================================
   UPGRADE CARDS
   ========================================================= */

.buzz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.buzz-card {
  position: relative;
  background: var(--theme-surface-card);
  border: 2px solid var(--theme-border-soft);
  border-radius: var(--theme-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.buzz-card:hover {
  transform: translateY(-3px);
  border-color: var(--theme-border);
  box-shadow: 0 20px 48px var(--theme-shadow-black-28);
  text-decoration: none;
}

.buzz-card__media {
  position: relative;
  overflow: hidden;
  background: var(--theme-surface-card-soft);
  aspect-ratio: 16 / 10;
}

.buzz-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.buzz-card:hover .buzz-card__media img {
  transform: scale(1.04);
}

.buzz-card__tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.28rem 0.6rem;
  border-radius: var(--theme-radius-pill);
  background: rgba(6, 6, 8, 0.82);
  border: 1px solid var(--theme-surface-white-10);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-text-muted);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
}

.buzz-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.buzz-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.buzz-card__name {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--theme-text-strong);
  line-height: 1.25;
}

.buzz-card__price {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--theme-text-main);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.buzz-card__desc {
  font-size: 0.865rem;
  line-height: 1.62;
  color: var(--theme-text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.buzz-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  align-self: flex-start;
  padding: 0.55rem 0.9rem;
  border-radius: var(--theme-radius-pill);
  border: 1px solid var(--theme-border);
  background: var(--theme-surface-white-04);
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--theme-text-main);
  letter-spacing: 0.02em;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.buzz-card:hover .buzz-card__link {
  background: var(--theme-surface-white-08);
  border-color: var(--theme-border-strong);
  color: var(--theme-text-strong);
}

.buzz-card__link i {
  font-size: 0.72rem;
  opacity: 0.7;
}

/* Featured card spans 2 columns and 2 rows so the CTA + Lift stack beside it */
.buzz-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.buzz-card--featured .buzz-card__media {
  flex: 1;
  min-height: 16rem;
  aspect-ratio: unset;
}

.buzz-card--featured .buzz-card__body {
  flex: 0 0 auto;
}

.buzz-card--featured .buzz-card__desc {
  flex: none;
}

/* View All Upgrades CTA card */
.buzz-card--view-all {
  background:
    linear-gradient(135deg, rgba(200, 210, 220, 0.045) 0%, transparent 40%),
    rgba(12, 12, 14, 0.96);
  border-color: var(--theme-border-soft);
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.35s ease;
}

/* Radial glow — fades in and pulses on hover */
.buzz-card--view-all::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 58%,
    rgba(200, 215, 245, 0.09) 0%,
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.buzz-card--view-all:hover {
  background:
    linear-gradient(135deg, rgba(200, 215, 245, 0.10) 0%, transparent 50%),
    rgba(20, 20, 26, 1);
  border-color: var(--theme-border);
  box-shadow:
    0 20px 48px var(--theme-shadow-black-28),
    0 0 0 1px rgba(200, 215, 245, 0.06);
}

.buzz-card--view-all:hover::before {
  opacity: 1;
  animation: buzz-cta-pulse 2.8s ease-in-out infinite;
}

@keyframes buzz-cta-pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.06); }
}

.buzz-card__view-all-inner {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.buzz-card--view-all:hover .buzz-card__view-all-inner {
  transform: translateY(-3px);
}

.buzz-card__view-all-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-text-eyebrow);
  margin: 0 0 0.75rem;
}

.buzz-card__view-all-title {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.042em;
  line-height: 1.06;
  color: var(--theme-text-strong);
  margin: 0;
}

/* Compact card — image fills remaining card height after body */
.buzz-card--compact .buzz-card__media {
  flex: 1;
  min-height: 8rem;
  aspect-ratio: unset;
}

.buzz-card--compact .buzz-card__body {
  /* padding: 0.6rem 1.25rem 1.35rem; */
  flex: none;
}



/* =========================================================
   BRAND / WHY TITAN
   ========================================================= */

.buzz-about {
  background: var(--theme-page-bg-soft);
  border-top: 1px solid var(--theme-border-soft);
  border-bottom: 1px solid var(--theme-border-soft);
}

.buzz-about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.buzz-about__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--theme-border-soft);
}

.buzz-about__brand-logo {
  display: block;
  width: clamp(4rem, 6.5vw, 6rem);
  height: clamp(4rem, 6.5vw, 6rem);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.buzz-about__brand-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-text-soft);
  line-height: 1;
}

.buzz-about__body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.72;
  color: var(--theme-text-muted);
  margin: 0 0 1.5rem;
}

.buzz-about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.buzz-about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--theme-radius-pill);
  background: var(--theme-surface-white-05);
  border: 1px solid var(--theme-border-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-text-muted);
}


/* Why points */
.buzz-why {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  height: 100%;
}

.buzz-why__item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--theme-border-soft);
}

.buzz-why__item:first-child {
  padding-top: 0;
}

.buzz-why__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.buzz-why__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-text-strong);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.buzz-why__text {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--theme-text-muted);
  margin: 0;
}

/* =========================================================
   INTERIOR GALLERY
   ========================================================= */

.buzz-gallery {
  background: var(--theme-page-bg);
}

.buzz-gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
}

/* Right-side stack: Cabin Detail above Coming Soon */
.buzz-gallery__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.buzz-gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--theme-surface-card-soft);
  border-radius: var(--theme-radius-lg);
}

/* Left column — no fixed aspect ratio, fills the full stack height */
.buzz-gallery__item--tall {
  height: 100%;
  min-height: 24rem;
}

.buzz-gallery__item--wide {
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}

/* Coming Soon tile */
.buzz-gallery__item--soon {
  flex: 1;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(200, 210, 220, 0.045) 0%, transparent 40%),
    rgba(12, 12, 14, 0.96);
  border: 1px solid var(--theme-border-soft);
}

.buzz-gallery__soon {
  text-align: center;
  padding: 2rem 1.5rem;
}

.buzz-gallery__soon-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-text-soft);
  margin: 0 0 0.6rem;
}

.buzz-gallery__soon-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--theme-text-strong);
  margin: 0;
}

.buzz-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.buzz-gallery__item:hover img {
  transform: scale(1.03);
}

.buzz-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(6, 6, 8, 0.72) 0%, transparent 100%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   FAMILY BANNER
   Full-width lifestyle photo below the upgrades grid
   ========================================================= */

.buzz-family-banner {
  position: relative;
  margin-top: 1.1rem;
  border-radius: var(--theme-radius-lg);
  overflow: hidden;
  min-height: 26rem;
  border: 1px solid var(--theme-border-soft);
  background: var(--theme-surface-card-soft);
  display: flex;
  align-items: flex-end;
}

.buzz-family-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transition: transform 0.5s ease;
}

.buzz-family-banner:hover .buzz-family-banner__img {
  transform: scale(1.02);
}

.buzz-family-banner__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
  background: linear-gradient(
    to top,
    rgba(4, 4, 6, 0.78) 0%,
    rgba(4, 4, 6, 0.42) 55%,
    transparent 100%
  );
}

.buzz-family-banner__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.buzz-family-banner__headline {
  font-size: clamp(1.6rem, 3.2vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.042em;
  line-height: 1.05;
  color: var(--theme-text-strong);
  margin: 0 0 0.6rem;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.buzz-family-banner__sub {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 38rem;
}

/* =========================================================
   CTA SECTION
   ========================================================= */

.buzz-cta {
  background: var(--theme-page-bg-soft);
  border-top: 1px solid var(--theme-border-soft);
}

.buzz-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
}

.buzz-cta__kicker {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--theme-text-eyebrow);
  margin-bottom: 0.6rem;
}

.buzz-cta__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--theme-text-strong);
  margin: 0 0 0.85rem;
  text-wrap: balance;
}

.buzz-cta__sub {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--theme-text-muted);
  margin: 0;
  max-width: 44rem;
}

.buzz-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  flex-shrink: 0;
  min-width: 200px;
}

.buzz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--theme-radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.buzz-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.buzz-btn--primary {
  background: var(--svc-cta-red-bg, var(--theme-accent));
  border: 1px solid var(--svc-cta-red-border, var(--theme-accent));
  color: var(--theme-white);
  box-shadow: 0 12px 28px var(--theme-accent-box-24);
}

.buzz-btn--primary:hover {
  background: var(--svc-cta-red-bg-hover, var(--theme-accent-hover));
  border-color: var(--svc-cta-red-border-hover, var(--theme-accent-hover));
  color: var(--theme-white);
  box-shadow: var(--svc-cta-red-shadow-hover, 0 18px 36px var(--theme-accent-box-32));
}

.buzz-btn--secondary {
  background: var(--theme-surface-white-05);
  border: 1px solid var(--theme-border);
  color: var(--theme-text-main);
  backdrop-filter: var(--theme-blur-sm);
  -webkit-backdrop-filter: var(--theme-blur-sm);
}

.buzz-btn--secondary:hover {
  background: var(--theme-surface-white-08);
  border-color: var(--theme-border-strong);
  color: var(--theme-white);
}

.buzz-btn i {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* =========================================================
   FAQ SECTION OVERRIDE
   Single-column layout, full-width on large screens
   ========================================================= */

/* .buzz-faq {
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
} */

.buzz-faq-header {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .buzz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Drop from 2-col span to 1-col but keep 2-row span
     so CTA card + Lift Kit still stack beside the Pop Top */
  .buzz-card--featured {
    grid-column: span 1;
    grid-row: span 2;
  }

  .buzz-card--featured .buzz-card__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 820px) {
  .buzz-about__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .buzz-cta__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .buzz-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }

  .buzz-gallery__grid {
    grid-template-columns: 1fr;
  }

  .buzz-gallery__stack {
    gap: 1rem;
  }

  .buzz-gallery__item--tall {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

  .buzz-gallery__item--wide {
    aspect-ratio: 16 / 9;
  }

  .buzz-gallery__item--soon {
    aspect-ratio: 16 / 7;
    flex: none;
  }

}

@media (max-width: 640px) {
  .buzz-grid {
    grid-template-columns: 1fr;
  }

  /* Single column — row span has no effect, reset to avoid gaps */
  .buzz-card--featured {
    grid-row: span 1;
  }

  /* In single-column, give compact media a standard aspect ratio */
  .buzz-card--compact .buzz-card__media {
    flex: none;
    aspect-ratio: 16 / 10;
  }

  .buzz-section {
    padding-left: clamp(0.85rem, 4vw, 1.5rem);
    padding-right: clamp(0.85rem, 4vw, 1.5rem);
  }

  .buzz-cta__actions {
    flex-direction: column;
  }

  .buzz-cta__actions .buzz-btn {
    width: 100%;
  }
}
