/* ============================================================
   WEDDING-DECORATION.CSS — Sri Garuda Decorators
   Wedding 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
   ============================================================ */

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

/* Section label */
.wd-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;
}
.wd-section-label::before,
.wd-section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: var(--burgundy);
  opacity: 0.5;
}
.wd-section-label--gold         { color: var(--sand-gold); }
.wd-section-label--gold::before,
.wd-section-label--gold::after  { background: var(--sand-gold); }

/* Headings */
.wd-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;
}
.wd-heading em {
  font-style: italic;
  color: var(--burgundy);
  font-family: var(--font-accent);
  font-size: 1.05em;
  font-weight: 300;
}
.wd-heading--light    { color: var(--champagne); }
.wd-heading--light em { color: var(--sand-gold); }

/* Gold divider */
.wd-gold-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.wd-gold-divider::before,
.wd-gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.wd-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 */
.wd-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;
}
.wd-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;
}
.wd-btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.wd-btn-primary span { position: relative; z-index: 1; }

.wd-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);
}
.wd-btn-outline:hover {
  background: var(--burgundy);
  color: var(--champagne);
}
.wd-btn-outline--light {
  border-color: rgba(242,229,198,0.5);
  color: var(--champagne);
}
.wd-btn-outline--light:hover {
  background: rgba(242,229,198,0.1);
  border-color: var(--sand-gold);
  color: var(--sand-gold);
}


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

.wd-hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-wine);
}

.wd-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/wedding/hero-wedding.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
  transform: scale(1.06);
  transition: transform 8s ease;
}
.wd-hero.loaded .wd-hero-bg { transform: scale(1); }

.wd-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;
}

/* Left accent bar */
.wd-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;
}

/* Large decorative watermark */
.wd-hero-deco-text {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 20rem);
  font-weight: 700;
  color: rgba(242,217,160,0.04);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.wd-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  padding-bottom: 100px;
}

/* Category badge */
.wd-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: wdHeroUp 0.7s 0.2s forwards;
}
.wd-hero-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--sand-gold);
}

.wd-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 6rem);
  font-weight: 500;
  color: var(--champagne);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(24px);
  animation: wdHeroUp 0.9s 0.4s forwards;
}
.wd-hero-title em {
  font-style: italic;
  color: var(--sand-gold);
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 1.1em;
}

.wd-hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(242,229,198,0.75);
  margin-bottom: 28px;
  opacity: 0;
  animation: wdHeroUp 0.8s 0.6s forwards;
}

/* Breadcrumb */
.wd-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: wdHeroUp 0.8s 0.8s forwards;
}
.wd-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;
}
.wd-breadcrumb-link:hover { color: var(--sand-gold); }
.wd-breadcrumb-sep     { color: rgba(242,217,160,0.3); }
.wd-breadcrumb-current {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-gold);
  font-family: var(--font-body);
}

/* Floating stats chips at bottom */
.wd-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  background: rgba(59,1,11,0.8);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(242,217,160,0.15);
}
.wd-hero-stat {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(242,217,160,0.12);
}
.wd-hero-stat:last-child { border-right: none; }
.wd-hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sand-gold);
  line-height: 1;
}
.wd-hero-stat-num em {
  font-style: normal;
  font-size: 0.7em;
  color: var(--champagne);
}
.wd-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;
}

/* Scroll indicator */
.wd-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;
}
.wd-hero-scroll-line {
  width: 1px;
  height: 44px;
  background: var(--sand-gold);
  animation: scrollPulse 1.8s infinite;
}

@keyframes wdHeroUp    { 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
   ============================================================ */

.wd-overview {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
  overflow: hidden;
}

.wd-overview-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Image side */
.wd-overview-img { position: relative; padding-bottom: 32px; }

.wd-overview-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.wd-overview-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.wd-overview-img-main:hover img { transform: scale(1.04); }

.wd-overview-img-float {
  position: absolute;
  bottom: 0;
  right: -12px;
  width: 44%;
  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;
}
.wd-overview-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-overview-badge {
  position: absolute;
  top: 20px;
  left: -12px;
  background: var(--burgundy);
  color: var(--champagne);
  padding: 16px 18px;
  text-align: center;
  display: none;
}
.wd-overview-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--sand-gold);
  display: block;
  margin: 0 auto 6px;
}
.wd-overview-badge span {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Text side */
.wd-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;
}
.wd-overview-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #5a4a3a;
  margin-bottom: 28px;
}

/* Highlight rows */
.wd-overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.wd-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border-left: 3px solid var(--burgundy);
  box-shadow: 0 2px 12px rgba(59,1,11,0.05);
  transition: border-color var(--transition), transform var(--transition);
}
.wd-highlight:hover {
  border-left-color: var(--sand-gold);
  transform: translateX(4px);
}
.wd-highlight-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-highlight-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--burgundy);
}
.wd-highlight-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--deep-wine);
  margin-bottom: 3px;
}
.wd-highlight-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}

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

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


/* ============================================================
   SECTION 3 — SERVICES INCLUDED
   ============================================================ */

   /* ============================================================
   FORCE ALL SVG ICONS GOLD
============================================================ */

.wd-highlight-icon svg,
.wd-service-icon-wrap svg {

  width: 22px;

  height: 22px;

  fill: var(--sand-gold);

  stroke: var(--sand-gold);

}


/* For paths using currentColor */

.wd-highlight-icon svg *,
.wd-service-icon-wrap svg * {

  stroke: var(--sand-gold) !important;

  fill: var(--sand-gold);

}


/* Keep outlined icons clean */

.wd-highlight-icon svg [fill="none"],
.wd-service-icon-wrap svg [fill="none"] {

  fill: none !important;

}

.wd-services-included {
  padding: var(--section-pad) 0;
  background: var(--deep-wine);
  position: relative;
  overflow: hidden;
}
.wd-services-included::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}

.wd-services-header {
  text-align: center;
  margin-bottom: 56px;
}
.wd-services-desc {
  color: rgba(242,229,198,0.6);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.wd-service-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,217,160,0.12);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.wd-service-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.wd-service-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(242,217,160,0.28);
  transform: translateY(-4px);
}
.wd-service-item:hover::after { transform: scaleX(1); }

.wd-service-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(242,217,160,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border-color var(--transition), background var(--transition);
}
.wd-service-item:hover .wd-service-icon-wrap {
  border-color: var(--sand-gold);
  background: rgba(242,217,160,0.08);
}
.wd-service-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--sand-gold);
}
.wd-service-icon-wrap svg[stroke] {
  fill: none;
  stroke: var(--sand-gold);
}

.wd-service-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.wd-service-item:hover .wd-service-item-title { color: var(--sand-gold); }

.wd-service-item-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(242,229,198,0.6);
}

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


/* ============================================================
   SECTION 4 — GALLERY
   ============================================================ */

.wd-gallery {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
  overflow: hidden;
}

.wd-gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.wd-gallery-desc {
  color: var(--text-mid);
  font-size: 0.88rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Filter tabs */
.wd-filter-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 36px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border: 1px solid rgba(86,11,24,0.15);
  overflow: hidden;
}
.wd-filter-tabs::-webkit-scrollbar { display: none; }

.wd-filter-tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  border-right: 1px solid rgba(86,11,24,0.1);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.wd-filter-tab:last-child { border-right: none; }
.wd-filter-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.wd-filter-tab:hover { color: var(--burgundy); background: rgba(117,22,45,0.04); }
.wd-filter-tab.active {
  color: var(--burgundy);
  background: rgba(117,22,45,0.05);
}
.wd-filter-tab.active::after { transform: scaleX(1); }

/* Gallery grid — CSS grid masonry-like layout */
/* ============================================================
   GALLERY MASONRY FIX
============================================================ */

.wd-gallery-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;

  grid-auto-flow: dense;

}

.wd-gallery-item {

  position: relative;

  overflow: hidden;

  cursor: pointer;

  background: var(--champagne);

}

.wd-gallery-item img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}

/* Tall image */

.wd-gallery-item--tall {

  grid-row: span 2;

}

/* Wide image */

.wd-gallery-item--wide {

  grid-column: span 2;

}


/* Responsive */

@media (max-width: 900px) {

  .wd-gallery-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media (max-width: 600px) {

  .wd-gallery-grid {

    grid-template-columns: 1fr;

  }

  .wd-gallery-item--wide {

    grid-column: span 1;

  }

}

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

/* Gallery overlay */
.wd-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,1,11,0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.wd-gallery-item:hover .wd-gallery-overlay { opacity: 1; }

.wd-gallery-overlay-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.wd-gallery-overlay-cat {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-gold);
  background: rgba(59,1,11,0.7);
  padding: 4px 10px;
}

.wd-gallery-zoom {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242,229,198,0.5);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.wd-gallery-zoom:hover {
  background: rgba(242,229,198,0.15);
  border-color: var(--sand-gold);
}
.wd-gallery-zoom svg {
  width: 14px;
  height: 14px;
  stroke: var(--champagne);
}

/* Hidden items */
.wd-gallery-item.wd-hidden {
  display: none;
}

/* Empty state */
.wd-gallery-empty {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-mid);
  font-size: 0.9rem;
}
.wd-gallery-empty.visible { display: block; }

.wd-gallery-cta {
  text-align: center;
  margin-top: 40px;
}

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

/* ── Lightbox ── */
.wd-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;
}
.wd-lightbox.open { opacity: 1; pointer-events: all; }

.wd-lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 20px 40px;
}
.wd-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  user-select: none;
}

.wd-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;
  transition: border-color var(--transition);
}
.wd-lightbox-close:hover { border-color: var(--sand-gold); }
.wd-lightbox-close svg { width: 18px; height: 18px; stroke: var(--champagne); }

.wd-lightbox-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 12px;
}

.wd-lightbox-prev,
.wd-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), border-color var(--transition);
}
.wd-lightbox-prev:hover,
.wd-lightbox-next:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.wd-lightbox-prev svg,
.wd-lightbox-next svg { width: 20px; height: 20px; stroke: var(--champagne); }

.wd-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 5 — SWIPER SHOWCASE
   ============================================================ */

.wd-swiper-section {
  padding: var(--section-pad) 0;
  background: var(--dark-maroon);
  overflow: hidden;
  position: relative;
}
.wd-swiper-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}

.wd-swiper-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.wd-swiper-track-wrap {
  position: relative;
  overflow: hidden;
}

.wd-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;
}
.wd-swiper-track.dragging { cursor: grabbing; transition: none; }

.wd-swiper-slide {
  flex: 0 0 calc(100% - 40px);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.wd-swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.wd-swiper-slide:hover img { transform: scale(1.03); }

.wd-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.9), transparent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--champagne);
  letter-spacing: 0.05em;
}

/* Nav buttons */
.wd-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(59,1,11,0.85);
  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), border-color var(--transition);
}
.wd-swiper-btn:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.wd-swiper-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--champagne);
  fill: none;
}
.wd-swiper-btn--prev { left: 4px; }
.wd-swiper-btn--next { right: 4px; }

/* Dots */
.wd-swiper-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 20px;
}
.wd-swiper-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242,217,160,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.wd-swiper-dot.active {
  background: var(--sand-gold);
  width: 22px;
  border-radius: 3px;
}

/* Desktop: show multiple slides */
@media (min-width: 600px) {
  .wd-swiper-slide { flex: 0 0 calc(50% - 28px); }
  .wd-swiper-btn--prev { left: 8px; }
  .wd-swiper-btn--next { right: 8px; }
}
@media (min-width: 1024px) {
  .wd-swiper-slide { flex: 0 0 calc(33.333% - 24px); }
}


/* ============================================================
   SECTION 6 — PROCESS TIMELINE
   ============================================================ */

.wd-process {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
  overflow: hidden;
}

.wd-process-header {
  text-align: center;
  margin-bottom: 56px;
}
.wd-process-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Vertical on mobile, horizontal on desktop */
.wd-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.wd-process-step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  position: relative;
}

.wd-process-step-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--champagne);
  background: var(--burgundy);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--off-white, #FAF7F2);
  box-shadow: 0 0 0 1.5px var(--burgundy);
  transition: background var(--transition);
}
.wd-process-step:hover .wd-process-step-num { background: var(--dark-maroon); }

/* Vertical line connector */
.wd-process-connector {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--burgundy), rgba(117,22,45,0.2));
  margin-left: 25px;
  opacity: 0.4;
}

.wd-process-step-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 10px;
  display: none;
}
.wd-process-step-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.5;
}

.wd-process-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--deep-wine);
  margin-bottom: 8px;
}
.wd-process-step-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-mid);
}

@media (min-width: 900px) {
  .wd-process-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .wd-process-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    gap: 0;
  }
  .wd-process-step-num { margin-bottom: 16px; }
  .wd-process-step-icon { display: block; margin: 0 auto 12px; }
  .wd-process-connector {
    width: auto;
    flex: 0 0 40px;
    height: 1px;
    background: linear-gradient(to right, var(--burgundy), rgba(117,22,45,0.2));
    margin: 0;
    align-self: center;
    margin-bottom: 100px;
  }
}


/* ============================================================
   SECTION 7 — TESTIMONIALS
   ============================================================ */

.wd-testimonials {
  padding: var(--section-pad) 0;
  background: var(--deep-wine);
  overflow: hidden;
}

.wd-testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}

.wd-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.wd-testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(242,217,160,0.12);
  padding: 32px 26px;
  position: relative;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.wd-testimonial-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sand-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.wd-testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
  border-color: rgba(242,217,160,0.25);
}
.wd-testimonial-card:hover::before { transform: scaleX(1); }

.wd-testimonial-quote {
  font-family: var(--font-accent);
  font-size: 5rem;
  color: rgba(242,217,160,0.12);
  line-height: 0.7;
  position: absolute;
  top: 16px;
  left: 20px;
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}

.wd-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.wd-testimonial-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--sand-gold);
}

.wd-testimonial-text {
  font-family: var(--font-accent);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  color: rgba(242,229,198,0.8);
  line-height: 1.85;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.wd-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(242,217,160,0.1);
  padding-top: 16px;
}
.wd-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(117,22,45,0.5);
  border: 1px solid rgba(242,217,160,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--sand-gold);
  font-weight: 600;
  flex-shrink: 0;
}
.wd-testimonial-name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--champagne);
}
.wd-testimonial-event {
  font-size: 0.72rem;
  color: var(--sand-gold);
  opacity: 0.8;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

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


/* ============================================================
   SECTION 8 — CTA BANNER
   ============================================================ */

.wd-cta {
  padding: 100px 0 60px;
  background: var(--dark-maroon);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.wd-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;
}
.wd-cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 700;
  color: rgba(242,217,160,0.03);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.wd-cta-content { position: relative; z-index: 1; }

.wd-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;
}
.wd-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--champagne);
  line-height: 1.12;
  margin-bottom: 20px;
}
.wd-cta-heading em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--sand-gold);
  font-size: 1.1em;
}
.wd-cta-subtext {
  color: rgba(242,229,198,0.6);
  font-size: 0.9rem;
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.wd-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.wd-cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 36px;
  max-width: 280px;
}
.wd-cta-line {
  flex: 1;
  height: 1px;
  background: rgba(242,217,160,0.2);
}
.wd-cta-diamond {
  width: 8px;
  height: 8px;
  background: var(--sand-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Subpage navigation */
.wd-subpage-nav {
  border-top: 1px solid rgba(242,217,160,0.12);
  padding-top: 32px;
  margin-top: 8px;
}
.wd-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.45);
  margin-bottom: 16px;
}
.wd-subpage-nav-links {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.wd-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.5);
  text-decoration: none;
  padding: 8px 18px;
  border-right: 1px solid rgba(242,217,160,0.12);
  transition: color 0.2s ease;
}
.wd-subpage-nav-link:last-child { border-right: none; }
.wd-subpage-nav-link:hover { color: var(--sand-gold); }

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