html,
body {
  overflow-x: clip;
  width: 100%;
}

:root {
  --primary-gold: #D4AF37;
  --primary-gold-hover: #D4AF37;
  --bg-black: #000000;
  --text-light: #f5f5f5;
  --text-dark: #111111;
  --text-gray: #a5a5a5; /* Added */
  --app-height: 100vh;
  --app-width: 100vw;

  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Prata', serif;

  /* Expert Layout Constraints */
  --container-max-width: 1440px;
  /* Fluid gutter: 5% on mobile, scaling up to max 80px on desktop */
  --fluid-gutter: clamp(5%, 6vw, 8%);
  --container-padding: clamp(20px, 5vw, 100px); /* Added */

  /* Standardized Vertical Spacing */
  --section-padding-y: clamp(6rem, 10vh, 10rem);

  /* Fluid Typography (Expert clamp strategy) */
  --h1-fs: clamp(3rem, 5.5vw, 5rem);
  --h2-fs: clamp(2.2rem, 4.5vw, 3.8rem);
  --h3-fs: clamp(1.6rem, 2.8vw, 2.2rem);
  --body-fs: clamp(1rem, 1.1vw, 1.15rem);
}

.section-divider {
  width: 80%;
  max-width: 1200px;
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin: 0 auto;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--text-light);
  font-size: var(--body-fs);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.loading-screen-active {
  overflow: hidden;
  height: 100vh;
  overscroll-behavior: none;
}

.site-preloader {
  --preloader-progress: 0.08;
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.22), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(135deg, #030303 0%, #080808 48%, #161005 100%);
  overflow: hidden;
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.85s ease;
}

.site-preloader::before,
.site-preloader::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.65;
  pointer-events: none;
}

.site-preloader::before {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  top: -8%;
  left: -10%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.26), rgba(212, 175, 55, 0));
}

.site-preloader::after {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  right: -8%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.site-preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__inner {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(145deg, rgba(12, 12, 12, 0.96), rgba(5, 5, 5, 0.9));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-preloader__inner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.site-preloader__eyebrow {
  margin-bottom: 18px;
  color: rgba(212, 175, 55, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.site-preloader__headline {
  max-width: 12ch;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  color: #fff7df;
}

.site-preloader__copy {
  max-width: 36ch;
  margin-bottom: 34px;
  color: rgba(245, 245, 245, 0.76);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.site-preloader__visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 44px);
  margin-bottom: 34px;
}

.site-preloader__mark {
  position: relative;
  flex: 0 0 clamp(120px, 18vw, 172px);
  aspect-ratio: 1;
}

.site-preloader__ring {
  position: absolute;
  inset: 14%;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  box-shadow: inset 0 0 32px rgba(212, 175, 55, 0.1);
}

.site-preloader__ring--second {
  transform: translate(18%, 14%);
  border-color: rgba(255, 240, 196, 0.42);
}

.site-preloader__spark {
  position: absolute;
  top: 21%;
  left: 32%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7df 0%, #d4af37 58%, rgba(212, 175, 55, 0) 74%);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.72);
  animation: preloaderOrbit 1.9s linear infinite;
}

.site-preloader__spark::after {
  content: "";
  position: absolute;
  inset: 40%;
  border-radius: 50%;
  background: #fff;
}

.site-preloader__seal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(32, 24, 7, 0.88));
  color: #fff3d2;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.site-preloader__seal span {
  transform: rotate(-45deg);
}

.site-preloader__status {
  flex: 1;
}

.site-preloader__label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
}

.site-preloader__subtext {
  max-width: 30ch;
  color: rgba(245, 245, 245, 0.62);
}

.site-preloader__timeline {
  position: relative;
}

.site-preloader__rail {
  position: relative;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.site-preloader__rail-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--preloader-progress) * 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), #d4af37 65%, #fff2bf 100%);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
  transition: width 0.28s ease;
}

.site-preloader__rail-glow {
  position: absolute;
  top: 50%;
  left: calc(var(--preloader-progress) * 100%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #f2cf73 40%, rgba(212, 175, 55, 0) 74%);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.68);
  transform: translate(-50%, -50%);
  transition: left 0.28s ease;
}

.site-preloader__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.site-preloader__step {
  position: relative;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-preloader__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-preloader__step.is-active,
.site-preloader__step.is-complete {
  color: rgba(255, 248, 228, 0.96);
  transform: translateY(-2px);
}

.site-preloader__step.is-active::before,
.site-preloader__step.is-complete::before {
  border-color: rgba(255, 241, 196, 0.92);
  background: #d4af37;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.55);
}

@keyframes preloaderOrbit {
  0% {
    transform: rotate(0deg) translateX(34px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(34px) rotate(-360deg);
  }
}

@media (max-width: 768px) {
  .site-preloader__inner {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .site-preloader__visual {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-preloader__mark {
    flex-basis: 132px;
  }

  .site-preloader__copy,
  .site-preloader__subtext {
    max-width: none;
  }

  .site-preloader__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader__rail-fill,
  .site-preloader__rail-glow,
  .site-preloader__step {
    transition-duration: 0.01ms !important;
  }

  .site-preloader__spark {
    animation: none;
  }
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Wrapper to hold the black background with rounded corners */
.main-dark-wrapper {
  background-color: var(--bg-black);
  border-bottom-left-radius: clamp(80px, 12vw, 160px);
  border-bottom-right-radius: clamp(80px, 12vw, 160px);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3456 / 1638;
  margin-top: clamp(80px, 8.5vw, 120px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center;
  opacity: 0;
  transition: opacity 0s;
  /* We'll use GSAP for smooth fade */
}

.hero-bg.active {
  opacity: 1;
}

.hero-bg-1 {
  background-image: url('images/opt/banner1.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  
  z-index: 2;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0; /* Larger initial size */
  background: transparent;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: clamp(50px, 6vw, 80px); /* Larger initial logo */
  width: auto;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .logo-img {
  height: clamp(35px, 4vw, 50px);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-left: auto;
  margin-right: 30px;
  transition: all 0.3s ease;
}

.nav-phone:hover {
  color: var(--primary-gold);
}

.nav-phone svg {
  color: var(--primary-gold);
  stroke: var(--primary-gold);
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3.5vw, 48px);
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

@media (max-width: 1100px) {
  .nav-links, .nav-phone {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
}

/* Unified Luxury Button Style */
.btn-luxury-arrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 15px;
  padding: 8px 8px 8px 24px;
  background: transparent;
  border: 1px solid var(--primary-gold);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
  text-decoration: none;
}

.btn-luxury-arrow .btn-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.btn-luxury-arrow .arrow-circle {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-luxury-arrow svg {
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* White-fill Expansion Effect from the Arrow */
.btn-luxury-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px; /* Start centered on the arrow-circle */
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  transform: translate(0, -50%) scale(0);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.btn-luxury-arrow:hover {
  border-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-luxury-arrow:hover::before {
  transform: translate(0, -50%) scale(10); /* Expands to fill whole button */
  opacity: 1;
}

.btn-luxury-arrow:hover .btn-text {
  color: #000; /* Stays black or change to primary-gold if preferred */
}

.btn-luxury-arrow:hover .arrow-circle {
  background: #fff;
  transform: translateX(3px);
}

.btn-luxury-arrow:hover svg {
  transform: rotate(45deg);
  stroke: #000;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
}

.mobile-toggle span {
  width: 30px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Hero Content */
.hero-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%; /* Lowered for better positioning */
  z-index: 10;
  width: 100%;
}

.hero-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0;
  gap: clamp(50px, 8vw, 120px);
  padding: 0 80px;
}

.hero-left {
  flex: 0 0 55%;
}

.hero-right {
  flex: 0 0 clamp(450px, 40vw, 550px); /* Increased to allow wider description layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Crucial: prevents button from stretching to full width */
  gap: 24px;
  margin-top: 10px;
}

.hero-title {
  font-family: 'Prata', serif;
  font-size: clamp(1.8rem, 3.8vw, 3.5rem); /* Reduced for better 1440px fit */
  color: #fff;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.gold-text {
  color: var(--primary-gold);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.8vw, 3.5rem); /* Reduced for better 1440px fit */
  color: #D4AF37;
  line-height: 0.9;
  margin-top: -5px; /* Pulls subtitle closer to the title */
  margin-bottom: clamp(15px, 3vh, 30px);
  font-weight: 500;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* Slightly reduced for a cleaner 1440px layout */
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin: 0;
  max-width: 850px;
}

/* Unified .btn-luxury-arrow handles all Plan My Event buttons */

.slider-controls-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  width: 100%;
  z-index: 20;
  pointer-events: none;
}

.hero-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: auto;
}

.hero-arrow:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #000;
  transform: scale(1.15);
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
}

/* Removed dots indicators */
.hero-nav {
  display: none;
}

.hero-nav .dot.active {
  width: 24px;
  border-radius: 10px;
  background: #fff;
  transform: none;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 35px;
  right: 80px; /* Moved to bottom right per request */
  z-index: 20;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  animation: scrollBounce 2s infinite;
}

.scroll-down-indicator:hover {
  opacity: 1;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn.prev {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.control-btn.next {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.control-btn.prev:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

.control-btn.next:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

/* Main Content Section */
.page-content {
  background-color: #ffffff;
  border-radius: clamp(40px, 8vw, 100px);
  max-width: calc(100% - clamp(40px, 10vw, 160px));
  width: 100%;
  margin: 0 auto clamp(20px, 5vw, 80px) auto;
  padding: clamp(60px, 8vw, 120px) var(--fluid-gutter);
  position: relative;
  z-index: 20;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.4);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.subtitle {
  font-family: 'Inter', sans-serif;
  color: #caa146;
  font-size: clamp(18px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: clamp(4px, 1vw, 8px);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.title {
  font-family: 'Prata', serif;
  color: #111;
  font-size: var(--h2-fs);
  font-weight: 400;
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

/* Cards Grid */
.cards-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

.card {
  position: relative;
  height: clamp(300px, 30vw, 400px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease, filter 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s ease;
  background-color: #000;
}

.card:hover {
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.card.span-5 {
  grid-column: span 5;
}

.card.span-7 {
  grid-column: span 7;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
  /* Fast response for parallax */
  /* Provide room for parallax movement */
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0));
}

.card-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateZ(50px);
  /* Lifted layer */
  pointer-events: none;
}

.card-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  flex-shrink: 0; /* Prevent squashing */
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0; /* Prevent squashing */
}

.card-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.1;
  max-width: 660px;
}

/* Gaussian Focus Blur - Card Siblings Only */
@media (min-width: 769px) {
  .cards-grid:hover .card:not(:hover) {
    filter: brightness(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 70px;
  }

  .cards-grid {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 0 40px;
  }

  .navbar {
    padding: 32px 40px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .card.span-5,
  .card.span-7 {
    grid-column: span 12;
  }

  .page-content {
    padding: 80px 40px;
    /* 40px white inside on tablet */
    border-radius: 60px;
    width: calc(100% - 80px);
    /* 40px black border on each side on tablet */
    margin-bottom: 40px;
  }

  .main-dark-wrapper {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }

  .hero-nav {
    right: 40px;
  }
}

@media (max-width: 768px) {
  .main-dark-wrapper {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .navbar-wrapper {
    padding: 0 20px;
    height: 70px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 999;
  }

  .nav-links.active {
    height: calc(100vh - 80px);
  }

  .nav-links a {
    font-size: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .mobile-toggle span {
    width: 24px;
    height: 1.5px;
  }

  /* Hero Mobile Refinements - Full Screen Overlay Layout */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes content to the bottom */
    height: 100vh;
    min-height: 600px;
    background: #000;
    position: relative;
    overflow: hidden;
  }

  .navbar {
    padding: 16px 0 !important; /* Reduces massive desktop padding */
  }

  .navbar.scrolled {
    padding: 12px 0 !important; /* Smaller on scroll */
  }

  .navbar-wrapper {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-img {
    height: 40px; /* Scaled down slightly so it shrinks properly on scroll */
    width: auto;
  }

  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 10px;
  }

  .mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .nav-action {
    display: none !important; /* Removes the problematic navbar button on mobile */
  }

  /* Hide the primary 'Plan My Event' button from Hero on mobile */
  .hero-right .plan-event-btn {
    display: none !important;
  }

  .hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 95vh; /* Limits image height so it doesn't push behind all the text */
    width: 100%;
    z-index: 1;
  }

  .hero-bg {
    background-size: cover !important;
    background-position: top center !important; /* Anchors the image to the ceiling so sofa is higher */
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,1) 100%);
  }

  .hero-container {
    position: absolute !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0;
    background: transparent;
    padding: 0 10px 40px 10px !important; /* 5px gutters */
    width: 100%;
    z-index: 10;
    height: auto !important;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 12px !important; /* Tight grouping between title block and desc block */
    align-items: flex-start;
    height: auto !important;
    padding: 0 !important; /* Kill inherited desktop padding */
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-left {
    width: 100% !important;
    max-width: 100% !important;
    flex: none;
    display: flex;
    flex-direction: column;
    padding: 0 !important; /* Kill inherited desktop padding */
  }

  .hero-right {
    width: 100% !important;
    max-width: 100% !important;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 20px !important; /* Strict gap between desc and button */
    margin-top: 10px;
    padding: 0 !important; /* Kill inherited desktop padding */
  }

  .hero-title {
    font-family: 'Prata', serif;
    font-size: clamp(2rem, 9vw, 2.5rem); /* Scaled beautifully for mobile */
    color: #fff;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -1px;
    white-space: normal;
  }

  .hero-subtitle {
    font-family: 'Prata', serif;
    font-size: clamp(2rem, 9vw, 2.5rem);
    color: #D4AF37;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -1px;
    white-space: normal;
  }

  .hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* Crisp and readable */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 !important; /* Kill all inherited margins */
    max-width: 100%;
  }

  .btn-luxury-arrow {
    width: auto;
    display: inline-flex;
    padding: 12px 8px 8px 12px;
    border: 1px solid #D4AF37;
    background: transparent;
    border-radius: 50px;
  }

  .btn-luxury-arrow .btn-text {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
  }

  .btn-luxury-arrow .arrow-circle {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-controls-arrows, .hero-nav, .scroll-down-indicator {
    display: none !important;
  }

  /* About / Creating Memories Mobile Refinements */
  .section-header {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .section-header .subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-gold);
  }

  .section-header .title {
    font-size: 34px;
    /* Reduced to fit one line comfortably */
    white-space: nowrap;
    margin-bottom: 40px;
  }

  .page-content {
    padding: 60px 0 20px 0;
    width: 100%;
    max-width: 100%;
    border-radius: 60px;
    margin: 0 0 30px 0;
  }

  .memories-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px;
    overflow: visible;
  }

  .memories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .memories-nav.prev {
    left: 10px;
  }

  .memories-nav.next {
    right: 10px;
  }

  .memories-nav svg {
    stroke: #000;
  }

  .cards-grid {
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }

  .cards-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .card {
    min-width: 100%;
    flex: 0 0 100%;
    height: 480px;
    padding: 0;
    border-radius: 40px;
    scroll-snap-align: center;
    background: #000;
    position: relative;
    overflow: hidden; /* Fix corner rendering */
    background-clip: padding-box;
  }

  .card-img {
    border-radius: 40px;
    transform: scale(1);
    opacity: 0.8;
  }

  .card-content {
    bottom: 40px;
    left: 40px;
    gap: 20px;
    transform: none;
    pointer-events: auto;
  }

  .card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px; /* Force circularity */
    min-height: 80px;
    flex-shrink: 0;
    background: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .card-icon img {
    width: 32px;
  }

  .card-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
  }

  .logo-img {
    height: 50px;
  }

  /* OUR PROCESS MOBILE CAROUSEL */
  /* OUR PROCESS MOBILE CAROUSEL */
  .our-process-section {
    padding-left: 0;
    padding-right: 0;
    margin-top: -80px;
    padding-top: 150px !important; /* Increased from 80px (original was 140px) to provide space above title */
    background-color: #f8f8f8 !important;
    /* Light grey background */
    background-image: none !important;
    text-align: center !important;
  }

  .process-header {
    margin-bottom: 30px !important; /* Reduced from 50px */
    text-align: center !important;
    padding: 0 40px;
    position: relative;
  }

  /* Decorative "Our Process" background text */
  .process-header::before {
    content: "Our Process";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 70px;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
  }

  .process-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-serif) !important;
    font-size: 32px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 300;
    margin: 0;
  }

  .process-title-large {
    font-size: 52px;
    display: block;
    margin-top: 5px;
  }

  .process-slider-wrapper {
    width: 100%;
    overflow: hidden !important;
    position: relative !important;
    padding: 10px 0 30px !important; /* Reduced from 30px 0 60px */
    height: 100vw !important; /* Reduced from 110vw */
  }

  .process-cards-grid {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
  }

  .process-card {
    width: 75vw !important;
    aspect-ratio: 1/1 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.85) !important;
    background: linear-gradient(180deg, #D49C35 0%, #E6C178 100%) !important;
    border-radius: 35px !important;
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .process-card.pos-active {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
    z-index: 10 !important;
    pointer-events: auto !important;
  }

  .process-card.pos-left {
    opacity: 0.9 !important;
    transform: translate(-155%, -50%) scale(0.85) !important;
    z-index: 5 !important;
    pointer-events: auto !important;
  }

  .process-card.pos-right {
    opacity: 0.9 !important;
    transform: translate(55%, -50%) scale(0.85) !important;
    z-index: 5 !important;
    pointer-events: auto !important;
  }

  .process-card h4 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
    line-height: 1.2 !important;
    color: #222 !important;
  }

  .process-card p {
    font-size: 18px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    opacity: 0.8;
    color: #222 !important;
  }

  .process-icon-badge {
    background: #000 !important;
    color: #fff !important;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px !important;
    transition: all 0.4s ease;
  }

  .process-icon-badge img {
    width: 50% !important;
    height: auto !important;
  }

  .process-icon-badge svg {
    width: 44px;
    height: 44px;
    stroke-width: 1.5px;
    stroke: #E6C178;
  }

  .process-icon-badge .icon-inactive {
    display: none !important;
  }
  .process-icon-badge .icon-active {
    display: block !important;
  }
}

/* Hide navigation buttons on desktop */
@media (min-width: 769px) {
  .memories-nav {
    display: none;
  }
}

@media (min-width: 769px) {

  /* OUR PROCESS SECTION */
  .our-process-section {
    position: relative;
    background-image: url('images/probg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: clamp(-160px, -11vw, -80px);
    padding-top: clamp(160px, 18vw, 260px);
    padding-bottom: clamp(60px, 6.5vw, 100px);
    padding-left: 80px;
    padding-right: 80px;
    z-index: 1;
    text-align: center;
    overflow: hidden;
  }

  .process-header {
    position: relative;
    margin-bottom: 72px;
  }

  .process-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-size: var(--h2-fs);
    font-weight: 400;
    line-height: 1.25;
  }

  .process-title-large {
    font-size: clamp(40px, 5vw, 70px);
    display: block;
  }

  .process-cards-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 24px);
    width: 100%;
    margin: 0 auto;
  }

  .process-card {
    border-radius: clamp(16px, 2vw, 22px);
    padding: clamp(20px, 3vw, 38px) clamp(12px, 2vw, 26px);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  /* All cards: identical black default, gold on hover */
  .process-card {
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  }

  .process-card:hover {
    background: linear-gradient(135deg, #D49C35 0%, #E6C178 100%) !important;
    color: #111;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .process-card.gold-card,
  .process-card.dark-card {
    background-color: #000;
    color: #fff;
  }

  /* Icon Circles */
  .process-icon-badge {
    width: clamp(48px, 6.5vw, 74px);
    height: clamp(48px, 6.5vw, 74px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(12px, 2vw, 24px);
    flex-shrink: 0;
  }

  /* Icon circles — all white bg + black icon by default */
  .process-card .process-icon-badge {
    background-color: #fff;
    transition: background-color 0.35s ease;
  }

  .process-icon-badge img {
    width: 60%;
    height: auto;
    transition: all 0.35s ease;
  }

  .process-icon-badge .icon-active {
    display: none;
  }

  /* On hover, all cards flip icon to black circle + icon swap */
  .process-card:hover .process-icon-badge {
    background-color: #000;
  }

  .process-card:hover .process-icon-badge .icon-inactive {
    display: none;
  }

  .process-card:hover .process-icon-badge .icon-active {
    display: block;
  }

  /* Card Titles — all gold by default */
  .process-card h4 {
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: clamp(6px, 1vw, 12px);
    font-family: 'Inter', sans-serif;
    color: #D4AF37;
    transition: color 0.35s ease;
  }

  /* On hover, all cards title turns dark */
  .process-card:hover h4 {
    color: #111;
  }

  /* Descriptions */
  .process-card p {
    font-size: clamp(0.85rem, 0.9vw, 1rem);
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.85;
    max-width: 260px;
    margin: 0 auto;
    color: #fff;
    transition: color 0.35s ease;
  }

  /* On hover, all cards description turns dark */
  .process-card:hover p {
    color: #111;
  }
}

/* OUR STRENGTH SECTION (SCROLL TRACK) */
.our-strength-section {
  background-color: var(--bg-black);
  color: var(--text-light);
  /* Make the section tall so we can scroll through it */
  height: 280vh; /* Increased from 250vh to fix 7th node acting issue */
  position: relative;
  padding-top: 20px; 
  padding-bottom: 0px !important; 
}

/* Sticky Container */
.strength-sticky-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centered for better vertical balance */
  align-items: center;
  padding-top: 20px; /* Reduced from clamp(40px, 8vh, 120px) */
  overflow: hidden;
  background-color: var(--bg-black);
}

.strength-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vh, 60px);
  padding: 0 20px;
  position: relative;
  z-index: 20;
}

.strength-header h2 {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  margin-bottom: 12px;
}

.strength-header p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.arc-layout-wrapper {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

/* Scaling handled fluidly via clamp and vw now */

.arc-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  /* Fluid scaling using viewport width */
  height: clamp(350px, 40vw, 650px);
  margin: 0 auto;
  overflow: hidden;
  /* Creates the half-circle mask - anything Y > 500 in SVG coordinates is clipped */
}

/* Grouping that actually rotates */
.arc-wheel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  transform-origin: 50% 50%;
  will-change: transform;
}

.strength-arc-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.arc-wheel {
  --wheel-rotate: 0deg;
}

.arc-indicator {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 10;
  /* Rotate the whole indicator radial from the arc center */
  transform: translate(-50%, -50%) rotate(var(--base-rotate));
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* The number badge floating above the arc */
.node-number-badge {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  /* Perpendicular distance from arc center */
  transform: translateY(-65px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate))));
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* The dot exactly on the arc */
.node-dot {
  width: 14px;
  height: 14px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(194, 158, 91, 0.4);
  transition: all 0.4s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* The vertical line appearing only when active */
.node-line {
  width: 1.5px;
  height: 0;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top center;
  transition: height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  z-index: 1;
}

.arc-indicator.active .node-number-badge {
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  color: #000;
}

.arc-indicator.active .node-dot {
  background-color: var(--primary-gold);
  box-shadow: 0 0 15px var(--primary-gold);
  opacity: 1;
}

.arc-indicator.active .node-line {
  height: 100px;
  opacity: 1;
}

.arc-indicator.node-1 {
  --base-rotate: 0deg;
}

.arc-indicator.node-2 {
  --base-rotate: 51.42deg;
}

.arc-indicator.node-3 {
  --base-rotate: 102.85deg;
}

.arc-indicator.node-4 {
  --base-rotate: 154.28deg;
}

.arc-indicator.node-5 {
  --base-rotate: 205.71deg;
}

.arc-indicator.node-6 {
  --base-rotate: 257.14deg;
}

.arc-indicator.node-7 {
  --base-rotate: 308.57deg;
}

.arc-content-wrapper {
  position: absolute;
  top: 45%; /* Shifted up slightly */
  /* Perfect visual vertical center */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 750px;
  height: auto;
  text-align: center;
  z-index: 5;
}

.arc-center-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

.arc-center-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.arc-center-content h3 {
  font-family: var(--font-sans);
  color: var(--primary-gold-hover);
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: clamp(12px, 2vh, 24px);
  font-weight: 400;
  line-height: 1.3;
}

.arc-center-content p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
}

.arc-center-content p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 1200px) {
  /* Conflicting rule removed for mobile consistency */
}

@media (max-width: 1300px) {
  .process-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 24px;
  }

  .arc-center-content h3 {
    font-family: var(--font-sans);
    color: var(--primary-gold-hover);
    font-size: clamp(12px, 2vw, 24px);
    margin-bottom: clamp(12px, 2vh, 24px);
    font-weight: 400;
    line-height: 1.3;
  }

  .arc-center-content p {
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(10px, 1.1vw, 16px);
    line-height: 1.4;
  }
}

@media (max-width: 1024px) {
  /* Conflicting rule removed for mobile consistency */
  .strength-header h2 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .process-watermark,
  .process-header::before {
    display: none !important;
  }

  .process-title {
    font-size: 24px !important; /* Reduced from 32px */
    letter-spacing: -0.5px !important;
  }

  .process-title-large {
    font-size: 32px !important; /* Reduced from 40px */
    margin-top: 5px !important;
  }

  .process-cards-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 20px;
  }

  /* OUR STRENGTH CIRCULAR CAROUSEL - MOBILE */
  .our-strength-section {
    height: 400vh; /* More scroll space for smoother rotation */
  }

  .strength-sticky-container {
    padding-top: 60px;
    justify-content: flex-start;
  }

  .arc-container {
    width: 150vw; /* Massive 225% size for cinema effect */
    left: 50% !important;
    transform: translateX(-50%) !important;
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: none;
    overflow: visible;
    margin-top: 40px; /* Adjusted for massive radius */
  }

  .arc-wheel {
    top: 0;
    width: 100%;
    height: 100%;
  }

  .arc-indicator {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .node-number-badge {
    width: 40px;
    height: 40px;
    font-size: 16px;
    /* Adjusted translateY for the even larger 200% circle */
    transform: translateY(-50px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate))));
  }

  .node-dot {
    width: 10px;
    height: 10px;
  }

  .arc-indicator.active .node-line {
    height: 140px; /* Slightly longer for larger radius */
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  }

  .arc-content-wrapper {
    top: 35% !important; /* Pushed up even more from 40% */
    left: 50%; 
    width: 85%;
    max-width: 320px;
    transform: translate(-50%, -50%) !important; 
  }

  .arc-center-content h3 {
    font-size: 22px !important; /* Reduced for better mobile fit */
    line-height: 1.3;
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-weight: 500;
  }

  .arc-center-content p {
    font-size: 15px !important; /* Reduced for better mobile fit */
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
  }

  .strength-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   CASE STUDY SECTION
   ========================================================================== */
.case-study-section {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 var(--section-padding-y) !important; /* Removed top padding to pull section up */
  overflow: hidden;
  text-align: center;
  z-index: 10;
}

.case-study-header {
  margin-bottom: 90px;
  padding: 0 20px;
}

/* Removing duplicate block */

.case-study-title {
  font-family: 'Prata', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: #D4AF37;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.case-study-desc {
  max-width: 900px;
  margin: 0 auto clamp(30px, 4vw, 50px);
  color: #666;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  font-size: var(--body-fs);
  padding: 0 var(--fluid-gutter);
}

/* Stage & SVG Arc - Geometric Perfect */
.case-study-stage {
  position: relative;
  height: clamp(550px, 45vw, 650px);
  width: 100%;
  margin-top: clamp(20px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px;
}

.case-arc-container {
  position: absolute;
  top: 325px;
  /* Center alignment for cards */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.case-arc-svg {
  width: 100%;
  height: 100%;
  stroke: transparent;
  /* Hide background lines to avoid translucency issues */
  stroke-width: 0;
  fill: none;
}

/* Cards Wrapper - 3D Depth Stage */
.case-cards-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  touch-action: pan-y;
  user-select: none;
  transform-style: preserve-3d;
  cursor: grab;
}

.case-cards-wrapper:active {
  cursor: grabbing;
}

.case-card {
  position: absolute;
  width: clamp(340px, 31vw, 440px);
  height: clamp(460px, 40vw, 580px);
  border-radius: clamp(20px, 2vw, 28px);
  padding: clamp(24px, 3vw, 44px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
  transition: opacity 0.3s ease, visibility 0.3s;
  overflow: visible;
  display: flex;
  flex-direction: column;
  text-align: left;
  will-change: transform, opacity;
  background-clip: padding-box;
}

/* Case Connectors Layer - Structural fix for stacking */
.case-connectors-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  /* Lower than cards (which start at 80+) */
  pointer-events: none;
  /* Push into background to avoid Z-fighting with cards */
  transform: translateZ(-50px);
  transform-style: preserve-3d;
}

/* Card Connector Lines - Ticks between cards */
.case-line {
  position: absolute;
  top: 50%;
  left: 100%;
  /* Extend from the right edge */
  width: 0;
  /* Handled by JS */
  height: 25px;
  transform-origin: left center;
  /* Rotate from the attachment point */
  pointer-events: none;
  z-index: -1;
  /* vertical tick marks using repeating linear gradient - refined */
  background: repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.15) 0px,
      rgba(0, 0, 0, 0.15) 1px,
      transparent 1px,
      transparent 22px);
  /* Added horizontal fade mask for smoother integration */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  display: block;
}

.theme-gold .case-line {
  background: repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.12) 0px,
      rgba(0, 0, 0, 0.12) 1px,
      transparent 1px,
      transparent 18px);
}

/* Loop connector visibility control */
.case-line {
  display: block;
}

/* Card Themes - 1:1 colors */
.case-card.theme-dark {
  background-color: #000;
  color: #fff;
}

.case-card.theme-gold {
  background: linear-gradient(135deg, #e5c17b 0%, #c29e5b 100%);
  color: #000;
}

.case-card.theme-light {
  background-color: #e3e3e3;
  color: #000;
}

.case-card.theme-pink {
  background-color: #FFF0F5;
  color: #000;
}

/* Card Content Typography */
.card-project-tag {
  color: #D4AF37;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  margin-bottom: clamp(12px, 2vw, 24px);
}

.case-card.theme-dark .card-project-tag {
  color: #D4AF37;
}

.case-card.theme-gold .card-project-tag {
  color: rgba(0, 0, 0, 0.8);
}

.case-card .card-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.1;
  margin-bottom: clamp(12px, 1.5vw, 20px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.case-card.theme-dark .card-title {
  color: #fff;
}

.case-card.theme-gold .card-title,
.case-card.theme-light .card-title,
.case-card.theme-pink .card-title {
  color: #000;
}

.card-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.theme-gold .card-subtitle,
.theme-light .card-subtitle,
.theme-pink .card-subtitle {
  color: rgba(0, 0, 0, 0.5);
}

/* Grid Alignment */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 40px;
}

.grid-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.4;
}

.grid-icon {
  width: 22px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.case-card.theme-gold .grid-icon,
.case-card.theme-light .grid-icon,
.case-card.theme-pink .grid-icon {
  background-color: #000;
  color: #D4AF37;
}

.case-card.theme-dark .grid-icon {
  background-color: #fff;
  color: #000;
}

.card-image-wrap {
  margin-top: auto;
  width: 100%;
  height: clamp(140px, 15vw, 220px);
  border-radius: 20px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Cursor for Case Study Scroll */
.case-custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.1s ease-out;
  will-change: transform, opacity;
}

.case-custom-cursor.active {
  opacity: 1;
  visibility: visible;
}

.case-custom-cursor svg {
  width: 30px;
  height: 30px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.case-custom-cursor.left-side svg {
  transform: rotate(180deg);
}

.case-study-stage {
  cursor: none !important;
}

/* Updated Case Card Mobile Responsiveness */
@media (max-width: 1024px) {
  .case-study-title { font-size: 64px; }
  .case-card { width: 380px; height: 540px; }
}

@media (max-width: 768px) {
  .case-study-section { padding: 60px 0 40px !important; }
  .case-study-title { font-size: 48px; }
  .case-card { width: 330px; height: 500px; padding: 32px; }
  .case-card .card-title { font-size: 30px; }
  .case-custom-cursor { display: none; }
}

/* Custom Cursor for Venues Fan */
.venues-custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.1s ease-out;
  will-change: transform, opacity;
}

.venues-custom-cursor.active {
  opacity: 1;
  visibility: visible;
}

.venues-custom-cursor svg {
  width: 30px;
  height: 30px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.venues-custom-cursor.left-side svg {
  transform: rotate(180deg);
}

.venues-section {
  cursor: none !important;
}

/* ==========================
   TESTIMONIALS SECTION
   ========================== */
.testimonials-section {
  background: #000;
  color: #fff;
  padding: 100px 0 30px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.test-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.test-title {
  font-family: 'Prata', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #D4AF37;
  margin-bottom: 15px;
  font-weight: 500;
}

.test-desc {
  max-width: 1000px;
  margin: 0 auto 40px;
  color: #bbb;
  line-height: 1.7;
  font-size: 1rem;
}

.test-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin-top: 50px;
}

.test-container {
  width: calc(100% - clamp(60px, 8vw, 160px));
  margin: 0 auto;
}

.test-slider-stage {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.test-cards-wrap {
  display: flex;
  gap: 20px;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.test-video-card {
  flex: 0 0 calc(33.333% - 13.333px); /* 3 cards on desktop */
  height: 80vh; /* Increased for "full height" reel effect */
  min-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #111;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* Beveled corner bottom-right */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-video-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
}

.test-thumbnail-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Brand UI */
.card-brand {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.card-brand img {
  height: 25px;
  opacity: 0.9;
}

/* Mute Icon UI */
.mute-icon {
  position: absolute;
  bottom: 25px;
  left: 15px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Progress Bar UI */
.card-progress {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--primary-gold);
  transition: width 0.1s linear;
}

/* Grayscale effect for non-hovered cards (optional, matches ref) */
.test-video-card:not(:hover) .test-thumbnail-video {
  filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 1200px) {
  .test-video-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards on tablet */
    height: 520px;
  }
}

@media (max-width: 768px) {
  .test-slider-stage {
    padding: 20px 7% !important; /* Side padding for peek effect */
    background: var(--bg-black) !important;
    overflow: visible !important;
  }

  .test-cards-wrap {
    gap: 15px;
  }
  
  .test-video-card {
    flex: 0 0 86%; /* Shows one card mostly centered with slight peeks */
    height: auto;
    aspect-ratio: 9/16;
  }
}

.test-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.test-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.test-nav-btn:hover {
  background: var(--primary-gold);
  color: #000;
  border-color: var(--primary-gold);
}

.test-dots {
  display: none;
}

.test-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.test-dots .dot.active {
  background: var(--primary-gold);
  transform: scale(1.3);
}
/* OUR EVENT VENUES SECTION */
.venues-section {
  background-color: var(--bg-black);
  padding: 30px 0 var(--section-padding-y);
  text-align: center;
  overflow: hidden;
  position: relative;
  user-select: none; /* Disable text selection */
}

.venues-header {
  margin-bottom: 0px;
}

.venues-title {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: var(--h2-fs);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 400;
}

.venues-desc {
  color: #a5a5a5;
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--body-fs);
  letter-spacing: 0.5px;
}

.venues-fan-container {
  max-width: 1400px;
  margin: 0 auto;
  height: clamp(400px, 45vw, 600px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  /* Hide default cursor */
}


.venues-fan-container:active,
.venues-fan-container.grabbing {
  cursor: none;
}

.venue-fan-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-card {
  position: absolute;
  width: clamp(300px, 35vw, 650px);
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1;
  background: #111;
}

.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.6s ease;
  user-select: none;
  pointer-events: none;
}

/* Fan positioning */
.venue-card.pos-far-left {
  transform: translateX(-110%) rotate(-15deg) scale(0.65);
  filter: brightness(0.3);
  z-index: 1;
}

.venue-card.pos-left {
  transform: translateX(-65%) rotate(-8deg) scale(0.8);
  filter: brightness(0.6);
  z-index: 5;
}

.venue-card.pos-center {
  z-index: 10;
  transform: translateX(0) scale(1.15);
  border: 5px solid var(--primary-gold);
}

.venue-card.pos-center img {
  filter: grayscale(0);
}

.venue-card.pos-right {
  transform: translateX(65%) rotate(8deg) scale(0.8);
  filter: brightness(0.6);
  z-index: 5;
}

.venue-card.pos-far-right {
  transform: translateX(110%) rotate(15deg) scale(0.65);
  filter: brightness(0.3);
  z-index: 1;
}

.venue-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-gold);
  /* fully opaque gold from variable */
  padding: 20px 30px;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.pos-center .venue-info-bar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.venue-info-bar h3 {
  color: #000;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  margin: 0;
}

.venues-bg-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(circle, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

/* View All Venues Button Styling */
.venues-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.venues-view-all-btn {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.5px;
}

.venues-view-all-btn:hover {
  background: var(--primary-gold);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* MOMENTS WE CREATED SECTION */
.moments-section {
  background-color: #ffffff;
  padding: 80px 0 40px;
  text-align: center;
}

.moments-header {
  margin-bottom: 30px;
}

.moments-title {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: var(--h2-fs);
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 400;
}
.moments-desc {
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--body-fs);
}

.moments-filter-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 30px;
  padding: 0 80px;
  gap: 12px;
}

.filter-label {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}

.custom-dropdown {
  position: relative;
  width: 180px;
  text-align: left;
  z-index: 500;
}

.dropdown-selected {
  background: white;
  border: 1.2px solid #ddd;
  padding: 10px 20px;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: #000;
}

.dropdown-selected:hover {
  border-color: var(--primary-gold);
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 100%;
  background: #000000;
  border-radius: 12px;
  list-style: none;
  padding: 15px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-dropdown.active .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list li {
  padding: 12px 25px;
  color: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: var(--font-sans);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.dropdown-list li.active {
  color: var(--primary-gold);
  font-weight: 600;
}

.dropdown-list li.active::after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primary-gold);
  border-radius: 50%;
  margin-left: 10px;
}

.moments-gallery-wrapper {
  position: relative;
  max-width: 100%;
  overflow: visible;
  padding: 0;
  margin-left: 0;
}

.moments-slider {
  display: flex;
  gap: 15px;
  padding-left: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory; /* Added for perfect alignment */
}

.moments-slider::-webkit-scrollbar {
  display: none;
}

.moment-item {
  flex: 0 0 calc((100vw - (2 * 15px)) / 3.2);
  aspect-ratio: 1 / 1.1;
  border-radius: 0;
  scroll-snap-align: start; /* Added for snap */
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative; 
  cursor: pointer;
}

.moment-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 32px;
  border-radius: 40px;
  color: white;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0.9;
  z-index: 5;
}

.moment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.moment-item:hover {
  transform: translateY(-10px);
}

.moment-item:hover img {
  transform: scale(1.05);
}

.moment-item:hover .moment-overlay {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #000;
  opacity: 1;
}

/* Lightbox Modal Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-counter {
  position: absolute;
  top: 20px; /* Pushed higher up */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  animation: lightboxFadeIn 0.5s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-category {
  margin-top: 25px;
  color: var(--primary-gold);
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
    .lightbox-close { top: 20px; right: 20px; }
    .lightbox-category { font-size: 1.4rem; }
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
  background: var(--primary-gold);
  color: white;
}

.gallery-nav-btn.prev {
  left: 20px;
}

.gallery-nav-btn.next {
  right: 20px;
}

@media (max-width: 1024px) {
  .venues-fan-container {
    height: 400px;
  }

  .venue-card {
    width: 280px;
  }

  .moments-gallery-wrapper {
    padding: 0 40px;
  }

  .moment-item {
    flex: 0 0 clamp(380px, 60vw, 500px);
  }
}

@media (max-width: 768px) {
  .venue-fan-wrapper {
    display: none;
    /* Mobile will need a different layout or slider */
  }

  .venues-fan-container {
    height: auto;
  }

  .moments-filter-container {
    padding: 0 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .moment-item {
    flex: 0 0 320px;
  }
}

.why-section {
  background: #fff;
  padding: 40px 0 var(--section-padding-y);
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* Removed .why-top-header as it is no longer used in the new column layout */

.why-title {
  font-family: 'Prata', serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  color: var(--primary-gold);
  font-weight: 400;
  margin-bottom: 0; /* Removed bottom margin as Row 2 handles spacing */
  line-height: 1.1;
  width: 800px;
  letter-spacing: -2px;
}

.why-top-desc {
  color: #a5a5a5;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  padding-top: 15px; /* Added slight top padding to align with title first line */
}

.container-why {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Slightly wider right side for accordion */
  gap: clamp(40px, 6vw, 70px);
  row-gap: 50px;
  align-items: flex-start;
  width: calc(100% - 160px);
  margin: 0 auto;
}

.why-image-wrap {
  border-radius: 20px;
  width: 700px;
  overflow: hidden;
  box-shadow: none;
}

.why-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.accordion {
  border-top: none;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:first-child .accordion-header {
  padding-top: 5px;
}

.accordion-header {
  padding: 26px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: #a5a5a5;
  transition: all 0.3s ease;
  margin: 0;
}

.accordion-item.active .accordion-header h3 {
  color: #000000;
  text-shadow: 0.5px 0 0 currentColor;
}

.acc-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
}

.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  background-color: #a5a5a5;
  transition: all 0.3s ease;
}

/* Horizontal line */
.acc-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical line */
.acc-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion-item.active .acc-icon::before {
  background-color: #000000;
}

.accordion-item.active .acc-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.accordion-content p {
  padding-bottom: 36px;
  color: #333;
  line-height: 1.6;
  font-size: var(--body-fs);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

/* Responsive Fix for Smaller Desktop (Why Section) */
@media (max-width: 1440px) {
  .hero-content {
    padding-right: 120px; /* Provides clearance for the floating buttons (FABs) */
  }

  .hero-right {
    max-width: 450px; /* Slightly tighter column for better clearance */
  }

  .why-title {
  font-size: clamp(3rem, 4vw, 4rem);
    width: 700px;
  }
  .why-top-desc {
    font-size: 0.81rem; /* Increased (+20% from 0.9rem) */
    padding-top: 10px; /* Added as per request */
    width: 100%;
  }

  .why-image-wrap {
    width: 600px;
}

  .container-why {
    gap: 40px;
    row-gap: 30px;
    align-items: stretch; /* Match accordion height to image */
  }

  .accordion-header {
    padding: 14px 0; /* Tightened from 18px */
  }

  .accordion-header h3 {
    font-size: 1.38rem; /* Increased (+20% from 1.15rem) */
  }

  .accordion-content p {
    font-size: 1.08rem; /* Increased (+20% from 0.9rem) */
    padding-bottom: 15px; /* Reduced from 20px */
  }

  /* Spacing above sections to match Moments segment */
  .our-strength-section,
  .case-study-section {
    padding-top: 80px !important;
  }
}

/* RESPONSIVE REFINEMENTS */
/* RESPONSIVE REFINEMENTS */

@media (max-width: 1440px) {
  .test-container {
    width: calc(100% - 80px);
  }

  .test-cards-wrap {
    flex: 0.9;
  }

  .test-content-wrap {
    flex: 1.1;
    padding-left: 15px;
    transform: translateY(-5%);
  }


  /* Legacy testimonial card rules removed */

  .test-item-title {
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    margin-bottom: 15px;
  }

  .test-item-quote {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  }

  /* Conflicting mobile rule removed */

  /* Conflicting mobile rules removed for consistency */
}

@media (max-width: 1024px) {
  .container-why {
    grid-template-columns: 1fr;
    gap: 60px;
  }


  /* Legacy testimonial layout rules removed */
}




/* ==========================
   MODAL STYLES (PLAN MY EVENT)
   ========================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
  .modal-overlay {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
    padding: 40px 10px !important;
    -webkit-overflow-scrolling: touch;
    z-index: 10000 !important;
  }
}


.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #111;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 24px;
  position: relative;
  padding: 60px;
  overflow-y: auto;
  transform: scale(0.9) translateY(30px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #666;
  font-size: 32px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.modal-title {
  font-family: 'Prata', serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
}

/* Mobile Modal Refinements */
@media (max-width: 768px) {
  .modal-container {
    padding: 30px 20px !important;
    width: 95% !important;
    max-height: none !important; /* Grow naturally, scroll on overlay */
    height: auto !important;
    overflow: visible !important;
    margin-bottom: 40px !important;
    border-radius: 12px !important;
    position: relative !important;
    top: auto !important;
    transform: none !important;
  }
  
  .modal-title {
    font-size: 1rem !important; /* Reduced from 2rem */
  }
  
  .modal-header {
    margin-bottom: 10px !important; /* Reduced from 25px */
  }
  
  .modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 20px !important;
  }

  .modal-form-grid {
    gap: 8px !important;
  }

  .form-group input, 
  .form-group textarea,
  .select-trigger {
    padding: 8px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }

  /* Robust Scroll Fix for Dropdown on Mobile */
  .modal-container .custom-options {
    max-height: 180px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 9999 !important;
  }
}


.modal-subtitle {
  color: #888;
  font-size: 1rem;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-container .form-group input,
.modal-container .form-group .select-trigger,
.modal-container .form-group textarea {
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.modal-container .form-group .select-trigger.selected {
    color: #fff !important;
}

/* Modal specific custom dropdown overrides */
.modal-container .custom-options {
    background: #1a1a1a !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4) !important;
}

.modal-container .custom-option {
    color: #ccc !important;
}

.modal-container .custom-option:hover,
.modal-container .custom-option.keyboard-hover {
    background: #D4AF37 !important;
    color: #000 !important;
}

/* Custom Flatpickr Overrides for Luxury Theme */
.flatpickr-calendar {
  font-family: 'Inter', sans-serif !important;
  background: #1a1a1a;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #D4AF37 !important;
  border-color: #D4AF37 !important;
  color: #111 !important;
}

.flatpickr-day.today {
  border-color: #D4AF37 !important;
}

.modal-container .form-group input:focus,
.modal-container .form-group select:focus,
.modal-container .form-group textarea:focus {
  border-color: #D4AF37 !important;
  background: #111 !important;
}

.modal-submit-wrap {
  text-align: center;
  margin-top: 20px;
}

.btn-gold-fill {
  background: #D4AF37;
  color: #000;
  border: none;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold-fill:hover {
  background: #E6C178;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Modal Responsiveness */
@media (max-width: 1300px),
(max-height: 850px) {
  .modal-container {
    padding: 30px 40px;
    max-width: 800px;
  }

  .modal-header {
    margin-bottom: 25px;
  }

  .modal-title {
    font-size: 2.2rem;
  }

  .modal-form-grid {
    gap: 15px;
    margin-bottom: 15px;
  }

  .modal-container .form-group input,
  .modal-container .form-group select {
    padding: 12px 18px;
  }

  .modal-close {
    top: 20px;
    right: 20px;
  }

  .btn-gold-fill {
    padding: 12px 32px;
  }
}

/* Redundant modal media query removed to eliminate conflicts with robust scroll fix */

/* ==========================
   CONTACT FORM SECTION
   ========================== */
.contact-form-section {
  padding: 140px 0;
  background: linear-gradient(to right, #e4e4e4d4, #f4f4f4e8);
  font-family: 'Inter', sans-serif;
}

.contact-main {
  text-align: right;
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
  padding-right: var(--fluid-gutter);
  padding-left: var(--fluid-gutter);
  padding-bottom: 20px;
}

.contact-header {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 15px;

}

.contact-main-title {
  font-family: 'Prata', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: #000;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 300;
}

.contact-subtitle {
  color: #777;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 950px;
  margin: 0 auto;
}

.form-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding-top: 40px !important; 
    padding-bottom: 20px !important; /* Heavily reduced from 140px */
  }

  .contact-header {
    margin-bottom: 20px !important;
  }

  .contact-main-title {
    font-size: 2.5rem !important; /* Reduced from clamp */
    margin-bottom: 15px !important;
  }

  .form-container {
    padding: 0 15px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 15px 20px !important; /* Reduced from 22px 30px */
  }

  .submit-btn-gold {
    padding: 18px !important; /* Reduced from 24px */
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  position: relative;
}

.form-group input,
.form-group .select-trigger,
.form-group textarea {
  width: 100%;
  padding: 0 30px;
  height: 66px;
  line-height: 66px;
  background: #ffffff;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #111;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group textarea {
  height: auto;
  line-height: 1.5;
  padding: 22px 30px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group .select-trigger.active,
.form-group textarea:focus {
  background: #fff;
  border-color: #D4AF37;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Custom Dropdown Styling */
.custom-select {
  position: relative;
  user-select: none;
}

.select-trigger {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #999 !important; /* Placeholder color initial */
}

.select-trigger.selected {
  color: #111 !important;
}

.select-arrow {
  width: 12px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.3s ease;
}

.select-trigger.active .select-arrow {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #D4AF37;
  border-top: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.custom-options.open {
  display: block;
}

.custom-option {
  padding: 15px 30px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-option:hover,
.custom-option.keyboard-hover {
  background: #D4AF37;
  color: #fff;
}

/* Scrollbar for custom options */
.custom-options::-webkit-scrollbar {
  width: 6px;
  display: block;
}
.custom-options::-webkit-scrollbar-track {
  background: #111;
}
.custom-options::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 10px;
}
/* Ensure the scrollbar is always visible when content overflows */
.custom-options {
  scrollbar-width: thin;
  scrollbar-color: #D4AF37 #111;
}

/* Legacy Dropdown styles removed for custom DIV-based implementation */

.full-width {
  grid-column: span 2;
}

.submit-btn-gold {
  width: 100%;
  padding: 24px;
  margin-top: 15px;
  background: linear-gradient(90deg, #b8860b 0%, #daa520 50%, #ffd700 100%);
  border: none;
  border-radius: 4px;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: none;
}

.submit-btn-gold:hover {
  filter: brightness(1.15) drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
  transform: translateY(-2px);
}

/* ==========================
   FOOTER SECTION
   ========================== */
.footer-dark {
  background-color: #000000;
  background-image: url('./images/footerbg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  padding: clamp(60px, 8vw, 120px) 0 0;
  font-family: 'Inter', sans-serif;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.btn-get-direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 4px;
  color: var(--primary-gold);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-get-direction:hover {
  background: var(--primary-gold);
  color: #000 !important;
  border-color: var(--primary-gold);
}

.btn-get-direction svg {
  transition: transform 0.3s ease;
}

.btn-get-direction:hover svg {
  transform: translate(2px, -2px);
}

.footer-container {
  max-width: 100%;
  margin: 0;
  padding: 0 var(--fluid-gutter) clamp(60px, 8vw, 100px);
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 7vw, 100px);
}

.footer-col {
  flex: 0 0 auto;
}

.col-info {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-logo-img {
  height: clamp(80px, 10vw, 120px);
  width: auto;
}

.logo-text-footer h3 {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.logo-text-footer span {
  font-size: 0.75rem;
  color: #D4AF37;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-company-desc {
  color: #d1d1d1;
  font-size: var(--body-fs);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 420px;
  font-weight: 400;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 10px 10px 25px;
  border: 1px solid #D4AF37;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  margin-bottom: 0px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-outline-gold:hover {
  color: #000;
  border-color: #fff;
}

.btn-outline-gold:hover::before {
  transform: translateY(-50%) scale(30);
}

.btn-outline-gold:hover .btn-text {
  color: #000;
}

.btn-outline-gold:hover .arrow-circle svg {
  transform: rotate(45deg);
}

.arrow-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.social-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background-color: #f0f0f0;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 500;
}

.footer-link-list {
  list-style: none;
  padding: 0;
}

.footer-link-list li {
  margin-bottom: 18px;
}

.footer-link-list a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-link-list a:hover {
  color: #fff;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h5 {
  font-size: 0.95rem;
  color: #8c8c8c;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.5;
  width: 400px;
  display: block;
}

.footer-bottom {
  background: #171717;
  padding: 30px 0;
  border-top: none;
}

.bottom-container {
  max-width: 100%;
  margin: 0;
  padding: 0 var(--fluid-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cdcbcb;
  font-size: var(--body-fs);
  font-weight: 350;
  padding-bottom: 30px;
}

.designer-credit {
  color: #888;
  font-size: 14px;
}

.designer-credit a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.designer-credit a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.legal-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.legal-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #fff;
}

.legal-links .divider {
  color: #888;
}

/* RESPONSIVE REFINEMENTS */
@media (max-width: 1200px) {
  .footer-container {
    gap: 60px;
    padding: 0 40px 80px;
  }
}

@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 40px;
  }

  .col-info {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .footer-container {
    padding: 0 15px 60px;
    flex-direction: column;
    gap: 50px;
  }

  .bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Video Testimonial Modal */
.video-testimonial-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-testimonial-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(30px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.video-testimonial-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.close-video-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-video-modal:hover {
  background: var(--primary-gold);
  color: #000;
  transform: rotate(90deg);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }

  .close-video-modal {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}
/* --- BRUTE FORCE MOBILE OVERRIDES (1:1 STRUCTURE REINFORCEMENT) --- */
@media (max-width: 1024px) {
  .test-slider-stage {
    display: block !important;
    min-height: auto !important;
  }
  .test-cards-wrap {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 768px) {
  .test-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  /* ORDER 1: TITLE */
  .test-title {
    font-size: 8.5vw !important;
    white-space: nowrap !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 15px !important;
    position: relative !important;
    z-index: 10 !important;
  }

  /* HIDE CONFLICTS */
  .test-desc, 
  .test-divider, 
  .test-quote-start, 
  .test-quote-end {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .testimonials-section {
    padding: 40px 0 10px !important; /* Drastically reduced bottom padding */
  }


  /* Legacy mobile testimonial grid rules removed */

  .test-item-title {
    font-size: 3.2rem !important;
    color: #D4AF37 !important;
    margin-bottom: 15px !important;
    display: block !important;
    font-family: 'Prata', serif !important;
  }

  .test-item-quote {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #fff !important;
    margin-bottom: 15px !important; /* Reduced from 30px */
    display: block !important;
    opacity: 1 !important;
    max-width: none !important;
  }

  .test-client-info {
    position: relative !important;
    padding-top: 10px !important;
    margin-top: 10px !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    display: block !important;
    color: #fff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .test-client-info::before {
    display: none !important;
  }

  /* --- EVENT VENUES MOBILE REINFORCEMENT --- */
  .venues-section {
    padding: 10px 0 60px !important; /* Removed top gap above Event Venues */
  }

  .venues-header {
    margin-bottom: 10px !important; /* Reduced from 20px */
    padding: 0 15px !important;
  }

  .venues-title {
    font-size: 10vw !important;
    margin-bottom: 15px !important;
  }

  .venues-desc {
    font-size: 16px !important;
    line-height: 1.6 !important;
    padding: 0 15px !important;
  }

  /* --- MOMENTS SECTION MOBILE REINFORCEMENT --- */
  .moments-section {
    padding: 40px 0 !important; /* Reduced from default */
  }

  .moments-header {
    margin-bottom: 15px !important;
  }

  .moments-title {
    font-weight: 400 !important; /* Reduced from default bold */
  }

  .moments-gallery-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .venue-fan-wrapper {
    display: flex !important; /* Enable on mobile */
    height: 500px !important;
    perspective: 1000px !important;
  }

  .venue-card {
    width: 280px !important;
    height: 380px !important;
    border-radius: 20px !important;
    position: absolute !important;
    transition: all 0.5s ease-out !important;
    background-color: var(--primary-gold) !important; /* Gold frame background */
    border: 4px solid var(--primary-gold) !important;
  }

  .venue-card img {
    width: 100% !important;
    height: calc(100% - 60px) !important; /* Leave room for info bar */
    object-fit: cover !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .venue-card.pos-center {
    left: 50% !important;
    transform: translateX(-50%) scale(1) !important;
    z-index: 100 !important;
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  }

  .venue-card.pos-left {
    left: -15% !important;
    transform: translateX(-50%) rotate(-5deg) scale(0.8) !important;
    filter: brightness(0.6) !important;
    z-index: 50 !important;
  }

  .venue-card.pos-right {
    left: 115% !important;
    transform: translateX(-50%) rotate(5deg) scale(0.8) !important;
    filter: brightness(0.6) !important;
    z-index: 50 !important;
  }

  .venue-card.pos-far-left,
  .venue-card.pos-far-right {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .venue-info-bar {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: var(--primary-gold) !important;
    padding: 15px !important;
    opacity: 1 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    height: 60px !important;
    box-sizing: border-box !important;
  }

  .venue-info-bar h3 {
    color: #000 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-family: var(--font-sans) !important;
  }

  .venues-custom-cursor {
    display: none !important;
  }

  /* --- WHY TIMELINE STORIES MOBILE REINFORCEMENT (1:1 MATCH) --- */
  .why-section {
    padding: 20px 0 60px !important; /* Heavily reduced top padding */
    background: #fff !important;
  }

  .container-why {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 15px !important;
    gap: 0 !important;
    margin: 0 !important;
  }

  /* ORDER 1: TITLE */
  .why-title {
    order: 1 !important;
    font-size: 11vw !important;
    color: #000 !important;
    margin-bottom: 10px !important; /* Reduced from 20px */
    white-space: normal !important;
    line-height: 1.2 !important;
    letter-spacing: -1px !important;
    text-align: left !important;
    font-weight: 400 !important;
    width: 100% !important;
  }

  /* ORDER 2: DESCRIPTION */
  .why-top-desc {
    order: 2 !important;
    color: #b0b0b0 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 15px !important; /* Reduced from 40px */
    padding-top: 0 !important;
    text-align: left !important;
    width: 100% !important;
    border-bottom: 1px solid #eee !important;
    padding-bottom: 15px !important; /* Reduced from 30px */
  }

  /* ORDER 3: ACCORDION */
  .accordion {
    order: 3 !important;
    width: 100% !important;
    margin-bottom: 20px !important; /* Reduced from 40px */
  }

  .accordion-item {
    border-bottom: 1px solid #eee !important;
  }

  .accordion-header {
    padding: 15px 0 !important; /* Reduced from 24px */
  }

  .accordion-header h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #b0b0b0 !important; /* Inactive grey */
    transition: color 0.3s ease !important;
  }

  .accordion-item.active .accordion-header h3 {
    color: #000 !important; /* Active black */
    text-shadow: none !important;
  }

  .accordion-content p {
    padding-bottom: 24px !important;
    color: #888 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  /* ORDER 4: IMAGE */
  .why-image-wrap {
    order: 4 !important;
    width: 100% !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    overflow: hidden !important;
  }

  /* ORDER 4: IMAGE */
  .why-image-wrap {
    order: 4 !important;
    width: 100% !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    overflow: hidden !important;
  }

  .why-image-wrap img {
    border-radius: 20px !important;
  }

  /* --- FOOTER MOBILE REINFORCEMENT (1:1 MATCH) --- */
  .footer-dark {
    text-align: left !important;
    padding-top: 0 !important; /* Eliminated top padding */
    padding-bottom: 0 !important;
  }

  .footer-container {
    padding-top: 10px !important; /* Further reduced from 20px */
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-bottom: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 30px !important; /* Reduced from 40px */
  }

  .footer-col {
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .footer-logo {
    justify-content: flex-start !important;
    margin-bottom: 15px !important; /* Reduced from 30px */
  }

  .footer-company-desc {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #fff !important;
    max-width: 320px !important;
    margin: 0 0 30px 0 !important;
  }

  /* ACTION BUTTON - PILL SHAPE */
  .btn-outline-gold {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 12px 12px 25px !important;
    border-radius: 50px !important;
    border: 1px solid #D4AF37 !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 0 30px 0 !important;
  }

  .btn-outline-gold .btn-text {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
  }

  .btn-outline-gold .arrow-circle {
    width: 38px !important;
    height: 38px !important;
    background: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn-outline-gold .arrow-circle svg {
    stroke: #000 !important;
  }

  /* QUICK LINKS SECTION */
  .footer-col-title {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
    width: auto !important;
  }

  .footer-link-list {
    display: block !important; 
    width: 100% !important;
    padding-bottom: 20px !important;
  }

  .footer-link-list li {
    margin-bottom: 20px !important;
  }

  .footer-link-list a {
    font-size: 16px !important;
    color: #fff !important;
  }

  /* CONTACT DETAILS */
  .col-contact {
    margin-top: 20px !important;
  }

  .contact-item {
    margin-bottom: 25px !important;
  }

  .contact-item h5 {
    font-size: 14px !important;
    color: #888 !important;
    margin-bottom: 8px !important;
  }

  .contact-item a, 
  .contact-item p {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #fff !important;
    width: 100% !important;
    text-align: left !important;
  }

  /* SOCIAL ICONS - WHITE SQUARES */
  .footer-socials {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    margin-top: 20px !important;
  }

  .social-icon {
    width: 48px !important;
    height: 48px !important;
    background: #fff !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease !important;
  }

  .social-icon svg {
    color: #000000 !important;
    stroke: #000000 !important;
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding: 30px 0 !important;
  }

  .bottom-container {
    padding: 0 15px !important;
    gap: 20px !important;
  }

  .copyright {
    order: 1 !important;
    font-size: 14px !important;
    color: #888 !important;
  }

  .legal-links {
    order: 2 !important;
    font-size: 14px !important;
  }

  .legal-links a {
    color: #888 !important;
  }
}

/* --- PERFORMANCE OPTIMIZATION --- */
/* content-visibility: auto tells the browser to skip rendering off-screen sections until needed. */
.case-study-section,
.venues-section,
.moments-section,
.contact-form-section,
.footer-dark {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
/* Floating Action Buttons System */
.fab-container {
  position: fixed;
  right: 30px;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
}

.fab-item {
  width: 56px;
  height: 56px;
  background-color: #D4AF37;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
}

.fab-item:hover {
  background-color: #000;
  color: #D4AF37;
  border-color: #D4AF37;
  transform: scale(1.1);
}

.fab-item svg {
  width: 24px;
  height: 24px;
}

/* Tooltip for FABs */
.fab-item::after {
  content: attr(data-label);
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-gold);
}

.fab-item:hover::after {
  opacity: 1;
  right: 65px;
}

/* Mobile Bottom Bar Refined */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: #ffffff; /* White background as in reference */
  z-index: 10001;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  padding: 0 10px;
  box-sizing: border-box;
}

.mobile-bar-item {
  display: flex;
  flex-direction: row; /* Horizontal layout as in reference */
  align-items: center;
  justify-content: center;
  color: #000000;
  text-decoration: none;
  font-size: 11px;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
  border: none;
  cursor: pointer;
  height: 100%;
}

.mobile-bar-item svg {
  width: 22px;
  height: 22px;
  color: #D4AF37;
}

.mobile-bar-item:active {
  background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
  .fab-container {
    display: none;
  }
  .mobile-bottom-bar {
    display: grid;
  }
  
  /* Prevent content from being hidden by mobile bar */
  .footer-dark {
    padding-bottom: 90px !important;
  }
  
  /* Ensure modals appear above bottom bar */
  .modal-overlay {
    z-index: 11000 !important;
  }

  /* DEFINITIVE ROBUST MODAL SCROLL FIX (LAST IN CASCADE) */
  .modal-overlay {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
    padding: 40px 10px !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y !important;
    pointer-events: auto !important;
  }
  
  .modal-container {
    padding: 30px 20px !important;
    width: 95% !important;
    max-height: none !important; /* Grow naturally, scroll on overlay */
    height: auto !important;
    overflow: visible !important;
    margin-bottom: 40px !important;
    border-radius: 12px !important;
    position: relative !important;
    top: auto !important;
    transform: none !important;
  }
  
  .modal-title {
    font-size: 1rem !important;
  }
  
  .modal-header {
    margin-bottom: 10px !important;
  }
  
  .modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 20px !important;
  }

  .modal-form-grid {
    gap: 8px !important;
  }

  .form-group input, 
  .form-group textarea,
  .select-trigger {
    padding: 8px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }

  /* Custom Dropdown Scroll Fix for Mobile */
  .modal-container .custom-options {
    max-height: 180px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 9999 !important;
    touch-action: pan-y !important; /* Restore touch scroll gestures */
    pointer-events: auto !important;
  }
}

/* Immersive Mobile Menu (Slide from Right) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #0a0a0a;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}

.menu-logo {
  height: 45px;
  width: auto;
}

.menu-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-socials {
  display: flex;
  gap: 15px;
}

.menu-close-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-close-btn:active {
  background: var(--primary-gold);
  color: #000;
  border-color: var(--primary-gold);
}

.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-welcome {
  color: var(--primary-gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
  opacity: 0.7;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.menu-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.menu-link span {
  transition: transform 0.3s ease;
}

.menu-link:active span {
  transform: translateX(10px);
  color: var(--primary-gold);
}

.menu-featured {
  margin-top: auto;
  padding-bottom: 80px; /* Space for bottom bar if needed */
}

.featured-card {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.featured-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}

.featured-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 8px 0;
}

.featured-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 80%;
}

.featured-action {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Hide legacy mobile menu links */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
}

/* ==========================================================================
   TABLET VIEW REFINEMENTS (1024px)
   Applied only to 769px - 1024px range
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1100px) {
  /* Our Process Section Fixes */
  .process-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 0 40px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
  }
  
  .process-card {
    height: auto !important;
    min-height: 260px !important;
    padding: 24px !important;
    text-align: left !important;
  }

  .process-card h4 {
    font-size: 16px !important;
  }

  .process-card p {
    font-size: 14px !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* Our Strength (Arc) Section Fixes - Screenshot 2 & Tablet Height */
  .strength-sticky-container {
    justify-content: center !important;
    padding-top: 0 !important;
    height: 100vh !important;
  }

  .strength-header {
    margin-bottom: 10px !important;
  }

  .strength-header h2 {
    font-size: 42px !important;
  }

  .arc-container {
    margin-top: -100px !important; /* Lift significantly for horizontal/tablet ratios */
    height: 500px !important;
    width: 100vw !important;
    max-width: none !important;
  }

  /* Our Strength (Arc) Section Fixes - Screenshot 1 Collision Fix */
  .arc-content-wrapper {
    top: 44% !important; /* Move text container down for Screenshots 1 clarity */
    width: 85% !important;
    max-width: 480px !important;
    transform: translate(-50%, -50%) !important;
    z-index: 50 !important;
  }

  /* Testimonials Section Fixes - Screenshot 2 Resize */
  .test-container {
    height: 480px !important;
  }

  .test-video-card {
    width: 220px !important; /* Reduced for Screenshot 2 fit */
    height: 340px !important; /* Reduced for Screenshot 2 fit */
  }

  /* Event Venues Section Fixes - Screenshot 3 (Order & Alignment) */
  .venue-fan-wrapper {
    height: 400px !important;
    margin-top: 10px !important;
  }

  .venue-card {
    width: 190px !important;
    height: 280px !important;
  }
  
  .venue-card.pos-center {
    left: 50% !important;
    transform: translateX(-50%) scale(1) !important;
    z-index: 10 !important;
  }
  
  .venue-card.pos-left {
    left: 18% !important;
    transform: translateX(-50%) rotate(-12deg) scale(0.75) !important;
    z-index: 5 !important;
  }
  
  .venue-card.pos-mid-left {
    left: 34% !important;
    transform: translateX(-50%) rotate(-6deg) scale(0.85) !important;
    z-index: 8 !important;
  }

  .venue-card.pos-mid-right {
    left: 66% !important;
    transform: translateX(-50%) rotate(6deg) scale(0.85) !important;
    z-index: 8 !important;
  }
  
  .venue-card.pos-right {
    left: 82% !important;
    transform: translateX(-50%) rotate(12deg) scale(0.75) !important;
    z-index: 5 !important;
  }

  /* Why Timeline Stories Alignment - Screenshot 4 */
  .container-why {
    align-items: center !important;
    gap: 30px !important;
  }

  /* Footer Social Gap - Screenshot 5 */
  .footer-social {
    margin-top: 40px !important; /* Increased breathable space for Screenshot 5 */
    display: flex !important;
    gap: 20px !important;
  }
}

/* Specific Fix for 768px iPad Mini view (Screenshot 1 & 2) */
@media (max-width: 768px) {
  /* Process: Stack 1-column because Screenshot 1 shows 2-col look messy at 768 */
  .process-cards-grid {
    grid-template-columns: 1fr !important;
    max-width: 400px !important;
    gap: 16px !important;
  }

  /* Strength Arc: Force lift for Screenshot 2 vertical balance */
  .arc-container {
    margin-top: -140px !important; 
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .strength-header {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
  }

  .arc-content-wrapper {
    top: 32% !important;
  }
}

/* --- TABLET/SMALL DESKTOP REFINEMENTS (1180px - iPad Air landscape / Small Desktop) --- */
@media (min-width: 1025px) and (max-width: 1210px) {
  /* Hero Section Font Reduction - Headline fit fix */
  .hero-subtitle {
    font-size: 0.85rem !important;
    letter-spacing: 3px !important;
  }
  
  .hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }
  
  .hero-desc {
    font-size: 0.85rem !important;
    max-width: 500px !important;
    line-height: 1.5 !important;
  }

  /* Testimonials: Exactly 3 cards visible side-by-side */
  .test-container {
    width: calc(100% - 56px) !important;
  }

  .test-video-card {
    width: 248px !important;
    height: 470px !important;
    margin: 0 12px !important;
  }
  
  .video-thumb-container {
    height: 390px !important;
  }

  .test-thumbnail-video {
    object-fit: contain !important;
    object-position: center top !important;
    background: #000 !important;
  }

  /* Accordion Font Reduction (30% approx) */
  .accordion-header h3 {
    font-size: 0.9rem !important; /* Reduced by ~30% from 1.25rem */
  }
  
  .accordion-content p {
    font-size: 0.7rem !important; /* Reduced by ~30% from 1rem */
    line-height: 1.5 !important;
  }

  /* Footer Address Slimming */
  .col-contact {
    max-width: 220px !important;
    flex: 0 0 220px !important;
  }
  
  .contact-item a,
  .contact-item p {
    max-width: 220px !important;
    width: 100% !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    overflow-wrap: anywhere;
  }

  .footer-container {
    gap: 48px;
  }
}

/* --- FINAL TABLET LAYOUT STABILIZATION (768px - 1100px) --- */
@media (min-width: 768px) and (max-width: 1100px) {
  .navbar {
    padding: 22px 0;
  }

  .navbar.scrolled {
    padding: 12px 0;
  }

  .navbar-wrapper {
    padding: 0 clamp(24px, 4vw, 40px);
    gap: 16px;
  }

  .nav-action {
    flex-shrink: 0;
  }

  .nav-action .btn-luxury-arrow {
    padding: 7px 7px 7px 18px;
    gap: 12px;
  }

  .nav-action .btn-text {
    font-size: 13px;
  }

  .nav-action .arrow-circle {
    width: 34px;
    height: 34px;
  }

  .hero {
    aspect-ratio: auto;
    min-height: clamp(700px, 92vh, 920px);
  }

  .hero-bg {
    background-size: cover;
  }

  .hero-container {
    bottom: clamp(56px, 10vh, 92px) !important;
    padding: 0 clamp(32px, 5vw, 52px) !important;
  }

  .hero-content {
    flex-direction: column;
    gap: 24px;
    padding: 0 !important;
  }

  .hero-left,
  .hero-right {
    width: min(100%, 720px);
    max-width: min(100%, 720px);
    flex: none;
  }

  .hero-right {
    gap: 20px;
    margin-top: 0;
  }

  .hero-title,
  .hero-subtitle {
    white-space: normal;
    font-size: clamp(2.8rem, 5.8vw, 4.4rem);
    line-height: 1.05;
  }

  .hero-desc {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.6;
  }

  .slider-controls-arrows {
    padding: 0 clamp(24px, 4vw, 40px);
  }

  .scroll-down-indicator {
    right: clamp(24px, 4vw, 40px);
  }

  .page-content {
    width: calc(100% - 48px);
    max-width: none;
    padding: 72px clamp(24px, 4vw, 40px);
    border-radius: 52px;
  }

  .memories-slider-wrapper {
    padding: 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .card.span-5,
  .card.span-7 {
    grid-column: span 1 !important;
  }

  .card {
    height: clamp(250px, 31vw, 320px);
  }

  .card-content {
    left: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .card-icon img {
    width: 26px;
    height: 26px;
  }

  .card-title {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.2;
    max-width: 100%;
  }

  .our-process-section {
    padding-left: clamp(24px, 4vw, 40px);
    padding-right: clamp(24px, 4vw, 40px);
  }

  .process-cards-grid {
    padding: 0 !important;
  }

  .strength-sticky-container {
    padding-top: 32px !important;
  }

  .strength-header {
    margin-bottom: 24px !important;
    max-width: 760px;
  }

  .strength-header p {
    font-size: 16px;
    line-height: 1.5;
  }

  .arc-container {
    width: min(100%, 920px) !important;
    height: clamp(420px, 54vw, 560px) !important;
    margin-top: -40px !important;
  }

  .arc-content-wrapper {
    top: 47% !important;
    width: min(72%, 560px) !important;
    max-width: 560px !important;
  }

  .arc-center-content h3 {
    font-size: clamp(1.4rem, 2.6vw, 2rem) !important;
  }

  .arc-center-content p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .node-number-badge {
    width: 54px;
    height: 54px;
    font-size: 18px;
    transform: translateY(-56px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate))));
  }

  .arc-indicator.active .node-line {
    height: 80px;
  }

  .testimonials-section {
    padding: 80px 0 24px;
  }

  .test-header {
    margin-bottom: 48px;
  }

  .test-title {
    font-size: clamp(2.5rem, 5.2vw, 3.8rem);
  }

  .test-desc {
    max-width: 720px;
    font-size: 0.95rem;
  }

  .test-container {
    width: calc(100% - 64px);
    height: auto !important;
  }

  .test-cards-wrap {
    gap: 18px;
  }

  .test-video-card {
    flex: 0 0 calc(50% - 9px);
    width: auto !important;
    min-height: 0;
    height: clamp(420px, 62vw, 560px) !important;
  }

  .venues-fan-container {
    max-width: 1000px;
    height: 420px;
    padding: 0 24px;
  }

  .venue-card {
    width: clamp(220px, 28vw, 270px) !important;
    height: auto !important;
  }

  .venue-card.pos-far-left {
    transform: translateX(-95%) rotate(-12deg) scale(0.66) !important;
  }

  .venue-card.pos-left {
    transform: translateX(-55%) rotate(-6deg) scale(0.82) !important;
  }

  .venue-card.pos-center {
    transform: translateX(0) scale(1.02) !important;
  }

  .venue-card.pos-right {
    transform: translateX(55%) rotate(6deg) scale(0.82) !important;
  }

  .venue-card.pos-far-right {
    transform: translateX(95%) rotate(12deg) scale(0.66) !important;
  }

  .venue-info-bar {
    padding: 14px 18px;
  }

  .venue-info-bar h3 {
    font-size: 16px;
  }

  .moments-filter-container {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 32px;
  }

  .moments-gallery-wrapper {
    padding: 0 32px;
  }

  .moment-item {
    flex: 0 0 clamp(300px, 42vw, 360px);
  }

  .why-section {
    padding: 72px 0 88px;
  }

  .container-why {
    width: min(calc(100% - 64px), 900px);
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    row-gap: 24px;
  }

  .why-title,
  .why-top-desc,
  .why-image-wrap,
  .accordion {
    width: 100%;
    max-width: 100%;
  }

  .why-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    letter-spacing: -1px;
  }

  .why-top-desc {
    padding-top: 0;
    font-size: 1rem;
    line-height: 1.7;
  }

  .why-image-wrap {
    margin: 0;
  }

  .accordion-header {
    padding: 18px 0;
  }

  .accordion-header h3 {
    font-size: 1.18rem;
  }

  .accordion-content p {
    font-size: 1rem;
    padding-bottom: 24px;
  }

  .footer-container {
    flex-wrap: wrap;
    gap: 32px;
    padding: 0 32px 72px;
  }

  .col-info {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-company-desc {
    max-width: 560px;
  }

  .footer-col.col-links,
  .col-contact {
    flex: 1 1 calc(50% - 16px);
    min-width: 240px;
  }

  .contact-item a,
  .contact-item p {
    width: 100%;
    max-width: 100%;
  }

  .footer-socials {
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 32px 24px;
  }

  .legal-links {
    flex-wrap: wrap;
  }
}

/* --- IPAD PORTRAIT TUNING (768x1024, 820px, 834px) --- */
@media (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {
  .nav-action {
    display: none !important;
  }

  .mobile-bottom-bar {
    display: none !important;
  }

  .footer-dark {
    padding-bottom: 0 !important;
  }

  .fab-container {
    display: flex !important;
    top: 82% !important;
  }

  .hero {
    min-height: calc(var(--app-height) * 0.84) !important;
  }

  .hero-container {
    bottom: 36px !important;
    padding: 0 24px !important;
  }

  .scroll-down-indicator {
    left: 50% !important;
    right: auto !important;
    bottom: 20px !important;
    translate: -50% 0;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100%;
  }

  .hero-title,
  .hero-subtitle {
    font-size: clamp(2.5rem, 6.6vw, 3.8rem);
  }

  .hero-desc {
    max-width: 100%;
    font-size: 15px;
  }

  .page-content {
    width: calc(100% - 32px);
    padding: 48px 20px 20px;
    border-radius: 36px;
    margin-bottom: 16px;
  }

  .main-dark-wrapper {
    border-bottom-left-radius: 36px !important;
    border-bottom-right-radius: 36px !important;
  }

  .memories-nav {
    display: none !important;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    height: clamp(300px, 44vw, 360px);
  }

  .card-title {
    font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  }

  .process-cards-grid {
    max-width: 100% !important;
    gap: 16px !important;
  }

  .process-card {
    min-height: 220px !important;
    padding: 20px !important;
  }

  .process-card h4 {
    font-size: 15px !important;
  }

  .process-card p {
    font-size: 13px !important;
  }

  .strength-sticky-container {
    padding-top: 24px !important;
  }

  .strength-header {
    margin-bottom: 16px !important;
  }

  .strength-header h2 {
    font-size: clamp(2.3rem, 7vw, 3.2rem) !important;
  }

  .strength-header p {
    font-size: 15px;
  }

  .arc-container {
    width: min(100%, 760px) !important;
    height: clamp(420px, 62vw, 520px) !important;
    margin-top: -24px !important;
  }

  .arc-content-wrapper {
    top: 46% !important;
    width: min(78%, 460px) !important;
  }

  .node-number-badge {
    width: 50px;
    height: 50px;
    font-size: 17px;
    transform: translateY(-52px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate))));
  }

  .test-container {
    width: calc(100% - 40px);
  }

  .test-cards-wrap {
    gap: 16px;
  }

  .test-video-card {
    flex: 0 0 calc(50% - 8px);
    height: clamp(360px, 56vw, 470px) !important;
  }

  .test-controls {
    margin-top: 16px;
  }

  .venues-fan-container {
    height: 360px;
    padding: 0 12px;
  }

  .venue-card {
    width: clamp(170px, 24vw, 210px) !important;
  }

  .venue-card.pos-far-left {
    transform: translateX(-82%) rotate(-11deg) scale(0.62) !important;
  }

  .venue-card.pos-left {
    transform: translateX(-46%) rotate(-6deg) scale(0.8) !important;
  }

  .venue-card.pos-right {
    transform: translateX(46%) rotate(6deg) scale(0.8) !important;
  }

  .venue-card.pos-far-right {
    transform: translateX(82%) rotate(11deg) scale(0.62) !important;
  }

  .venue-info-bar {
    padding: 12px 14px;
  }

  .venue-info-bar h3 {
    font-size: 14px;
  }

  .moments-filter-container,
  .moments-gallery-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .moment-item {
    flex: 0 0 min(78vw, 420px);
  }

  .container-why {
    width: calc(100% - 40px);
    gap: 28px;
  }

  .why-title {
    font-size: clamp(2.5rem, 6vw, 3.6rem);
  }

  .accordion-header h3 {
    font-size: 1.08rem;
  }

  .footer-container {
    padding: 0 20px 56px;
  }

  .footer-col.col-links,
  .col-contact {
    flex: 1 1 100%;
  }

  .bottom-container {
    padding: 0 20px 20px;
  }
}

/* --- 1024x768 LANDSCAPE TUNING --- */
@media (min-width: 1000px) and (max-width: 1100px) and (orientation: landscape) {
  .nav-action .btn-luxury-arrow {
    padding-left: 16px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-container {
    bottom: 44px !important;
    padding: 0 32px !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
  }

  .hero-left {
    flex: 0 0 52%;
    width: auto;
    max-width: none;
  }

  .hero-right {
    flex: 0 0 40%;
    width: auto;
    max-width: 360px;
    gap: 16px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: clamp(2.5rem, 4.8vw, 3.4rem);
    line-height: 1;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .page-content {
    width: calc(100% - 56px);
    padding: 64px 28px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card {
    height: 280px;
  }

  .arc-container {
    width: min(100%, 900px) !important;
    height: 430px !important;
    margin-top: -56px !important;
  }

  .arc-content-wrapper {
    width: min(70%, 520px) !important;
  }

  .test-container {
    width: calc(100% - 72px);
  }

  .test-video-card {
    height: 430px !important;
  }

  .venues-fan-container {
    height: 390px;
    max-width: 960px;
  }

  .venue-card {
    width: 220px !important;
  }

  .moment-item {
    flex: 0 0 clamp(320px, 34vw, 360px);
  }

  .container-why {
    width: calc(100% - 72px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
  }

  .why-title,
  .why-top-desc,
  .why-image-wrap,
  .accordion {
    width: 100%;
    max-width: 100%;
  }

  .why-title {
    font-size: clamp(2.6rem, 4.2vw, 3.4rem);
  }

  .footer-container {
    padding: 0 28px 64px;
  }

  .bottom-container {
    padding: 0 28px 24px;
  }
}

/* --- REAL IPAD SAFARI STABILIZATION --- */
html.ipad-device,
html.touch-device {
  -webkit-text-size-adjust: 100%;
}

html.ipad-device .hero,
html.ipad-device .strength-sticky-container,
html.ipad-device .mobile-menu,
html.ipad-device .video-testimonial-modal,
html.ipad-device .modal-overlay,
html.ipad-device .thank-you-page {
  min-height: var(--app-height);
}

html.ipad-device .hero,
html.ipad-device .strength-sticky-container {
  height: auto;
}

html.ipad-device.ipad-portrait .hero {
  min-height: calc(var(--app-height) * 0.92) !important;
}

html.ipad-device.ipad-landscape .hero {
  min-height: max(760px, calc(var(--app-height) * 0.96)) !important;
}

@media (hover: none) and (pointer: coarse) {
  .hero-arrow:hover,
  .test-video-card:hover,
  .venue-card:hover,
  .fab-item:hover,
  .social-icon:hover,
  .moment-item:hover {
    transform: none;
  }
}

/* --- SCREENSHOT-DRIVEN IPAD PORTRAIT POLISH --- */
@media (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {
  .our-strength-section {
    height: 205vh;
    padding-top: 0 !important;
  }

  .strength-sticky-container {
    justify-content: flex-start !important;
    padding-top: 84px !important;
  }

  .strength-header {
    margin-bottom: 10px !important;
  }

  .strength-header h2 {
    font-size: clamp(2.4rem, 6vw, 3rem) !important;
    margin-bottom: 10px;
  }

  .strength-header p {
    max-width: 520px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.55;
  }

  .arc-layout-wrapper {
    margin-top: 26px;
  }

  .arc-container {
    width: 150vw !important;
    max-width: none !important;
    margin-top: 48px !important;
    overflow: hidden !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .arc-content-wrapper {
    top: 74% !important;
    width: min(56%, 350px) !important;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .arc-center-content {
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    transform: translateY(62px);
  }

  .arc-center-content.active {
    transform: translateY(18px);
  }

  .arc-center-content h3 {
    font-size: 1.52rem !important;
    margin-bottom: 16px !important;
    line-height: 1.25;
  }

  .arc-center-content p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  .node-number-badge {
    width: 50px;
    height: 50px;
    font-size: 16px;
    transform: translateY(-36px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate))));
  }

  .node-dot {
    width: 12px;
    height: 12px;
  }

  .arc-indicator.active .node-line {
    height: 44px;
  }

  .testimonials-section {
    padding: 64px 0 24px;
  }

  .test-header {
    margin-bottom: 28px;
  }

  .test-desc {
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .test-container {
    width: min(calc(100% - 32px), 620px) !important;
  }

  .test-slider-stage {
    padding: 0;
  }

  .test-cards-wrap {
    gap: 16px;
  }

  .test-video-card {
    flex: 0 0 calc(50% - 8px) !important;
    aspect-ratio: 9 / 16;
    height: auto !important;
    min-height: 0;
    border-radius: 18px;
  }

  .test-thumbnail-video {
    object-fit: contain;
    object-position: center top;
    background: #000;
  }

  .test-controls {
    margin-top: 18px;
  }

  .test-nav-btn {
    width: 44px;
    height: 44px;
  }

  .test-divider {
    margin-top: 24px;
  }

  .venues-section {
    padding: 18px 0 64px;
  }

  .venues-header {
    margin-bottom: 18px;
    padding: 0 20px;
  }

  .venues-desc {
    max-width: 560px;
  }

  .venues-fan-container {
    width: min(calc(100% - 32px), 360px);
    max-width: 360px;
    height: 500px;
    padding: 0;
    margin-top: 20px;
  }

  .venue-fan-wrapper {
    display: flex !important;
    height: 500px !important;
    perspective: 1000px !important;
    overflow: visible;
  }

  .venue-card {
    width: 280px !important;
    height: 380px !important;
    aspect-ratio: auto;
    border-radius: 20px !important;
    background-color: var(--primary-gold) !important;
    border: 4px solid var(--primary-gold) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  }

  .venue-card img {
    width: 100% !important;
    height: calc(100% - 60px) !important;
    object-fit: cover !important;
    border-radius: 12px 12px 0 0 !important;
    filter: none !important;
  }

  .venue-card.pos-center {
    left: 50% !important;
    transform: translateX(-50%) scale(1) !important;
    z-index: 100 !important;
    opacity: 1 !important;
  }

  .venue-card.pos-left {
    left: -15% !important;
    transform: translateX(-50%) rotate(-5deg) scale(0.8) !important;
    filter: brightness(0.6) !important;
    z-index: 50 !important;
    opacity: 1 !important;
  }

  .venue-card.pos-right {
    left: 115% !important;
    transform: translateX(-50%) rotate(5deg) scale(0.8) !important;
    filter: brightness(0.6) !important;
    z-index: 50 !important;
    opacity: 1 !important;
  }

  .venue-card.pos-far-left,
  .venue-card.pos-far-right {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .venue-info-bar {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60px !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    background-color: var(--primary-gold) !important;
    opacity: 1 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
  }

  .venue-info-bar h3 {
    color: #000 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.3;
  }

  .venues-btn-container {
    margin-top: 12px;
  }
}

/* --- IPAD AIR LANDSCAPE / 1180x820 STRENGTH SPACING FIX --- */
@media (min-width: 1110px) and (max-width: 1210px) and (orientation: landscape) {
  .navbar,
  .navbar.scrolled {
    padding: 14px 0 !important;
  }

  .navbar-wrapper {
    padding: 0 32px !important;
  }

  .logo-img,
  .navbar.scrolled .logo-img {
    height: 46px !important;
  }

  .hero {
    margin-top: -5px !important;
    min-height: max(680px, calc(var(--app-height) * 0.84)) !important;
    background: #000 !important;
  }

  .hero-bg {
    margin-top: -5px !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .container-why {
    --why-column-height: min(54vw, 620px);
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
    align-items: stretch !important;
    gap: clamp(24px, 3vw, 42px) !important;
    height: var(--why-column-height) !important;
  }



  .why-image-wrap,
  .accordion {
    width: 100% !important;
    max-width: 100% !important;
    height: 400px;
    max-height: var(--why-column-height) !important;
  }

  .why-image-wrap {
    width: 100% !important;
    max-width: 540px !important;
    justify-self: start !important;
  }

  .why-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .accordion {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .accordion-item.active .accordion-content {
    max-height: calc(var(--why-column-height) - 96px) !important;
    overflow-y: auto;
  }

  .accordion-header h3 {
    font-size: 1.06rem !important;
    line-height: 1.35 !important;
  }

  .accordion-content p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  .fab-container {
    top: 78% !important;
    right: 22px !important;
    gap: 16px !important;
  }

  .fab-item {
    width: 48px !important;
    height: 48px !important;
  }

  .fab-item svg {
    width: 20px !important;
    height: 20px !important;
  }

  .strength-sticky-container {
    justify-content: flex-start !important;
    padding-top: 28px !important;
  }

  .strength-header {
    margin-bottom: 34px !important;
  }

  .strength-header h2 {
    margin-bottom: 14px !important;
  }

  .arc-layout-wrapper {
    margin-top: 12px !important;
  }

  .arc-container {
    width: calc(100vw - 32px) !important;
    max-width: none !important;
    height: 510px !important;
    margin-top: -8px !important;
  }

  .arc-content-wrapper {
    top: 49% !important;
    width: min(56%, 420px) !important;
  }

  .arc-center-content p {
    max-width: 320px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
  }

  .node-number-badge {
    transform: translateY(-52px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate))));
  }
}

/* --- MOBILE ARC RESET (RESTORE PHONE LAYOUT) --- */
@media (max-width: 768px) {
  .our-strength-section {
    height: 320vh !important;
  }

  .strength-sticky-container {
    justify-content: flex-start !important;
    padding-top: 88px !important;
    height: 100vh !important;
  }

  .strength-header {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    padding: 0 20px !important;
  }

  .strength-header h2 {
    font-size: 34px !important;
    margin-bottom: 10px !important;
  }

  .strength-header p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .arc-layout-wrapper {
    margin-top: 0 !important;
  }

  .arc-container {
    width: min(155vw, 700px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    max-width: none !important;
    overflow: visible !important;
    margin-top: 24px !important;
  }

  .arc-wheel {
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .node-number-badge {
    width: 40px !important;
    height: 40px !important;
    font-size: 15px !important;
    transform: translateY(-48px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate)))) !important;
  }

  .node-dot {
    width: 10px !important;
    height: 10px !important;
  }

  .arc-indicator.active .node-line {
    height: 96px !important;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent) !important;
  }

  .arc-content-wrapper {
    top: 37% !important;
    left: 50% !important;
    width: min(82%, 300px) !important;
    max-width: 300px !important;
    transform: translate(-50%, -50%) !important;
  }

  .arc-center-content h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }

  .arc-center-content p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }
}
