/* ═══════════════════════════════════════════════════════
   iCANDY EVENTS — SECTION STYLES
   ═══════════════════════════════════════════════════════ */

/* ─── HERO SECTION ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: var(--z-content);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&h=1080&fit=crop&q=80') center/cover no-repeat;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 15, 0.6) 0%,
      rgba(10, 10, 15, 0.4) 40%,
      rgba(10, 10, 15, 0.7) 100%
    );
}

/* Hero floating decorations */
.hero__float {
  position: absolute;
  color: var(--gold);
  opacity: 0.15;
  font-size: 24px;
  animation: heroFloat 8s ease-in-out infinite;
  z-index: 1;
}

.hero__float--1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 32px; }
.hero__float--2 { top: 25%; right: 15%; animation-delay: 1.5s; font-size: 20px; color: var(--rose); }
.hero__float--3 { bottom: 30%; left: 20%; animation-delay: 3s; font-size: 18px; }
.hero__float--4 { top: 40%; right: 8%; animation-delay: 4.5s; font-size: 22px; color: var(--rose-light); }
.hero__float--5 { bottom: 20%; right: 25%; animation-delay: 2s; font-size: 28px; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-25px) rotate(-3deg); }
  75% { transform: translateY(-10px) rotate(2deg); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--container-padding);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--champagne));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title-script {
  font-family: var(--font-script);
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--rose-light);
  -webkit-text-fill-color: var(--rose-light);
}

/* Hero rotating words */
.hero__title-rotator {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
}

.hero__title-word {
  font-family: var(--font-script);
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--rose-light);
  -webkit-text-fill-color: var(--rose-light);
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero__title-word--active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Hero scroll indicator */
.hero__scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* Hero polaroids */
.hero__polaroids {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.polaroid {
  position: absolute;
  width: 140px;
  transform: rotate(var(--rotation, 0deg));
  opacity: 0;
  transition: opacity 0.8s;
  transform-origin: top center;
}

.polaroid.visible {
  opacity: 1;
  animation: polaroidSwing 4s ease-in-out infinite;
}

@keyframes polaroidSwing {
  0%, 100% { transform: rotate(var(--rotation, 0deg)); }
  25% { transform: rotate(calc(var(--rotation, 0deg) + 6deg)); }
  75% { transform: rotate(calc(var(--rotation, 0deg) - 6deg)); }
}

.polaroid--1 { top: 12%; left: 5%; --rotation: -8deg; }
.polaroid--2 { top: 20%; right: 5%; --rotation: 6deg; }
.polaroid--3 { bottom: 15%; left: 8%; --rotation: 4deg; }

.polaroid__inner {
  background: #fff;
  padding: 10px 10px 30px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.polaroid__img {
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.polaroid__caption {
  font-family: var(--font-script);
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 10px;
}

/* ─── TIME CAPSULE SECTION ──────────────────────────── */
.timecapsule {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: var(--z-content);
  overflow: hidden;
}

.timecapsule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201, 169, 110, 0.15) 10%,
    rgba(201, 169, 110, 0.15) 90%,
    transparent
  );
}

.timeline {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(201, 169, 110, 0.1);
  transform: translateX(-50%);
}

.timeline__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--gold), var(--rose));
  border-radius: 2px;
  transition: height 0.1s linear;
}

.timeline__event {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 100px;
}

.timeline__event:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 3;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
}

.timeline__dot-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0; }
}

.timeline__card {
  width: 45%;
}

.timeline__card--left {
  margin-right: auto;
  padding-right: 60px;
}

.timeline__card--right {
  margin-left: auto;
  padding-left: 60px;
}

.timeline__card-inner {
  padding: 32px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

.timeline__card-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__year {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.timeline__card-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.timeline__card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.timeline__card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.timeline__card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo);
}

.timeline__card-img:hover {
  transform: scale(1.03);
}

.timeline__card-stats {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

/* ─── OUR MAGIC (SERVICES) ──────────────────────────── */
.magic {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: var(--z-content);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(196, 120, 138, 0.04) 0%, transparent 60%),
    var(--bg-secondary);
}

.services {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  position: relative;
}

.service-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), transparent 50%, rgba(196, 120, 138, 0.2));
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-card__glow {
  opacity: 1;
}

.service-card__inner {
  position: relative;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.service-card:hover .service-card__inner {
  transform: translateY(-4px);
}

.service-card__icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card__icon {
  font-size: 32px;
  position: relative;
  z-index: 1;
}

.service-card__icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  animation: iconRingSpin 8s linear infinite;
}

@keyframes iconRingSpin {
  to { transform: rotate(360deg); }
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out-expo), opacity 0.4s;
  opacity: 0;
}

.service-card.expanded .service-card__expand {
  max-height: 400px;
  opacity: 1;
}

.service-card__expand-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 16px;
}

.service-card__features {
  list-style: none;
  margin-bottom: 16px;
}

.service-card__features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 13px;
  color: var(--text-secondary);
}

.service-card__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.service-card__btn {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: gap 0.3s;
}

.service-card__btn:hover {
  gap: 14px;
}

/* ─── TRANSFORMATION SECTION ────────────────────────── */
.transformation {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: var(--z-content);
}

.transform-showcase {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.transform-stage {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.transform-stage--reverse {
  grid-template-columns: auto 1fr 1fr;
}

.transform-stage--reverse .transform-stage__visual {
  order: -1;
}

.transform-stage--reverse .transform-stage__content {
  order: 1;
}

.transform-stage__number {
  font-family: var(--font-serif);
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 800;
  color: rgba(201, 169, 110, 0.06);
  line-height: 1;
}

.transform-stage__content {
  padding: 20px 0;
}

.transform-stage__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.transform-stage__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.transform-stage__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.transform-stage__visual {
  position: relative;
}

.transform-stage__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.transform-stage__img {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
}

.transform-stage:hover .transform-stage__img {
  transform: scale(1.05);
}

.transform-stage__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
}

/* Before & After Slider */
.before-after {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 var(--container-padding);
}

.before-after__title {
  font-family: var(--font-serif);
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.before-after__container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}

.before-after__before,
.before-after__after {
  position: absolute;
  inset: 0;
}

.before-after__before {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}

.before-after__after {
  z-index: 1;
}

.before-after__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.before-after__before .before-after__img {
  width: 800px;
  max-width: none;
}

.before-after__label {
  position: absolute;
  top: 20px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
}

.before-after__label--before {
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
}

.before-after__label--after {
  right: 20px;
  background: rgba(201, 169, 110, 0.8);
  color: var(--bg-primary);
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: ew-resize;
}

.before-after__handle-line {
  width: 2px;
  flex: 1;
  background: var(--gold);
}

.before-after__handle-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.5);
  flex-shrink: 0;
}

/* ─── WHY iCANDY SECTION ────────────────────────────── */
.why {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: var(--z-content);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(196, 120, 138, 0.05) 0%, transparent 50%),
    var(--bg-secondary);
}

.reasons {
  max-width: var(--container-max);
  margin: 0 auto 80px;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reason-card {
  padding: 36px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.reason-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.15);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.reason-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}

.reason-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
}

/* Testimonials */
.testimonials {
  max-width: var(--container-max);
  margin: 0 auto 80px;
  padding: 0 var(--container-padding);
  position: relative;
}

.testimonials__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(100px, 15vw, 250px);
  font-weight: 800;
  color: rgba(201, 169, 110, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  padding: 36px;
  position: relative;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(201, 169, 110, 0.3);
}

.testimonial__name {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.testimonial__event {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Metrics */
.metrics {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric {
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.metric__number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--gold-light);
  display: inline;
}

.metric__plus,
.metric__percent {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gold);
}

.metric__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── LIVING GALLERY ────────────────────────────────── */
.gallery {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: var(--z-content);
}

.gallery-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.gallery-item__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

/* ─── CTA / CONTACT SECTION ─────────────────────────── */
.cta-section {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: var(--z-content);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-section__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.cta-section__gradient-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent);
  top: -100px;
  right: -100px;
  animation: orbFloat 15s ease-in-out infinite;
}

.cta-section__gradient-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 120, 138, 0.12), transparent);
  bottom: -50px;
  left: -50px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

.cta-section__gradient-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 213, 168, 0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, -60px); }
  75% { transform: translate(40px, -20px); }
}

.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
}

.cta-section__sparkle {
  font-size: 40px;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  animation: sparkleFloat 4s ease-in-out infinite;
}

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-section__desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Contact Form */
.cta-form {
  padding: 40px;
  text-align: left;
  margin-bottom: 32px;
}

.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.cta-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.cta-form__group:last-child:not(.cta-form__row .cta-form__group) {
  margin-bottom: 24px;
}

.cta-form__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.cta-form__input {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s;
  outline: none;
}

.cta-form__input:focus {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.05);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
}

.cta-form__input::placeholder {
  color: var(--text-muted);
}

.cta-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8b0a8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cta-form__select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.cta-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-section__contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section__link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.cta-section__link:hover {
  color: var(--gold);
}

.cta-section__divider {
  color: var(--text-muted);
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: var(--z-content);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 40px;
  background: var(--bg-primary);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
}

.footer__brand {
  margin-bottom: 32px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.footer__logo-accent {
  color: var(--gold);
  font-weight: 400;
  margin-left: 4px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   BOOK GALLERY
   ═══════════════════════════════════════════════════════ */
.book-gallery {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  perspective: 1500px;
}

.book-gallery__book {
  position: relative;
  width: 100%;
  height: 380px;
  transform-style: preserve-3d;
}

.book-gallery__page {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s;
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
}

.book-gallery__page--active {
  opacity: 1;
  pointer-events: auto;
  transform: rotateY(0deg);
}

.book-gallery__page--flipped {
  opacity: 1;
  transform: rotateY(-180deg);
}

.book-gallery__page-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.book-gallery__page-front,
.book-gallery__page-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 4px 16px 16px 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.book-gallery__page-back {
  transform: rotateY(180deg);
}

.book-gallery__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.book-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 24px;
  background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 100%);
  color: #fff;
}

.book-gallery__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.book-gallery__caption h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

/* Book spine shadow effect */
.book-gallery__book::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  bottom: 5%;
  width: 20px;
  background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
  z-index: 10;
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}

.book-gallery__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.book-gallery__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.book-gallery__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.book-gallery__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.book-gallery__btn:disabled:hover {
  border-color: var(--glass-border);
  color: var(--text-secondary);
  transform: none;
}

.book-gallery__pages {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════════ */
.pricing-section {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: var(--z-content);
}

.pricing-cards {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pricing-card--featured {
  transform: scale(1.05);
  border-color: rgba(201, 169, 110, 0.3) !important;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), var(--glass-bg)) !important;
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.15);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.pricing-card__ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--gold);
  opacity: 0.3;
}

.pricing-card__header {
  padding: 40px 32px 32px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.pricing-card__tier {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-card__currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
}

.pricing-card__amount {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-card__period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-card__features {
  padding: 32px 32px 16px;
  list-style: none;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pricing-card__feature svg {
  flex-shrink: 0;
  color: var(--gold);
}

.pricing-card__feature--disabled {
  opacity: 0.35;
}

.pricing-card__feature--disabled svg {
  color: var(--text-muted);
}

.pricing-card__btn {
  display: block;
  margin: 16px 32px 32px;
  text-align: center;
}

/* Pricing tier accent colors */
.pricing-card__header--silver .pricing-card__tier {
  color: #c0c0c0;
}

.pricing-card__header--gold .pricing-card__tier {
  color: var(--gold);
}

.pricing-card__header--platinum .pricing-card__tier {
  background: linear-gradient(135deg, #e5e4e2, #b4b4b4, #e5e4e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   UPCOMING EVENTS
   ═══════════════════════════════════════════════════════ */
.events-section {
  position: relative;
  padding: clamp(40px, 6vh, 80px) 0;
  z-index: var(--z-content);
}

.event-card {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
}

.event-card--horizontal {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  overflow: hidden;
  max-height: 420px; /* raised so all text fits comfortably */
}

.event-card__content {
  padding: 22px 30px;
  text-align: left;
  overflow: hidden;
}

.event-card__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(196, 120, 138, 0.18), rgba(201, 169, 110, 0.10));
  border: 1px solid rgba(196, 120, 138, 0.35);
  color: var(--rose-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: badgePulseGlow 2s ease-in-out infinite;
}

@keyframes badgePulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 120, 138, 0.20); }
  50% { box-shadow: 0 0 20px 4px rgba(196, 120, 138, 0.12); }
}

.event-card__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.event-card__meta {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.event-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.event-card__meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Countdown */
.event-card__countdown {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 8px 8px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 12px;
}

.countdown__num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.countdown__sep {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.5;
  padding-bottom: 10px;
}

/* Event card body — hidden on desktop compact view via max-height clip */
.event-card__body {
  text-align: left;
  margin-bottom: 16px;
}

.event-card__body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 6px;
  display: none;
}

.event-card__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.event-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.event-card__list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.event-card__btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* Right-side image panel (fade in/out) */
.event-card__media {
  position: relative;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.event-card__media-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: eventMediaFade 12s ease-in-out infinite;
}

.event-card__media-img--1 { animation-delay: 0s; }
.event-card__media-img--2 { animation-delay: 4s; }
.event-card__media-img--3 { animation-delay: 8s; }

.event-card__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.25) 60%, rgba(10, 10, 15, 0.25) 100%);
  pointer-events: none;
}

@keyframes eventMediaFade {
  0% { opacity: 0; transform: scale(1.04); }
  10% { opacity: 1; }
  33% { opacity: 1; transform: scale(1.00); }
  45% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.04); }
}

/* Hero event CTA button */
.btn--event-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, #e07020, #f59e0b, #f7c948) !important;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  animation: ctaPulse 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.btn--event-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  animation: ctaShimmer 3s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.50), 0 0 60px rgba(247, 201, 72, 0.20); }
}

.btn--event-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.50);
}

.btn--event-cta svg {
  flex-shrink: 0;
}

.btn--event-cta__countdown {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.3);
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0f;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 30px rgba(201, 169, 110, 0.45);
}

/* ═══════════════════════════════════════════════════════
   NEW COMPONENTS
   ═══════════════════════════════════════════════════════ */

/* ─── CONFETTI BURST ────────────────────────────────── */
.confetti-burst {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  z-index: 5;
}

.confetti-burst.active {
  opacity: 1;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  top: 0;
  left: 50%;
  opacity: 0;
}

.confetti-burst.active .confetti-piece {
  animation: confettiFall 1.6s ease-out forwards;
}

.confetti-piece:nth-child(1) { background: #c9a96e; animation-delay: 0s; --x: -80px; --r: 720deg; }
.confetti-piece:nth-child(2) { background: #c4788a; animation-delay: 0.05s; --x: 60px; --r: -540deg; width: 6px; height: 10px; }
.confetti-piece:nth-child(3) { background: #e8d5b7; animation-delay: 0.1s; --x: -40px; --r: 360deg; border-radius: 50%; }
.confetti-piece:nth-child(4) { background: #c9a96e; animation-delay: 0.15s; --x: 90px; --r: -720deg; }
.confetti-piece:nth-child(5) { background: #c4788a; animation-delay: 0.08s; --x: -100px; --r: 540deg; width: 10px; height: 6px; }
.confetti-piece:nth-child(6) { background: #f0c27f; animation-delay: 0.12s; --x: 30px; --r: -360deg; border-radius: 50%; }
.confetti-piece:nth-child(7) { background: #e8d5b7; animation-delay: 0.03s; --x: -60px; --r: 450deg; }
.confetti-piece:nth-child(8) { background: #c9a96e; animation-delay: 0.18s; --x: 70px; --r: -630deg; width: 6px; height: 12px; }

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--x), 200px) rotate(var(--r)) scale(0.3);
  }
}

/* ─── STICKERS ──────────────────────────────────────── */
.sticker {
  position: absolute;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  background: rgba(201, 169, 110, 0.85);
  color: #fff;
  z-index: 4;
  transform: rotate(-3deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.sticker--top-right { top: 12px; right: 12px; transform: rotate(3deg); }
.sticker--top-left { top: 12px; left: 12px; transform: rotate(-5deg); }
.sticker--bottom-right { bottom: 12px; right: 12px; transform: rotate(2deg); }
.sticker--bottom-left { bottom: 12px; left: 12px; transform: rotate(-3deg); }

/* ─── STAT (OLD TIMELINE FORMAT) ────────────────────── */
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat__num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
}

.stat__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── WHY SECTION — 2-COLUMN HORIZONTAL CARDS ───────── */
.why-section {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: var(--z-content);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(196, 120, 138, 0.05) 0%, transparent 50%),
    var(--bg-secondary);
}

.reasons-grid {
  max-width: var(--container-max);
  margin: 0 auto 80px;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.reasons-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-card-h {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.reason-card-h::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.reason-card-h:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 110, 0.15);
}

.reason-card-h:hover::before {
  opacity: 1;
}

.reason-card-h__icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.reason-card-h__body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.reason-card-h__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.reason-card-h__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── TESTIMONIAL MARQUEE ───────────────────────────── */
.marquee-track {
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track__inner {
  display: flex;
  gap: 20px;
  width: max-content;
}

.marquee-track--rtl .marquee-track__inner {
  animation: marqueeRTL 45s linear infinite;
}

.marquee-track--ltr .marquee-track__inner {
  animation: marqueeLTR 45s linear infinite;
}

@keyframes marqueeRTL {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeLTR {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonial-mini {
  flex-shrink: 0;
  width: 340px;
  padding: 24px;
  border-radius: 16px;
}

.testimonial-mini__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.testimonial-mini__text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.testimonial-mini__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-mini__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(201, 169, 110, 0.3);
  flex-shrink: 0;
}

.testimonial-mini__author strong {
  font-size: 13px;
}

.testimonial-mini__author small {
  font-size: 11px;
  color: var(--gold);
}

/* ─── FILM STRIP ────────────────────────────────────── */
.film-strip {
  max-width: 100%;
  margin: 32px auto 0;
  padding: 0;
  position: relative;
}

.film-strip__holes {
  display: flex;
  justify-content: space-around;
  padding: 0 16px;
  height: 10px;
}

.film-strip__holes::before {
  content: '● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ●';
  font-size: 5px;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.film-strip__frames {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid rgba(201, 169, 110, 0.15);
  border-right: 3px solid rgba(201, 169, 110, 0.15);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 110, 0.3) transparent;
  justify-content: center;
}

.film-strip__frame {
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 4px;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
}

.film-strip__frame--active {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.3);
}

.film-strip__frame:hover {
  border-color: rgba(201, 169, 110, 0.5);
}

.film-strip__thumb {
  width: 90px;
  height: 60px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.film-strip__label {
  display: block;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

[data-theme="light"] .film-strip__frames {
  background: rgba(0, 0, 0, 0.06);
}

/* ─── PROCESS JOURNEY (TRANSFORMATION REDESIGN) ────── */
.process-journey {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
  position: relative;
  z-index: 2;
}

.process-step__line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 110, 0.1));
  margin-top: 8px;
  min-height: 40px;
}

.process-step__line--last {
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step__card {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  padding: 28px;
  border-radius: 20px;
  transition: transform 0.5s var(--ease-out-expo);
}

.process-step--reverse .process-step__card {
  grid-template-columns: 1.2fr 1fr;
}

.process-step--reverse .process-step__img-wrap {
  order: 1;
}

.process-step--reverse .process-step__content {
  order: 0;
}

.process-step__card:hover {
  transform: translateY(-4px);
}

.process-step__img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.process-step__img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
}

.process-step__card:hover .process-step__img {
  transform: scale(1.05);
}

.process-step__note {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-family: var(--font-script);
  font-size: 14px;
  color: var(--champagne);
  transform: rotate(-2deg);
}

.process-step__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-step__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.process-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-step__tag {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}
