/* =========================================================
   Jyoti Wed Story — Photography Website
   Premium light-editorial theme · warm ivory + ink + gold
   Cormorant Garamond (display) · Jost (sans)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg:            #f5f2ec;   /* warm ivory canvas */
  --bg-soft:       #ece6db;   /* sand — alternating sections */
  --bg-elev:       #fffdf8;   /* cards / surfaces */
  --navy:          #141c28;   /* deep ink-navy (footer / dark accents) */

  /* Scrolled nav pill — deep ink-navy glass. The logo mark is gold on
     transparent, so it disappeared against the old ivory glass; navy is
     also the logo's own background colour, so the mark reads properly. */
  --surface-glass: rgba(18, 26, 38, 0.86);
  --line:          rgba(32, 28, 22, 0.12);
  --line-strong:   rgba(32, 28, 22, 0.20);

  --text:          #211e18;   /* primary ink (warm near-black) */
  --text-dim:      #5a544a;   /* secondary */
  --text-mute:     #948d7f;   /* muted / labels */

  --gold:          #9c7736;   /* antique gold that reads on ivory */
  --gold-2:        #c19a52;   /* lighter gold (on dark) */
  --gold-deep:     #7c5d26;
  --gold-soft:     rgba(156, 119, 54, 0.10);
  --champagne:     #efe4cc;   /* light warm — for on-dark text */

  --radius:        6px;
  --radius-sm:     4px;
  --shadow:        0 30px 70px rgba(60, 48, 28, 0.14);
  --shadow-soft:   0 14px 34px rgba(60, 48, 28, 0.09);

  --ff-serif:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-sans:   "Jost", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-script: "Cormorant Garamond", Georgia, serif;

  --nav-h: 92px;
  --max:   1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
html, body { width: 100%; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 500; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

::selection { background: var(--gold); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: #cbbfa8; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 44px, var(--max)); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 150px) 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}
.section-head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
.section-head p { color: var(--text-dim); font-size: 1.05rem; font-weight: 300; }
.text-gold { color: var(--gold); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px;
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-size: .74rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 30px rgba(156, 119, 54, 0.28);
}
.btn--gold:hover { background: var(--gold-deep); box-shadow: 0 18px 40px rgba(156, 119, 54, 0.36); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height .45s ease;
}
/* Subtle top scrim so nav stays legible over bright photos; fades once the glass pill appears */
.site-header::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 160px; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,20,26,.55) 0%, rgba(18,20,26,.18) 55%, rgba(18,20,26,0) 100%);
  transition: opacity .45s ease;
}
.site-header.scrolled::before { opacity: 0; }
.site-header.scrolled { height: 84px; }
.nav {
  /* The header runs wider than --max on purpose: tight side gutters push the
     logo and the Book Now button out to the edges, opening up the middle. */
  width: min(100% - 32px, 1520px);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 0;
  transition: width .45s cubic-bezier(.6,.05,.2,1), padding .45s ease,
              background .45s ease, border-color .45s ease, box-shadow .45s ease;
}
/* Floating glass "pill" once scrolled */
.site-header.scrolled .nav {
  width: min(100% - 40px, 1440px);
  padding: 10px 14px 10px 24px;
  background: var(--surface-glass);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-color: rgba(193, 154, 82, 0.28);
  box-shadow: 0 18px 46px rgba(10, 14, 22, 0.32);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 52px; height: 52px; object-fit: contain;
  transition: transform .5s ease;
}
.brand:hover .brand__mark { transform: rotate(6deg) scale(1.05); }
.brand__name { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600; letter-spacing: .01em; color: #fff; transition: color .45s ease; }
.brand__name span { color: var(--gold-2); }
.brand__tag { display: block; font-family: var(--ff-sans); font-size: .54rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 3px; transition: color .45s ease; }
/* scrolled → the pill is dark, so brand + nav text stay light throughout */
.scrolled .brand__name span { color: var(--gold-2); }
/* the compact pill has no room for the tagline once Videography + socials are in */
.scrolled .brand__tag { display: none; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-family: var(--ff-sans);
  font-size: .74rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  border-radius: 4px;
  transition: color .3s ease;
}
.nav__link:hover, .nav__link.active { color: #fff; }
.nav__link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown { position: relative; }
/* No `color: inherit` here — it would out-cascade .nav__link and render the
   toggle in body ink, which is unreadable on the dark nav. */
.dropdown__toggle { display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 0; cursor: pointer; }
.dropdown__toggle .chev { transition: transform .3s ease; font-size: .7em; }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 256px;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.dropdown::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .chev { transform: rotate(180deg); }
.dropdown a {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 15px; border-radius: 4px;
  font-family: var(--ff-sans); font-size: .82rem; letter-spacing: .04em; color: var(--text-dim);
  transition: background .22s ease, color .22s ease, padding-left .22s ease;
}
.dropdown a i { color: var(--gold); font-size: .95rem; width: 20px; text-align: center; }
.dropdown a:hover { background: var(--gold-soft); color: var(--text); padding-left: 22px; }

/* Social icons in the nav */
.nav__socials { display: flex; align-items: center; gap: 4px; margin-left: 10px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.22); }
.nav__socials a {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; font-size: .92rem;
  color: rgba(255,255,255,.72);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.nav__socials a:hover { color: #fff; background: var(--gold); transform: translateY(-2px); }

/* Header Book-Now: rounded pill so it sits properly inside the cylinder nav */
.nav__cta { margin-left: 12px; border-radius: 100px; padding: 12px 26px; font-size: .7rem; box-shadow: none; }
.nav__cta:hover { box-shadow: 0 10px 24px rgba(156, 119, 54, 0.32); }
.scrolled .nav__cta { padding: 11px 24px; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.burger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease, background .3s ease; }
/* the overlay menu is light ivory, so the X must go dark once open */
.burger.open span, .scrolled .burger.open span { background: var(--text); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO  (full-bleed photo, light text)
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
/* Ken Burns: the live slide keeps drifting in for its whole turn, so the
   hero never sits still. Duration is matched to heroSlider()'s interval. */
.hero__slide.active { opacity: 1; animation: kenburns 7.5s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.09) translateY(-1%); }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(18,20,26,.42) 0%, rgba(18,20,26,.2) 42%, rgba(18,20,26,.78) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(18,20,26,0) 48%, rgba(18,20,26,.48) 100%);
}
.hero__inner { position: relative; z-index: 2; text-align: center; width: 100%; padding-top: var(--nav-h); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 20px; border-radius: 100px; margin-bottom: 30px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-family: var(--ff-sans); font-size: .66rem; font-weight: 400; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.85);
}
.hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 12px var(--gold-2); }
.hero__script { display: block; font-family: var(--ff-script); font-style: italic; font-weight: 400; color: var(--gold-2); font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.1; margin-bottom: 6px; }
.hero h1 { font-family: "Fraunces", var(--ff-serif); font-optical-sizing: auto; font-size: clamp(2.8rem, 7.4vw, 5.8rem); font-weight: 500; letter-spacing: -.015em; margin-bottom: 24px; color: #fff; }
.hero h1 em { font-style: italic; font-weight: 500; }
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.14rem); font-weight: 300; color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto 40px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn--ghost, .page-hero .btn--ghost, .cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero .btn--ghost:hover, .page-hero .btn--ghost:hover, .cta .btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }

/* =========================================================
   STATS
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-elev); }
.stat { text-align: center; padding: 44px 20px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--ff-serif); font-weight: 500; font-size: clamp(2.6rem, 4.4vw, 3.6rem); color: var(--gold); line-height: 1; }
.stat__label { font-family: var(--ff-sans); font-size: .72rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); margin-top: 14px; }

/* =========================================================
   ABOUT (split)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 84px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split__media .badge-float {
  position: absolute; bottom: -28px; right: -20px;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow-soft);
  text-align: center;
}
.split__media .badge-float b { font-family: var(--ff-serif); font-weight: 600; color: var(--gold); font-size: 2.1rem; display: block; line-height: 1; }
.split__media .badge-float span { font-family: var(--ff-sans); font-size: .66rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); }
.split h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.split p { color: var(--text-dim); font-weight: 300; }
.split strong { font-weight: 500; color: var(--text); }
.check-list { margin: 26px 0 34px; display: grid; gap: 15px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-dim); font-weight: 300; }
.check-list i { color: var(--gold); margin-top: 6px; font-size: .85rem; }

/* =========================================================
   SERVICES / CATEGORY CARDS
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pcard {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
}
.pcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s cubic-bezier(.2,.6,.2,1); }
/* Scrim kept as light as the text will allow — these are the photographs,
   not a background. */
.pcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18,20,26,0) 42%, rgba(18,20,26,.5) 72%, rgba(18,20,26,.86) 100%); }
.pcard:hover img { transform: scale(1.07); }
.pcard__body { padding: 30px; width: 100%; color: #fff; transform: translateY(8px); transition: transform .45s ease; }
.pcard:hover .pcard__body { transform: translateY(0); }
.pcard__tag { font-family: var(--ff-sans); font-size: .66rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2); }
.pcard h3 { font-size: 1.9rem; font-weight: 500; margin: 8px 0 4px; color: #fff; }
.pcard__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--champagne); opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease; }
.pcard:hover .pcard__link { opacity: 1; transform: translateY(0); }

/* =========================================================
   WHY US / FEATURES
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  padding: 44px 36px; border-radius: var(--radius);
  background: var(--bg-elev); border: 1px solid var(--line);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.feature__icon { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); font-family: var(--ff-serif); font-size: 1.5rem; margin-bottom: 24px; }
.feature h3 { font-size: 1.5rem; font-weight: 600; }
.feature p { color: var(--text-dim); font-weight: 300; margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
/* Carousel */
.tslider { position: relative; }
.tslider__track {
  display: flex; align-items: stretch; gap: 26px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 10px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.tslider__track::-webkit-scrollbar { display: none; }
.tslider__track .tcard { flex: 0 0 calc((100% - 52px) / 3); scroll-snap-align: start; }
.tslider__nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }
.tslider__btn {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: transparent; color: var(--text);
  display: grid; place-items: center; font-size: .9rem;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.tslider__btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }

.tcard {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.tcard p { flex: 1; }
.tcard .stars { color: var(--gold); margin-bottom: 18px; letter-spacing: 3px; font-size: .9rem; }
.tcard p { font-family: var(--ff-serif); font-size: 1.28rem; line-height: 1.5; color: var(--text); font-style: italic; font-weight: 400; }
.tcard__who { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.tcard__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; font-family: var(--ff-serif); font-weight: 600; }
.tcard__who b { display: block; font-family: var(--ff-sans); font-size: .92rem; font-weight: 500; }
.tcard__who span { font-family: var(--ff-sans); font-size: .76rem; color: var(--text-mute); }

/* =========================================================
   CTA band  (dark photo, light text)
   ========================================================= */
.cta {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  border-radius: var(--radius);
  padding: clamp(60px, 9vw, 110px) 30px;
  background:
    linear-gradient(rgba(18,20,26,.72), rgba(18,20,26,.82)),
    url("../images/haldi/03.jpg") center/cover;
}
.cta .eyebrow { color: var(--gold-2); }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; }
.cta h2 .text-gold { color: var(--gold-2); }
.cta p { color: rgba(255,255,255,.8); font-weight: 300; max-width: 580px; margin: 0 auto 34px; }

/* =========================================================
   PAGE HEADER (inner pages) — dark photo, light text
   ========================================================= */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 100px) 0 100px; text-align: center; overflow: hidden; color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(rgba(18,20,26,.42), rgba(18,20,26,.72)), var(--ph-img, none) center/cover;
}
.page-hero .eyebrow { color: var(--gold-2); }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 500; color: #fff; }
.breadcrumb { display: inline-flex; gap: 10px; align-items: center; color: rgba(255,255,255,.7); font-family: var(--ff-sans); font-size: .78rem; letter-spacing: .12em; }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb .sep { color: var(--gold-2); }

/* =========================================================
   GALLERY GRID (masonry)
   ========================================================= */
.gallery { columns: 3; column-gap: 20px; }
.gallery__item {
  break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: zoom-in;
  background: var(--bg-soft);
}
.gallery__item img { width: 100%; transition: transform 1.1s cubic-bezier(.2,.6,.2,1), filter .6s ease; }
/* Hover: a gentle push-in and a gold-tinted veil rising from the bottom —
   far kinder to the photograph than a flat grey wash. */
.gallery__item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,20,26,0) 45%, rgba(18,20,26,.62) 100%);
  opacity: 0; transition: opacity .45s ease;
}
.gallery__item::before {
  content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; z-index: 2; right: 16px; bottom: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; font-size: .9rem;
  color: #fff; background: rgba(156,119,54,.9);
  opacity: 0; transform: translateY(10px) scale(.85);
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.8,.3,1);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover::before { opacity: 1; transform: translateY(0) scale(1); }
.gallery__item:hover img { transform: scale(1.06); }

/* Homepage "Selected Frames" — art-directed mosaic, not a masonry.
   Cells are deliberately sized, so photos are picked per slot in index.html. */
.mosaic {
  columns: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 208px; gap: 16px;
}
.mosaic .gallery__item { margin: 0; height: 100%; border-radius: var(--radius); }
.mosaic .gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.mosaic .m-a { grid-column: span 2; grid-row: span 2; }
.mosaic .m-c { grid-row: span 2; }
.mosaic .m-e { grid-column: span 2; }
/* caption rides in with the veil */
.mosaic .gallery__item .m-cap,
.gallery__item .m-cap {
  position: absolute; z-index: 2; left: 20px; right: 64px; bottom: 18px;
  font-family: var(--ff-sans); font-size: .78rem; font-weight: 300;
  letter-spacing: .04em; color: #fff;
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.8,.3,1);
}
.gallery__item:hover .m-cap { opacity: 1; transform: translateY(0); }

/* Lightbox (stays dark for viewing) */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(10,10,12,.97); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; animation: fade .3s ease; }
.lightbox__fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lightbox img {
  max-width: 92vw; max-height: 82vh; border-radius: 4px; box-shadow: 0 40px 90px rgba(0,0,0,.6);
  opacity: 0; transform: scale(.985);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.3,1);
}
.lightbox img.in { opacity: 1; transform: scale(1); }
.lightbox__meta { display: flex; align-items: center; gap: 16px; font-family: var(--ff-sans); }
.lightbox__count { font-size: .72rem; letter-spacing: .24em; color: var(--gold-2); font-weight: 500; }
.lightbox__cap { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.62); }
.lightbox__meta:has(.lightbox__cap:empty) .lightbox__count { margin: 0 auto; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; transition: background .25s ease, color .25s ease; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 24px; }
.lightbox__nav.next { right: 24px; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* Filter chips */
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.chip { padding: 11px 24px; border-radius: 100px; border: 1px solid var(--line-strong); background: transparent; color: var(--text-dim); font-family: var(--ff-sans); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; transition: all .25s ease; }
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.info-card { display: flex; gap: 18px; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-elev); margin-bottom: 16px; transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.info-card:hover { border-color: var(--line-strong); transform: translateX(4px); box-shadow: var(--shadow-soft); }
.info-card__icon { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-size: 1.1rem; }
.info-card h4 { margin: 0 0 5px; font-family: var(--ff-sans); font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute); }
.info-card p, .info-card a { margin: 0; color: var(--text); font-size: 1rem; font-weight: 300; }
.info-card a:hover { color: var(--gold); }

.form-card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-soft); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--ff-sans); font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 16px; border-radius: var(--radius-sm);
  background: #fbf9f4; border: 1px solid var(--line-strong); color: var(--text);
  font-family: var(--ff-sans); font-weight: 300; font-size: .95rem; transition: border-color .25s ease, background .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #b3ab9c; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field select option { background: #fff; }
.form-note { font-family: var(--ff-sans); font-size: .82rem; color: var(--text-mute); font-weight: 300; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 34px; }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(.2) contrast(1.03); }

/* =========================================================
   FOOTER (deep ink-navy, light text)
   ========================================================= */
.site-footer { background: var(--navy); color: rgba(245,242,236,.72); border-top: 3px solid var(--gold); padding-top: 84px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__name span { color: var(--gold-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.footer-brand p { color: rgba(245,242,236,.6); font-weight: 300; font-size: .96rem; max-width: 320px; }
.footer h4 { font-family: var(--ff-sans); font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 24px; }
.footer-links li { margin-bottom: 13px; }
.footer-links a { color: rgba(245,242,236,.65); font-weight: 300; font-size: .94rem; transition: color .25s ease, padding-left .25s ease; }
.footer-links a:hover { color: var(--gold-2); padding-left: 6px; }
.footer-contact li { display: flex; gap: 13px; color: rgba(245,242,236,.65); font-weight: 300; font-size: .94rem; margin-bottom: 15px; }
.footer-contact i { color: var(--gold-2); margin-top: 5px; }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(245,242,236,.2); color: rgba(245,242,236,.7); transition: all .3s ease; }
.socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(245,242,236,.12); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; color: rgba(245,242,236,.5); font-family: var(--ff-sans); font-size: .84rem; font-weight: 300; }
.footer-bottom a:hover { color: var(--gold-2); }

/* Floating action stack — Call sits directly above WhatsApp */
.float-stack {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  display: flex; flex-direction: column; gap: 14px;
}
.float-btn {
  position: relative;
  width: 58px; height: 58px; border-radius: 50%;
  color: #fff; display: grid; place-items: center; font-size: 1.55rem;
  transition: transform .3s ease;
}
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid currentColor; animation: pulse 2s infinite; }
.call-float { background: var(--gold); box-shadow: 0 12px 30px rgba(156,119,54,.42); font-size: 1.25rem; }
.wa-float   { background: #25d366; box-shadow: 0 12px 30px rgba(37,211,102,.4); }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

.float-btn__tip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap; background: var(--navy); color: #fff;
  font-family: var(--ff-sans); font-size: .64rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 3px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.float-btn:hover .float-btn__tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* =========================================================
   VIDEOGRAPHY — film cards + player
   ========================================================= */
.films { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.film {
  position: relative; border: 0; padding: 0; background: none;
  border-radius: var(--radius); overflow: hidden; isolation: isolate;
  aspect-ratio: 16 / 10; display: flex; align-items: flex-end;
  color: #fff; text-align: left; cursor: pointer;
}
.film img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s cubic-bezier(.2,.6,.2,1); }
.film::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18,20,26,.18) 30%, rgba(18,20,26,.88) 100%); }
.film:hover img { transform: scale(1.06); }
.film__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.05rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background .3s ease, border-color .3s ease, transform .35s ease;
}
.film__play i { margin-left: 3px; }
.film:hover .film__play { background: var(--gold); border-color: var(--gold); transform: translate(-50%, -50%) scale(1.1); }
.film__body { display: block; width: 100%; padding: 24px 26px; }
.film__tag { display: block; font-family: var(--ff-sans); font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2); }
.film__title { display: block; font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 500; line-height: 1.15; margin-top: 7px; }
.film__meta { display: block; font-family: var(--ff-sans); font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 4px; }

.films-empty {
  max-width: 580px; margin-inline: auto; text-align: center;
  padding: 62px 34px; border: 1px dashed var(--line-strong);
  border-radius: var(--radius); background: var(--bg-elev);
}
.films-empty__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; border-radius: 100px;
  background: var(--gold-soft); border: 1px solid rgba(156,119,54,.3);
  font-family: var(--ff-sans); font-size: .66rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
}
.films-empty h3 { font-size: 1.8rem; margin: 22px 0 8px; }
.films-empty p { color: var(--text-dim); font-weight: 300; margin-bottom: 28px; }

.vplayer { position: fixed; inset: 0; z-index: 2000; background: rgba(12,12,14,.95); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 30px; }
.vplayer.open { display: flex; animation: fade .3s ease; }
.vplayer__frame { width: min(100%, 1100px); aspect-ratio: 16 / 9; border-radius: 4px; overflow: hidden; background: #000; box-shadow: var(--shadow); }
.vplayer__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vplayer__close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; transition: background .25s ease, border-color .25s ease; }
.vplayer__close:hover { background: var(--gold); border-color: var(--gold); }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* Six nav items + socials + CTA get tight before the burger kicks in —
   drop the social icons first (they're still in the footer). */
@media (max-width: 1180px) and (min-width: 821px) {
  .nav__link { padding: 10px 11px; letter-spacing: .12em; }
  .nav__socials { display: none; }
}
@media (max-width: 1024px) {
  .cards, .feature-grid, .films { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .tslider__track .tcard { flex-basis: calc((100% - 26px) / 2); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .gallery { columns: 2; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  /* No glass pill on mobile: putting backdrop-filter on .nav would trap the
     fixed full-screen menu inside it. Use a plain bar background instead. */
  .site-header.scrolled { background: rgba(18, 26, 38, 0.97); box-shadow: 0 6px 24px rgba(10, 14, 22, 0.28); }
  .site-header.scrolled::before { opacity: 0; }
  .site-header.scrolled .nav {
    width: min(100% - 32px, var(--max));
    padding: 0; background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border: 0; border-radius: 0; box-shadow: none;
  }

  /* Full-screen fade-in overlay menu (stays inside viewport — no horizontal overflow) */
  .nav__menu {
    position: fixed; inset: 0; width: 100%;
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    background: rgba(255, 253, 248, 0.985); backdrop-filter: blur(24px);
    padding: calc(var(--nav-h) + 10px) 26px 40px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
    overflow-y: auto;
  }
  .nav__menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__link { padding: 14px 12px; font-size: 1.05rem; letter-spacing: .18em; color: var(--text-dim); text-align: center; }
  .nav__link:hover, .nav__link.active { color: var(--text); }
  .nav__link::after { display: none; }
  .burger { display: flex; z-index: 1001; }
  .has-dropdown { display: flex; flex-direction: column; align-items: center; width: 100%; text-align: center; }
  .dropdown__toggle { justify-content: center; }
  .dropdown {
    position: static; left: auto; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: 0; background: transparent;
    margin: 2px 0 4px; padding: 0; min-width: 0; width: 100%;
    display: flex; flex-direction: column; align-items: center;
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
  }
  .dropdown a { justify-content: center; width: auto; padding: 11px 12px; font-size: .9rem; letter-spacing: .04em; color: var(--text-mute); }
  .dropdown a:hover { background: transparent; color: var(--gold); padding-left: 12px; }
  .dropdown a i { display: none; }
  .dropdown::before { display: none; }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { transform: none; }
  .has-dropdown.open .dropdown { max-height: 520px; }
  .has-dropdown:hover .chev { transform: none; }
  .has-dropdown.open .chev { transform: rotate(180deg); }
  .nav__cta-li { order: 4; }
  .nav__cta { margin: 16px 0 0; }
  /* socials sit below the Book Now button in the overlay menu */
  .nav__socials { order: 5; margin: 26px 0 0; padding: 22px 0 0; border-left: 0; border-top: 1px solid var(--line); gap: 10px; }
  .nav__socials a { width: 46px; height: 46px; font-size: 1.05rem; border: 1px solid var(--line-strong); color: var(--text-dim); }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .split__media .badge-float { right: 12px; bottom: -22px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --nav-h: 76px; }
  .cards, .feature-grid, .stats, .films { grid-template-columns: 1fr; }
  .float-stack { right: 16px; bottom: 16px; gap: 12px; }
  .float-btn { width: 52px; height: 52px; font-size: 1.4rem; }
  .call-float { font-size: 1.1rem; }
  .float-btn__tip { display: none; }
  .tslider__track .tcard { flex-basis: 100%; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .gallery { columns: 1; }
  /* the mosaic stays two-up on phones — one column of seven would be a trek */
  .mosaic { grid-auto-rows: 132px; gap: 10px; }
  .mosaic .m-cap { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero__badge { font-size: .58rem; letter-spacing: .18em; padding: 8px 14px; }
  .brand__name { font-size: 1.24rem; }
  .brand__tag { display: none; }
  .brand__mark { width: 44px; height: 44px; }
  .section-head { margin-bottom: 44px; }
  .split__media .badge-float { right: 10px; padding: 14px 18px; }
  .split__media .badge-float b { font-size: 1.6rem; }
  .contact-grid { gap: 34px; }
  .form-card { padding: 28px 22px; }
  .map-embed iframe { height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
