/* ============================================================
   BIRTHDAY-DECORATION.CSS — Sri Garuda Decorators
   Birthday subpage. Zero inline CSS. Mobile-first.
   ============================================================ */

:root {
  --champagne:    #F2E5C6;
  --text-mid:     #4A3728;
  --near-black:   #1A1A1A;
  --font-display: 'Cinzel', serif;
  --font-accent:  'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --section-pad:  clamp(60px, 10vw, 110px);
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */

.bd-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.bd-section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.bd-section-label::before,
.bd-section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: var(--burgundy);
  opacity: 0.5;
}
.bd-section-label--gold         { color: var(--sand-gold); }
.bd-section-label--gold::before,
.bd-section-label--gold::after  { background: var(--sand-gold); }

.bd-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--deep-wine);
  margin-bottom: 20px;
}
.bd-heading em {
  font-style: italic;
  color: var(--burgundy);
  font-family: var(--font-accent);
  font-size: 1.05em;
  font-weight: 300;
}
.bd-heading--light    { color: var(--champagne); }
.bd-heading--light em { color: var(--sand-gold); }

.bd-gold-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.bd-gold-divider::before,
.bd-gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.bd-gold-diamond {
  width: 10px;
  height: 10px;
  background: var(--sand-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.revealed  { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* Buttons */
.bd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--burgundy);
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.bd-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--deep-wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  z-index: 0;
}
.bd-btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.bd-btn-primary span { position: relative; z-index: 1; }

.bd-btn-primary--sm {
  padding: 10px 22px;
  font-size: 0.72rem;
}

.bd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1.5px solid var(--burgundy);
  color: var(--burgundy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: var(--transition);
}
.bd-btn-outline:hover {
  background: var(--burgundy);
  color: var(--champagne);
}
.bd-btn-outline--light {
  border-color: rgba(242,229,198,0.5);
  color: var(--champagne);
}
.bd-btn-outline--light:hover {
  background: rgba(242,229,198,0.1);
  border-color: var(--sand-gold);
  color: var(--sand-gold);
}


/* ============================================================
   SECTION 1 — HERO
   ============================================================ */

.bd-hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-wine);
}
.bd-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/birthday/hero-birthday.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.06);
  transition: transform 8s ease;
}
.bd-hero.loaded .bd-hero-bg { transform: scale(1); }

.bd-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(59,1,11,0.6) 0%, rgba(59,1,11,0.1) 50%, rgba(59,1,11,0.75) 100%);
  z-index: 1;
}
.bd-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--sand-gold), transparent);
  z-index: 2;
}
.bd-hero-deco-text {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 14rem);
  font-weight: 700;
  color: rgba(242,217,160,0.04);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.bd-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  padding-bottom: 100px;
}
.bd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(242,217,160,0.3);
  color: var(--sand-gold);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: bdHeroUp 0.7s 0.2s forwards;
}
.bd-hero-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--sand-gold);
  fill: none;
}
.bd-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 5.8rem);
  font-weight: 500;
  color: var(--champagne);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(24px);
  animation: bdHeroUp 0.9s 0.4s forwards;
}
.bd-hero-title em {
  font-style: italic;
  color: var(--sand-gold);
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 1.1em;
}
.bd-hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: rgba(242,229,198,0.7);
  margin-bottom: 28px;
  opacity: 0;
  animation: bdHeroUp 0.8s 0.6s forwards;
}
.bd-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: bdHeroUp 0.8s 0.8s forwards;
}
.bd-breadcrumb-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,229,198,0.55);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 0.2s ease;
}
.bd-breadcrumb-link:hover { color: var(--sand-gold); }
.bd-breadcrumb-sep     { color: rgba(242,217,160,0.3); }
.bd-breadcrumb-current {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-gold);
  font-family: var(--font-body);
}

/* Stats strip */
.bd-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  background: rgba(59,1,11,0.82);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(242,217,160,0.15);
}
.bd-hero-stat {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(242,217,160,0.12);
}
.bd-hero-stat:last-child { border-right: none; }
.bd-hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sand-gold);
  line-height: 1;
}
.bd-hero-stat-num em {
  font-style: normal;
  font-size: 0.7em;
  color: var(--champagne);
}
.bd-hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,229,198,0.55);
  display: block;
  margin-top: 4px;
}
.bd-hero-scroll {
  position: absolute;
  bottom: 60px;
  right: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.5;
}
.bd-hero-scroll-line {
  width: 1px;
  height: 44px;
  background: var(--sand-gold);
  animation: scrollPulse 1.8s infinite;
}
@keyframes bdHeroUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.7; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}


/* ============================================================
   SECTION 2 — OVERVIEW
   ============================================================ */

.bd-overview {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
  overflow: hidden;
}
.bd-overview-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Image side */
.bd-overview-img { position: relative; padding-bottom: 24px; }
.bd-overview-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.bd-overview-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.bd-overview-img-main:hover img { transform: scale(1.04); }

.bd-overview-img-float {
  position: absolute;
  bottom: 0;
  right: -12px;
  width: 42%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid var(--off-white, #FAF7F2);
  box-shadow: 0 12px 36px rgba(59,1,11,0.18);
  display: none;
}
.bd-overview-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bd-overview-badge {
  position: absolute;
  top: 20px;
  left: -12px;
  background: var(--burgundy);
  padding: 16px 20px;
  text-align: center;
  display: none;
}
.bd-overview-badge-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}
.bd-overview-badge-text {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  line-height: 1.4;
}

/* Text side */
.bd-overview-lead {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.bd-overview-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #5a4a3a;
  margin-bottom: 28px;
}

/* Age range strip */
.bd-age-range {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(86,11,24,0.12);
  overflow: hidden;
  margin-bottom: 32px;
}
.bd-age-item {
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(86,11,24,0.1);
  border-bottom: 1px solid rgba(86,11,24,0.1);
  transition: background var(--transition);
}
.bd-age-item:nth-child(even)     { border-right: none; }
.bd-age-item:nth-last-child(-n+2) { border-bottom: none; }
.bd-age-item:hover { background: rgba(117,22,45,0.04); }

.bd-age-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 5px;
}
.bd-age-num em {
  font-style: normal;
  font-size: 0.65em;
  color: var(--sand-gold);
}
.bd-age-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.bd-overview-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (min-width: 960px) {
  .bd-overview-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
  .bd-overview-img-float { display: block; }
  .bd-overview-badge     { display: block; }
}


/* ============================================================
   SECTION 3 — THEMES
   ============================================================ */

.bd-themes {
  padding: var(--section-pad) 0;
  background: var(--deep-wine);
  overflow: hidden;
  position: relative;
}
.bd-themes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.bd-themes-header {
  text-align: center;
  margin-bottom: 52px;
}
.bd-themes-desc {
  color: rgba(242,229,198,0.6);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.bd-themes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Theme card */
.bd-theme-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,217,160,0.1);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.bd-theme-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,217,160,0.28);
}
.bd-theme-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.bd-theme-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.75);
}
.bd-theme-card:hover .bd-theme-img img {
  transform: scale(1.06);
  filter: brightness(0.55);
}
.bd-theme-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,1,11,0.7) 0%, transparent 60%);
}
.bd-theme-body { padding: 20px 18px; }
.bd-theme-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.bd-theme-card:hover .bd-theme-title { color: var(--sand-gold); }
.bd-theme-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(242,229,198,0.6);
  margin-bottom: 12px;
}
.bd-theme-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-gold);
  border: 1px solid rgba(242,217,160,0.25);
  padding: 3px 10px;
}

/* Custom theme card */
.bd-theme-card--custom {
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.bd-theme-custom-inner {
  text-align: center;
  padding: 28px 24px;
}
.bd-theme-custom-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}
.bd-theme-custom-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 10px;
}
.bd-theme-custom-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(242,229,198,0.7);
  margin-bottom: 20px;
}

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


/* ============================================================
   SECTION 4 — WHAT'S INCLUDED
   ============================================================ */

.bd-included {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
}
.bd-included-header {
  text-align: center;
  margin-bottom: 48px;
}
.bd-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.bd-included-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(86,11,24,0.1);
  border-left: 3px solid var(--burgundy);
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
}
.bd-included-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(59,1,11,0.08);
  border-left-color: var(--sand-gold);
}
.bd-included-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(117,22,45,0.2);
  transition: border-color var(--transition), background var(--transition);
}
.bd-included-item:hover .bd-included-icon {
  border-color: var(--burgundy);
  background: rgba(117,22,45,0.05);
}
.bd-included-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.5;
}
.bd-included-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--deep-wine);
  margin-bottom: 5px;
}
.bd-included-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-mid);
}

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


/* ============================================================
   SECTION 5 — GALLERY
   FIX: Removed --tall and --wide span rules entirely.
        All items are uniform squares. No empty gaps.
   FIX: Section label, heading and description text colors
        corrected for legibility on champagne background.
   ============================================================ */

.bd-gallery {
  padding: var(--section-pad) 0;
  background: var(--deep-wine);
  overflow: hidden;
}
.bd-gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

/* Section label on dark background — use gold variant */
.bd-gallery-header .bd-section-label {
  color: var(--sand-gold);
  justify-content: center;
}
.bd-gallery-header .bd-section-label::before,
.bd-gallery-header .bd-section-label::after {
  background: var(--sand-gold);
}

.bd-gallery-desc {
  /* Changed from var(--text-mid) to a light tone legible on deep-wine background */
  color: rgba(242, 229, 198, 0.65);
  font-size: 0.88rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Filter tabs */
.bd-filter-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid rgba(242, 217, 160, 0.2);
  overflow: hidden;
}
.bd-filter-tabs::-webkit-scrollbar { display: none; }
.bd-filter-tab {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* FIX: text legible on dark bg; active state uses gold */
  color: rgba(242, 229, 198, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border: none;
  padding: 11px 18px;
  cursor: pointer;
  white-space: nowrap;
  border-right: 1px solid rgba(242, 217, 160, 0.12);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.bd-filter-tab:last-child { border-right: none; }
.bd-filter-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sand-gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.bd-filter-tab:hover {
  color: var(--sand-gold);
  background: rgba(242, 217, 160, 0.06);
}
.bd-filter-tab.active {
  color: var(--sand-gold);
  background: rgba(242, 217, 160, 0.08);
}
.bd-filter-tab.active::after { transform: scaleX(1); }

/* Gallery grid — uniform squares only, no spanning */
.bd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* All items are uniform squares — no --tall or --wide overrides */
.bd-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: rgba(59, 1, 11, 0.4);
}

.bd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.bd-gallery-item:hover img { transform: scale(1.08); }

.bd-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,1,11,0.52);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
}
.bd-gallery-item:hover .bd-gallery-overlay { opacity: 1; }

.bd-gallery-cat {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-gold);
  background: rgba(59,1,11,0.75);
  padding: 4px 10px;
}
.bd-gallery-zoom {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242,229,198,0.4);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.bd-gallery-zoom:hover { background: rgba(242,229,198,0.15); }
.bd-gallery-zoom svg { width: 13px; height: 13px; stroke: var(--champagne); }

.bd-gallery-item.bd-hidden { display: none; }
.bd-gallery-empty {
  display: none;
  text-align: center;
  padding: 48px 24px;
  /* FIX: legible on deep-wine background */
  color: rgba(242, 229, 198, 0.6);
  font-size: 0.9rem;
}
.bd-gallery-empty.visible { display: block; }
.bd-gallery-cta { text-align: center; margin-top: 36px; }

@media (min-width: 768px)  { .bd-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .bd-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

/* Lightbox */
.bd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,0,3,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bd-lightbox.open { opacity: 1; pointer-events: all; }
.bd-lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 20px 40px;
}
.bd-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
}
.bd-lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border: 1px solid rgba(242,229,198,0.3);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bd-lightbox-close svg { width: 18px; height: 18px; stroke: var(--champagne); }
.bd-lightbox-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 12px;
}
.bd-lightbox-prev,
.bd-lightbox-next {
  width: 48px; height: 48px;
  border: 1px solid rgba(242,229,198,0.3);
  background: rgba(59,1,11,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background var(--transition);
}
.bd-lightbox-prev:hover,
.bd-lightbox-next:hover { background: var(--burgundy); }
.bd-lightbox-prev svg,
.bd-lightbox-next svg { width: 20px; height: 20px; stroke: var(--champagne); }
.bd-lightbox-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(242,229,198,0.6);
}


/* ============================================================
   SECTION 6 — SWIPER
   FIX: Section label, heading, and slide label text colors
        corrected for legibility on dark maroon background.
   ============================================================ */

.bd-swiper-section {
  padding: var(--section-pad) 0;
  background: var(--dark-maroon);
  overflow: hidden;
  position: relative;
}
.bd-swiper-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.bd-swiper-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

/* Section label centered on dark bg */
.bd-swiper-header .bd-section-label {
  justify-content: center;
  color: var(--sand-gold);
}
.bd-swiper-header .bd-section-label::before,
.bd-swiper-header .bd-section-label::after {
  background: var(--sand-gold);
}

.bd-swiper-track-wrap { position: relative; overflow: hidden; }
.bd-swiper-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0 20px;
  cursor: grab;
  user-select: none;
}
.bd-swiper-track.dragging { cursor: grabbing; transition: none; }
.bd-swiper-slide {
  flex: 0 0 calc(100% - 40px);
  position: relative;
  overflow: hidden;
}
.bd-swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.bd-swiper-slide:hover img { transform: scale(1.03); }
.bd-swiper-slide-label {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(59,1,11,0.92), transparent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  /* FIX: was inheriting dark color; explicitly set to champagne for visibility */
  color: var(--champagne);
  letter-spacing: 0.03em;
}
.bd-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(59,1,11,0.8);
  border: 1px solid rgba(242,217,160,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
}
.bd-swiper-btn:hover { background: var(--burgundy); }
.bd-swiper-btn svg { width: 20px; height: 20px; stroke: var(--champagne); fill: none; }
.bd-swiper-btn--prev { left: 4px; }
.bd-swiper-btn--next { right: 4px; }
.bd-swiper-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 20px;
}
.bd-swiper-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(242,217,160,0.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.bd-swiper-dot.active {
  background: var(--sand-gold);
  width: 22px;
  border-radius: 3px;
}
@media (min-width: 600px)  { .bd-swiper-slide { flex: 0 0 calc(50% - 28px); } }
@media (min-width: 1024px) { .bd-swiper-slide { flex: 0 0 calc(33.333% - 24px); } }


/* ============================================================
   SECTION 7 — CTA BANNER
   ============================================================ */

.bd-cta {
  padding: 100px 0 60px;
  background: var(--dark-maroon);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bd-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(117,22,45,0.45) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(117,22,45,0.45) 0%, transparent 60%);
  pointer-events: none;
}
.bd-cta-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 14rem);
  font-weight: 700;
  color: rgba(242,217,160,0.03);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.bd-cta-content { position: relative; z-index: 1; }
.bd-cta-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand-gold);
  margin-bottom: 18px;
}
.bd-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--champagne);
  line-height: 1.12;
  margin-bottom: 20px;
}
.bd-cta-heading em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--sand-gold);
  font-size: 1.1em;
}
.bd-cta-subtext {
  color: rgba(242,229,198,0.6);
  font-size: 0.9rem;
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.bd-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.bd-cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 36px;
  max-width: 280px;
}
.bd-cta-line { flex: 1; height: 1px; background: rgba(242,217,160,0.2); }
.bd-cta-diamond {
  width: 8px; height: 8px;
  background: var(--sand-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.bd-subpage-nav {
  border-top: 1px solid rgba(242,217,160,0.12);
  padding-top: 32px;
}
.bd-subpage-nav-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242,229,198,0.4);
  margin-bottom: 16px;
}
.bd-subpage-nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.bd-subpage-nav-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,229,198,0.45);
  text-decoration: none;
  padding: 8px 18px;
  border-right: 1px solid rgba(242,217,160,0.12);
  transition: color 0.2s ease;
}
.bd-subpage-nav-link:last-child { border-right: none; }
.bd-subpage-nav-link:hover { color: var(--sand-gold); }

@media (max-width: 480px) {
  .bd-cta-buttons { flex-direction: column; align-items: center; }
  .bd-btn-primary,
  .bd-btn-outline { width: 100%; justify-content: center; }
  .bd-cta         { padding: 72px 0 48px; }
  .bd-overview-cta { flex-direction: column; }
}