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

/* Restore default system cursor — disable custom ring cursor site-wide */
html, body, *, *::before, *::after { cursor: auto !important; }
.ring-cursor, .ring-trail { display: none !important; }

img {
  transition: opacity 0.4s ease;
}
img:not([src]), img[src=""] {
  opacity: 0;
}

:root {
  --bg: transparent;
  --white: #FFFFFF;
  --maroon: #990000;
  --maroon-light: #b30000;
  --maroon-glow: rgba(153,0,0,0.3);
  --text: #FFFFFF;
  --text-dim: #d4c4c8;
  --text-dark: #2a1015;
  --text-dark-dim: #524045;
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.08);
  --heading: 'Cormorant Garamond', serif;
  --body: 'DM Sans', sans-serif;
  --logo: 'Times New Roman', Times, serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html { scroll-behavior: smooth; }

/* Page enter fade */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.45s var(--ease-out-expo) both; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .team__scroll-track, .testimonials__track {
    animation: none !important;
  }
}

body {
  background: transparent;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Smooth image rendering */
img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* iOS momentum scroll on overflow containers */
.nav__dropdown-menu,
.gallery-page,
#galleryPage,
.team-lightbox {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Remove tap highlight on all interactive elements */
a, button, [role="button"], input, select, textarea {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Prevent iOS auto-zoom on input focus (requires font-size ≥ 16px) */
input, textarea, select {
  font-size: max(16px, 1rem);
}

/* Skip link for a11y */
/* Fullscreen background video — stays behind everything */
.bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: blur(3px);
  opacity: 1;
  transform: scale(1.06);
}
.bg-video-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
/* All content sits above the video */
.nav, .scroll-hero, .stats, .stats-about-combined, .about, .services, .team, .reviews, .cta, .footer, .footer-min, .bg-canvas, .ring-cursor, .rings-decor {
  position: relative;
  z-index: 2;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--maroon);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: #FFFFFF; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 3px;
}

/* Section labels — varied cadence, not uniform kickers */
.section-label {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.section-label--center { text-align: center; }
.section-label--light {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.heading-lg {
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 24px;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing: 2px;
}
.heading-lg--center { text-align: center; }

/* Reveal — visible by default, enhanced when JS runs */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(48px);
  will-change: opacity, transform;
  transition: opacity 1.3s var(--ease-out-expo),
              transform 1.3s var(--ease-out-expo);
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { transform: none; transition: opacity 0.3s ease; }
}

/* ===== BG CANVAS ===== */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ===== RING CURSOR ===== */
.ring-cursor {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  width: 48px; height: 48px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  will-change: transform;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 6px rgba(180, 144, 62, 0.3));
}
.ring-cursor.visible { opacity: 1; }
.ring-cursor.hovering {
  width: 64px; height: 64px;
  filter: drop-shadow(0 0 12px rgba(180, 144, 62, 0.5));
}
.ring-cursor svg { width: 100%; height: 100%; }
.ring-cursor__diamond {
  animation: diamond-sparkle 2.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes diamond-sparkle {
  0%, 100% { opacity: 0.7; transform: rotate(45deg) scale(1); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.15); }
}
/* Hide on light sections */
.ring-cursor.on-light { mix-blend-mode: multiply; }

/* Ring trail particles */
.ring-trail {
  position: fixed;
  z-index: 10005;
  pointer-events: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(180, 144, 62, 0.4);
  will-change: transform, opacity;
}

/* Glitter particles */
.cursor-glitter {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 6px 2px rgba(255,215,0,0.6);
  transform: translate(-50%, -50%);
  animation: glitterFly 0.8s ease-out forwards;
}
@keyframes glitterFly {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) translate(0px, 0px) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(var(--dx, 20px), var(--dy, -20px)) scale(0) rotate(180deg);
  }
}

/* Click pop */
.ring-cursor.clicked svg {
  animation: cursorPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cursorPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(2.2); }
  100% { transform: scale(1); }
}

/* Floating decorative rings (large, background) */
.rings-decor {
  position: fixed;
  z-index: 500;
  pointer-events: none;
  width: 140px; height: 100px;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.6s;
}
.rings-decor.visible { opacity: 0.5; }
.rings-decor svg { width: 100%; height: 100%; filter: drop-shadow(0 0 16px rgba(180, 144, 62, 0.15)); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10006;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 40px;
  transition: background 0.4s var(--ease-out-expo),
              padding 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
  overflow: visible;
}

/* Mobile nav — minimal floating pill */
@media (max-width: 430px) {
  .nav {
    top: max(12px, env(safe-area-inset-top));
    left: 16px;
    right: 16px;
    width: auto;
    padding: 10px 16px;
    background: rgba(10,5,5,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s, opacity 0.4s;
  }
  .nav.scrolled {
    opacity: 0;
    pointer-events: none;
  }
  .nav__right {
    position: static;
    transform: none;
    top: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .nav__right.show { opacity: 1; }
}
.nav.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 12px 40px;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s, background 0.3s;
}
.nav:not(.scrolled) {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.5s;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav {
  margin-top: 0;
}
/* Logo intro states */
.nav__logo-img {
  height: 250px;
  width: auto;
  filter: brightness(0.55) saturate(1.4);
  opacity: 0;
}
/* State 1: Big in center, invisible.
   top/left/height are constant across center + to-top so only `transform`
   (compositor-only) needs to animate — no layout thrashing during the intro. */
.nav__logo-img.center {
  position: fixed;
  top: 44px; left: 50%;
  height: 250px;
  transform: translateX(-50%) translateY(calc(50vh - 169px)) scale(3.2);
  z-index: 10005;
  opacity: 0;
  transition: opacity 1.5s ease;
}
/* State 2: Visible in center */
.nav__logo-img.center.show {
  opacity: 1;
}
/* State 3: Moving to top */
.nav__logo-img.to-top {
  position: fixed;
  left: 50%;
  top: 44px;
  height: 250px;
  transform: translateX(-50%) translateY(0) scale(1);
  z-index: 10005;
  opacity: 1;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}
/* State 4: Settled in nav */
.nav__logo-img.done {
  position: relative;
  top: auto; left: auto;
  transform: none;
  height: 250px;
  opacity: 1;
}

/* ===== MOBILE LOGO INTRO (iPhone) ===== */
@media (max-width: 430px) {
  /* State 1: tiny pill emerging from Dynamic Island */
  .nav__logo-img.center {
    position: fixed;
    left: 50%;
    top: max(12px, env(safe-area-inset-top));
    height: 28px;
    width: auto;
    transform: translate(-50%, 0) scale(0.5);
    transform-origin: top center;
    opacity: 0;
    z-index: 10009;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1), height 0.5s cubic-bezier(0.34,1.56,0.64,1);
  }
  /* State 2: visible at island, still small */
  .nav__logo-img.center.show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  /* State 3: expand to center of screen */
  .nav__logo-img.to-top {
    position: fixed;
    left: 50%;
    top: 50%;
    height: 220px;
    transform: translate(-50%, -50%);
    z-index: 10009;
    opacity: 1;
    transition: top 1.2s cubic-bezier(0.16,1,0.3,1),
                height 1.2s cubic-bezier(0.16,1,0.3,1),
                transform 1.2s cubic-bezier(0.16,1,0.3,1);
  }
  /* State 4: settled below notch, centered */
  .nav__logo-img.done {
    position: fixed;
    left: 50%;
    top: max(16px, calc(env(safe-area-inset-top) + 8px));
    height: 110px;
    width: auto;
    transform: translateX(-50%);
    z-index: 10009;
    opacity: 1;
  }
}
.nav__right {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 10010;
}
.nav__right.show,
.nav__right--visible {
  opacity: 1;
}
.nav__logo-text {
  font-family: var(--logo);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav__logo-text span { color: var(--maroon); }


/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav__dropdown-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav__dropdown-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__dropdown-btn.active span:nth-child(2) { opacity: 0; }
.nav__dropdown-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Once active, the dedicated menu-close-btn inside the dropdown takes over —
   hide the hamburger-turned-X so pages that toggle .active (instead of the
   inline display:none the homepage uses) don't show two X's at once. */
.nav__dropdown-btn.active { opacity: 0; pointer-events: none; }

.nav__dropdown-menu {
  position: fixed;
  top: 44px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  z-index: 10025;

  /* Translucent frosted surface — maroon-tinted */
  background: linear-gradient(160deg, rgba(120,15,15,0.3999) 0%, rgba(20,5,5,0.3999) 100%);

  /* Standard glassmorphism fallback + layer initialization */
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);

  /* Creates a distinct, physical glass edge */
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 420px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);

  /* Double box-shadow: outer shadow for depth, inset shadow for edge illumination */
  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 4px 12px rgba(255,255,255,0.2);
  will-change: transform, opacity;
}
/* Isolate and apply the liquid distortion map on its own layer */
.nav__dropdown-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: url(#liquidGlass);
}
.nav__dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Logo inside menu */
.nav__dropdown-menu .menu-logo {
  display: block;
  width: 200px;
  margin: 28px auto 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}
.nav__dropdown-menu a:hover .menu-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,215,0,0.8)) drop-shadow(0 0 22px rgba(255,215,0,0.5));
}
/* Mobile sheet drag handle */
.nav__dropdown-menu::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  margin: 12px auto 8px;
}
@media (min-width: 431px) {
  .nav__dropdown-menu::before { display: none; }
}

/* Backdrop dimmer for mobile sheet */
.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10024;
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.nav__backdrop.open { opacity: 1; }
@media (max-width: 430px) {
  .nav__backdrop { display: block; pointer-events: none; }
  .nav__backdrop.open { pointer-events: all; }
}

/* Close (×) button — no background, bold white */
.menu-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 16px auto 4px;
  background: none;
  border: none;
  -webkit-appearance: none;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
  padding: 0;
}
.menu-close-btn:hover { opacity: 1; }

/* Divider between logo and links */
.nav__dropdown-menu .menu-divider {
  width: 30%;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 8px;
}
.nav__dropdown-menu a {
  display: block;
  width: 100%;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  transition: background 0.2s var(--ease-out-expo), color 0.2s, letter-spacing 0.2s, text-shadow 0.2s;
  border: none;
  position: relative;
  cursor: pointer;
}
.nav__dropdown-menu a:nth-of-type(n+2):not(:last-child)::after {
  content: '';
  display: block;
  width: 28%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
}
.nav__dropdown-menu a:hover {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255,215,0,0.8), 0 0 22px rgba(255,215,0,0.5);
}
.nav__cta {
  background: var(--maroon) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--maroon-light) !important; transform: translateY(-1px); box-shadow: 0 4px 20px var(--maroon-glow); }
.nav__cta:active { transform: scale(0.97); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(26,10,14,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu li { margin: 28px 0; text-align: center; }
.mobile-menu a { font-family: var(--heading); font-size: 2rem; font-weight: 600; }
.mobile-menu a:hover { color: var(--maroon); }

/* Hero spacer — full screen area, contains the headline */
.hero-spacer {
  height: 100vh;
  position: relative;
  overflow: visible;
}

/* Hero text section — below the video area, fades in on scroll */
.hero-text {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease, transform 2.5s ease;
}
.hero-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-text__layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.hero-text__headline {
  text-align: left;
  opacity: 0;
  transition: opacity 2s ease;
}
.hero-text.visible .hero-text__headline {
  opacity: 1;
}
.hero-text__headline .hero__title {
  margin-bottom: 8px;
  text-align: left;
}
.hero-text__desc {
  max-width: 360px;
  text-align: right;
  opacity: 0;
  transition: opacity 2s ease;
}
.hero-text.visible .hero-text__desc {
  opacity: 1;
}
.lang-rotate {
  position: relative;
  display: grid;
}
.lang-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 1s ease;
  visibility: hidden;
}
.lang-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-text__center {
  text-align: center;
  opacity: 0;
  transition: opacity 2s ease;
}
.hero-text.visible .hero-text__center {
  opacity: 1;
}
.hero-text__center .hero__tag {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #FFFFFF;
  word-spacing: 2px;
  }
.hero-text__center .hero__actions {
  justify-content: center;
}
/* hero video removed — using global bg-video instead */
.fallback-still {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.hero__mask {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,14,0.75) 0%,
    rgba(26,10,14,0.4) 50%,
    rgba(26,10,14,0.2) 100%
  );
  pointer-events: none;
}

/* Text beats — stacked, each appears and stays */
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 0 40px;
  max-width: 700px;
  text-align: center;
}
.hero__beat {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__actions {
  justify-content: center;
}
.hero__beat.active {
  opacity: 1;
  transform: translateY(0);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px; left: 40px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 2;
  transition: opacity 0.4s;
}
.hero__scroll-indicator.faded { opacity: 0; }

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .scroll-hero { min-height: auto; }
  .sticky-stage { position: static; height: auto; min-height: 100dvh; }
  .hero__video { display: none; }
  .fallback-still { display: block; }
  .hero__beat { position: static; opacity: 1; transform: none; margin-bottom: 24px; }
}
.hero__tag {
  font-family: var(--heading);
  font-size: 0.95rem; font-weight: 500; font-style: italic;
  color: #FFFFFF; margin-bottom: 24px;
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 0.9; }
}
.hero__title {
  font-family: var(--heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 16px;
  letter-spacing: -1px;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 2px rgba(255,255,255,0.9);
  opacity: 1 !important;
  }
.hero__line { display: block; }
@keyframes slideFromLeft {
  0%   { opacity: 0; transform: translateX(-120px); }
  30%  { opacity: 0.3; }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
  0%   { opacity: 0; transform: translateX(120px); }
  30%  { opacity: 0.3; }
  100% { opacity: 1; transform: translateX(0); }
}
.hero__line:nth-child(3) { animation-delay: 0.8s; }
.hero__title em { font-style: italic; color: #FFFFFF; text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 0 60px rgba(255,255,255,0.25); }
.hero__title .accent { color: #FFFFFF; }
.hero__sub {
  font-size: 1.1rem; color: #FFFFFF; max-width: 500px; line-height: 1.8; margin-bottom: 40px; font-weight: 500; letter-spacing: 0.3px; opacity: 0; animation: up 0.8s 1s var(--ease-out-expo) forwards;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: up 0.8s 1.2s var(--ease-out-expo) forwards;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 40px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim);
  opacity: 0; animation: up 0.8s 1.5s var(--ease-out-expo) forwards; z-index: 1;
}
.hero__scroll-line { width: 1px; height: 56px; background: var(--maroon); animation: pulse 2s infinite; }
@keyframes up { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes pulse { 0%,100% { opacity:.3; transform:scaleY(.5); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  border: 2px solid transparent; min-height: 48px;
  touch-action: manipulation;
}
.btn--primary { background: var(--maroon); color: #fff; }
.btn--primary:hover { background: var(--maroon-light); transform: translateY(-2px); box-shadow: 0 8px 28px var(--maroon-glow); }
.btn--primary:active { transform: scale(0.97); }
.btn--ghost { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: var(--maroon); color: var(--maroon); transform: translateY(-2px); }
.btn--ghost:active { transform: scale(0.97); }

/* ===== STATS ===== */
/* ===== GALLERY SCATTER SECTION ===== */
.scatter-section {
  position: relative;
  height: 300vh;
  z-index: 2;
}
.scatter-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scatter-img {
  position: absolute;
  width: 380px;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.65);
  will-change: transform;
  transition: none;
  opacity: 1;
}
.scatter-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 10;
}
.scatter-label__text {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
}
.scatter-section.settled .scatter-label { opacity: 1; }

.stats {
  padding: 40px 24px;
}
.stats-about-combined {
  padding: 60px 24px 40px;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats-about-combined .stats__grid {
  margin-bottom: 0;
}
.stats__grid .stat-block:nth-child(1) { transition-delay: 0s; }
.stats__grid .stat-block:nth-child(2) { transition-delay: 0.08s; }
.stats__grid .stat-block:nth-child(3) { transition-delay: 0.16s; }
.stats__grid .stat-block:nth-child(4) { transition-delay: 0.24s; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-block {
  position: relative;
  padding: 34px 20px;
  border-radius: 32px;
  color: #ffffff;

  /* Translucent frosted surface */
  background: rgba(255, 255, 255, 0.199);

  /* Creates a distinct, physical glass edge */
  border: 1px solid rgba(255, 255, 255, 0.2);

  /* Deep, soft macOS-style outer shadow + inset rim for edge illumination */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.15),
    inset 0 4px 12px rgba(255, 255, 255, 0.2);

  /* Standard glassmorphism fallback + layer initialization */
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);

  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
/* Isolate and apply the liquid distortion map on its own layer.
   filter (not backdrop-filter) carries the url() reference, since SVG
   filter references inside backdrop-filter are unreliable on iOS
   Safari — this site's primary target. */
.stat-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);
  filter: url(#liquidGlassStat);
}
.stat-block:hover {
  transform: translateY(-8px) scale(1.07) !important;
  transition-delay: 0s !important;
  z-index: 3;
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 4px 12px rgba(255, 255, 255, 0.4);
}
.stat-block__number {
  position: relative;
  font-family: var(--body);
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
  display: block;
  letter-spacing: -1.5px;
}
.stat-block__label {
  position: relative;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== ABOUT — Scroll Reveal ===== */
.about {
  padding: 20px 24px 10px;
}
.about__box {
  max-width: 900px;
  margin: 48px auto 0;
  text-align: center;
}
.about__step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  margin-bottom: 40px;
}
.about__step.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-headline-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
  width: 90%;
  max-width: 900px;
  will-change: opacity;
}
.hero-headline-block.visible {
  opacity: 1;
}

/* UPCOMING EVENT BAR */
.upcoming-bar {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
  will-change: opacity;
}
.upcoming-bar.visible {
  opacity: 1;
  pointer-events: auto;
}
.upcoming-bar__pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  color: #ffffff;

  /* Translucent frosted surface */
  background: rgba(255, 255, 255, 0.75);

  /* Creates a distinct, physical glass edge */
  border: 1px solid rgba(255, 255, 255, 0.2);

  /* Deep smooth shadow + inset specular edge illumination */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);

  /* Standard glassmorphism fallback + layer initialization */
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);

  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
  white-space: nowrap;
}
/* Isolate and apply the liquid distortion map on its own layer */
.upcoming-bar__pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: url(#liquidGlass);
}
.upcoming-bar__pill:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.45);
}
.upcoming-bar__pill:active { transform: scale(0.97); }
.upcoming-bar__live {
  position: relative;
  z-index: 1;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon);
  background: none;
  padding: 0;
}
.upcoming-bar__name {
  position: relative;
  z-index: 1;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.upcoming-bar__sep {
  position: relative;
  z-index: 1;
  color: rgba(42,16,21,0.4);
  font-size: 0.8rem;
}
.upcoming-bar__date {
  position: relative;
  z-index: 1;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--maroon);
}
.upcoming-bar__arrow {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--maroon);
  margin-left: 2px;
}

/* UPCOMING EVENT POPUP */
.upcoming-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.upcoming-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.upcoming-popup {
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  color: #ffffff;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);

  /* Translucent frosted surface — maroon-tinted, matches hamburger menu glass */
  background: linear-gradient(160deg, rgba(120,15,15,0.399) 0%, rgba(20,5,5,0.399) 100%);

  /* Creates a distinct, physical glass edge */
  border: 1px solid rgba(255,255,255,0.2);

  /* Double box-shadow: outer shadow for depth, inset shadow for edge illumination */
  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 4px 12px rgba(255,255,255,0.2);

  /* Standard glassmorphism fallback + layer initialization */
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);
}
/* Isolate and apply the liquid distortion map on its own layer.
   The warp is applied via the standard `filter` property (not
   backdrop-filter), since SVG filter references inside backdrop-filter
   are unreliable on iOS Safari — this site's primary target. `filter`
   post-processes this layer's own blurred backdrop, so the refraction
   still renders correctly everywhere. */
.upcoming-popup::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);
  filter: url(#liquidGlass);
}
.upcoming-popup-overlay.open .upcoming-popup {
  transform: translateY(0) scale(1);
}
.upcoming-popup__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.upcoming-popup__close:hover { color: #fff; }
.upcoming-popup__tag {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.upcoming-popup__title {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.upcoming-popup__divider {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto 24px;
}
.upcoming-popup__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  text-align: left;
}
.upcoming-popup__row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}
.upcoming-popup__icon {
  font-size: 1rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.upcoming-popup__btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  white-space: nowrap;

  /* maroon fill, done as a translucent glass tint rather than a flat color */
  background-color: rgba(153,0,0,0.55);

  color: #fff;
  font-family: var(--body);
  font-size: clamp(0.68rem, 3vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px clamp(12px, 4vw, 20px);
  border-radius: 100px;
  text-decoration: none;

  /* thin specular border, same as the pills */
  border: 1px solid rgba(255,255,255,0.2);

  /* deep, soft, layered shadow + edge illumination */
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.75),
    inset 0 -1px 1px rgba(0,0,0,0.1),
    inset 1px 0 0 rgba(255,255,255,0.2),
    inset -1px 0 0 rgba(255,255,255,0.2),
    0 12px 30px rgba(0,0,0,0.3);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  transition: background-color 0.25s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Isolated refraction layer, same pattern as .pill::after: keeps the
   button label/border/shine crisp while the blurred backdrop behind
   it bends through the SVG displacement map. */
.upcoming-popup__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(6px) saturate(1.6);
  -webkit-backdrop-filter: blur(6px) saturate(1.6);
  filter: url(#liquidGlassPill);
}
.upcoming-popup__btn:hover {
  background-color: rgba(153,0,0,0.7);
  transform: translateY(-2px) scale(1.03);
}
/* Instagram variant: same glass structure, translucent brand gradient
   instead of the maroon fill */
.upcoming-popup__btn--instagram {
  background-color: transparent;
  background-image: linear-gradient(135deg, rgba(131,58,180,0.6), rgba(253,29,29,0.6), rgba(252,176,69,0.6));
}
.upcoming-popup__btn--instagram:hover {
  background-image: linear-gradient(135deg, rgba(131,58,180,0.78), rgba(253,29,29,0.78), rgba(252,176,69,0.78));
}
.hero-headline-main {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.94);
  line-height: 1.12;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  text-transform: uppercase;
}
/* Desktop only (>1024px, above the tablet breakpoint) — Times New Roman,
   sized down to sit as a minimal accent rather than dominate the hero.
   Scoped here instead of in the base rule above so phone/tablet keep
   their existing Cinzel treatment untouched. */
/* Hidden on mobile; desktop block below reveals them */
.hero-location { display: none; }
.hero-location-divider { display: none; }

@media (min-width: 1025px) {
  .hero-headline-main {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  }
  .hero-location {
    display: block;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a84c;
    text-shadow: 0 0 10px rgba(201,168,76,0.7), 0 0 24px rgba(201,168,76,0.4);
    margin: 20px 0 0;
  }
  .hero-location-divider {
    display: block;
    width: 64px;
    height: 1px;
    background: #c9a84c;
    box-shadow: 0 0 8px rgba(201,168,76,0.9), 0 0 22px rgba(201,168,76,0.6), 0 0 40px rgba(201,168,76,0.3);
    margin: 14px auto 0;
    animation: locationLineBlink 1.8s ease-in-out infinite;
  }
  @keyframes locationLineBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(201,168,76,0.9), 0 0 22px rgba(201,168,76,0.6), 0 0 40px rgba(201,168,76,0.3); }
    50%       { opacity: 0.3; box-shadow: 0 0 4px rgba(201,168,76,0.4), 0 0 10px rgba(201,168,76,0.2); }
  }

  /* Single centered horizontal row — fixed-width columns so cards group in the middle */
  .stats__grid {
    grid-template-columns: repeat(4, minmax(180px, 220px)) !important;
    justify-content: center;
    align-items: stretch;
  }

  /* Stats cards: 9.99% glass opacity */
  .stat-block { background: rgba(255, 255, 255, 0.0999); }

}
/* Mobile-only line break for the hero heading; hidden by default so
   desktop/tablet keep their existing "Let's Create Magical / Memories
   Together." wrap untouched — only the ≤430px block flips this. */
.hero-break-mobile { display: none; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-headline-sub {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #c9a84c;
  margin-top: 14px;
  display: none;
}

.hero-scroll-hint { display: none; }
@media (max-width: 430px) {
  .hero-headline-sub { display: block; }
}
.about__label {
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.about__label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: rgba(255,255,255,0.25);
}
.about__heading {
  font-family: var(--heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.about__text {
  font-size: 1.45rem;
  line-height: 2;
  color: #ffffff;
  font-weight: 900;
  max-width: 680px;
  margin: 0 auto;
  letter-spacing: 0.2px;
}
.about__step--pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  justify-content: center;
  justify-items: stretch;
  max-width: 620px;
  margin: 0 auto;
}
.pill {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: rgba(255,255,255,0.299);
  background-image: radial-gradient(circle, rgba(255,255,255,0.95) 0%, transparent 62%);
  background-size: 55% 320%;
  background-repeat: no-repeat;
  background-position: -15% -140%;
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-align: center;

  /* thin specular border */
  border: 1px solid rgba(255,255,255,0.5);

  /* deep, soft, layered shadow + edge illumination */
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.9),
    inset 0 -1px 1px rgba(0,0,0,0.06),
    inset 1px 0 0 rgba(255,255,255,0.4),
    inset -1px 0 0 rgba(255,255,255,0.4),
    0 12px 30px rgba(0,0,0,0.2),
    0 6px 18px rgba(255,255,255,0.25);
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
  transition: background-position 0.7s cubic-bezier(0.16,1,0.3,1), background-color 0.25s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Isolated refraction layer, same pattern as .upcoming-popup::after:
   keeps the pill's text/border/shine crisp while only the blurred
   backdrop behind it bends through the SVG displacement map. filter
   (not backdrop-filter) carries the url() reference for reliable
   rendering on Safari/iOS. */
.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(6px) saturate(1.6);
  -webkit-backdrop-filter: blur(6px) saturate(1.6);
  filter: url(#liquidGlassPill);
}
.pill:hover {
  background-color: rgba(255,255,255,0.85);
  background-position: 115% 240%;
  transform: translateY(-2px) scale(1.05);
}
#aboutSlideshow {
  will-change: transform, border-radius, width, height;
}

.about__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.about__slide.active {
  opacity: 1;
}

.family-tagline {
  text-align: center;
  padding: 60px 24px;
}
.family-tagline p {
  font-family: var(--heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  font-style: italic;
  color: #fff;
  letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services { padding: 60px 0; }

.event-types {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.event-type {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
  will-change: transform;
}
.event-type:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.event-type:active { transform: scale(0.98); }
.event-type img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.event-type:hover img { transform: scale(1.06); }
.event-type--wedding img {
  object-position: center 15%;
  transform: scale(1.15);
}
.event-type--wedding:hover img { transform: scale(1.22); }
.event-type__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,14,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}
.event-type:hover .event-type__overlay {
  background: linear-gradient(to top, rgba(153,0,0,0.7) 0%, transparent 60%);
}
.event-type__overlay h3 {
  font-family: var(--heading);
  font-size: 1.5rem; font-weight: 700; color: #fff;
}
.event-type__overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* Service list — varied layout instead of identical card grid */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
}
.service-item {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s var(--ease-out-expo);
}
.service-item:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }
.service-item:active { transform: scale(0.98); }
.service-item__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  line-height: 1.4;
}
.service-item h3 {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  text-wrap: pretty;
}

/* ===== TEAM ===== */
.team {
  padding: 60px 0;
  background: transparent;
  color: #fff;
  overflow: hidden;
}
.team .heading-lg { color: #fff; }
.team .section-label { color: var(--maroon); }
.team__scroll-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.team__scroll-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: teamLoop 35s linear infinite;
}
.team__scroll-track:hover { animation-play-state: paused; }
@keyframes teamLoop { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.team-card { flex-shrink: 0; width: 180px; text-align: center; }
.team-card__photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.team-card__photo--img { background: none; }
.team-card__photo--img img { width: 100%; height: 100%; object-fit: cover; }
.team-card:hover .team-card__photo {
  transform: scale(1.06);
  box-shadow: 0 8px 28px var(--maroon-glow);
}
.team-card__photo span {
  font-family: var(--heading);
  font-size: 1.8rem; font-weight: 700;
  color: var(--maroon);
}
.team-card h3 {
  font-family: var(--heading);
  font-size: 1rem; font-weight: 700;
  color: #fff;
}
.team-card__role {
  font-size: 0.75rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark-dim);
  margin-top: 2px;
}

/* ===== TESTIMONIALS ===== */
/* ===== GOOGLE REVIEWS ===== */
.reviews { padding: 20px 0; overflow: hidden; }
.reviews__summary {
  text-align: center;
  margin-bottom: 24px;
}
.reviews__summary-rating {
  font-family: var(--heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,215,0,0.8), 0 0 50px rgba(255,215,0,0.4);
}
.reviews__summary-stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin: 8px 0;
}
.reviews__summary-count {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.reviews__summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 1;
  letter-spacing: 0.5px;
}
.reviews__loading {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 40px;
}
.reviews__track {
  display: flex;
  gap: 20px;
  animation: tLoop 30s linear infinite;
  width: max-content;
}
.reviews__track:hover { animation-play-state: paused; }
@keyframes tLoop { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.t-card {
  position: relative;
  min-width: 360px; max-width: 360px;
  padding: 36px;
  flex-shrink: 0;
  text-align: left;
  border-radius: 32px;
  color: var(--text-dark);

  /* Translucent frosted surface */
  background: rgba(255, 255, 255, 0.499);

  /* Creates a distinct, physical glass edge */
  border: 1px solid rgba(255, 255, 255, 0.2);

  /* Double box-shadow: outer shadow for depth, inset shadow for edge illumination */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    inset 0 4px 12px rgba(255, 255, 255, 0.2);

  /* Standard glassmorphism fallback + layer initialization */
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);

  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
/* Isolate and apply the liquid distortion map on its own layer */
.t-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: url(#liquidGlass);
}
.t-card:hover {
  transform: translateY(-8px) scale(1.07);
  transition-delay: 0s;
  z-index: 3;
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.2),
    inset 0 4px 12px rgba(255, 255, 255, 0.4);
}
.t-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.t-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.t-card__meta { display: flex; flex-direction: column; }
.t-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.t-card__stars {
  color: #FFD700;
  font-size: 0.65rem;
  letter-spacing: 2px;
}
.t-card__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,80,80,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FF6B6B;
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.t-card__time {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  color: rgba(42,16,21,0.5);
  margin-top: 12px;
}
.t-card__text {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(42,16,21,0.82);
}

/* ===== CTA ===== */
.cta {
  padding: 50px 24px;
  text-align: center;
  color: #ffffff;
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 32px;

  /* Translucent frosted surface — maroon-tinted */
  background: linear-gradient(160deg, rgba(120,15,15,0.499) 0%, rgba(20,5,5,0.499) 100%);

  /* Creates a distinct, physical glass edge */
  border: 1px solid rgba(255,255,255,0.2);

  /* Double box-shadow: outer shadow for depth, inset shadow for edge illumination */
  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 4px 12px rgba(255,255,255,0.2);

  /* Standard glassmorphism fallback + layer initialization */
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);
}
/* Isolate and apply the liquid distortion map on its own layer */
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: url(#liquidGlass);
}
.cta__title {
  font-family: var(--heading);
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 800; line-height: 1.12;
  margin-bottom: 16px;
  position: relative;
  text-wrap: balance;
}
.cta__sub {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 360px;
  margin: 0 auto 40px;
  line-height: 1.5;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.cta__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.cta__col .btn {
  width: 100%;
  max-width: 220px;
}
.cta__col h4,
.cta__col p {
  width: 100%;
  max-width: 220px;
}
.cta .btn--primary {
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(255,255,255,1) 0%, transparent 65%);
  background-size: 55% 320%;
  background-repeat: no-repeat;
  background-position: -15% -140%;
  backdrop-filter: url(#liquidGlass) blur(10px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 24px rgba(0,0,0,0.2);
  color: var(--maroon);
  transition: background-position 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}
.cta .btn--primary:hover {
  background-position: 115% 240%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 10px 32px rgba(0,0,0,0.25);
  transform: translateY(-2px) scale(1.05);
}
/* .cta__col a:hover sets a gold hover color for generic CTA links;
   override it here so the button label stays maroon on hover. */
.cta__col .btn--primary:hover {
  color: var(--maroon);
}
.cta .btn--ghost {
  background-color: rgba(255,255,255,0.06);
  background-image: radial-gradient(circle, rgba(255,255,255,0.95) 0%, transparent 62%);
  background-size: 55% 320%;
  background-repeat: no-repeat;
  background-position: -15% -140%;
  backdrop-filter: url(#liquidGlass) blur(3px) saturate(1.6);
  -webkit-backdrop-filter: blur(6px) saturate(1.6);
  border-color: rgba(255,255,255,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
  color: #fff;
  transition: background-position 0.7s cubic-bezier(0.16,1,0.3,1), background-color 0.2s, border-color 0.2s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cta .btn--ghost:hover {
  background-color: rgba(255,255,255,0.1);
  background-position: 115% 240%;
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}
.cta__col h4 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #fff;
}
.cta__col p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f0d9a8;
  line-height: 1.7;
}
.cta__col a {
  color: #f0d9a8;
  font-weight: 600;
  transition: color 0.2s;
}
.cta__col a:hover { color: #FFD700; }
.cta .accent { color: #f0d9a8; }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 24px 24px;
  border-top: none;
}
.footer__glass {
  max-width: 1400px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 35% 30% at 20% 0%, rgba(255,255,255,0.16) 0%, transparent 70%),
    linear-gradient(160deg, rgba(120,10,10,0.72) 0%, rgba(40,4,4,0.88) 100%);
  backdrop-filter: url(#liquidGlass) blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,80,80,0.18);
  border-radius: 20px;
  padding: 24px 48px 0;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-bottom: 0;
  width: 100%;
}
.footer__star {
  font-size: 2rem;
  color: #c9a84c;
  line-height: 1;
  margin: 20px 0;
  display: block;
  text-align: center;
  animation: starSpark 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.9)) drop-shadow(0 0 14px rgba(201,168,76,0.5));
}
@keyframes starSpark {
  0%,100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 6px rgba(201,168,76,0.9)) drop-shadow(0 0 14px rgba(201,168,76,0.5)); }
  25%      { transform: scale(1.2) rotate(15deg); filter: drop-shadow(0 0 12px rgba(255,215,80,1)) drop-shadow(0 0 28px rgba(201,168,76,0.8)); }
  50%      { transform: scale(0.95) rotate(0deg); filter: drop-shadow(0 0 4px rgba(201,168,76,0.6)) drop-shadow(0 0 8px rgba(201,168,76,0.3)); }
  75%      { transform: scale(1.15) rotate(-10deg); filter: drop-shadow(0 0 10px rgba(255,215,80,0.9)) drop-shadow(0 0 22px rgba(201,168,76,0.7)); }
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  text-align: center;
  width: 55%;
  align-items: start;
  margin: 0 auto;
}
.footer__nav-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.footer__nav-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer__nav-full {
  text-align: center;
}
.footer__col h4 {
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.72rem;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.footer__col h4 .footer__col-link {
  color: #FFD700;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer__col h4 .footer__col-link:hover { color: #fff; }
.footer__col a, .footer__col p {
  display: block;
  font-family: var(--body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  transition: color 0.2s;
  line-height: 1.4;
  text-decoration: none;
}
.footer__col a:hover { color: #fff; }
.footer__wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0 0 8px;
}
.footer__logo-img {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0.55) saturate(1.4) drop-shadow(0 0 8px rgba(180,0,0,0.9)) drop-shadow(0 0 20px rgba(153,0,0,0.7)) drop-shadow(0 0 40px rgba(120,0,0,0.4));
  pointer-events: none;
  user-select: none;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 55%;
  margin: 0 auto;
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.72rem;
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* ===== FOOTER MIN (centered, minimal) ===== */
.footer-min {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 56px 40px 40px;

  /* Translucent frosted surface — maroon-tinted, matches hamburger menu / CTA */
  background: linear-gradient(160deg, rgba(120,15,15,0.499) 0%, rgba(20,5,5,0.499) 100%);

  /* Standard glassmorphism fallback + layer initialization */
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);

  /* Creates a distinct, physical glass edge */
  border: 1px solid rgba(255,255,255,0.2);
  border-bottom: none;
  border-radius: 24px 24px 0 0;

  /* Double box-shadow: outer shadow for depth, inset shadow for edge illumination */
  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 4px 12px rgba(255,255,255,0.2);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Isolate and apply the liquid distortion map on its own layer */
.footer-min::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: url(#liquidGlass);
}
.footer-min__brand { position: relative; z-index: 1; margin-top: -66px; margin-bottom: -66px; }
.footer-min__brand a { display: inline-block; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.footer-min__brand a:hover { transform: scale(1.05); }
.footer-min__logo {
  height: 200px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(255,255,255,0.5));
}
.footer-min__nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
/* No-op on desktop/tablet — only forces a line break under 430px. */
.footer-min__nav-break { display: none; }
.footer-min__nav a {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-min__nav a:hover { color: #FFD700; }
.footer-min__social {
  display: flex;
  gap: 39.9px;
  position: relative;
  z-index: 1;
}
.footer-min__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  background-image: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 62%);
  background-size: 60% 320%;
  background-repeat: no-repeat;
  background-position: -15% -140%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-position 0.7s cubic-bezier(0.16,1,0.3,1), background-color 0.25s, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.footer-min__social a:hover {
  background-color: rgba(255,255,255,0.18);
  background-position: 115% 240%;
  transform: translateY(-2px) scale(1.1);
}
.footer-min__social svg { width: 17px; height: 17px; }
.footer-min__copyright {
  font-family: var(--body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}
.footer-min__copyright a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-min__copyright a:hover { color: #FFD700; }
@media (max-width: 700px) {
  .footer-min { padding: 40px 24px 28px; margin: 24px 16px 0; border-radius: 20px 20px 0 0; gap: 28px; }
  .footer-min__nav { gap: 16px 24px; }
  .footer-min__nav a { font-size: 0.88rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .stats-about-combined { min-height: 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat-block + .stat-block::before { display: none; }
  .stat-block:nth-child(odd):not(:first-child)::before { display: none; }
  .about__glass-bar { grid-template-columns: 1fr; }
  .about__bar-img--1 { min-height: 300px; }
  .about__bar-img--2 { min-height: 250px; }
  .about__bar-img--3 { min-height: 200px; }
  .event-types { grid-template-columns: 1fr; }
  .event-type { aspect-ratio: 16/9; }
  .service-list { grid-template-columns: 1fr; }
  .testimonials .t-card { min-width: 300px; max-width: 300px; }
  .cta__details { grid-template-columns: 1fr; gap: 24px; }
  .footer__cols { grid-template-columns: 1fr 1fr 1fr; gap: 16px; width: 90%; }
  .footer__bottom { width: 90%; }
  .footer__top { gap: 32px; }
  .footer__wordmark { font-size: clamp(5rem, 22vw, 9rem); letter-spacing: -2px; }
  .rings { width: 90px; height: 58px; opacity: 0.4; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .t-card { min-width: 280px; max-width: 280px; padding: 28px; }
  .service-item { padding: 24px 20px; }
}

/* ===== FULLSCREEN GALLERY ===== */
.fs-gallery {
  position: relative;
  height: 200vh;
  z-index: 2;
}
.fs-gallery__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Photo crossfade layers — GPU composited. position/inset/background-*
   used to live as inline styles (JS only ever sets opacity and
   background-image); moved here so the elements don't depend on
   inline styles that a stray save could clobber or someone could
   accidentally strip. */
#fsPhotoA, #fsPhotoB {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transition: opacity 0.7s ease;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
#fsPhotoA { opacity: 0; }
#fsPhotoB { opacity: 1; }
.fs-gallery__slide {
  position: absolute;
  background-size: cover;
  background-position: center;
  opacity: 0;
  cursor: pointer;
  will-change: transform, opacity, border-radius, width, height;
  /* Start: rectangle centred */
  width: min(820px, 90vw);
  max-width: 90vw;
  height: clamp(240px, 50vw, 460px);
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
}

/* ===== iPHONE & MOBILE ===== */
@media (max-width: 430px) {
  /* Dark root canvas: Safari/Chrome tint their translucent status bar,
     bottom URL bar, and overscroll areas with the root background — left
     unset it is white, which showed as grey bands above/below the video. */
  html { background: #0a0a0a; }
  body { overflow-x: hidden; }

  /* Safe area */
  .footer__glass { padding-bottom: max(32px, env(safe-area-inset-bottom)); }
  .upcoming-bar { bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px)); }

  /* Nav — transparent shell, logo is fixed separately.
     backdrop-filter must be cleared too: a leftover blur(20px) from the
     old pill-nav design makes .nav a containing block for its
     position:fixed children (per spec), so .nav__logo-img was rendering
     relative to .nav's box instead of the viewport — offsetting it from
     where its own top/left values said it should be. */
  .nav {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    pointer-events: none;
    height: 0;
    overflow: visible;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Video — no blur on mobile (too expensive). 100lvh = large viewport, so
     the video stays painted while Safari/Chrome collapse or expand their
     toolbars; the safe-area offsets pull its box up behind the notch and
     down past the home indicator so the video itself (not a background
     tint) shows through the browser's translucent bars. */
  .bg-video,
  .bg-video-overlay {
    top: calc(-1 * env(safe-area-inset-top, 0px));
    height: 100vh;
    height: calc(100lvh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
  }
  .bg-video {
    filter: none;
    transform: scale(1.0) translateZ(0);
    -webkit-transform: scale(1.0) translateZ(0);
  }

  /* Nav logo — small, left-aligned, just below Dynamic Island */
  .nav__logo-img {
    position: fixed;
    top: env(safe-area-inset-top);
    left: 50%;
    transform: translateX(-50%);
    height: 44px;
    width: auto;
    z-index: 10005;
    opacity: 0;
    pointer-events: none;
    filter: brightness(0) invert(1);
  }

  /* Hamburger — centred on the exact spot .nav__logo-img.done settles at
     (top: max(16px, safe-area+8px), height: 110px), so it lands right
     where the logo fades out instead of a separately-tuned offset. */
  .nav__right {
    position: fixed;
    top: max(49px, calc(env(safe-area-inset-top) + 41px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 10010;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .nav__right.show,
  .nav__right--visible { opacity: 1; }

  /* Minimal hamburger — bare lines, no background */
  .nav__dropdown-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: opacity 0.25s ease;
  }
  .nav__dropdown-btn::after { display: none; }
  .nav__dropdown-btn span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0,0,0,1), 0 0 4px rgba(0,0,0,1);
  }

  /* Fade hamburger out when menu opens */
  .nav__dropdown-btn.active { opacity: 0 !important; pointer-events: none; }

  /* Menu — grows from hamburger position downward */
  .nav__dropdown-menu {
    width: min(300px, 86vw);
    min-width: unset;
    left: 50%;
    right: auto;
    top: max(56px, calc(env(safe-area-inset-top) + 12px));
    bottom: auto;
    transform-origin: top center;
    transform: translateX(-50%) scaleY(0.6) scaleX(0.85);
    border-radius: 28px;
    padding: 0 0 16px;
    max-height: calc(100vh - max(56px, calc(env(safe-area-inset-top) + 12px)) - 40px);
    overflow-y: auto;
    transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1),
                visibility 0.4s,
                transform 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.75);

    /* Phones only — heavier frosted-liquid-glass look, 29.99% opacity.
       Desktop keeps its original (less blurred, 39.99%-opaque) surface. */
    background: linear-gradient(160deg, rgba(120,15,15,0.2999) 0%, rgba(20,5,5,0.2999) 100%);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-color: rgba(255,255,255,0.25);
  }
  .nav__dropdown-menu.open {
    transform: translateX(-50%) scaleY(1) scaleX(1);
  }
  .nav__dropdown-menu a { padding: 14px 24px; font-size: 0.88rem; letter-spacing: 2.5px; }
  .nav__dropdown-menu .menu-logo { width: 100px; margin: 10px auto 10px; }
  .nav__dropdown-menu .menu-divider { margin: 0 auto 4px; }
  .nav__dropdown-menu::before { display: none; }

  /* Plain white × close button — no circle */
  .menu-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 36px;
    margin: 12px auto 0;
    background: none;
    border: none;
    -webkit-appearance: none;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .menu-close-btn:hover { color: #fff; }

  /* Hero — centred vertically */
  .hero-headline-block {
    padding: 0 28px;
    width: 100%;
    top: 50%;
  }
  .hero-headline-main {
    font-size: clamp(1.1rem, 4.8vw, 1.4rem);
    line-height: 1.2;
    letter-spacing: -0.3px;
    font-weight: 700;
  }
  /* "Let's Create" / "Magical Memories Together." on mobile */
  .hero-break-mobile { display: inline; }
  .hero-break-desktop { display: none; }
  /* Gold eyebrow label above the hero sentence — matches about/events heroes */
  .hero-headline-main::before {
    content: "Utsah Events · Bardoli, Gujarat";
    display: block;
    font-family: var(--body);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFD700;
    margin-bottom: 10px;
  }
  /* Golden line moved to the scroll hint pinned at the hero bottom */
  .hero-headline-main::after { display: none; }
  /* Hide subtitle on iPhone */
  .hero-headline-sub { display: none !important; }

  /* Upcoming pill — ultra minimal on iPhone */
  .upcoming-bar { bottom: max(28px, calc(env(safe-area-inset-bottom) + 16px)); }
  .upcoming-bar__pill {
    padding: 7px 12px 7px 8px;
    gap: 7px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.65);
  }
  .upcoming-bar__live {
    font-size: 0.52rem;
    letter-spacing: 2px;
    padding: 2px 6px;
  }
  .upcoming-bar__name {
    font-size: 0.72rem;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .upcoming-bar__date { display: none !important; }
  .upcoming-bar__sep { display: none !important; }
  .upcoming-bar__arrow { display: none !important; }
  .upcoming-bar__name { display: none !important; }

  /* Scroll hint — golden line + label pinned to the bottom of the hero.
     The headline block is centered at 50% of the viewport, so 50svh below
     its center is the (small-)viewport bottom edge; 82px lifts the hint's
     line + label clear of it. */
  .hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    position: absolute;
    top: calc(50svh - 82px);
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.35s ease;
  }
  /* Above the upcoming pill (z 10002) but below nav/menu layers (z 10005+),
     so the scroll cue stays visible over the card. */
  .hero-headline-block { z-index: 10003; }
  .hero-scroll-hint::before {
    content: '✦';
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    margin: 0 auto 8px;
    color: #c9a84c;
    text-shadow:
      0 0 10px rgba(201,168,76,1),
      0 0 24px rgba(201,168,76,0.7),
      0 0 44px rgba(201,168,76,0.4);
    animation: heroLinePulse 2s ease infinite;
  }
  @keyframes heroLinePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
  }
  .hero-scroll-hint__ring { display: none; }
  .hero-scroll-hint__label {
    font-family: var(--body);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    text-shadow: 0 0 10px rgba(201,168,76,0.9), 0 0 24px rgba(201,168,76,0.5);
  }

  /* Fit stats + about in one mobile screen: re-enable the viewport-fit
     the ≤900px block turns off, and trim every gap down to compact. */
  .stats-about-combined { min-height: 100vh; padding: 16px 16px; }
  .stat-block { padding: 14px 10px; border-radius: 16px; }
  .stat-block__number { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .stat-block__label { font-size: 0.66rem; margin-top: 4px; }

  /* About — WHO WE ARE gold glow, compact text, pills removed on mobile */
  .about__box { margin: 14px auto 0; padding: 0 20px; }
  .about__step { margin-bottom: 12px; }
  .about__label {
    font-size: 0.9rem;
    color: #ffffff;
    text-shadow:
      0 0 10px rgba(255,255,255,1),
      0 0 24px rgba(255,255,255,0.8),
      0 0 50px rgba(255,255,255,0.5),
      0 0 90px rgba(255,255,255,0.3);
  }
  .about__label::after {
    background: linear-gradient(to right, transparent, #990000, transparent);
    height: 1px;
    width: 60%;
    box-shadow: 0 0 4px rgba(153,0,0,0.6), 0 0 10px rgba(153,0,0,0.3);
  }
  .about__text {
    font-size: 0.75rem;
    line-height: 1.5;
    max-width: 100%;
    font-weight: 700;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
    color: #ffffff;
  }
  .about__step--pills { display: none; }
  .pill {
    font-size: 0.72rem;
    padding: 10px 8px;
    min-height: unset;
    text-align: center;
    border-radius: 12px;
    letter-spacing: 0.2px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 4px 16px rgba(0,0,0,0.15);
    color: #fff;
  }
  /* Skip the SVG refraction layer on phones — keep the plain blur
     fallback above for performance/battery. */
  .pill::after {
    display: none;
  }
  #aboutSlideshow { height: 260px !important; }

  /* Stats — grid-auto-rows: 1fr forces all four cards to equal height
     (the "Birthdays & Showers" label wraps to 2 lines, which used to
     make that row taller than the other); sizes trimmed down so the
     whole grid stays compact instead of growing to fit the tall card. */
  .stats__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 10px; padding: 16px; }
  .stat-block {
    padding: 14px 10px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .stat-block__number { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }

  /* Bounce in from the sides — left column from left, right column from right */
  @keyframes statBounceLeft {
    0%   { opacity: 0; transform: translateX(-70px); }
    60%  { opacity: 1; transform: translateX(10px); }
    80%  { transform: translateX(-5px); }
    100% { transform: translateX(0); }
  }
  @keyframes statBounceRight {
    0%   { opacity: 0; transform: translateX(70px); }
    60%  { opacity: 1; transform: translateX(-10px); }
    80%  { transform: translateX(5px); }
    100% { transform: translateX(0); }
  }
  .stats__grid .stat-block:nth-child(odd) {
    animation: statBounceLeft 0.8s ease-out both;
  }
  .stats__grid .stat-block:nth-child(even) {
    animation: statBounceRight 0.8s ease-out both;
  }
  .stats__grid .stat-block:nth-child(1) { animation-delay: 0s; }
  .stats__grid .stat-block:nth-child(2) { animation-delay: 0.1s; }
  .stats__grid .stat-block:nth-child(3) { animation-delay: 0.2s; }
  .stats__grid .stat-block:nth-child(4) { animation-delay: 0.3s; }

  /* Event types — full width stacked */
  .event-types { grid-template-columns: 1fr; gap: 12px; }
  .event-type { aspect-ratio: 4/3; border-radius: 16px; }
  .event-type:hover { transform: none; } /* no hover lift on touch */

  /* Services */
  .service-item { padding: 24px 18px; border-radius: 14px; }
  .service-item:hover { transform: none; }

  /* Gallery grid */
  .gallery-grid { grid-template-columns: 1fr 1fr !important; gap: 4px !important; }

  /* CTA — the whole card dropped on mobile now that Contact Us is
     back in the footer nav below; no separate card needed. */
  .cta { display: none; }

  /* Footer-min (homepage only) — smaller and more minimal. Social icons
     dropped since Instagram/YouTube/WhatsApp are already reachable
     elsewhere on the site. The nav break forces Home/About Us/Events
     onto their own line, leaving Our Team/Socials/Contact Us on the
     next — three per line instead of one overcrowded row. */
  .footer-min { padding: 24px 20px 20px; margin: 40px 12px 0; gap: 8px; }
  .footer-min__nav { gap: 6px 20px; }
  .footer-min__nav-break { display: block; flex-basis: 100%; height: 0; }
  .footer-min__nav a { font-size: 0.8rem; }
  .footer-min__social { display: none; }
  .footer-min__brand { margin-top: 0; margin-bottom: 0; }
  .footer-min__logo { height: 100px; }
  .footer-min__copyright { font-size: 0.62rem; }

  /* Footer — edge-to-edge, 2-col top row + 1 below */
  .footer { padding: 0; margin: 0; }
  .footer__glass { padding: 24px 0 0; border-radius: 0; margin: 0; }
  .footer__top { flex-direction: column; gap: 0; padding-bottom: 0; }
  .footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    width: 100%;
    justify-items: center;
  }
  /* Contact — top left */
  .footer__col:nth-child(1) {
    order: 1;
    text-align: center;
  }
  /* Navigate — bottom, full width */
  .footer__col:nth-child(2) {
    order: 3;
    grid-column: 1 / -1;
    text-align: center;
  }
  /* Follow — top right */
  .footer__col:nth-child(3) {
    order: 2;
    text-align: center;
  }
  /* Kill h4 intrinsic size — footer__col-link owns all sizing */
  .footer__col h4 {
    font-size: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
  }
  .footer__col-link {
    display: block;
    width: 100%;
    font-size: 0.82rem !important;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    padding: 14px 12px;
    -webkit-tap-highlight-color: transparent;
  }
  /* Hide all child links — show headers only */
  .footer__col > a,
  .footer__col > p,
  .footer__col .footer__nav-grid { display: none !important; }
  /* Logo matches label height */
  .footer__wordmark { margin: 0; padding: 4px 16px 2px; text-align: center; }
  .footer__logo-img { height: 60px !important; width: auto !important; display: block !important; margin: 0 auto; }
  .footer__star { font-size: 1.8rem; margin: 10px 0; }
  .footer__bottom { width: 100%; font-size: 0.5rem; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 8px 20px max(12px, env(safe-area-inset-bottom)); }
  .footer__legal { flex-direction: row; gap: 10px; flex-wrap: wrap; justify-content: center; font-size: 0.5rem; }

  /* Reviews — compact for iPhone, trimmed further (+ review text
     clamped to 4 lines) so this section and the CTA card below both
     fit on one screen without scrolling. */
  .reviews { padding: 16px 0 40px; }
  .reviews__summary { margin-bottom: 8px; }
  .reviews__summary-rating { font-size: 1.4rem; }
  .reviews__summary-stars { font-size: 0.7rem; letter-spacing: 2px; margin: 2px 0; }
  .reviews__summary-count { font-size: 0.62rem; }
  .reviews__summary-badge { font-size: 0.6rem; margin-top: 2px; }
  .reviews .section-label { font-size: 0.54rem; letter-spacing: 1.5px; margin-bottom: 2px; }
  .reviews .heading-lg { font-size: clamp(1rem, 5.5vw, 1.3rem); margin-bottom: 4px; letter-spacing: 0.3px; }
  .reviews__track { gap: 8px; }
  .t-card, .review-card {
    min-width: 170px;
    max-width: 170px;
    padding: 12px;
    border-radius: 12px;
  }
  .t-card__header { gap: 6px; margin-bottom: 6px; }
  .t-card__avatar, .t-card__avatar--initial { width: 28px; height: 28px; font-size: 0.8rem; }
  .t-card__name { font-size: 0.68rem; }
  .t-card__stars { font-size: 0.5rem; }
  .t-card__text {
    font-size: 0.66rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .t-card__time { font-size: 0.58rem; margin-top: 6px; }

  /* Upcoming bar */
  .upcoming-bar__name { font-size: 0.78rem; max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .upcoming-popup {
    width: calc(100vw - 32px);
    max-width: 360px;
    background: linear-gradient(160deg, rgba(120,15,15,0.199) 0%, rgba(20,5,5,0.199) 100%);
  }

  /* Gallery fullscreen overlay */
  #galleryPage { padding-top: max(0px, env(safe-area-inset-top)); }
  #galleryPageGrid { grid-template-columns: repeat(2, 1fr) !important; gap: 3px !important; }

  /* General tap target sizing */
  a, button { min-height: 44px; }
  .footer__col a, .footer__legal a { min-height: 36px; display: inline-flex; align-items: center; }

  /* === PERFORMANCE OPTIMISATIONS FOR iPHONE === */
  /* Kill particles canvas — its rAF loop is expensive on mobile */
  .bg-canvas { display: none !important; }
  /* Prevent rubber-band overscroll jank while keeping momentum scroll */
  body { overscroll-behavior-y: none; }
  /* Photo banner: capped height on mobile — full width, not full screen.
     Kept as its own separate section from reviews below, with a clear
     gap between them — never merged into a shared/combined block. */
  .fs-gallery { height: 69vh; height: 69dvh; margin-bottom: 72px; }
  .fs-gallery__sticky { position: relative; top: auto; height: 100%; }
  /* Slow down crossfade so it's silky on mobile */
  #fsPhotoA, #fsPhotoB { transition: opacity 1.4s ease !important; }
}

/* ===== TABLET — iPad Mini, iPad Air, Samsung Tab, Pixel Tablet (768px–1024px) ===== */
@media (min-width: 431px) and (max-width: 1024px) {
  /* Nav */
  .nav__dropdown-menu { min-width: 340px; }

  /* Hero headline */
  .hero-headline-main { font-size: clamp(2.8rem, 6vw, 4.5rem); }

  /* Stats — 2×2 grid on tablets */
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-block + .stat-block::before { display: none; }

  /* About */
  .about__text { font-size: 1.25rem; }

  /* CTA — stack to 1 column on smaller tablets, keep 3 on larger */
  @media (max-width: 768px) {
    .cta { margin: 24px 20px; padding: 40px 24px; }
    .cta__columns { grid-template-columns: 1fr; gap: 28px; }
    .cta__col .btn { max-width: 100%; }
  }

  /* Footer */
  .footer__glass { padding: 28px 28px 0; }
  .footer__cols { width: 80%; }
  .footer__bottom { width: 80%; font-size: 0.7rem; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer__legal { justify-content: center; }

  /* Reviews */
  .t-card { min-width: 300px; max-width: 300px; }

  /* Upcoming pill */
  .upcoming-bar__pill { padding: 9px 18px; }
}

/* ===== SMALL PHONES — iPhone SE, Galaxy A-series (≤375px) ===== */
@media (max-width: 375px) {
  /* Hero */
  .hero-headline-main { font-size: clamp(1rem, 4.5vw, 1.3rem); line-height: 1.2; font-weight: 700; }
  .hero-headline-sub { font-size: 0.78rem; }

  /* Upcoming pill — hide date on tiny screens */
  .upcoming-bar__pill { padding: 8px 12px; gap: 6px; }
  .upcoming-bar__date { display: none; }
  .upcoming-bar__name { max-width: 120px; font-size: 0.72rem; }

  /* Stats */
  .stats__grid { gap: 8px; padding: 16px; }
  .stat-block { padding: 16px 10px; border-radius: 16px; }
  .stat-block__number { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .stat-block__label { font-size: 0.82rem; letter-spacing: 1px; }


  /* CTA */
  .cta { margin: 16px 12px; padding: 28px 16px; }
  .cta__sub { font-size: 0.9rem; }


  /* Nav menu */
  .nav__dropdown-menu { width: min(290px, 90vw); }
  .nav__dropdown-menu a { padding: 16px 20px; font-size: 0.9rem; }

  /* Liquid-glass opacity tuning, phones only — desktop keeps its current
     values. Each of these already implements the site's liquid-glass
     recipe (translucent fill + backdrop blur/saturate + an ::after layer
     carrying the SVG turbulence/displacement filter + rim border + inset
     highlight shadows); only the base fill opacity changes here. */
  .stat-block { background: rgba(255, 255, 255, 0.0999); }
  .t-card { background: rgba(255, 255, 255, 0.2999); }
  .upcoming-popup { background: linear-gradient(160deg, rgba(120,15,15,0.3999) 0%, rgba(20,5,5,0.3999) 100%); }

  /* Footer glass — shared .footer-min markup on every page, so this one
     rule covers all of them. */
  .footer-min { background: linear-gradient(160deg, rgba(120,15,15,0.6999) 0%, rgba(20,5,5,0.6999) 100%); }
}

/* Disable hover animations on touch devices globally */
@media (hover: none) {
  .event-type:hover { transform: none; box-shadow: none; }
  .service-item:hover { transform: none; box-shadow: none; }
  .btn--primary:hover { transform: none; }
  .btn--ghost:hover { transform: none; }
  .upcoming-bar__pill:hover { transform: none; box-shadow: none; }
  .gallery-item:hover img { transform: none; }
  .team-card:hover { transform: none; }
}
