/* ═══════════════════════════════════════════
   THE WEDPIC FILMS — Custom Stylesheet
   Bootstrap 5.0.1 Override & Custom Styles
═══════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Raleway:wght@200;300;400;500&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --black: #07070a;
  --deep: #0e0d11;
  --surface: #161419;
  --card: #1c1a1f;
  --gold: #c9a96e;
  --gold2: #e8d4a0;
  --cream: #f5f0e8;
  --text: #c4beb4;
  --muted: #6b6560;
  --border: rgba(201, 169, 110, .11);
  --ff: 'Playfair Display', Georgia, serif;
  --fc: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Raleway', sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease2: cubic-bezier(.22, 1, .36, 1);
}

/* ── BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--fb);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: none !important;
  font-family: var(--fb);
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── TYPOGRAPHY HELPERS ── */
.ff {
  font-family: var(--ff) !important;
}

.fc {
  font-family: var(--fc) !important;
}

.fb {
  font-family: var(--fb) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-gold2 {
  color: var(--gold2) !important;
}

.text-cream {
  color: var(--cream) !important;
}

.text-muted-custom {
  color: var(--muted) !important;
}

.text-italic {
  font-style: italic;
}

/* ── DEMO BAR ── */
.demo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(201, 169, 110, .95);
  backdrop-filter: blur(10px);
  padding: 9px 24px;
}

.demo-bar p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
}

.demo-bar p em {
  font-style: normal;
  font-weight: 700;
}

.dp {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(7, 7, 10, .12);
  color: var(--black);
  border: none;
  padding: 5px 11px;
  border-radius: 2px;
  transition: all .2s;
  white-space: nowrap;
}

.dp:hover,
.dp.active {
  background: var(--black);
  color: var(--gold);
}

/* ── PRELOADER ── */
#pre {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s, visibility 1s;
}

#pre.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pre-logo {
  font-family: var(--ff);
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: .16em;
  color: var(--cream);
  overflow: hidden;
  height: 1.2em;
  display: flex;
  align-items: flex-end;
}

.pre-in {
  transform: translateY(110%);
  animation: slideUp .8s var(--ease2) .15s forwards;
}

.pre-sub {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  opacity: 0;
  animation: fadeIn .7s ease .85s forwards;
}

.pre-track {
  width: 240px;
  height: 1px;
  background: rgba(201, 169, 110, .14);
  margin-top: 44px;
  overflow: hidden;
}

.pre-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold2));
  width: 0;
  transition: width 2.4s cubic-bezier(.22, 1, .36, 1);
}

.pre-pct {
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(201, 169, 110, .35);
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn .6s ease .5s forwards;
}

/* ── PROGRESS BAR ── */
#pgbar {
  position: fixed;
  top: 36px;
  left: 0;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold2));
  z-index: 800;
  width: 0;
  transition: width .08s linear;
}

/* ── CUSTOM CURSOR ── */
.c-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
}

.c-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, .4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
  transition: width .3s, height .3s, border-color .3s;
}

body.hov .c-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(201, 169, 110, .75);
}

/* ── NAVBAR ── */
#nav {
  position: fixed;
  /* top: 36px; */
  left: 0;
  right: 0;
  z-index: 700;
  padding: 28px 60px;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .55s, transform .55s, padding .4s, background .5s, border-bottom .5s;
  background: transparent;
}

#nav.show {
  opacity: 1;
  transform: none;
}

#nav.sticky {
  background: rgba(7, 7, 10, .97);
  backdrop-filter: blur(30px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--cream);
}

.nav-logo em {
  font-style: italic;
  color: var(--gold);
}

.nav-link-custom {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
  font-weight: 400;
  background: none;
  border: none;
  padding: 8px 14px;
}

.nav-link-custom:hover {
  color: var(--gold);
}

.nav-enquire {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, .3);
  padding: 9px 22px;
  transition: all .3s;
  background: none;
}

.nav-enquire:hover {
  background: var(--gold);
  color: var(--black);
}

/* Bootstrap Dropdown Custom */
.dropdown-menu-custom {
  background: rgba(14, 13, 17, .98);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 0;
  min-width: 260px;
  padding: 8px 0;
}

.dropdown-menu-custom .dropdown-item {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 9px 20px;
  transition: color .3s, background .3s;
  white-space: nowrap;
  background: none;
}

.dropdown-menu-custom .dropdown-item:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, .04);
}

.dropdown-divider-custom {
  height: 1px;
  background: var(--border);
  margin: 5px 0;
}

/* ── OVERLAY MENU ── */
#overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 690;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at 96% 4%);
  transition: clip-path .85s var(--ease2);
}

#overlay.open {
  clip-path: circle(160% at 96% 4%);
}

 /* #overlay-close {
  position: absolute;
  top: 28px;
  right: 60px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  transition: color .3s;
}

#overlay-close:hover {
  color: var(--gold);
}  */

.ov-list {
  list-style: none;
  text-align: center;
  padding: 0;
}

.ov-list li {
  overflow: hidden;
  margin-bottom: 4px;
}

.ov-list a {
  font-family: var(--ff);
  font-size: clamp(38px, 6.5vw, 78px);
  font-weight: 400;
  line-height: 1.1;
  color: rgba(245, 240, 232, .1);
  display: block;
  transform: translateY(110%);
  transition: color .4s, transform .65s var(--ease2);
}

#overlay.open .ov-list a {
  color: var(--cream);
  transform: none;
}

#overlay.open .ov-list li:nth-child(1) a {
  transition-delay: .04s;
}

#overlay.open .ov-list li:nth-child(2) a {
  transition-delay: .09s;
}

#overlay.open .ov-list li:nth-child(3) a {
  transition-delay: .14s;
}

#overlay.open .ov-list li:nth-child(4) a {
  transition-delay: .19s;
}

#overlay.open .ov-list li:nth-child(5) a {
  transition-delay: .24s;
}

#overlay.open .ov-list li:nth-child(6) a {
  transition-delay: .29s;
}

#overlay.open .ov-list li:nth-child(7) a {
  transition-delay: .34s;
}

.ov-list a:hover {
  color: var(--gold);
}

.ov-meta {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ── HERO ── */
.hero {
  height: 100svh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-reel {
  position: absolute;
  inset: 0;
}

.rframe {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.2s ease;
}

.rframe.on {
  opacity: 1;
}

.rframe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 10, .96) 0%, rgba(7, 7, 10, .4) 40%, rgba(7, 7, 10, .1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 90px;
  max-width: 840px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .9s ease 3.2s forwards;
}

.hero-h1 {
  font-family: var(--ff);
  font-size: clamp(50px, 8vw, 104px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s ease 3.4s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 240, 232, .55);
  max-width: 500px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp .9s ease 3.6s forwards;
}

.hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s ease 3.8s forwards;
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 90px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
  opacity: 0;
  animation: fadeIn 1s ease 4s forwards;
}

.hstat-n {
  font-family: var(--fc);
  font-size: 34px;
  font-style: italic;
  font-weight: 300;
  color: rgba(201, 169, 110, .35);
  line-height: 1;
}

.hstat-l {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.hero-counter {
  position: absolute;
  bottom: 34px;
  left: 60px;
  z-index: 2;
  display: flex;
  gap: 6px;
  align-items: center;
}

.hcn {
  font-family: var(--fc);
  font-size: 70px;
  font-style: italic;
  font-weight: 300;
  color: rgba(201, 169, 110, .15);
  line-height: 1;
}

.hcsep {
  width: 1px;
  height: 34px;
  background: rgba(201, 169, 110, .2);
  align-self: center;
}

.hctot {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hdot {
  width: 16px;
  height: 1px;
  background: rgba(201, 169, 110, .2);
  transition: all .4s;
}

.hdot.on {
  width: 38px;
  background: var(--gold);
}

.hero-scroll {
  position: absolute;
  right: 60px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 4.5s forwards;
}

.scl {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse 2.2s ease infinite;
}

.sct {
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── BUTTONS ── */
.btn-fill {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  display: inline-block;
  transition: background .3s;
  border: none;
  border-radius: 0;
}

.btn-fill:hover {
  background: var(--gold2);
  color: var(--black);
}

.btn-outline {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, .4);
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  border-radius: 0;
}

.btn-outline:hover {
  background: rgba(201, 169, 110, .08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-txt {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .3s, gap .3s;
  background: none;
  border: none;
}

.btn-txt:hover {
  color: var(--gold);
  gap: 16px;
}

.btn-txt::after {
  content: '→';
  font-size: 15px;
}

.play-showreel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .55);
  background: rgba(201, 169, 110, .08);
  border: 1px solid rgba(201, 169, 110, .2);
  padding: 11px 22px;
  transition: all .3s;
}

.play-showreel-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 169, 110, .12);
}

.play-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

/* ── MARQUEE ── */
.mq-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--deep);
}

.mq-belt {
  display: flex;
  width: max-content;
  animation: belt 28s linear infinite;
}

.mq-img {
  width: 320px;
  height: 210px;
  object-fit: cover;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  filter: saturate(.6) brightness(.75);
  transition: filter .5s;
}

.mq-img:hover {
  filter: saturate(1) brightness(1);
}

/* ── SHOWREEL BELT ── */
.belt-wrap {
  position: relative;
  height: 70px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.belt-inner {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  animation: belt 40s linear infinite;
  width: max-content;
  align-items: center;
  height: 100%;
}

.belt-item {
  font-family: var(--fc);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(201, 169, 110, .25);
  padding: 0 32px;
  white-space: nowrap;
}

.belt-dot {
  color: rgba(201, 169, 110, .15);
  font-size: 10px;
  padding: 0 4px;
}

/* ── SECTION TAGS & TITLES ── */
.stag {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.stag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.stit {
  font-family: var(--ff);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -.01em;
}

.stit em {
  font-style: italic;
  color: var(--gold2);
}

.sbody {
  font-size: 14px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 560px;
}

/* ── SCROLL REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.rv.v {
  opacity: 1;
  transform: none;
}

/* ── AUTHORITY PROOF ── */
#authority-proof {
  padding: 60px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

/* ── AUTHORITY INTRO ── */
#authority {
  padding: 80px 60px;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}

.auth-link-btn {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .55);
  border: 1px solid var(--border);
  padding: 7px 16px;
  transition: all .3s;
  background: none;
  font-family: var(--fb);
}

.auth-link-btn:hover {
  color: var(--gold);
  border-color: rgba(201, 169, 110, .35);
}

/* ── VENUE STRIP ── */
.vstrip {
  padding: 22px 60px;
  background: var(--deep);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.vs-lbl {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  margin-right: 36px;
  white-space: nowrap;
}

.vs-names {
  display: flex;
  gap: 28px;
  overflow: hidden;
}

.vs-n {
  font-family: var(--fc);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, .18);
  white-space: nowrap;
  transition: color .3s;
}

.vs-n:hover {
  color: var(--gold);
}

.vs-sep {
  color: rgba(201, 169, 110, .15);
  font-size: 8px;
  align-self: center;
}

/* ── ABOUT ── */
#about {
  padding: 140px 60px;
  background: var(--deep);
}

.mquote {
  font-family: var(--fc);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  border-left: 1px solid var(--gold);
  padding-left: 38px;
  margin: 36px 0;
}

.mquote cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.avis {
  position: relative;
  height: 580px;
}

.av-main {
  position: absolute;
  inset: 40px 0 0 40px;
  overflow: hidden;
}

.av-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(.78);
  transition: transform 9s ease, filter .6s;
  transform: scale(1.05);
}

#about:hover .av-main img {
  transform: scale(1);
  filter: brightness(.94) saturate(.9);
}

.av-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  bottom: 40px;
  border: 1px solid rgba(201, 169, 110, .17);
  pointer-events: none;
}

.av-badge {
  position: absolute;
  bottom: 0;
  right: -16px;
  background: var(--black);
  border: 1px solid var(--border);
  padding: 22px 28px;
  z-index: 2;
}

.av-badge strong {
  font-family: var(--ff);
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.av-badge span {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

/* ── PORTFOLIO GRID ── */
#films {
  padding: 140px 0 0;
}

.port-head {
  padding: 0 60px 60px;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}

.fc-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
}

.fc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 10, .9) 0%, rgba(7, 7, 10, .08) 55%, transparent 100%);
  transition: opacity .5s;
  z-index: 1;
}

.fc-card:hover::after {
  opacity: .65;
}

.fc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--ease);
  filter: brightness(.88) saturate(.8);
}

.fc-card:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

.fci {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.floc {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

.fname {
  font-family: var(--ff);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
}

.fyr {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.fplay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border: 1px solid rgba(201, 169, 110, .55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity .35s;
}

.fc-card:hover .fplay-btn {
  opacity: 1;
}

.fplay-btn::after {
  content: '▶';
  font-size: 13px;
  color: var(--gold);
  margin-left: 4px;
}

.fw7 {
  grid-column: span 7;
  min-height: 520px;
}

.fw5 {
  grid-column: span 5;
  min-height: 520px;
}

.fw4 {
  grid-column: span 4;
  min-height: 320px;
}

.fw8 {
  grid-column: span 8;
  min-height: 380px;
}

.fw4b {
  grid-column: span 4;
  min-height: 380px;
}


.avail-bar {
  margin: 60px 60px 0;
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px 40px;
  flex-wrap: wrap;
}

.avail-txt {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  line-height: 1.7;
}

.avail-txt strong {
  color: var(--cream);
}

.avail-yr {
  font-family: var(--ff);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
}

/* ── HORIZONTAL GALLERY ── */
.hgal {
  padding: 80px 0;
  overflow: hidden;
}

.hgal-label {
  padding: 0 60px 32px;
}

.hgal-track {
  display: flex;
  gap: 3px;
  width: max-content;
  padding: 0 60px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.hgal-track::-webkit-scrollbar {
  display: none;
}

.hg {
  flex-shrink: 0;
  width: 360px;
  height: 500px;
  position: relative;
  overflow: hidden;
  background: var(--card);
}

.hg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(.78);
  transition: transform .8s, filter .5s;
}

.hg:hover img {
  transform: scale(1.06);
  filter: brightness(.96) saturate(1);
}

.hg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 10, .82) 0%, transparent 55%);
  z-index: 1;
}

.hg-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.hg-loc {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.hg-name {
  font-family: var(--ff);
  font-size: 18px;
  color: var(--cream);
  font-weight: 400;
}

/* ── SERVICES ── */
#services {
  padding: 140px 60px;
  background: var(--deep);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
}

.svc {
  padding: 56px 48px;
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: background .4s;
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s;
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc:hover {
  background: rgba(201, 169, 110, .025);
}

.svc-n {
  font-family: var(--fc);
  font-size: 70px;
  font-weight: 300;
  font-style: italic;
  color: rgba(201, 169, 110, .08);
  line-height: 1;
  margin-bottom: 20px;
}

.svc h3 {
  font-family: var(--ff);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
}

.svc p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 32px;
}

.svc-lnk {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap .3s;
  background: none;
  border: none;
}

.svc-lnk::after {
  content: '→';
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  height: 440px;
  overflow: hidden;
}

.cta-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.42) saturate(.65);
  transform: scale(1.04);
  transition: transform 9s ease;
}

.cta-band:hover img {
  transform: scale(1);
}

.cta-over {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding: 0 40px;
}

.cta-tag {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-h2 {
  font-family: var(--ff);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}

.cta-h2 em {
  font-style: italic;
  color: var(--gold2);
}

/* ── DESTINATIONS ── */
#destinations {
  padding: 140px 60px;
}

.dg {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 64px;
}

.dc {
  padding: 44px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all .35s;
  cursor: none;
}

.dc:hover {
  background: rgba(201, 169, 110, .035);
  border-color: rgba(201, 169, 110, .28);
}

.dc-i {
  font-family: var(--fc);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: rgba(201, 169, 110, .15);
  margin-bottom: 14px;
  transition: color .3s;
}

.dc:hover .dc-i {
  color: var(--gold);
}

.dc-name {
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.dc-sub {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.dc-venue-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 10px;
}

.dc-venue-links button {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .5);
  border: 1px solid rgba(201, 169, 110, .12);
  padding: 3px 8px;
  background: none;
  font-family: var(--fb);
  transition: all .3s;
}

.dc-venue-links button:hover {
  color: var(--gold);
  border-color: rgba(201, 169, 110, .35);
}

/* ── INTERNATIONAL ── */
#international {
  padding: 100px 60px;
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.intl-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 48px;
}

.intl-card {
  padding: 32px 22px;
  background: var(--card);
  text-align: center;
  transition: all .3s;
  cursor: none;
}

.intl-card:hover {
  background: rgba(201, 169, 110, .03);
}

.intl-name {
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.intl-sub {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── NRI SECTION ── */
#nri-weddings {
  padding: 80px 60px;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── INSTAGRAM ── */
#instagram-section {
  padding: 80px 60px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.insta-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--card);
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.82);
  transition: all .4s;
}

.insta-grid a:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.05);
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 140px 60px;
  background: var(--deep);
}

.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
}

.tc {
  padding: 52px 44px;
  background: var(--card);
  border: 1px solid var(--border);
}

.tc-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 26px;
}

.tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.tc-stars span {
  color: var(--gold);
  font-size: 11px;
}

.tc-qm {
  font-family: var(--fc);
  font-size: 64px;
  font-style: italic;
  color: rgba(201, 169, 110, .09);
  line-height: .9;
  margin-bottom: 18px;
}

.tc-body {
  font-family: var(--fc);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 28px;
}

.tc-rule {
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
  margin-bottom: 16px;
}

.tc-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
}

.tc-venue {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ── FOUNDER ── */
#founder {
  padding: 140px 60px;
}

.fvis {
  position: relative;
  height: 620px;
}

.fv-main {
  position: absolute;
  inset: 40px 0 0 40px;
  overflow: hidden;
}

.fv-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(.78);
  transition: filter .6s, transform 9s ease;
  transform: scale(1.04);
}

#founder:hover .fv-main img {
  filter: brightness(.94) saturate(.9);
  transform: scale(1);
}

.fv-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  bottom: 40px;
  border: 1px solid rgba(201, 169, 110, .16);
  pointer-events: none;
}

.fv-stamp {
  position: absolute;
  bottom: 0;
  right: -16px;
  background: var(--black);
  border: 1px solid var(--border);
  padding: 22px 28px;
  z-index: 2;
}

.fv-stamp p:first-child {
  font-family: var(--ff);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin: 0;
}

.fv-stamp p:last-child {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
  margin-bottom: 0;
}

.f-body {
  font-size: 14px;
  line-height: 1.95;
  color: var(--muted);
  margin: 28px 0 16px;
}

.f-sig {
  font-family: var(--fc);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold2);
  margin-top: 28px;
}

.f-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.f-cred {
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .65);
  border: 1px solid rgba(201, 169, 110, .15);
  padding: 6px 13px;
}

.f-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.f-rule::before,
.f-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.f-rule em {
  font-family: var(--fc);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
}

/* ── COLLECTIONS ── */
#collections {
  padding: 140px 60px;
  background: var(--deep);
}

.cg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
}

.cc {
  padding: 56px 48px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  transition: background .4s;
}

.cc.best {
  border-color: rgba(201, 169, 110, .4);
}

.cc.best::before {
  content: 'Most chosen';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 5px 18px;
}

.cc:hover {
  background: rgba(201, 169, 110, .025);
}

.cc-n {
  font-family: var(--fc);
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: rgba(201, 169, 110, .1);
  line-height: 1;
  margin-bottom: 16px;
}

.cc h3 {
  font-family: var(--ff);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 18px;
}

.cc p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 32px;
}

.cc-price {
  font-size: 12px;
  color: rgba(245, 240, 232, .3);
  margin-bottom: 22px;
}

.cc-price strong {
  font-family: var(--ff);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
}

.cc-lnk {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap .3s;
  background: none;
  border: none;
}

.cc-lnk::after {
  content: '→';
}

/* ── FAQ ── */
#faq {
  padding: 140px 60px;
}

.faq-intro {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 540px;
  margin-top: 20px;
  margin-bottom: 64px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.faq-item {
  padding: 32px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: background .3s;
}

.faq-item:hover {
  background: rgba(201, 169, 110, .02);
}

.faq-q {
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.45;
}

.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s, margin-top .3s;
}

.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 16px;
}

/* ── SCARCITY ── */
.scarcity-bar {
  background: var(--card);
  border: 1px solid rgba(201, 169, 110, .25);
  padding: 28px 40px;
  text-align: center;
}

.scarcity-bar p {
  font-family: var(--fc);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin: 0;
}

.scarcity-bar p strong {
  color: var(--gold);
}

.sc-sub {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 6px;
  font-style: normal;
  font-family: var(--fb);
}

/* ── INQUIRY FORM ── */
#inquiry {
  padding: 100px 60px 140px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.inq-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.inq-sub {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 480px;
  margin: 20px auto 48px;
}

.inq-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
  margin-bottom: 14px;
}

.fi {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fi.full {
  grid-column: span 2;
}

.fi label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.fi input,
.fi select,
.fi textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
  width: 100%;
  border-radius: 0;
}

.fi input:focus,
.fi select:focus,
.fi textarea:focus {
  border-color: rgba(201, 169, 110, .45);
}

.fi select option {
  background: var(--deep);
}

.fi textarea {
  resize: vertical;
  min-height: 100px;
}

.fi input::placeholder,
.fi textarea::placeholder {
  color: var(--muted);
  opacity: .5;
}

.inq-notice {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

.inq-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none;
  transition: background .3s;
  border-radius: 0;
}

.inq-btn:hover {
  background: var(--gold2);
}

.inq-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.inq-note a {
  color: var(--gold);
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 96px;
  right: 32px;
  z-index: 599;
  background: var(--gold);
  color: var(--black);
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 2px;
  transition: all .3s;
  box-shadow: 0 4px 24px rgba(201, 169, 110, .3);
  opacity: 0;
  animation: fadeIn 1s ease 2.5s both;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  color: var(--black);
}

.sticky-cta::before {
  content: '◉';
  font-size: 8px;
  animation: pulse 2s ease infinite;
}

/* ── WHATSAPP ── */
.wa {
  position: fixed;
  bottom: 88px;
  right: 32px;
  z-index: 600;
  background: #25D366;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  opacity: 0;
  animation: fadeIn 1s ease 4.8s forwards;
  top:85%;
}

.wa:hover {
  transform: scale(1.1);
}

.wa svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ── VIDEO MODAL ── */
#vid-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(7, 7, 10, .97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  padding: 20px;
}

#vid-modal.open {
  opacity: 1;
  visibility: visible;
}

.vid-wrap {
  width: 100%;
  max-width: 980px;
  position: relative;
}

.vid-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.vid-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vid-meta {
  padding: 20px 0 0;
}

.vid-couple {
  font-family: var(--ff);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
}

.vid-loc {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.vid-close {
  position: absolute;
  top: -46px;
  right: 0;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s;
}

.vid-close:hover {
  color: var(--gold);
}

.vid-close::before {
  content: '✕';
  font-size: 14px;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .5s;
}

#cookie-banner.show {
  transform: none;
}

#cookie-banner p {
  font-size: 12px;
  color: var(--muted);
  flex: 1;
  min-width: 180px;
  line-height: 1.7;
  margin: 0;
}

.cbtn {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(201, 169, 110, .3);
  color: var(--gold);
  background: none;
  white-space: nowrap;
  transition: all .3s;
  border-radius: 0;
}

.cbtn.acc {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.cbtn.acc:hover {
  background: var(--gold2);
}

.cbtn.dec:hover {
  border-color: var(--gold);
}

/* ── PRESS / RECOGNITION ── */
.press-card {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid rgba(201, 169, 110, .2);
}

.press-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}

.press-card h4 {
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.press-card .label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.press-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.brand-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.brand-item {
  padding: 14px 28px;
  border: 1px solid var(--border);
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 400;
  color: rgba(245, 240, 232, .35);
  letter-spacing: .06em;
  transition: color .3s;
  margin: -1px;
}

.brand-item:hover {
  color: var(--cream);
}

/* ── SUB-PAGE STYLES ── */
.sub-hero {
  height: 82vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35) saturate(.6);
}

.sub-hero-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 10, .98) 0%, rgba(7, 7, 10, .15) 70%, transparent 100%);
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 820px;
}

.sub-breadcrumb {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .45);
  margin-bottom: 18px;
}

.sub-breadcrumb a,
.sub-breadcrumb button {
  color: rgba(201, 169, 110, .45);
  transition: color .3s;
  background: none;
  border: none;
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sub-breadcrumb a:hover,
.sub-breadcrumb button:hover {
  color: var(--gold);
}

.sub-breadcrumb span {
  margin: 0 8px;
  color: rgba(201, 169, 110, .22);
}

.sub-h1 {
  font-family: var(--ff);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -.02em;
  margin-bottom: 26px;
}

.sub-h1 em {
  font-style: italic;
  color: var(--gold2);
}

.sub-hero-para {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 240, 232, .55);
  max-width: 560px;
  margin-bottom: 44px;
}

.sub-section {
  padding: 90px 60px;
}

.sub-section.alt {
  background: var(--deep);
}

.sub-h2 {
  font-family: var(--ff);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 22px;
}

.sub-h2 em {
  font-style: italic;
  color: var(--gold2);
}

.sub-p {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 14px;
}

.sub-p a {
  color: var(--gold);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 36px;
}

.venue-item {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all .3s;
}

.venue-item:hover {
  border-color: rgba(201, 169, 110, .28);
  background: rgba(201, 169, 110, .025);
}

.venue-name {
  font-family: var(--ff);
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.venue-type {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.bullets {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.bullets li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.bullets li::before {
  content: '◈';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

.cluster-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

/* ── FOOTER ── */
footer {
  padding: 80px 60px 40px;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.ft-brand {
  font-family: var(--ff);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

.ft-brand em {
  font-style: italic;
  color: var(--gold);
}

.ft-tagline {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 24px;
}

.ft-contacts a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 7px;
  transition: color .3s;
}

.ft-contacts a:hover {
  color: var(--gold);
}

.ft-col h4 {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
}

.ft-col ul a,
.ft-col ul button {
  font-size: 12px;
  color: var(--muted);
  transition: color .3s;
  background: none;
  border: none;
  font-family: var(--fb);
  text-align: left;
  padding: 0;
}

.ft-col ul a:hover,
.ft-col ul button:hover {
  color: var(--cream);
}

.ft-copy {
  font-size: 11px;
  color: var(--muted);
}

.ft-legal a {
  font-size: 11px;
  color: var(--muted);
  transition: color .3s;
  margin-left: 16px;
}

.ft-soc {
  display: flex;
  gap: 20px;
}

.ft-soc a {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}

.ft-soc a:hover {
  color: var(--gold);
}

/* ── REVIEW STRIP ── */
.review-strip {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px;
}

.rev-badge {
  background: var(--card);
  border: 1px solid rgba(201, 169, 110, .25);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-badge .rev-n {
  font-family: var(--ff);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.rev-badge .rev-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.rev-badge .rev-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* ── WEDDING STORY CARDS ── */
.story-card {
  padding: 28px 24px;
  background: var(--deep);
  border: 1px solid var(--border);
  transition: all .3s;
}

.story-card:hover {
  border-color: rgba(201, 169, 110, .3);
}

.story-card .sc-type {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.story-card .sc-title {
  font-family: var(--ff);
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.story-card .sc-desc {
  font-size: 12px;
  color: var(--muted);
}

.story-card .sc-coming {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .35);
  margin-top: 14px;
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(110%);
  }

  to {
    transform: none;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.65);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes belt {
  to {
    transform: translateX(-50%);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .intl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  #nav {
    padding: 56px 30px 28px;
  }

  #nav.sticky {
    padding: 50px 30px 14px;
  }

  .hero-content,
  .sub-hero-content {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 72px;
  }

  #about,
  #founder {
    padding: 80px 30px;
  }

  .avis,
  .fvis {
    height: 360px;
  }

  .av-badge,
  .fv-stamp {
    right: 0;
  }

  .pgrid {
    gap: 2px;
  }

  .fw7,
  .fw5,
  .fw4,
  .fw8,
  .fw4b {
    grid-column: span 12;
    min-height: 280px;
  }

  .svc-grid,
  .tg,
  .dg,
  .cg,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  #services,
  #destinations,
  #international,
  #testimonials,
  #collections,
  #faq,
  #inquiry,
  #founder {
    padding: 80px 30px;
  }

  #authority {
    padding: 60px 30px;
  }

  .avail-bar {
    margin: 40px 30px 0;
  }

  #nri-weddings {
    padding: 60px 30px;
  }

  .scarcity-bar {
    padding: 24px 30px;
  }

  .vstrip {
    padding: 20px 30px;
  }

  .sub-section {
    padding: 60px 30px;
  }

  #instagram-section {
    padding: 60px 30px;
  }

  footer {
    padding: 60px 30px 30px;
  }

  #authority-proof {
    padding: 48px 30px;
  }

  .review-strip {
    padding: 24px 30px;
  }
}

@media (max-width: 768px) {
  .dg {
    grid-template-columns: repeat(2, 1fr);
  }

  .intl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    display: none;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .inq-form {
    grid-template-columns: 1fr;
  }

  .fi.full {
    grid-column: span 1;
  }

  .hero-h1 {
    font-size: clamp(38px, 12vw, 64px);
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


/* alex rohit gupta code start */

.btn-3d {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  /* thoda slim feel */

  background: linear-gradient(145deg, #d4af37, #b8962e);

  box-shadow:
    0 4px 0 #8c6f1f,
    0 8px 15px rgba(0, 0, 0, 0.4);

  transition: all 0.2s ease;
  position: relative;
}

/* Hover Effect */
.btn-3d:hover {
  transform: translateY(2px);
  color: #fff;
  box-shadow:
    0 4px 0 #8c6f1f,
    0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Click Effect */
.btn-3d:active {
  transform: translateY(6px);
  box-shadow:
    0 0px 0 #8c6f1f,
    0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Shine Effect */
.btn-3d::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-3d:hover::before {
  left: 125%;
}

/* start scrool code  */
/* WRAPPER */
/* WRAPPER */
.scroll-wrapper {
  overflow: hidden;
  position: relative;
  padding: 20px;
}

/* TRACK */
.scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.scroll-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.hg {
  width: 25%;   /* card width same */
  height: 500px;      /* card height same */
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.hg img {
  pointer-events: none;
  user-select: none;
   min-width: 360px;   /* card width same */
  height: 500px; 
    object-fit: cover; 
}

.hg-info {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 15px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* BUTTONS */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.scroll-btn.left { left: 10px; }
.scroll-btn.right { right: 10px; }

.scroll-btn:hover {
  background: #000;
}

/* video css Stories that move
like */

#centertextimoniyals {
  width: 150px;
  height: 40%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

/* navbar css button close menu niche*/

#overlay-close1 {
    position: fixed;
    top: 150px;
    right: 25px;
    z-index: 9999;

    background: transparent;
    color: #fff;
    border: 1px solid #c9a45c; /* gold touch */
    padding: 8px 16px;

    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;

    transition: 0.3s ease;
}

#overlay-close1:hover {
    background: #c9a45c;
    color: #000;
}

#menusize
{
font-size: 40px;
}