/* ============================================================
   OUTDOOR-EVENTS.CSS — Sri Garuda Decorators
   Outdoor Events 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
   ============================================================ */

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

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

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

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

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


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

.oe-hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-wine);
}
.oe-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/outdoor/hero-outdoor.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.06);
  transition: transform 8s ease;
  will-change: transform;
}
.oe-hero.loaded .oe-hero-bg { transform: scale(1); }
.oe-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;
}
.oe-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;
}
.oe-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;
}
.oe-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  padding-bottom: 100px;
}
.oe-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: oeHeroUp 0.7s 0.2s forwards;
}
.oe-hero-badge svg { width: 13px; height: 13px; stroke: var(--sand-gold); fill: none; }
.oe-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: oeHeroUp 0.9s 0.4s forwards;
}
.oe-hero-title em {
  font-style: italic;
  color: var(--sand-gold);
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 1.1em;
}
.oe-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: oeHeroUp 0.8s 0.6s forwards;
}
.oe-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: oeHeroUp 0.8s 0.8s forwards;
}
.oe-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;
}
.oe-breadcrumb-link:hover { color: var(--sand-gold); }
.oe-breadcrumb-sep     { color: rgba(242,217,160,0.3); }
.oe-breadcrumb-current {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-gold);
  font-family: var(--font-body);
}
.oe-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);
}
.oe-hero-stat {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(242,217,160,0.12);
}
.oe-hero-stat:last-child { border-right: none; }
.oe-hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sand-gold);
  line-height: 1;
}
.oe-hero-stat-num em { font-style: normal; font-size: 0.7em; color: var(--champagne); }
.oe-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;
}
.oe-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;
}
.oe-hero-scroll-line {
  width: 1px; height: 44px;
  background: var(--sand-gold);
  animation: scrollPulse 1.8s infinite;
}
@keyframes oeHeroUp   { 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
   ============================================================ */

.oe-overview {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
  overflow: hidden;
}
.oe-overview-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.oe-overview-img { position: relative; padding-bottom: 24px; }
.oe-overview-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.oe-overview-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.oe-overview-img-main:hover img { transform: scale(1.04); }
.oe-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;
}
.oe-overview-img-float img { width: 100%; height: 100%; object-fit: cover; }
.oe-overview-badge {
  position: absolute;
  top: 20px; left: -12px;
  background: var(--burgundy);
  padding: 16px 18px;
  text-align: center;
  display: none;
}
.oe-overview-badge svg {
  width: 20px; height: 20px;
  stroke: var(--sand-gold); fill: none;
  display: block; margin: 0 auto 6px;
}
.oe-overview-badge span {
  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;
}
.oe-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: 16px;
}
.oe-overview-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #5a4a3a;
  margin-bottom: 28px;
}

/* Venue grid */
.oe-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(86,11,24,0.12);
  overflow: hidden;
  margin-bottom: 32px;
}
.oe-venue-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);
}
.oe-venue-item:nth-child(even)      { border-right: none; }
.oe-venue-item:nth-last-child(-n+2) { border-bottom: none; }
.oe-venue-item:hover { background: rgba(117,22,45,0.04); }
.oe-venue-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 5px;
}
.oe-venue-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);
}
.oe-overview-cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (min-width: 960px) {
  .oe-overview-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
  .oe-overview-img-float { display: block; }
  .oe-overview-badge     { display: block; }
}


/* ============================================================
   SECTION 3 — WHAT WE SET UP
   ============================================================ */

.oe-services {
  padding: var(--section-pad) 0;
  background: var(--deep-wine);
  overflow: hidden;
  position: relative;
}
.oe-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.oe-services-header { text-align: center; margin-bottom: 52px; }
.oe-services-desc {
  color: rgba(242,229,198,0.6);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.oe-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.oe-service-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,217,160,0.12);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.oe-service-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sand-gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.oe-service-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(242,217,160,0.28);
  transform: translateY(-4px);
}
.oe-service-item:hover::after { transform: scaleX(1); }
.oe-service-icon {
  width: 46px; height: 46px;
  border: 1px solid rgba(242,217,160,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: border-color var(--transition), background var(--transition);
}
.oe-service-item:hover .oe-service-icon {
  border-color: var(--sand-gold);
  background: rgba(242,217,160,0.08);
}
.oe-service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--sand-gold); fill: none; stroke-width: 1.5;
}
.oe-service-icon svg[d*="M12 21.593"] { fill: var(--sand-gold); stroke: none; }
.oe-service-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.oe-service-item:hover .oe-service-title { color: var(--sand-gold); }
.oe-service-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(242,229,198,0.6);
}
@media (min-width: 600px)  { .oe-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .oe-services-grid { grid-template-columns: repeat(3, 1fr); } }


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

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

/* HEADER */

.oe-gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

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

/* FILTER TABS */

.oe-filter-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;

  overflow-x: auto;
  scrollbar-width: none;

  border: 1px solid rgba(86,11,24,0.15);

  overflow: hidden;

  width: fit-content;

  margin-inline: auto;

  background: #fff;
}

.oe-filter-tabs::-webkit-scrollbar {
  display: none;
}

.oe-filter-tab {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--text-mid);
  background: #fff;

  border: none;

  padding: 11px 22px;

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

.oe-filter-tab:last-child {
  border-right: none;
}

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

.oe-filter-tab:hover {
  color: var(--burgundy);
  background: rgba(117,22,45,0.04);
}

.oe-filter-tab.active {
  color: var(--burgundy);
  background: rgba(117,22,45,0.05);
}

.oe-filter-tab.active::after {
  transform: scaleX(1);
}

/* GALLERY GRID */

.oe-gallery-grid {
  display: grid;

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

  gap: 10px;

  grid-auto-flow: dense;

  max-width: 1500px;

  margin: 0 auto;

  padding-inline: 24px;
}

/* GALLERY ITEM */

.oe-gallery-item {
  position: relative;

  overflow: hidden;

  aspect-ratio: 1;

  cursor: pointer;

  background: var(--champagne);
}

/* TALL ITEM */

.oe-gallery-item--tall {
  grid-row: span 2;

  aspect-ratio: 1;
}

/* WIDE ITEM */

.oe-gallery-item--wide {
  grid-column: span 2;

  aspect-ratio: 16 / 9;
}

/* IMAGE */

.oe-gallery-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.6s ease;
}

/* HOVER */

.oe-gallery-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY */

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

.oe-gallery-item:hover .oe-gallery-overlay {
  opacity: 1;
}

/* CATEGORY */

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

/* ZOOM */

.oe-gallery-zoom {
  width: 34px;

  height: 34px;

  border: 1px solid rgba(242,229,198,0.4);

  background: none;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: background var(--transition);
}

.oe-gallery-zoom:hover {
  background: rgba(242,229,198,0.15);
}

.oe-gallery-zoom svg {
  width: 13px;

  height: 13px;

  stroke: var(--champagne);
}

/* HIDDEN */

.oe-gallery-item.oe-hidden {
  display: none;
}

/* EMPTY */

.oe-gallery-empty {
  display: none;

  text-align: center;

  padding: 48px 24px;

  color: var(--text-mid);

  font-size: 0.9rem;
}

.oe-gallery-empty.visible {
  display: block;
}

/* CTA */

.oe-gallery-cta {
  text-align: center;

  margin-top: 32px;
}

/* TABLET */

@media (min-width: 768px) {

  .oe-gallery-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    padding-inline: 32px;
  }
}

/* DESKTOP */

@media (min-width: 1024px) {

  .oe-gallery-grid {
    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    padding-inline: 48px;
  }
}

/* LIGHTBOX */

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

.oe-lightbox.open {
  opacity: 1;

  pointer-events: all;
}

.oe-lightbox-inner {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: 100%;

  padding: 60px 20px 40px;
}

.oe-lightbox-img {
  max-width: 90vw;

  max-height: 80vh;

  object-fit: contain;

  display: block;

  transition: opacity 0.15s ease;
}

.oe-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: background var(--transition);
}

.oe-lightbox-close:hover {
  background: var(--burgundy);
}

.oe-lightbox-close svg {
  width: 18px;

  height: 18px;

  stroke: var(--champagne);
}

.oe-lightbox-controls {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  pointer-events: none;

  padding: 0 12px;
}

.oe-lightbox-prev,
.oe-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);
}

.oe-lightbox-prev:hover,
.oe-lightbox-next:hover {
  background: var(--burgundy);
}

.oe-lightbox-prev svg,
.oe-lightbox-next svg {
  width: 20px;

  height: 20px;

  stroke: var(--champagne);
}

.oe-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
   ============================================================ */

.oe-swiper-section {
  padding: var(--section-pad) 0;
  background: var(--dark-maroon);
  overflow: hidden;
  position: relative;
}
.oe-swiper-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.oe-swiper-header { text-align: center; margin-bottom: 40px; padding: 0 20px; }
.oe-swiper-track-wrap { position: relative; overflow: hidden; }
.oe-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;
}
.oe-swiper-track.dragging { cursor: grabbing; transition: none; }
.oe-swiper-slide { flex: 0 0 calc(100% - 40px); position: relative; overflow: hidden; }
.oe-swiper-slide img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.oe-swiper-slide:hover img { transform: scale(1.03); }
.oe-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.88), transparent);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500;
  color: var(--champagne);
}
.oe-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);
}
.oe-swiper-btn:hover { background: var(--burgundy); }
.oe-swiper-btn svg { width: 20px; height: 20px; stroke: var(--champagne); fill: none; }
.oe-swiper-btn--prev { left: 4px; }
.oe-swiper-btn--next { right: 4px; }
.oe-swiper-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 24px; padding: 0 20px;
}
.oe-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;
}
.oe-swiper-dot.active {
  background: var(--sand-gold); width: 22px; border-radius: 3px;
}
@media (min-width: 600px)  { .oe-swiper-slide { flex: 0 0 calc(50% - 28px); } }
@media (min-width: 1024px) { .oe-swiper-slide { flex: 0 0 calc(33.333% - 24px); } }


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

.oe-process {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
  overflow: hidden;
}
.oe-process-header { text-align: center; margin-bottom: 52px; }
.oe-process-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.8;
}
.oe-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
.oe-process-steps::before {
  content: '';
  position: absolute;
  left: 25px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(117,22,45,0.2), transparent);
}
.oe-process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
}
.oe-process-num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--champagne);
  background: var(--burgundy);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  border: 3px solid var(--off-white, #FAF7F2);
  box-shadow: 0 0 0 1.5px var(--burgundy);
  transition: background var(--transition);
}
.oe-process-step:hover .oe-process-num { background: var(--dark-maroon); }
.oe-process-content { flex: 1; }
.oe-process-icon {
  width: 30px; height: 30px;
  margin-bottom: 10px;
}
.oe-process-icon svg {
  width: 100%; height: 100%;
  stroke: var(--burgundy); fill: none; stroke-width: 1.5;
}
.oe-process-icon svg[d*="M12 21.593"] { fill: var(--burgundy); stroke: none; }
.oe-process-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500;
  color: var(--deep-wine); margin-bottom: 8px;
}
.oe-process-desc-item {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-mid);
}
@media (min-width: 900px) {
  .oe-process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .oe-process-steps::before { display: none; }
  .oe-process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }
  .oe-process-num { margin-bottom: 16px; }
  .oe-process-icon { margin: 0 auto 10px; }
}


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

.oe-testimonials {
  padding: var(--section-pad) 0;
  background: var(--deep-wine);
}
.oe-testimonials-header { text-align: center; margin-bottom: 48px; }
.oe-testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.oe-testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(242,217,160,0.12);
  padding: 30px 24px; position: relative;
  transition: background var(--transition), transform var(--transition);
}
.oe-testimonial-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--sand-gold);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.oe-testimonial-card:hover {
  background: rgba(255,255,255,0.08); transform: translateY(-4px);
}
.oe-testimonial-card:hover::after { transform: scaleX(1); }
.oe-testimonial-quote {
  font-family: var(--font-accent);
  font-size: 5rem; color: rgba(242,217,160,0.1);
  line-height: 0.7; position: absolute;
  top: 16px; left: 18px;
  font-weight: 700; user-select: none; pointer-events: none;
}
.oe-testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.oe-testimonial-stars svg { width: 13px; height: 13px; fill: var(--sand-gold); }
.oe-testimonial-text {
  font-family: var(--font-accent);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  color: rgba(242,229,198,0.82);
  line-height: 1.85; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.oe-testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(242,217,160,0.1);
  padding-top: 16px;
}
.oe-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;
}
.oe-testimonial-name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700; color: var(--champagne);
}
.oe-testimonial-event {
  font-size: 0.72rem; color: var(--sand-gold);
  opacity: 0.8; letter-spacing: 0.04em; margin-top: 2px;
}
@media (min-width: 768px) { .oe-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }


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

.oe-cta {
  padding: 100px 0 60px;
  background: var(--dark-maroon);
  position: relative; overflow: hidden; text-align: center;
}
.oe-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;
}
.oe-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;
}
.oe-cta-content { position: relative; z-index: 1; }
.oe-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;
}
.oe-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;
}
.oe-cta-heading em {
  font-family: var(--font-accent);
  font-style: italic; color: var(--sand-gold); font-size: 1.1em;
}
.oe-cta-subtext {
  color: rgba(242,229,198,0.6); font-size: 0.9rem;
  max-width: 500px; margin: 0 auto 36px; line-height: 1.8;
}
.oe-cta-buttons {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}
.oe-cta-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 0 auto 36px; max-width: 280px;
}
.oe-cta-line { flex: 1; height: 1px; background: rgba(242,217,160,0.2); }
.oe-cta-diamond {
  width: 8px; height: 8px;
  background: var(--sand-gold); transform: rotate(45deg); flex-shrink: 0;
}
.oe-subpage-nav { border-top: 1px solid rgba(242,217,160,0.12); padding-top: 32px; }
.oe-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;
}
.oe-subpage-nav-links { display: flex; justify-content: center; flex-wrap: wrap; }
.oe-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;
}
.oe-subpage-nav-link:last-child { border-right: none; }
.oe-subpage-nav-link:hover { color: var(--sand-gold); }

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