/* ============================================================
   CORPORATE-EVENTS.CSS — Sri Garuda Decorators
   Corporate 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
   ============================================================ */

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

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

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

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

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


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

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

.ce-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(59,1,11,0.65) 0%, rgba(59,1,11,0.1) 50%, rgba(59,1,11,0.75) 100%);
  z-index: 1;
}
.ce-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;
}
.ce-hero-deco-text {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 16rem);
  font-weight: 700;
  color: rgba(242,217,160,0.04);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.ce-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  padding-bottom: 100px;
}
.ce-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: ceHeroUp 0.7s 0.2s forwards;
}
.ce-hero-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--sand-gold);
  fill: none;
}
.ce-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: ceHeroUp 0.9s 0.4s forwards;
}
.ce-hero-title em {
  font-style: italic;
  color: var(--sand-gold);
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 1.1em;
}
.ce-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: ceHeroUp 0.8s 0.6s forwards;
}
.ce-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: ceHeroUp 0.8s 0.8s forwards;
}
.ce-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;
}
.ce-breadcrumb-link:hover { color: var(--sand-gold); }
.ce-breadcrumb-sep     { color: rgba(242,217,160,0.3); }
.ce-breadcrumb-current {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-gold);
  font-family: var(--font-body);
}

/* Stats strip at bottom of hero */
.ce-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);
}
.ce-hero-stat {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(242,217,160,0.12);
}
.ce-hero-stat:last-child { border-right: none; }
.ce-hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sand-gold);
  line-height: 1;
}
.ce-hero-stat-num em {
  font-style: normal;
  font-size: 0.7em;
  color: var(--champagne);
}
.ce-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;
}
.ce-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;
}
.ce-hero-scroll-line {
  width: 1px;
  height: 44px;
  background: var(--sand-gold);
  animation: scrollPulse 1.8s infinite;
}
@keyframes ceHeroUp   { 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
   ============================================================ */

.ce-overview {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
  overflow: hidden;
}
.ce-overview-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.ce-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;
}
.ce-overview-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #5a4a3a;
  margin-bottom: 24px;
}

/* Tags */
.ce-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.ce-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  border: 1px solid rgba(117,22,45,0.25);
  padding: 6px 14px;
  background: rgba(117,22,45,0.04);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.ce-tag:hover {
  background: var(--burgundy);
  color: var(--champagne);
  border-color: var(--burgundy);
}

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

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

.ce-overview-img-accent {
  position: absolute;
  bottom: -20px;
  left: -16px;
  width: 40%;
  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;
}
.ce-overview-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ce-overview-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: var(--dark-maroon);
  padding: 18px 20px;
  text-align: center;
  display: none;
}
.ce-overview-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sand-gold);
  line-height: 1;
}
.ce-overview-badge-num em {
  font-style: normal;
  font-size: 0.65em;
}
.ce-overview-badge-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,229,198,0.7);
  margin-top: 4px;
  line-height: 1.4;
}

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


/* ============================================================
   SECTION 3 — EVENT TYPES
   ============================================================ */

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

.ce-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ce-type-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);
}
.ce-type-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,217,160,0.28);
}

.ce-type-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ce-type-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.7);
}
.ce-type-card:hover .ce-type-card-img img {
  transform: scale(1.06);
  filter: brightness(0.5);
}
.ce-type-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,1,11,0.8) 0%, transparent 60%);
}

.ce-type-card-body {
  padding: 22px 20px;
}
.ce-type-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(242,217,160,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: border-color var(--transition), background var(--transition);
}
.ce-type-card:hover .ce-type-icon {
  border-color: var(--sand-gold);
  background: rgba(242,217,160,0.08);
}
.ce-type-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--sand-gold);
  fill: none;
}
.ce-type-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.ce-type-card:hover .ce-type-title { color: var(--sand-gold); }
.ce-type-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(242,229,198,0.6);
}

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


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

.ce-included {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
}
.ce-included-header {
  text-align: center;
  margin-bottom: 52px;
}
.ce-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(86,11,24,0.12);
  overflow: hidden;
}
.ce-included-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(86,11,24,0.1);
  background: #fff;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}
.ce-included-item:last-child { border-bottom: none; }
.ce-included-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--burgundy);
  transform: scaleY(0);
  transition: transform 0.35s ease;
}
.ce-included-item:hover { background: rgba(117,22,45,0.03); }
.ce-included-item:hover::before { transform: scaleY(1); }

.ce-included-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(117,22,45,0.12);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
  transition: color var(--transition);
}
.ce-included-item:hover .ce-included-num { color: rgba(117,22,45,0.25); }

.ce-included-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep-wine);
  margin-bottom: 6px;
}
.ce-included-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-mid);
}

@media (min-width: 768px) {
  .ce-included-grid { grid-template-columns: repeat(2, 1fr); }
  .ce-included-item:nth-child(odd) { border-right: 1px solid rgba(86,11,24,0.1); }
  .ce-included-item:nth-last-child(-n+2) { border-bottom: none; }
}


/* ============================================================
   SECTION 5 — GALLERY
   ============================================================ */

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

.ce-gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.ce-gallery-desc {
  color: rgba(242,229,198,0.6);
  font-size: 0.88rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Filter tabs */
.ce-filter-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid rgba(242,217,160,0.15);
  overflow: hidden;
}
.ce-filter-tabs::-webkit-scrollbar { display: none; }

.ce-filter-tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,229,198,0.55);
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  white-space: nowrap;
  border-right: 1px solid rgba(242,217,160,0.1);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.ce-filter-tab:last-child { border-right: none; }
.ce-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;
}
.ce-filter-tab:hover { color: var(--sand-gold); background: rgba(242,217,160,0.06); }
.ce-filter-tab.active { color: var(--sand-gold); background: rgba(242,217,160,0.08); }
.ce-filter-tab.active::after { transform: scaleX(1); }

/* Gallery grid */
.ce-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ce-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--dark-maroon);
}
.ce-gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.ce-gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }

.ce-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85);
}
.ce-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.65);
}

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

.ce-gallery-cat {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-gold);
  background: rgba(59,1,11,0.75);
  padding: 4px 10px;
}
.ce-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);
}
.ce-gallery-zoom:hover { background: rgba(242,229,198,0.15); }
.ce-gallery-zoom svg {
  width: 13px;
  height: 13px;
  stroke: var(--champagne);
}
.ce-gallery-item.ce-hidden { display: none; }

.ce-gallery-empty {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: rgba(242,229,198,0.5);
  font-size: 0.9rem;
}
.ce-gallery-empty.visible { display: block; }

.ce-gallery-cta { text-align: center; margin-top: 36px; }

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

/* Lightbox */
.ce-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;
}
.ce-lightbox.open { opacity: 1; pointer-events: all; }
.ce-lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 20px 40px;
}
.ce-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
}
.ce-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;
}
.ce-lightbox-close svg { width: 18px; height: 18px; stroke: var(--champagne); }
.ce-lightbox-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 12px;
}
.ce-lightbox-prev,
.ce-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);
}
.ce-lightbox-prev:hover,
.ce-lightbox-next:hover { background: var(--burgundy); }
.ce-lightbox-prev svg,
.ce-lightbox-next svg { width: 20px; height: 20px; stroke: var(--champagne); }
.ce-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
   ============================================================ */

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


/* ============================================================
   SECTION 7 — PROCESS
   ============================================================ */

.ce-process {
  padding: var(--section-pad) 0;
  background: var(--deep-wine);
  overflow: hidden;
}
.ce-process-header {
  text-align: center;
  margin-bottom: 56px;
}
.ce-process-desc {
  color: rgba(242,229,198,0.6);
  font-size: 0.9rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.8;
}
.ce-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
.ce-process-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(242,217,160,0.3), transparent);
}
.ce-process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  position: relative;
}
.ce-process-step-num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  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(--deep-wine);
  box-shadow: 0 0 0 1.5px var(--burgundy);
  transition: background var(--transition);
}
.ce-process-step:hover .ce-process-step-num { background: var(--dark-maroon); }
.ce-process-connector { display: none; }
.ce-process-connector--last { display: none; }
.ce-process-content { flex: 1; }
.ce-process-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.ce-process-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--sand-gold);
  fill: none;
  stroke-width: 1.5;
}
.ce-process-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 8px;
}
.ce-process-desc-item {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(242,229,198,0.6);
}

@media (min-width: 900px) {
  .ce-process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .ce-process-steps::before { display: none; }
  .ce-process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }
  .ce-process-step-num { margin-bottom: 16px; }
  .ce-process-icon { margin: 0 auto 12px; }
}


/* ============================================================
   SECTION 8 — TESTIMONIALS
   ============================================================ */

.ce-testimonials {
  padding: var(--section-pad) 0;
  background: var(--off-white, #FAF7F2);
}
.ce-testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}
.ce-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ce-testimonial-card {
  background: #fff;
  border: 1px solid rgba(86,11,24,0.1);
  padding: 32px 26px;
  position: relative;
  border-bottom: 3px solid var(--burgundy);
  box-shadow: 0 4px 20px rgba(59,1,11,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ce-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(59,1,11,0.12);
}
.ce-testimonial-quote {
  font-family: var(--font-accent);
  font-size: 5rem;
  color: rgba(117,22,45,0.08);
  line-height: 0.7;
  position: absolute;
  top: 16px;
  left: 20px;
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}
.ce-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.ce-testimonial-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--sand-gold);
}
.ce-testimonial-text {
  font-family: var(--font-accent);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.ce-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(86,11,24,0.1);
  padding-top: 16px;
}
.ce-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--champagne);
  border: 2px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--burgundy);
  font-weight: 600;
  flex-shrink: 0;
}
.ce-testimonial-name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--near-black);
}
.ce-testimonial-event {
  font-size: 0.72rem;
  color: var(--burgundy);
  opacity: 0.8;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

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


/* ============================================================
   SECTION 9 — CTA BANNER
   ============================================================ */

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

/* Subpage nav */
.ce-subpage-nav {
  border-top: 1px solid rgba(242,217,160,0.12);
  padding-top: 32px;
}
.ce-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;
}
.ce-subpage-nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ce-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;
}
.ce-subpage-nav-link:last-child { border-right: none; }
.ce-subpage-nav-link:hover { color: var(--sand-gold); }

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