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

:root {
  --bg: #14100b;
  --bg-2: #1d170f;
  --bg-3: #241c12;
  --cream: #f4e9d8;
  --cream-soft: #beae8e;
  --gold: #c9a35f;
  --gold-bright: #e9cb8c;
  --border: rgba(244,233,216,0.16);
  --border-soft: rgba(244,233,216,0.09);
  --radius: 2px;
}

html { scroll-behavior: smooth; }
html.light-mode {
  --bg: #faf8f3;
  --bg-2: #f1ede4;
  --bg-3: #e9e2d2;
  --cream: #1d1a15;
  --cream-soft: #5c5648;
  --gold: #a4793f;
  --gold-bright: #8a6530;
  --border: rgba(29,26,21,0.16);
  --border-soft: rgba(29,26,21,0.09);
}
html.light-mode .site-header.scrolled { background: rgba(250,248,243,0.92); }
html.light-mode .hero-overlay { background: linear-gradient(180deg, rgba(10,8,5,0.3) 0%, rgba(10,8,5,0.4) 40%, rgba(10,8,5,0.9) 100%); }
html.light-mode .site-footer { background: var(--bg-2); }
html.light-mode .call-float { background: var(--bg-2); }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--cream-soft);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-weight: 800; color: var(--cream); letter-spacing: -0.01em; }

.eyebrow-label {
  display: flex; align-items: center; gap: 14px;
  font-size: .8rem; font-weight: 600; letter-spacing: .2em;
  color: var(--gold); margin-bottom: 22px;
}
.eyebrow-label::before { content: ''; width: 34px; height: 1px; background: var(--gold); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px;
  border: 1px solid var(--cream);
  border-radius: var(--radius);
  font-weight: 600; font-size: .82rem; letter-spacing: .09em;
  background: transparent; color: var(--cream);
  cursor: pointer; transition: background .35s ease, color .35s ease, border-color .35s ease, transform .25s ease;
  position: relative;
}
.btn:hover { background: var(--cream); color: var(--bg); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--bg); }
.btn-lg { padding: 19px 42px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.scroll-progress { position: fixed; top: 0; right: 0; height: 2px; background: var(--gold); width: 0%; z-index: 999; transition: width .1s linear; }

/* custom cursor */
.cursor-ring {
  position: fixed; width: 32px; height: 32px; border: 1px solid var(--gold);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: width .25s, height .25s, opacity .25s, background .25s;
  opacity: 0; mix-blend-mode: difference;
}
.cursor-ring.active { opacity: 1; }
.cursor-ring.grow { width: 64px; height: 64px; background: rgba(201,163,95,0.15); }
@media (hover: none), (pointer: coarse) { .cursor-ring { display: none; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 28px 0; background: transparent; border-bottom: 1px solid transparent; transition: padding .3s, background .3s, border-color .3s; }
.site-header.scrolled { padding: 16px 0; background: rgba(20,16,11,0.88); backdrop-filter: blur(12px); border-color: var(--border-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-img { height: 60px; width: auto; transition: height .3s; filter: drop-shadow(0 3px 14px rgba(0,0,0,0.45)); }
.site-header.scrolled .logo-img { height: 46px; }
.header-tools { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  background: transparent; color: var(--cream); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .95rem; transition: border-color .2s, color .2s;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }

.nav-links { display: flex; gap: 38px; }
.nav-links a { font-weight: 500; font-size: .88rem; letter-spacing: .03em; color: var(--cream); opacity: .85; transition: opacity .2s; }
.nav-links a:hover { opacity: .55; }
.burger { display: none; background: none; border: none; color: var(--cream); font-size: 1.6rem; cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; gap: 4px; background: var(--bg); border-top: 1px solid var(--border-soft); padding: 10px 32px 20px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 13px 0; border-bottom: 1px solid var(--border-soft); color: var(--cream); }
.nav-mobile .btn { margin-top: 14px; }

/* hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 2.4s ease; will-change: transform; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,8,5,0.25) 0%, rgba(10,8,5,0.35) 40%, rgba(10,8,5,0.9) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: 100px; text-align: center; }
.hero-logo-wrap { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; margin-bottom: 34px; }
.hero-logo-wrap::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(20,16,11,0.7) 0%, rgba(20,16,11,0.4) 40%, rgba(20,16,11,0) 72%);
  z-index: 0;
}
.hero-logo { position: relative; z-index: 1; height: 190px; width: auto; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4)); }
.hero h1 { color: var(--cream); font-size: clamp(2.8rem, 7vw, 5.8rem); font-weight: 800; line-height: 1.08; margin-bottom: 28px; text-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.hero-rule { width: 64px; height: 1px; background: var(--gold); margin: 0 auto 28px; }
.hero-sub { color: var(--cream-soft); max-width: 560px; margin: 0 auto 42px; font-size: 1.08rem; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-dots { position: absolute; z-index: 2; bottom: 100px; left: 32px; display: flex; gap: 9px; }
.hero-dots span { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--gold); transition: background .3s; }
.hero-dots span.active { background: var(--gold); }

.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--cream); font-size: 1.1rem; opacity: .7; animation: bounce 2.4s infinite; }
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* feature row */
.feature-row { background: var(--bg-2); padding: 64px 0; border-bottom: 1px solid var(--border-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 0 28px; position: relative; }
.feature + .feature::before { content: ''; position: absolute; right: 0; top: 8px; bottom: 8px; width: 1px; background: var(--border-soft); }
.feature-icon { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; }
.feature strong { color: var(--cream); font-size: .98rem; font-weight: 700; }
.feature span { font-size: .82rem; color: var(--cream-soft); }

/* reels top section */
.reels-section { background: var(--bg); padding: 80px 0 100px; border-top: 1px solid var(--border-soft); }

/* lead form section */
.lead-section { background: var(--bg); padding: 130px 0; position: relative; }
.lead-section--footer { background: var(--bg-2); border-top: 1px solid var(--border-soft); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.lead-copy h2 { font-size: 2.5rem; line-height: 1.25; margin-bottom: 24px; }
.lead-copy p { font-size: 1.02rem; max-width: 440px; }
.lead-form label { display: block; margin-bottom: 26px; }
.lead-form label span { display: block; font-size: .78rem; letter-spacing: .08em; color: var(--cream-soft); margin-bottom: 9px; }
.lead-form input, .lead-form select { width: 100%; padding: 12px 2px; background: transparent; border: none; border-bottom: 1px solid var(--border); color: var(--cream); font-family: inherit; font-size: 1rem; border-radius: 0; transition: border-color .25s; }
.lead-form input::placeholder { color: #6f6655; }
.lead-form input:focus, .lead-form select:focus { outline: none; border-color: var(--gold); }
.lead-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c9a35f' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 4px center; color-scheme: dark; }
.lead-form option { background: var(--bg-2); color: var(--cream); }
.form-note { text-align: center; font-size: .78rem; color: var(--cream-soft); margin-top: 18px; opacity: .8; }

/* about */
.about { padding: 130px 0; position: relative; border-top: 1px solid var(--border-soft); overflow: hidden; }
.about-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.about-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,11,0.93) 0%, rgba(20,16,11,0.88) 50%, rgba(20,16,11,0.95) 100%); }
.about .container { position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; position: relative; }
.about-num { position: absolute; top: -60px; right: -10px; font-size: 9rem; font-weight: 800; color: var(--bg-2); z-index: 0; line-height: 1; user-select: none; }
.about-statement { font-size: 2rem; color: var(--cream); font-weight: 700; line-height: 1.45; position: relative; z-index: 1; }
.about-statement .gold-word { color: var(--gold); }
.about-body p { font-size: 1.02rem; margin-bottom: 18px; }
.about-peek { position: absolute; left: 0; bottom: -60px; width: 200px; aspect-ratio: 1; overflow: hidden; border: 6px solid var(--bg); box-shadow: 0 20px 50px rgba(0,0,0,0.5); display: none; }
.about-peek img { width: 100%; height: 100%; object-fit: cover; }

/* stats band */
.stats-band { position: relative; padding: 90px 0; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; }
.stats-bg::after { content: ''; position: absolute; inset: 0; background: rgba(15,12,8,0.86); }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { text-align: center; padding: 0 20px; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; right: 0; top: 10%; bottom: 10%; width: 1px; background: var(--border-soft); }
.stat-num { display: block; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; color: var(--gold-bright); margin-bottom: 8px; }
.stat-label { font-size: .85rem; color: var(--cream-soft); letter-spacing: .04em; }

/* gallery masonry */
.gallery { padding: 130px 0; }
.gallery-head { text-align: center; margin-bottom: 54px; }
.gallery-head .eyebrow-label { justify-content: center; }
.gallery-head h2 { font-size: 2.5rem; }
.gallery-spread { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.gallery-panel {
  position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; cursor: pointer;
}
.gallery-panel--lg { grid-column: span 2; aspect-ratio: 21/9; }
.gallery-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.gallery-panel:hover img { transform: scale(1.05); }
.gallery-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,5,0.4) 0%, rgba(10,8,5,0.1) 35%, rgba(10,8,5,0.6) 100%);
}
.gallery-panel-title {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  opacity: 0; transform: translateY(24px); transition: opacity 1s ease, transform 1s ease;
}
.gallery-panel-title.is-visible { opacity: 1; transform: translateY(0); }
.gallery-panel-title span { color: var(--gold); font-size: .95rem; letter-spacing: .35em; margin-bottom: 16px; font-weight: 600; }
.gallery-panel-title h3 { color: var(--cream); font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 800; letter-spacing: -0.01em; text-shadow: 0 10px 44px rgba(0,0,0,0.45); }

/* halls */
.halls { padding: 0 0 130px; }
.halls-head { text-align: center; margin-bottom: 54px; }
.halls-head .eyebrow-label { justify-content: center; }
.halls-head h2 { font-size: 2.5rem; }
.halls-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; perspective: 1200px; }
.hall-block { display: flex; flex-direction: column; }
.hall-img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 26px; cursor: pointer; }
.hall-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.hall-block:hover .hall-img img { transform: scale(1.05); }
.hall-info { border-top: 1px solid var(--gold); padding-top: 20px; }
.hall-info h3 { font-size: 1.7rem; margin-bottom: 14px; }
.hall-info li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-soft); font-size: .92rem; }
.hall-info li span:first-child { color: var(--cream-soft); }
.hall-info li span:last-child { color: var(--gold-bright); font-weight: 700; }

/* moments feature section (alternating parallax rows) */
.moments { padding: 60px 0 130px; }
.moments-heading { text-align: center; padding: 30px 0 10px; }
.moments-heading h3 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.moment-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; margin-bottom: 8px; position: relative; }
.moment-row:nth-child(even) { direction: ltr; }
.moment-row:nth-child(even) .moment-text { direction: rtl; }
.moment-media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.moment-media img { width: 100%; height: 130%; object-fit: cover; position: relative; top: -15%; will-change: transform; }
.moment-text { padding: 0 70px; position: relative; }
.moment-bignum { font-size: 7rem; font-weight: 800; color: var(--bg-3); position: absolute; top: -50px; right: 50px; z-index: 0; line-height: 1; user-select: none; }
.moment-text h3 { font-size: 1.9rem; margin-bottom: 16px; position: relative; }
.moment-text p { position: relative; max-width: 420px; }

/* food orbit */
.food-orbit { padding: 50px 0 70px; overflow: hidden; text-align: center; }
.food-copy { max-width: 920px; margin: 0 auto 70px; text-align: right; padding: 0 24px; }
.food-copy-intro { font-size: 1.32rem; color: var(--cream); margin-bottom: 26px; line-height: 1.75; }
.food-copy-img { position: relative; width: 100%; margin-bottom: 26px; }
.food-copy-img-inner { aspect-ratio: 16/8; overflow: hidden; border-radius: 10px; }
.food-copy-img-inner img { width: 100%; height: 100%; object-fit: cover; }

.steam { position: absolute; top: -50px; left: 0; right: 0; height: 140px; display: flex; justify-content: center; gap: 54px; pointer-events: none; z-index: 2; }
.steam span {
  display: block; width: 64px; height: 110px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,0) 72%);
  filter: blur(9px);
  opacity: 0;
  animation: steamRise 3.4s ease-in infinite;
}
.steam span:nth-child(2) { animation-delay: .85s; }
.steam span:nth-child(3) { animation-delay: 1.7s; }
.steam span:nth-child(4) { animation-delay: 2.55s; }
@keyframes steamRise {
  0% { transform: translateY(30px) translateX(0) scale(.55); opacity: 0; }
  18% { opacity: .8; }
  55% { transform: translateY(-46px) translateX(14px) scale(1.05); opacity: .5; }
  100% { transform: translateY(-115px) translateX(-12px) scale(1.6); opacity: 0; }
}
.food-copy-lead { font-size: 1.08rem; color: var(--gold); margin-bottom: 34px; font-weight: 600; }
.food-points { display: grid; grid-template-columns: 1fr 1fr; gap: 0; text-align: right; border-top: 1px solid var(--border-soft); }
.food-point { display: flex; flex-direction: column; padding: 36px 34px; border-bottom: 1px solid var(--border-soft); }
.food-point:nth-child(odd) { border-left: 1px solid var(--border-soft); }
.food-point-icon {
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 18px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem; background: var(--bg-3);
}
.food-point h4 { color: var(--cream); font-size: 1.5rem; margin-bottom: 12px; font-weight: 800; }
.food-point p { font-size: 1.05rem; color: var(--cream-soft); line-height: 1.75; }

.food-orbit-label { margin-bottom: 40px; }
.food-orbit-label h3 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--cream); margin-bottom: 10px; }
.food-orbit-label span { display: block; font-size: .9rem; letter-spacing: .1em; color: var(--cream-soft); opacity: .7; }
.food-orbit-track { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px 50px; max-width: 1300px; margin: 0 auto; padding: 30px 20px; }
.food-circle {
  position: relative; width: 270px; height: 270px; border-radius: 10px; overflow: hidden; flex-shrink: 0; cursor: pointer;
  box-shadow: 0 16px 38px rgba(0,0,0,0.4);
  transition: transform 1s ease, box-shadow 1s ease;
}
.food-circle:hover { z-index: 5; box-shadow: 0 26px 54px rgba(0,0,0,0.55); }
.food-circle--up { transform: translateY(-20px); }
.food-circle--up:hover { transform: translateY(-20px) scale(1.18); }
.food-circle--down { transform: translateY(20px); }
.food-circle--down:hover { transform: translateY(20px) scale(1.18); }
.food-circle::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(20,16,11,0) 100%);
}
.food-circle img { width: 100%; height: 100%; object-fit: cover; }

/* ticker */
.ticker-band { background: var(--bg-3); padding: 24px 0; overflow: hidden; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.ticker-track { display: flex; gap: 56px; width: max-content; animation: tickerScroll 80s linear infinite; }
.ticker-track span { color: var(--cream); font-size: .92rem; letter-spacing: .12em; font-weight: 500; white-space: nowrap; opacity: .85; }
.ticker-track span i { color: var(--gold); margin-left: 12px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-25%); } }

/* social proof */
.social-proof { padding: 130px 0; }
.social-proof-head { text-align: center; margin-bottom: 58px; }
.social-proof-head .eyebrow-label { justify-content: center; }
.social-proof-head h2 { font-size: 2.3rem; line-height: 1.4; max-width: 780px; margin: 0 auto; }

.couples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 74px; perspective: 1200px; }
.couple-card { text-align: center; }
.couple-photo { position: relative; aspect-ratio: 9/8; overflow: hidden; border: 1px solid var(--border-soft); filter: grayscale(0.25) brightness(.95); transition: filter .4s, transform .4s; }
.couple-card:hover .couple-photo { filter: grayscale(0) brightness(1); }
.couple-photo img { width: 100%; height: 100%; object-fit: cover; }
.couple-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(20,16,11,0) 100%);
}
.couple-card p { font-size: .83rem; color: var(--cream-soft); font-style: italic; padding: 0 6px; }

.google-review-card { display: block; max-width: 720px; min-height: 260px; margin: 0 auto 84px; border: 1px solid var(--border); padding: 42px; transition: border-color .3s, box-shadow .3s; background: var(--bg-2); }
.google-review-card:hover { border-color: var(--gold); box-shadow: 0 0 50px rgba(201,163,95,0.08); }
.google-review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.google-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.google-review-slides { position: relative; min-height: 130px; }
.google-review-slide { display: none; }
.google-review-slide.active { display: block; animation: fadeSlide .5s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.google-review-text { color: var(--cream-soft); font-size: .98rem; margin-bottom: 18px; }
.google-reviewer { display: flex; align-items: baseline; gap: 10px; }
.google-reviewer strong { color: var(--cream); font-size: .92rem; }
.google-reviewer span { color: var(--cream-soft); font-size: .78rem; opacity: .75; }
.google-review-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border-soft); }
.google-review-dots { display: flex; gap: 8px; }
.google-review-dots span { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--gold); cursor: pointer; transition: background .3s; }
.google-review-dots span.active { background: var(--gold); }
.google-review-link { color: var(--gold); font-weight: 600; font-size: .85rem; letter-spacing: .05em; display: inline-flex; align-items: center; gap: 8px; }

.video-grid-title { text-align: center; font-size: 1.5rem; margin-bottom: 32px; }

/* Reels carousel */
.reels-strip { position: relative; margin: 0 -8px; }
.reels-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 8px 8px 16px;
}
.reels-track::-webkit-scrollbar { display: none; }
.reel-item {
  flex: 0 0 calc(25% - 8px);
  aspect-ratio: 9/16;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--bg-2);
  cursor: pointer;
}
.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.reel-item:hover video { transform: scale(1.04); }
.reel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  pointer-events: none;
}
.reel-ig-link {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  color: #fff;
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: translateY(4px);
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.reel-item:hover .reel-ig-link { opacity: 1; transform: translateY(0); }
.reels-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(20,16,11,.65);
  border: 1px solid rgba(201,163,95,.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(6px);
  font-size: .95rem;
}
.reels-nav:hover { background: rgba(201,163,95,.75); border-color: var(--gold); }
.reels-nav--prev { right: -14px; }
.reels-nav--next { left: -14px; }

/* slider */
.slider-section { padding: 0 0 130px; text-align: center; overflow: hidden; }
.slider-section .container { margin-bottom: 44px; }
.slider-section h2 { font-size: 2.3rem; }
.slider-wrap { position: relative; width: 100%; overflow: hidden; }
.slider-track { display: flex; align-items: center; width: max-content; gap: 3px; animation: sliderScroll 95s linear infinite; }
.slider-track img { height: 360px; width: auto; object-fit: cover; flex-shrink: 0; cursor: pointer; }
@keyframes sliderScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9998; background: rgba(10,8,5,0.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; border: 1px solid var(--border); }
.lightbox-close { position: absolute; top: 30px; left: 30px; color: var(--cream); font-size: 1.6rem; cursor: pointer; width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* footer */
.site-footer { background: var(--bg-2); color: var(--cream); padding: 130px 0 50px; text-align: center; border-top: 1px solid var(--border-soft); }
.footer-headline { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.35; margin-bottom: 18px; color: var(--cream); }
.footer-headline .gold-word { color: var(--gold); }
.footer-address { font-size: 1.1rem; color: var(--gold); font-weight: 500; margin-bottom: 40px; letter-spacing: .03em; }
.footer-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.footer-social { display: flex; gap: 28px; justify-content: center; margin-bottom: 56px; font-size: .85rem; flex-wrap: wrap; }
.footer-social a { display: inline-flex; align-items: center; gap: 9px; color: var(--cream); opacity: .75; transition: opacity .2s, color .2s; letter-spacing: .04em; }
.footer-social a i { font-size: 1.05rem; color: var(--gold); }
.footer-social a:hover { opacity: 1; color: var(--gold); }
.footer-map { width: 100%; max-width: 900px; margin: 0 auto 56px; aspect-ratio: 16/7; border: 1px solid var(--border); filter: grayscale(.3) contrast(1.05); }
.footer-map iframe { width: 100%; height: 100%; border: 0; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 40px; border-top: 1px solid var(--border-soft); }
.footer-logo { height: 28px; width: auto; opacity: .85; }
.footer-bottom p { font-size: .82rem; color: var(--cream-soft); display: flex; align-items: center; gap: 8px; }
.footer-credit { opacity: .6; font-size: .76rem !important; }
.footer-credit a { color: var(--gold); }
.dot-accent { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* call float */
.call-float { position: fixed; bottom: 28px; left: 28px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.25rem; box-shadow: 0 10px 28px rgba(0,0,0,0.4); transition: transform .25s; }
.call-float:hover { transform: scale(1.1); }

/* accessibility */
.a11y-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; display: none; }
.a11y-overlay.open { display: block; }
.a11y-panel {
  position: fixed; top: 0; bottom: 0; right: -360px; width: 340px; max-width: 88vw; z-index: 1001;
  background: var(--bg-2); border-left: 1px solid var(--border); padding: 24px 22px; overflow-y: auto;
  transition: right .35s ease;
}
.a11y-panel.open { right: 0; }
.a11y-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--border-soft); }
.a11y-head h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.a11y-close { background: none; border: 1px solid var(--border); color: var(--cream); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; }
.a11y-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: .9rem; color: var(--cream); }
.a11y-stepper { display: flex; gap: 6px; }
.a11y-stepper button { width: 34px; height: 34px; border: 1px solid var(--border); background: transparent; color: var(--cream); border-radius: 6px; cursor: pointer; font-size: .8rem; }
.a11y-stepper button:hover { border-color: var(--gold); color: var(--gold); }
.a11y-toggle {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: right; margin-bottom: 10px;
  padding: 12px 14px; border: 1px solid var(--border); background: transparent; color: var(--cream);
  border-radius: 8px; cursor: pointer; font-size: .88rem; font-family: inherit; transition: border-color .2s, background .2s;
}
.a11y-toggle:hover { border-color: var(--gold); }
.a11y-toggle.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.a11y-reset {
  width: 100%; margin-top: 8px; padding: 12px; border: 1px solid var(--border); background: transparent;
  color: var(--cream-soft); border-radius: 8px; cursor: pointer; font-family: inherit; font-size: .85rem;
}
.a11y-statement { font-size: .76rem; color: var(--cream-soft); line-height: 1.6; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.a11y-statement a { color: var(--gold); }

html.a11y-contrast { filter: contrast(1.35) saturate(1.2); }
html.a11y-grayscale { filter: grayscale(1); }
html.a11y-contrast.a11y-grayscale { filter: grayscale(1) contrast(1.35); }
html.a11y-underline-links a { text-decoration: underline !important; }
html.a11y-readable-font, html.a11y-readable-font * { font-family: Arial, Helvetica, sans-serif !important; letter-spacing: .01em !important; }
html.a11y-big-cursor, html.a11y-big-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath d='M3 2l7.07 17.5 2.51-6.94L19.5 9.07z' fill='%23c9a35f' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E") 4 4, auto !important; }
html.a11y-stop-animations, html.a11y-stop-animations * { animation: none !important; transition: none !important; }
html.a11y-stop-animations .cursor-ring { display: none !important; }

/* responsive */
@media (max-width: 980px) {
  .lead-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-peek { display: none; }
  .hero h1 { font-size: clamp(2.3rem, 8vw, 3.4rem); }
  .nav-links, .header-cta { display: none; }
  .burger { display: block; }
  .feature-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .feature + .feature::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .stat-item:nth-child(3)::before { display: none; }
  .gallery-spread { grid-template-columns: 1fr; }
  .gallery-panel { aspect-ratio: 4/5; }
  .gallery-panel--lg { grid-column: span 1; aspect-ratio: 16/10; }
  .halls-grid { grid-template-columns: 1fr; gap: 48px; }
  .moment-row, .moment-row:nth-child(even) { grid-template-columns: 1fr; direction: rtl; }
  .moment-text { padding: 40px 8px 0; }
  .moment-bignum { display: none; }
  .couples-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-item { flex: 0 0 calc(33.333% - 7px); }
}
@media (max-width: 600px) {
  .hero-content { padding-bottom: 70px; }
  .hero-dots { display: none; }
  .hero-logo { height: 110px; }
  .hero-logo-wrap { margin-bottom: 22px; }
  .hero-logo-wrap::before { width: 260px; height: 260px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .couples-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-item { flex: 0 0 calc(50% - 5px); }
  .slider-track img { height: 220px; }
  .food-points { grid-template-columns: 1fr; }
  .food-point:nth-child(odd) { border-left: none; }
  .food-point { padding: 26px 4px; }
  .food-circle { width: 150px; height: 150px; }
  .food-circle--up { transform: translateY(-12px); }
  .food-circle--down { transform: translateY(12px); }
  .footer-actions { flex-direction: column; width: 100%; }
  .footer-actions .btn { width: 100%; justify-content: center; }
  .lead-section, .about, .social-proof, .gallery, .moments { padding: 80px 0; }
  .halls { padding-bottom: 80px; }
  .about-num { font-size: 5rem; }
}
