html, body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ===============================
   EVENTS — INTRO
================================ */

.events-intro {
  padding: 180px 8% 140px;
  background: #f8f7f4;
}

.events-intro-inner {
  max-width: 1100px;
}

.events-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  color: #777;
  margin-bottom: 32px;
}

.events-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.events-subtext {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ===============================
   EVENT BLOCKS
================================ */

.event-block {
  padding: 140px 8%;
  background: #ffffff;
}

.event-block:nth-child(even) {
  background: #f8f7f4;
}

.event-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
}

.event-reverse .event-inner {
  grid-template-columns: 1fr 1.1fr;
}

.event-content {
  max-width: 520px;
}

.event-year {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: 'Inter', sans-serif;
  color: #777;
  margin-bottom: 16px;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.event-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

/* ===============================
   EVENT IMAGES
================================ */

.event-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* SAFE for events */
  background: #eae8e4;
  overflow: hidden;
}

.event-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-block:hover .event-image img {
  transform: scale(1.035);
}

/* ===============================
   EVENTS — CTA
================================ */

.events-cta {
  padding: 160px 8%;
  background: #121212;
  color: #e8e5df;
  text-align: center;
}

.events-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.events-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.events-cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: #bfbdb8;
  margin-bottom: 48px;
}

.events-cta-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #ffffff;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .event-inner,
  .event-reverse .event-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .event-block {
    padding: 100px 6%;
  }

  .events-intro {
    padding: 140px 6% 100px;
  }
}

/* ===============================
   LUXURY CAROUSEL (EVENTS / ABOUT)
================================ */

.lux-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lux-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.lux-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* KEY: image never controls layout */
  display: block;
}

/* Navigation */
.lux-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}

.lux-nav:hover {
  background: rgba(0,0,0,0.55);
}

.lux-nav.prev { left: 18px; }
.lux-nav.next { right: 18px; }

/* Dots */
.lux-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.lux-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s ease;
}

.lux-dots span.active {
  background: #fff;
}
