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

:root {
  --ivory: #fff8ee;
  --wine: #3a0f18;
  --wine-mid: #6b1020;
  --saffron: #d9901a;
  --gold: #e7c46a;
  --gold-light: #f0cc70;
  --muted: #8a7a60;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: linear-gradient(180deg, #fff8ee 0%, #fdf0dc 35%, #fff8ee 100%);
  color: var(--wine);
  overflow-x: hidden;
}

body.loading { overflow: hidden; }
body:not(.loading) { overflow-x: hidden; overflow-y: auto; }

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--wine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(231,196,106,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-text {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--gold);
  font-weight: 500;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Canvas — sits right of hero text on desktop */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.38;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}
.nav.scrolled {
  background: rgba(255,248,238,0.85);
  backdrop-filter: blur(16px);
  padding: 16px 48px;
  box-shadow: 0 4px 30px rgba(58,15,24,0.06);
}
.nav.at-hero:not(.scrolled) {
  background: linear-gradient(180deg, rgba(58,15,24,0.55) 0%, transparent 100%);
  backdrop-filter: blur(6px);
}
.nav.at-hero:not(.scrolled) .nav-links a,
.nav.at-hero:not(.scrolled) .nav-back { color: rgba(255,248,238,0.88); }
.nav.at-hero:not(.scrolled) .nav-links a::after { background: var(--gold); }
.nav.at-hero:not(.scrolled) .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--wine);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.nav.at-hero:not(.scrolled) .brand-logo--light {
  filter: brightness(1.15) drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 40px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  color: var(--wine);
  font-weight: 500;
  position: relative;
}
.nav-links a.nav-link-book {
  font-weight: 600;
  color: var(--wine-mid);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--saffron);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--wine-mid), var(--wine));
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(58,15,24,0.25);
}
.nav-back {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-right: 24px;
}
.menu-btn { display: none; background: none; border: none; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 120px 48px 80px max(28px, 4vw);
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
  transform: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(255,248,238,0.93) 0%, rgba(255,248,238,0.78) 28%, rgba(255,248,238,0.22) 42%, transparent 52%),
    linear-gradient(180deg, rgba(58,15,24,0.12) 0%, transparent 40%, rgba(58,15,24,0.35) 100%);
}
.hero-color-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 42% 40% at 12% 52%, rgba(231,196,106,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 88% 38%, rgba(217,144,26,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 520px;
  margin-right: auto;
  padding: 40px 42px;
  border-radius: 24px;
  background: rgba(255,248,238,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(231,196,106,0.45);
  box-shadow:
    0 32px 100px rgba(58,15,24,0.18),
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 0 0 1px rgba(255,255,255,0.4);
}
.hero-inner::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(231,196,106,0.22);
  border-radius: 16px;
  pointer-events: none;
}
.hero-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
}
.hero-logo-wrap::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.hero-logo {
  display: block;
  width: min(260px, 74vw);
  max-height: 58px;
  object-fit: contain;
}
.brand-logo--light {
  filter: drop-shadow(0 3px 10px rgba(58, 15, 24, 0.08));
}
.brand-logo--dark {
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 22px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #6b5340;
  font-weight: 500;
}
.hero-creds strong {
  color: var(--wine);
  font-weight: 700;
}
.hero-creds-dot {
  color: var(--saffron);
  font-size: 8px;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: none;
  color: #a66b10;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 700;
  line-height: 1.05;
  max-width: 100%;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  color: #2a0810;
  text-shadow: 0 1px 0 rgba(255,248,238,0.9);
}
.hero-title .line-gold .word:first-child {
  color: #3a1018;
  font-weight: 500;
  font-style: italic;
}
.hero-title .gold-text {
  font-style: italic;
  font-weight: 700;
  color: #6b1020;
  -webkit-text-fill-color: #6b1020;
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  filter: none;
  text-shadow: 0 1px 0 rgba(255, 248, 238, 0.95);
  position: relative;
}
.hero-title .gold-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  opacity: 0.85;
}
.hero-sub {
  margin-top: 20px;
  font-size: 15px;
  color: #4a3a2c;
  letter-spacing: 0.02em;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-btn {
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 50px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, background 0.4s;
}
.hero-btn-primary {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--wine-mid), var(--wine));
  box-shadow: 0 10px 28px rgba(58,15,24,0.2);
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(58,15,24,0.28);
}
.hero-btn-ghost {
  color: var(--wine);
  background: rgba(255,248,238,0.6);
  border: 1px solid rgba(107,16,32,0.2);
}
.hero-btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,248,238,0.95);
}
@media (max-width: 900px) {
  .hero {
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
  }
  .hero-bg img { object-position: 68% 42%; }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(255,248,238,0.9) 0%, rgba(255,248,238,0.72) 42%, rgba(58,15,24,0.35) 100%);
  }
  .hero-inner {
    max-width: 100%;
    padding: 32px 28px;
  }
  .hero-logo { margin-left: auto; margin-right: auto; }
  .hero-logo-wrap { align-items: center; }
  .hero-creds { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-scroll { color: var(--muted); text-shadow: none; }
  #hero-canvas { opacity: 0.15; }
}
.stat-num[data-count="100"]::after,
.stat-num[data-count="6"]::after {
  content: '+';
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,248,238,0.85);
  z-index: 3;
  text-shadow: 0 1px 8px rgba(58,15,24,0.5);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Marquee */
.marquee-wrap {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  background: var(--wine);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  color: var(--gold);
  opacity: 0.9;
}
.marquee-track span.dot { color: var(--saffron); font-style: normal; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
section { position: relative; z-index: 2; }
.section-pad { padding: 100px 48px; max-width: 1280px; margin: 0 auto; }
.section-label {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--saffron); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a4a38;
  font-weight: 300;
  margin-bottom: 20px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow:
    0 40px 80px rgba(58,15,24,0.18),
    0 0 0 1px rgba(231,196,106,0.35);
}
.about-visual::before,
.about-visual::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}
.about-visual::before {
  top: 14px;
  left: 14px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
}
.about-visual::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 2px solid var(--saffron);
  border-right: 2px solid var(--saffron);
  border-radius: 0 0 4px 0;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: none;
  transition: transform 1.2s var(--ease);
}
.about-visual:hover img { transform: scale(1.03); }
.about-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(231,196,106,0.5);
  border-radius: 12px;
  pointer-events: none;
}

/* Featured showcase mosaic */
.showcase-section {
  padding: 100px 0 80px;
  background:
    linear-gradient(180deg, var(--ivory) 0%, #fdf0dc 40%, var(--ivory) 100%);
  position: relative;
  z-index: 2;
}
.showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,196,106,0.6), transparent);
}
.showcase-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 48px;
}
.showcase-lead {
  font-size: 16px;
  line-height: 1.75;
  color: #5a4a38;
  font-weight: 300;
}
.royal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  color: var(--saffron);
  font-size: 10px;
}
.royal-divider::before,
.royal-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,144,26,0.5), transparent);
}
.showcase-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: start;
}
.showcase-item {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(58,15,24,0.12);
  border: 1px solid rgba(231,196,106,0.25);
  background: #2a0810;
}
.showcase-item--portrait { aspect-ratio: 2 / 3; }
.showcase-item--landscape { aspect-ratio: 3 / 2; }
.showcase-item--ratio-43 { aspect-ratio: 4 / 3; }
.showcase-item--ratio-127 { aspect-ratio: 1800 / 1270; }
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.2s var(--ease);
}
.showcase-item--portrait img { object-position: center 18%; }
.showcase-item--landscape img { object-position: center 42%; }
.showcase-item:hover img { transform: scale(1.03); }
.showcase-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 18px 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--ivory);
  background: linear-gradient(transparent, rgba(58,15,24,0.82));
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.showcase-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.showcase-note {
  text-align: center;
  margin-top: 36px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 17px;
}
.showcase-cta {
  text-align: center;
  margin-top: 36px;
}
.showcase-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--wine-mid), var(--wine));
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 12px 32px rgba(58,15,24,0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.showcase-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(58,15,24,0.28);
}
.showcase-btn-ghost {
  color: var(--wine);
  background: rgba(255,248,238,0.85);
  border: 1px solid rgba(107,16,32,0.2);
  box-shadow: none;
  margin-left: 12px;
}
.showcase-btn-ghost:hover {
  background: var(--ivory);
  box-shadow: 0 8px 24px rgba(58,15,24,0.1);
}

/* Weddings samples page */
.weddings-page { background: var(--ivory); }
.weddings-page-main { position: relative; z-index: 2; padding-top: 100px; }
.weddings-page-hero {
  padding: 40px 0 120px;
  max-width: none;
}
.weddings-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 48px;
}
.weddings-lead {
  font-size: 16px;
  line-height: 1.75;
  color: #5a4a38;
  font-weight: 300;
}
.weddings-count {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
}
.weddings-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.weddings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: start;
}
.weddings-item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(58,15,24,0.14);
  border: 1px solid rgba(231,196,106,0.3);
  background: #1a0810;
  cursor: zoom-in;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.weddings-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(58,15,24,0.2);
}
.weddings-item--landscape { grid-column: span 2; }
.weddings-item--portrait { grid-column: span 1; }
.weddings-item--featured {
  grid-column: span 2;
  border-color: rgba(231,196,106,0.55);
  box-shadow: 0 28px 80px rgba(58,15,24,0.18);
}
.weddings-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  vertical-align: middle;
}
.weddings-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(transparent, rgba(26,8,16,0.88));
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.weddings-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.weddings-item-cap {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--ivory);
}
.weddings-item-hint {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.weddings-bottom-cta {
  text-align: center;
  max-width: 640px;
  margin: 80px auto 0;
  padding: 56px 48px 0;
  border-top: 1px solid rgba(231,196,106,0.35);
}
.weddings-bottom-lead {
  font-size: 15px;
  line-height: 1.75;
  color: #5a4a38;
  font-weight: 300;
  margin: 12px 0 8px;
}
.weddings-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 48px;
}
.weddings-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(18, 6, 10, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 80px 48px;
}
.weddings-lightbox[hidden] { display: none; }
.weddings-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(231,196,106,0.45);
  border-radius: 50%;
  background: rgba(58,15,24,0.7);
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}
.weddings-lightbox-close:hover {
  background: rgba(107,16,32,0.9);
  transform: scale(1.05);
}
.weddings-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(231,196,106,0.4);
  border-radius: 50%;
  background: rgba(58,15,24,0.65);
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}
.weddings-lightbox-nav:hover {
  background: rgba(107,16,32,0.85);
  transform: translateY(-50%) scale(1.06);
}
.weddings-lightbox-prev { left: 20px; }
.weddings-lightbox-next { right: 20px; }
.weddings-lightbox-counter {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(231,196,106,0.85);
  font-weight: 600;
  margin: 0;
}
.weddings-lightbox-inner {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.weddings-lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.55);
}
.weddings-lightbox-inner figcaption {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  margin-top: 18px;
  font-size: 20px;
  max-width: 640px;
}

/* Gallery carousel */
.gallery-section {
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ivory) 0%, #fdf0dc 50%, var(--ivory) 100%);
}
.gallery-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px 20px;
  padding: 0 32px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.gallery-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 20px;
}
.gallery-viewport::-webkit-scrollbar { display: none; }
.gallery-carousel .gallery-track {
  display: flex;
  gap: 24px;
  padding: 8px 6px 28px;
  will-change: auto;
  transform: none !important;
}
.gallery-carousel .gallery-item {
  scroll-snap-align: start;
}
.gallery-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(107, 16, 32, 0.14);
  background: rgba(255, 248, 238, 0.95);
  color: var(--wine);
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(58, 15, 24, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, opacity 0.35s;
}
.gallery-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--wine);
  color: var(--ivory);
  box-shadow: 0 14px 36px rgba(58, 15, 24, 0.22);
}
.gallery-arrow:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  box-shadow: none;
}
.gallery-status {
  text-align: center;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 48px;
}
.gallery-pin {
  padding-left: 48px;
}
.gallery-header {
  padding: 0 48px 48px;
  max-width: 1280px;
}
.gallery-track {
  display: flex;
  gap: 24px;
  padding: 0 48px 48px;
  will-change: transform;
}
.gallery-section.is-static .gallery-track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 32px;
}
.gallery-section.is-static .gallery-item {
  scroll-snap-align: start;
}
.gallery-item {
  flex: 0 0 clamp(280px, 32vw, 420px);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(58,15,24,0.75));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ivory);
  font-style: italic;
}
.gallery-sub {
  max-width: 560px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}
.gallery-sub a {
  color: var(--saffron);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gallery-hint {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 20px;
}
.gallery-item {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-cta {
  text-align: center;
  padding: 8px 48px 0;
}
.gallery-cta p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.gallery-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--wine-mid), var(--wine));
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.gallery-portal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(58,15,24,0.25);
}

/* Films portal (home) */
.films-portal {
  position: relative;
  z-index: 2;
  padding: 100px 48px 110px;
  background: linear-gradient(165deg, #2a0a12 0%, var(--wine) 42%, #1a0508 100%);
  color: var(--ivory);
}
.films-portal-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.films-portal-title { color: var(--ivory); }
.films-portal-lead {
  max-width: 560px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,248,238,0.68);
  font-weight: 300;
}
.films-portal-phase {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px 0 32px;
}
.films-phase-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,196,106,0.45), transparent);
  animation: filmsPhasePulse 2.8s ease-in-out infinite;
}
.films-phase-text {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
@keyframes filmsPhasePulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.films-portal-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,248,238,0.04);
  border: 1px solid rgba(231,196,106,0.18);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}
.films-portal-thumb {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.films-portal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.films-portal-thumb:hover img { transform: scale(1.04); }
.films-portal-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--ivory);
  background: rgba(26,5,8,0.35);
  transition: background 0.4s;
}
.films-portal-thumb:hover .films-portal-play {
  background: rgba(26,5,8,0.5);
}
.films-portal-latest {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,248,238,0.85);
  line-height: 1.4;
}
.films-portal-skeleton {
  aspect-ratio: 16/9;
  border-radius: 18px;
  background: linear-gradient(110deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
}
@keyframes shimmer {
  to { background-position: -200% 0; }
}
.films-portal-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.films-portal-note {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,248,238,0.6);
  margin-bottom: 24px;
}
.films-portal-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  color: var(--wine);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.films-portal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
}
.films-portal-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--gold);
  text-decoration: none;
}
.films-portal-link:hover { color: var(--gold-light); }

/* Films dedicated page */
.films-entry-phase {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--wine);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.films-entry-phase.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.films-entry-logo {
  width: min(240px, 70vw);
  max-height: 52px;
  height: auto;
  object-fit: contain;
}
.films-entry-text {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.films-entry-bar {
  width: min(280px, 70vw);
  height: 2px;
  background: rgba(231,196,106,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.films-entry-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: filmsEntryLoad 1.1s ease-in-out infinite;
}
@keyframes filmsEntryLoad {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
.films-page-main { position: relative; z-index: 2; }
.films-page-hero { padding-top: 120px; }
.films-back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.films-back-link:hover { color: var(--gold-light); }

/* YouTube films (full page) */
.films-section {
  padding: 100px 48px 120px;
  background: linear-gradient(165deg, #2a0a12 0%, var(--wine) 45%, #1a0508 100%);
  color: var(--ivory);
}
.films-header {
  max-width: 720px;
  margin-bottom: 48px;
}
.films-title { color: var(--ivory); }
.films-sub {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,248,238,0.65);
  font-weight: 300;
}
.films-sub a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.films-featured-wrap {
  max-width: 960px;
  margin: 0 auto 56px;
}
.film-embed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.film-embed-featured {
  gap: 16px;
}
.film-embed-label {
  margin-bottom: 4px;
}
.film-embed-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(231,196,106,0.15);
}
.film-embed-featured .film-embed-player {
  border-radius: 20px;
}
.film-embed-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.film-embed-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.35;
  padding: 0 4px;
}
.film-embed-featured .film-embed-title {
  font-size: clamp(22px, 3vw, 30px);
}
.film-embed-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 0 4px 4px;
  width: fit-content;
  transition: color 0.3s;
}
.film-embed-link:hover { color: var(--gold-light); }
.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 32px 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-social a {
  color: var(--saffron);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--wine); }
.footer-dot { color: var(--muted); }

/* Services chips */
.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.service-chip {
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #e0cc9a;
  color: var(--muted);
  background: #fff;
  transition: all 0.4s var(--ease);
}
.service-chip:hover {
  background: var(--wine);
  color: var(--gold);
  border-color: var(--wine);
  transform: translateY(-3px);
}

/* Packages */
.packages-section {
  background: linear-gradient(180deg, #fdf6ea 0%, #fff8ee 50%, #fdf0dc 100%);
  padding: 100px 24px 120px;
  overflow: visible;
}
.packages-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 12px;
}
.packages-tier-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 12px;
  padding: 0 12px;
}
.tier-tab {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.35s var(--ease);
}
.tier-tab-silver {
  background: #fff;
  color: #4a3e2c;
  border-color: #d4b070;
  box-shadow: 0 4px 20px rgba(180,140,80,0.15);
}
.tier-tab-gold {
  background: linear-gradient(135deg, #3a0f18, #6b1020);
  color: #e7c46a;
  border-color: #e7c46a;
  box-shadow: 0 8px 30px rgba(107,16,32,0.35);
}
.tier-tab-platinum {
  background: linear-gradient(135deg, #5a8ec0, #3a6ea0);
  color: #fff;
  border-color: #9ac0f0;
  box-shadow: 0 8px 30px rgba(58,110,160,0.3);
}
.tier-tab:hover, .tier-tab.active {
  transform: translateY(-3px) scale(1.03);
}
.packages-scroll-hint {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 28px;
  font-weight: 500;
}
.packages-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.packages-brand-logo {
  display: block;
  margin: 0 auto 22px;
  width: min(260px, 72vw);
  max-height: 54px;
  object-fit: contain;
}
.packages-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
  margin: 18px auto 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}
.packages-grid .card {
  opacity: 1;
  transform: none;
  scroll-margin-top: 100px;
}

.card {
  border-radius: 20px;
  padding: 36px 28px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease), box-shadow 0.6s;
}
.card:hover { transform: translateY(-6px); }

.card.silver {
  background: #fff;
  border: 2px solid #e0cc9a;
  box-shadow: 0 12px 48px rgba(217,144,26,0.18);
}
.card.gold {
  background: linear-gradient(165deg, #3a0f18 0%, #6b1020 45%, #4a1520 100%);
  border: 2px solid rgba(231,196,106,0.45);
  box-shadow: 0 24px 80px rgba(200,140,30,0.45);
  transform: translateY(-12px);
  padding: 44px 32px 36px;
}
.card.gold:hover { transform: translateY(-18px); }
.card.platinum {
  background: linear-gradient(165deg, #4a2838 0%, #7a1f33 40%, #3d5a80 100%);
  border: 2px solid rgba(154,192,240,0.4);
  box-shadow: 0 20px 60px rgba(90,142,192,0.35);
}

.card-stripe { height: 4px; border-radius: 2px; margin-bottom: 28px; width: 50px; }
.card.silver .card-stripe { background: linear-gradient(135deg, #c8c8c8, #e8e8e8, #a8a8a8); }
.card.gold .card-stripe { background: linear-gradient(135deg, var(--gold), var(--gold-light), #c49030); }
.card.platinum .card-stripe { background: linear-gradient(135deg, #5a8ec0, #9ac0f0, #3a6ea0); }

.popular-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--wine);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.tier-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 6px;
  font-weight: 500;
}
.tier-name { font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.tier-rate { font-size: 15px; margin-bottom: 26px; }
.sec-divider { height: 1px; margin-bottom: 18px; }
.section-label-sm {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 10px;
}
.team-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.chip { font-size: 11px; padding: 5px 12px; border-radius: 50px; border: 1px solid; }
.feat { display: flex; gap: 10px; font-size: 12.5px; font-weight: 300; line-height: 1.5; margin-bottom: 8px; align-items: flex-start; }
.feat-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.feat-badge { font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; margin-left: 5px; }
.section-gap { margin-top: 18px; }
.delivery-section { margin-top: 22px; padding-top: 18px; border-top: 1px solid; }
.delivery-row { display: flex; justify-content: space-between; margin-bottom: 7px; }
.delivery-key { font-size: 11px; font-weight: 300; }
.delivery-val { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; }

/* Card color tokens */
.card.silver .tier-name, .card.silver .delivery-val { color: #2a2018; }
.card.silver .tier-rate, .card.silver .section-label-sm { color: #6a5a40; }
.card.silver .delivery-key { color: #6a5a40; }
.card.silver .tier-label { color: #8a7a60; }
.card.silver .feat { color: #4a3e2c; }
.card.silver .feat-dot { background: #d4b070; }
.card.silver .chip { background: #fdf4e8; border-color: #e8d0a0; color: #8a6a30; }
.card.silver .sec-divider, .card.silver .delivery-section { border-color: #f0e4d0; }

.card.gold .tier-name, .card.gold .delivery-val { color: var(--ivory); }
.card.gold .tier-rate, .card.gold .section-label-sm, .card.gold .tier-label { color: var(--gold); }
.card.gold .delivery-key { color: rgba(255, 248, 238, 0.82); }
.card.gold .feat { color: rgba(255, 248, 238, 0.78); }
.card.gold .feat-dot { background: var(--gold); }
.card.gold .chip { background: rgba(212,168,64,0.12); border-color: rgba(212,168,64,0.3); color: var(--gold); }
.card.gold .delivery-section { border-color: rgba(212,168,64,0.2); }
.card.gold .sec-divider { background: rgba(212,168,64,0.2); }

.card.platinum .tier-name, .card.platinum .delivery-val { color: var(--ivory); }
.card.platinum .tier-rate, .card.platinum .section-label-sm, .card.platinum .tier-label { color: var(--gold); }
.card.platinum .delivery-key { color: rgba(255, 248, 238, 0.82); }
.card.platinum .feat { color: rgba(255, 248, 238, 0.78); }
.card.platinum .feat-dot { background: var(--saffron); }
.card.platinum .chip { background: rgba(90,158,224,0.12); border-color: rgba(90,158,224,0.3); color: var(--gold); }
.card.platinum .delivery-section { border-color: rgba(90,158,224,0.2); }
.card.platinum .sec-divider { background: rgba(90,158,224,0.2); }

.badge-free { background: #e8f5e8; color: #2a7a2a; }
.badge-addon { background: #fff3e0; color: #b06020; }
.badge-incl { background: #e0f0ff; color: #1a60b0; }
.card.gold .badge-free, .card.platinum .badge-free { background: rgba(80,160,80,0.2); color: #80d080; }
.card.gold .badge-addon, .card.platinum .badge-addon { background: rgba(200,120,20,0.2); color: #d0a060; }
.card.gold .badge-incl, .card.platinum .badge-incl { background: rgba(60,120,220,0.2); color: #80b0f0; }

/* Other event packages (dark section) */
.event-packages-section {
  position: relative;
  z-index: 2;
  padding: 100px 24px 120px;
  background: linear-gradient(180deg, #2a2228 0%, #1e181c 50%, #2a2228 100%);
}
.event-packages-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.event-packages-title,
.event-packages-title em {
  color: var(--ivory);
}
.event-packages-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 248, 238, 0.55);
  margin-top: 16px;
  font-weight: 300;
}
.event-packages-section .section-label {
  color: var(--gold);
}
.event-tier-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.event-tab {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  color: rgba(255, 248, 238, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.35s var(--ease);
}
.event-tab:hover,
.event-tab.active {
  background: rgba(231, 196, 106, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.event-tab-featured.active {
  background: linear-gradient(135deg, rgba(217, 144, 26, 0.35), rgba(231, 196, 106, 0.2));
  border-color: var(--saffron);
}
.event-scroll-hint {
  color: var(--gold);
  opacity: 0.8;
}
.event-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.event-card {
  position: relative;
  border-radius: 20px;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: 100px;
  opacity: 1;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 196, 106, 0.35);
}
.event-card-featured {
  border: 2px solid var(--saffron);
  background: rgba(58, 15, 24, 0.45);
  box-shadow: 0 20px 60px rgba(217, 144, 26, 0.2);
  transform: scale(1.03);
}
.event-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.event-best-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--wine);
}
.event-tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 8px;
}
.event-tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1;
}
.event-tier-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 248, 238, 0.5);
}
.event-minimum {
  font-size: 13px;
  color: rgba(255, 248, 238, 0.65);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.event-minimum strong {
  color: var(--gold);
}
.event-features {
  list-style: none;
  margin-bottom: 24px;
}
.event-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
  color: rgba(255, 248, 238, 0.88);
}
.event-icon {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  font-size: 14px;
}
.event-yes .event-icon:last-child,
.event-features .event-yes .event-icon:first-child {
  color: #6fcf97;
}
.event-no {
  color: rgba(255, 248, 238, 0.45);
}
.event-no .event-icon {
  color: #e57373;
  font-weight: 700;
}
.event-delivery {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.event-card .section-label-sm {
  color: var(--gold);
  margin-bottom: 12px;
}
.event-card .delivery-key {
  color: rgba(255, 248, 238, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-card .delivery-val {
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
}
.event-types-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.event-types-bar .event-pill {
  font-size: 11px;
  color: rgba(255, 248, 238, 0.55);
  border: 1px solid rgba(231, 196, 106, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
}

/* Events footer area */
.events-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 48px auto 0;
  max-width: 900px;
}
.event-pill {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid #e0cc9a;
  padding: 6px 16px;
  border-radius: 50px;
}

/* Contact */
.contact-section {
  background: var(--wine);
  color: var(--ivory);
  padding: 100px 48px;
  text-align: center;
}
.contact-section .section-label { color: var(--gold); }
.contact-section .section-title { color: var(--ivory); }
.contact-section .section-title em { color: var(--gold); }
.contact-btn {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-ui);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  color: var(--wine);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 17px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.contact-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.contact-btn-secondary {
  display: inline-block;
  margin-top: 14px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(231, 196, 106, 0.45);
  box-shadow: none;
}
.contact-btn-secondary:hover {
  background: rgba(231, 196, 106, 0.12);
  transform: translateY(-2px);
}
.site-footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid #e8d8c0;
  background: var(--ivory);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--saffron);
  font-style: italic;
}
.footer-note { font-size: 12px; color: var(--muted); margin-top: 8px; }
.footer-mana {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-mana a { color: var(--muted); text-decoration: none; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); }

@media (max-width: 1100px) {
  .packages-grid,
  .event-packages-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    max-width: 100%;
    padding: 8px 24px 24px;
    -webkit-overflow-scrolling: touch;
  }
  .packages-grid .card,
  .event-packages-grid .event-card {
    flex: 0 0 min(340px, 88vw);
    scroll-snap-align: center;
  }
  .card.gold,
  .event-card-featured { transform: none; }
  .packages-scroll-hint,
  .event-scroll-hint { display: block; }
}
@media (min-width: 1101px) {
  .packages-scroll-hint,
  .event-scroll-hint { display: none; }
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .showcase-mosaic {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
  .showcase-header { padding: 0 24px; }
  .weddings-grid { padding: 0 24px; gap: 16px; }
  .weddings-header { padding: 0 24px; }
  .weddings-bottom-cta { padding: 48px 24px 0; }
}
@media (max-width: 640px) {
  .showcase-mosaic { grid-template-columns: 1fr; }
  .showcase-btn-ghost { margin-left: 0; }
  .weddings-grid {
    grid-template-columns: 1fr;
  }
  .weddings-item--landscape,
  .weddings-item--portrait,
  .weddings-item--featured {
    grid-column: span 1;
  }
  .weddings-lightbox { padding: 64px 16px 32px; }
  .weddings-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
  .weddings-lightbox-prev { left: 8px; }
  .weddings-lightbox-next { right: 8px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .section-pad { padding: 80px 24px; }
  .nav { padding: 20px 24px; }
  .stats { grid-template-columns: 1fr; }
  .films-section,
  .films-portal { padding: 80px 24px 100px; }
  .films-portal-card { grid-template-columns: 1fr; padding: 20px; }
  .gallery-carousel {
    display: block;
    padding: 0 16px;
  }
  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    font-size: 18px;
    z-index: 4;
    box-shadow: 0 6px 20px rgba(58, 15, 24, 0.16);
  }
  .gallery-arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.04);
  }
  .gallery-arrow-prev { left: 4px; }
  .gallery-arrow-next { right: 4px; }
  .gallery-header { padding: 0 24px 32px; }
  .gallery-status { padding: 0 24px; }
  .gallery-cta { padding: 8px 24px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
