/* ==========================================================================
   FILMSGENIC WEDDINGS — Luxury Wedding Photography & Cinematography
   Editorial, grain-textured.
   ========================================================================== */

/* ---------- 1. DESIGN TOKENS ---------- */
:root{
  --bg:            #F5F1EA;
  --bg-secondary:  #EFE8DE;
  --ink:           #1C1C1C;
  --muted:         #6E6E6E;
  --accent:        #B08D57;
  --accent-dark:   #8C6F42;
  --border:        #D8D2C8;
  --white:         #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --radius: 8px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: .3s;
  --dur-med: .6s;
  --dur-slow: 1.1s;

  --header-h: 92px;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
ul, ol{ list-style: none; }
button{ font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea{ font: inherit; }
h1,h2,h3,h4,h5,h6{ font-family: var(--font-display); font-weight: 400; }

body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* ---------- 3. PAPER GRAIN TEXTURE (SVG noise, no images) ---------- */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background: radial-gradient(transparent 60%, rgba(28,28,28,.05) 100%);
}
/* using a radial fade for vignette only */

.container{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- 4. TYPOGRAPHY ---------- */
.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.section-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}
.section-head{ max-width: 640px; margin-bottom: 64px; }
.section-head--center{ margin-inline: auto; text-align: center; max-width: 620px; }
.section-head--split{
  display: flex; flex-wrap: wrap; gap: 32px 64px; justify-content: space-between; align-items: flex-end;
  max-width: none;
}
.section-head__note{ max-width: 320px; color: var(--muted); font-size: 15px; padding-bottom: 6px; }

.contact__info p{ max-width: 480px; }
.about__copy p{ max-width: 100%; margin-bottom: 18px; }

/* ---------- 5. BUTTONS ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn--solid{ background: var(--ink); color: var(--bg); }
.btn--solid:hover{ background: var(--accent); transform: translateY(-2px); }
.btn--outline{ border-color: var(--ink); color: var(--ink); }
.btn--outline:hover{ background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn--line{ border-color: var(--accent); color: var(--accent); padding: 12px 22px; }
.btn--line:hover{ background: var(--accent); color: var(--white); }
.btn--whatsapp{
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--whatsapp:hover{
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn__icon-whatsapp{
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.btn--sm{ font-size: 11px; padding: 11px 20px; }
.btn--block{ width: 100%; margin-top: 8px; }

.text-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--ink); margin-top: 8px;
}
.text-link span{ transition: transform var(--dur-fast) var(--ease); display: inline-block; color: var(--accent); }
.text-link:hover span{ transform: translateX(6px); }

/* ---------- 6. PLACEHOLDER IMAGES (no gradients — texture via noise + tone) ---------- */
.placeholder-img{
  position: relative;
  width: 100%; height: 100%;
  min-height: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.placeholder-img::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 2px, rgba(28,28,28,.02) 2px 3px);
}
.placeholder-img span{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  letter-spacing: .02em;
  z-index: 1;
}
.placeholder-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.placeholder-img--portrait{ aspect-ratio: 4/5; }
.placeholder-img--square{ aspect-ratio: 1/1; }
.placeholder-img--wide{ aspect-ratio: 16/9; }
.placeholder-img--about{ aspect-ratio: 7016 / 4961; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background var(--dur-med) var(--ease), height var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(245,241,234,.92);
  backdrop-filter: blur(10px);
  height: 76px;
  border-bottom-color: var(--border);
}
.site-header__inner{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.brand{ display: flex; align-items: center; gap: 12px; }
.brand__mark{
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .06em;
  color: var(--accent);
  border: 1px solid var(--accent);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand__word{
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  display: flex; flex-direction: column;
}
.brand__word em{
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .2em;
}

.main-nav ul{ display: flex; align-items: center; gap: 38px; }
.nav-link{
  position: relative;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 6px;
}
.nav-link::after{
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--accent);
  transition: width var(--dur-fast) var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after{ width: 100%; }
.nav-link.is-active{ color: var(--accent); }

.site-header__actions{ display: flex; align-items: center; gap: 20px; }

/* ---------- Header Dropdown Menu ---------- */
.header-dropdown{ position: relative; display: inline-block; }
.header-dropdown__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.dropdown-chevron{
  transition: transform var(--dur-fast) var(--ease);
}
.header-dropdown:hover .dropdown-chevron,
.header-dropdown.is-open .dropdown-chevron{
  transform: rotate(180deg);
}

.header-dropdown__menu{
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 290px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(28,28,28,.14);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast) var(--ease);
  z-index: 600;
}
.header-dropdown:hover .header-dropdown__menu,
.header-dropdown.is-open .header-dropdown__menu,
.header-dropdown:focus-within .header-dropdown__menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.header-dropdown__item:hover{
  background: var(--bg-secondary);
  color: var(--accent);
}
.header-dropdown__item--featured{
  background: rgba(176,141,87,0.07);
  padding: 12px 18px;
}
.header-dropdown__item--featured strong{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.header-dropdown__item--featured small{
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
  margin-top: 2px;
}
.header-dropdown__divider{
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}
.dropdown-flag{ font-size: 16px; flex-shrink: 0; }

.hamburger{
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 510;
  flex-shrink: 0;
}
.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity: 0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset: 0;
  z-index: 480;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--header-h) + 20px) var(--gutter) 60px;
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open{ transform: translateY(0); }
.mobile-menu ul{ display: flex; flex-direction: column; gap: 6px; }
.mobile-link{
  font-family: var(--font-display);
  font-size: 32px;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.mobile-sublinks{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 16px 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-sublinks a{
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--dur-fast) var(--ease);
}
.mobile-sublinks a:hover{
  color: var(--accent);
}


/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  position: relative;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 560px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__media{
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 72%;
  transform-origin: center 72%;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom{
  from{ transform: scale(1.05); }
  to{ transform: scale(1.15); }
}
.hero__content{
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 68px;
  color: var(--bg);
  text-align: center;
  margin-inline: auto;
  max-width: 980px;
}
.hero__content .eyebrow{ color: var(--accent); }
.hero__title{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 74px);
  line-height: 1.12;
  color: var(--bg);
}
.hero__title span{ display: block; }
.hero__amp{
  font-style: italic;
  color: var(--accent);
  font-size: .55em;
  margin: 6px 0;
}
.hero__banner-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 28px;
}
.hero__banner-img{
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.65));
}
.hero__cta{
  margin-top: 20px;
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.hero__cta .btn--outline{ border-color: var(--bg); color: var(--bg); }
.hero__cta .btn--outline:hover{ background: var(--bg); color: var(--ink); }
.hero__cta .btn--solid{ background: var(--bg); color: var(--ink); }
.hero__cta .btn--solid:hover{ background: var(--accent); color: var(--bg); }

.hero__scroll{
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--bg);
}
.hero__scroll-line{
  width: 1px; height: 46px;
  background: rgba(245,241,234,.5);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after{
  content: "";
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ top: -100%; } 60%{ top: 100%; } 100%{ top: 100%; }
}
.hero__scroll-text{ font-size: 10px; letter-spacing: .25em; text-transform: uppercase; }

/* reveal-up base state, animated via JS (adds .is-visible) */
.reveal-up{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--d, 0) * .12s);
}
.reveal-up.is-visible{ opacity: 1; transform: translateY(0); }

/* When GSAP is active, GSAP controls smooth hardware-accelerated animations */
.gsap-active .reveal-up,
.gsap-active .gallery-item {
  transition: none !important;
}

.gsap-active .hero__img {
  will-change: transform;
}


/* =========================================================================
   EDITORIAL — BEFORE / AFTER SLIDER
   ========================================================================= */
.editorial{
  padding: 100px 0;
  background: var(--bg);
}
.editorial__sub{
  font-size: 16px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: .02em;
  line-height: 1.6;
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.ba-slider{
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 52px auto 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
}
.ba-slider__before,
.ba-slider__after{
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-slider__after{
  clip-path: inset(0 50% 0 0);
}
.ba-slider__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}
.ba-slider__label{
  position: absolute;
  bottom: 18px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bg);
  background: rgba(20,20,20,.55);
  padding: 6px 14px;
  border-radius: 4px;
  pointer-events: none;
}
.ba-slider__label--before{ left: 18px; }
.ba-slider__label--after{ right: 18px; }
.ba-slider__divider{
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(245,241,234,.75);
  z-index: 10;
  cursor: col-resize;
}
.ba-slider__handle{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
  transition: transform var(--dur-fast) var(--ease);
}
.ba-slider__handle:hover{
  transform: translate(-50%, -50%) scale(1.12);
}
@media (max-width: 768px){
  .editorial{ padding: 80px 0; }
  .ba-slider{ aspect-ratio: 2 / 3; max-width: 420px; margin-top: 36px; }
}
@media (max-width: 560px){
  .ba-slider{ aspect-ratio: 2 / 3; max-width: 100%; }
}


/* =========================================================================
   ABOUT
   ========================================================================= */
.about{
  position: relative;
  padding: 140px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}
.about__watermark{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: min(48vw, 620px);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176,141,87,.14);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.about__grid{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about__media{ position: relative; width: 100%; }

@media (min-width: 1081px){
  .about__grid > .about__media{
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

@media (max-width: 1080px){
  .about__grid > .about__media{
    position: relative !important;
    top: auto !important;
    align-self: auto !important;
  }
}
.about__single-box{
  position: relative;
  width: 100%;
  aspect-ratio: 3013 / 4519;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 48px -12px rgba(28,28,28,.16);
  background: var(--bg-secondary);
}
.about__single-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about__stats{
  display: flex; gap: 44px;
  margin: 36px 0 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.stat{ display: flex; flex-direction: column; }
.stat__num{ font-family: var(--font-display); font-size: 40px; color: var(--accent); line-height: 1; }
.stat__label{ font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* =========================================================================
   PORTFOLIO / MASONRY
   ========================================================================= */
.portfolio{ padding: 140px 0; }
.filter-bar{
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}
.filter-btn{
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  transition: all var(--dur-fast) var(--ease);
}
.filter-btn:hover{ border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active{ background: var(--ink); color: var(--bg); border-color: var(--ink); }

.masonry{
  columns: 3 260px;
  column-gap: 24px;
}
.masonry__item{
  position: relative;
  break-inside: avoid;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}
.masonry__item .placeholder-img, .masonry__item img{ min-height: 300px; width: 100%; object-fit: cover; display: block; transition: transform 1s var(--ease); }
.masonry__item--tall .placeholder-img, .masonry__item--tall img{ min-height: 420px; }
.masonry__item--wide .placeholder-img, .masonry__item--wide img{ min-height: 260px; }
.masonry__item:hover .placeholder-img, .masonry__item:hover img{ transform: scale(1.08); }
.masonry__item.is-hidden{ display: none; }

.masonry__overlay{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  background: rgba(28,28,28,0);
  transition: background var(--dur-med) var(--ease);
}
.masonry__item:hover .masonry__overlay{ background: rgba(28,28,28,.42); }
.masonry__cat{
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0; transform: translateY(10px);
  transition: all var(--dur-med) var(--ease);
}
.masonry__title{
  font-family: var(--font-display); font-size: 24px; color: var(--bg);
  opacity: 0; transform: translateY(10px);
  transition: all var(--dur-med) var(--ease) .05s;
}
.masonry__item:hover .masonry__cat,
.masonry__item:hover .masonry__title{ opacity: 1; transform: translateY(0); }

/* =========================================================================
   PORTFOLIO GALLERY — plain uniform grid (matches farazmirzafilms.com/portfolio)
   ========================================================================= */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-flow: dense;
  gap: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--bg);
}
.gallery-item{
  display: block;
  padding: 0;
  border: 0;
  background: #0d0d0d;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  outline: none;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.gallery-item.is-revealed{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-item .placeholder-img{
  aspect-ratio: 2 / 3;
  min-height: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transition: transform .5s var(--ease);
  position: relative;
  background: #141414;
}
.gallery-item:hover .placeholder-img{ transform: scale(1.06); }
.gallery-item img,
.gallery-item .placeholder-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Landscape Gallery Card (Spans 2 columns) */
.gallery-item--landscape,
.gallery-item--wide{
  grid-column: span 2;
}
.gallery-item--landscape .placeholder-img,
.gallery-item--wide .placeholder-img{
  aspect-ratio: 4 / 3;
}

.lightbox{
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,8,.96);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s ease;
  z-index: 99999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox.is-open{ opacity: 1; visibility: visible; }

.lightbox__stage{
  width: min(92vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: scale(0.92);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.lightbox.is-open .lightbox__stage{
  transform: scale(1);
}

.lightbox__img{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 84vh;
  background: transparent;
  border: 0;
}
.lightbox__img img{
  max-width: 90vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.9);
  display: block;
  animation: lbZoomIn .28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lbZoomIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__info{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.lightbox__counter{
  color: var(--accent);
  font-weight: 500;
}

.lightbox__close{
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; line-height: 1; color: var(--bg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.lightbox__close:hover{
  background: var(--accent);
  color: var(--text-dark);
  transform: scale(1.08) rotate(90deg);
}

.lightbox__nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--bg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(6px);
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.lightbox__nav:hover{
  background: var(--accent);
  color: var(--text-dark);
  transform: translateY(-50%) scale(1.1);
}
.lightbox__nav--prev{ left: 24px; }
.lightbox__nav--next{ right: 24px; }

.video-modal__stage{
  width: min(90vw, 960px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-modal__wrapper{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.8);
  border: 1px solid rgba(255,255,255,.15);
}
.video-modal__wrapper iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal__footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg);
  padding: 0 4px;
}
.video-modal__title{
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bg);
  font-weight: 400;
}
.video-modal__yt-link{
  font-size: 13px;
  color: var(--accent);
  text-decoration: underline;
  transition: color var(--dur-fast);
}
.video-modal__yt-link:hover{
  color: var(--bg);
}

@media (max-width: 1300px){
  .gallery-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .gallery-item--landscape,
  .gallery-item--wide{
    grid-column: span 2;
  }
}
@media (max-width: 780px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-item--landscape,
  .gallery-item--wide{
    grid-column: span 2;
  }
  .gallery-item--landscape .placeholder-img,
  .gallery-item--wide .placeholder-img{
    aspect-ratio: 3 / 2;
  }
}
@media (max-width: 480px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .lightbox__nav{ padding: 10px 14px; font-size: 18px; }
  .lightbox__nav--prev{ left: 10px; }
  .lightbox__nav--next{ right: 10px; }
}

/* =========================================================================
   FILMS
   ========================================================================= */
.films{ padding: 140px 0; background: var(--bg-secondary); }
.films__grid{
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 56px;
  width: 100%;
}
.films__grid--split{
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.films__col-left,
.films__col-right{
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 861px){
  .films__grid--split{
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 36px;
    align-items: stretch;
  }
  .films__col-left{
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .films__col-left .film-card--lg{
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .films__col-left .film-card--lg .placeholder-img{
    height: 100%;
    min-height: 440px;
    max-height: 100%;
    aspect-ratio: auto;
  }
  .films__col-right{
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
  }
}
.film-title{
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
.film-card{ 
  position: relative; 
  overflow: hidden; 
  border: 1px solid var(--border); 
  border-radius: var(--radius);
  width: 100%; 
}
.film-card--lg{ 
  width: 100%; 
}
.film-card .placeholder-img,
.film-card--lg .placeholder-img{ 
  width: 100%; 
  aspect-ratio: 16 / 9; 
  min-height: 280px; 
  max-height: 540px; 
  transition: transform 1s var(--ease); 
}
.film-card:hover .placeholder-img{ transform: scale(1.04); }

.play-btn{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 74px; height: 74px;
  display: flex; align-items: center; justify-content: center;
}
.play-btn__ring{
  position: absolute; inset: 0;
  border: 1px solid var(--bg);
  border-radius: 50%;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.play-btn:hover .play-btn__ring{ transform: scale(1.15); background: rgba(245,241,234,.12); }
.play-btn__icon{
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--bg);
  margin-left: 4px;
}
.film-card__info{
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 24px 26px;
  color: var(--bg);
  background: rgba(28,28,28,.32);
}
.film-card__info h3{ font-family: var(--font-display); font-size: 22px; }
.film-card__info p{ font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,241,234,.75); margin-top: 4px; }

/* =========================================================================
   EXPERIENCE / TIMELINE
   ========================================================================= */
.experience{ padding: 140px 0; }
.timeline{ max-width: 780px; margin-inline: auto; }
.timeline__item{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid var(--border);
}
.timeline__item:last-child{ border-bottom: 1px solid var(--border); }
.timeline__num{
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
}
.timeline__body h3{ font-family: var(--font-display); font-size: 26px; margin-bottom: 10px; }
.timeline__body p{ max-width: 520px; }

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing{ padding: 140px 0; background: var(--bg-secondary); }
.pricing__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 352px));
  justify-content: center;
  gap: 54px 44px;
  margin-top: 56px;
  align-items: center;
}
.price-card{
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 46px 38px;
  display: flex; flex-direction: column;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.price-card:hover{ transform: translateY(-8px); box-shadow: 0 30px 60px -34px rgba(28,28,28,.3); }
.price-card--featured{ border-color: var(--accent); background: var(--ink); color: var(--bg); }
.price-card--featured .price-card__name,
.price-card--featured .price-card__price{ color: var(--bg); }
.price-card--featured .price-card__tag,
.price-card--featured .price-card__list li{ color: rgba(245,241,234,.72); }
.price-card--featured .price-card__list li::before{ color: var(--accent); }
.price-card__badge{
  position: absolute; top: -14px; left: 38px;
  background: var(--accent); color: var(--bg);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: 7px 14px; border-radius: 20px;
}
.price-card__name{ font-family: var(--font-display); font-size: 30px; }
.price-card__tag{ font-size: 13px; color: var(--muted); margin: 8px 0 26px; }
.price-card__price{
  font-family: var(--font-display); font-size: 34px; color: var(--ink);
  margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--border);
}
.price-card--featured .price-card__price{ border-bottom-color: rgba(245,241,234,.2); }
.price-card__price span{ font-family: var(--font-body); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.price-card__list{ flex: 1; margin-bottom: 30px; }
.price-card__list li{
  font-size: 14px; color: var(--muted);
  padding-left: 22px; position: relative;
  margin-bottom: 14px;
}
.price-card__list li::before{
  content: "—"; position: absolute; left: 0; color: var(--accent);
}

/* ---------- Top Selling Package Banner ---------- */
.top-selling-section{ padding: 80px 0 20px; background: var(--bg-secondary); }
.top-selling-card{
  position: relative;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 48px 44px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(28,28,28,.2);
}
.top-selling-card__badge{
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.top-selling-card__title{
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--bg);
  margin-bottom: 6px;
  line-height: 1.15;
}
.top-selling-card__subtitle{
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: .02em;
}
.top-selling-card__features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px 28px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,.14);
}
.top-selling-card__features li{
  font-size: 14px;
  color: rgba(245,241,234,.88);
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.top-selling-card__features li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}
.top-selling-card__action{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,.14);
}
.top-selling-card__price{
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--bg);
  line-height: 1;
}
.top-selling-card__price span{
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .08em;
  margin-right: 6px;
}

/* ---------- Category Headings & Package Tabs ---------- */
.pricing-cat-head{
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}
.pricing-cat-title{
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--ink);
}
.pricing-cat-tag{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.package-tabs{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.package-tab-btn{
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--bg);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.package-tab-btn:hover{
  border-color: var(--ink);
  color: var(--ink);
}
.package-tab-btn.is-active{
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ---------- Terms & Conditions Section ---------- */
.terms-section{
  padding: 100px 0 120px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.terms-box{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 54px 48px;
}
.terms-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px 44px;
  margin-top: 36px;
}
.terms-item{
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}
.terms-item p{ color: var(--ink); opacity: .88; }
.terms-num{
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  min-width: 26px;
}

/* ---------- Add-ons layout detail ---------- */
.addon-title-wrap{ display: flex; flex-direction: column; }
.addon-sub{ font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 2px; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials{ padding: 140px 0; }
.testimonial-track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card{
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 48px 34px 34px;
  position: relative;
}
.testimonial-card__mark{
  font-family: var(--font-display);
  font-size: 90px;
  color: var(--accent);
  line-height: .6;
  display: block;
  margin-bottom: 6px;
  opacity: .5;
}
.testimonial-card blockquote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.testimonial-card figcaption{ font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.testimonial-card figcaption span{ font-weight: 400; color: var(--muted); display: block; margin-top: 3px; font-size: 12px; }

/* =========================================================================
   INSTAGRAM
   ========================================================================= */
.instagram{ padding: 140px 0 150px; background: var(--bg-secondary); }
.insta-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 56px;
}
.insta-item{ position: relative; aspect-ratio: 1/1; overflow: hidden; display: block; }
.insta-item .placeholder-img{ min-height: 0; height: 100%; border-radius: 0; transition: transform .6s var(--ease); }
.insta-item:hover .placeholder-img{ transform: scale(1.08); }
.insta-item__icon{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 22px;
  background: rgba(28,28,28,0);
  opacity: 0;
  transition: all var(--dur-fast) var(--ease);
}
.insta-item:hover .insta-item__icon{ opacity: 1; background: rgba(28,28,28,.34); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact{ position: relative; padding: 140px 0 0; overflow: hidden; }
.about__watermark--right{ left: auto; right: -6%; transform: translateY(-50%); }
.contact__grid{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 80px;
  padding-bottom: 120px;
}
.contact__info p{ margin-bottom: 8px; }
.contact__details{ margin: 34px 0; }
.contact__details li{
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.contact__details li:last-child{ border-bottom: 1px solid var(--border); }
.contact__details span{ font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }

.socials{ display: flex; gap: 14px; }
.socials a{
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: .04em; font-weight: 700;
  transition: all var(--dur-fast) var(--ease);
  overflow: hidden;
}
.socials a img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0);
  transition: transform var(--dur-fast) var(--ease), filter var(--dur-fast) var(--ease);
}
.socials a:hover{ background: var(--ink); color: var(--bg); border-color: var(--ink); }
.socials a:hover img{ filter: brightness(0) invert(1); transform: scale(1.1); }

.contact__form{
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 44px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 20px; }
.field label{
  display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 9px; font-weight: 700;
}
.field input, .field textarea{
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 15px;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus{ outline: none; border-color: var(--accent); }
.form-note{ font-size: 13px; margin-top: 14px; color: var(--accent); min-height: 18px; }

.map-placeholder{
  height: 320px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  position: relative;
}
.map-placeholder::before{
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(28,28,28,.04) 0 1px, transparent 1px 60px),
                     repeating-linear-gradient(90deg, rgba(28,28,28,.04) 0 1px, transparent 1px 60px);
}
.map-placeholder span{ position: relative; z-index: 1; background: var(--bg); padding: 10px 20px; border: 1px solid var(--border); }

.map-container{
  width: 100%;
  height: 450px;
  margin-top: 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.map-container iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-link-btn{
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  z-index: 10;
}
.map-link-btn:hover{
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{
  background: var(--bg);
  color: var(--ink);
  padding-top: 70px;
  border-top: 1px solid var(--border);
}
.site-footer__inner{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.site-footer .brand__mark{ color: var(--accent); border-color: var(--accent); }
.site-footer .brand__word{ color: var(--ink); }
.site-footer .brand__word em{ color: var(--muted); }
.footer-nav{ display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a{ font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); font-weight: 600; transition: color var(--dur-fast); }
.footer-nav a:hover{ color: var(--accent); }

.footer-contact{ display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.footer-contact a{ font-size: 13px; color: var(--ink); letter-spacing: .02em; transition: color var(--dur-fast); }
.footer-contact a:hover{ color: var(--accent); }
.socials--footer a{ border-color: var(--border); color: var(--ink); background: transparent; }
.socials--footer a img{ filter: brightness(0); }
.socials--footer a:hover{ background: var(--accent); border-color: var(--accent); }
.socials--footer a:hover img{ filter: brightness(0) invert(1); transform: scale(1.1); }

.site-footer__bottom{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 26px 0;
  font-size: 12px;
  color: var(--muted);
}

/* =========================================================================
   BACK TO TOP + PRELOADER
   ========================================================================= */
.back-to-top{
  position: fixed; right: 26px; bottom: 26px; z-index: 400;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--dur-fast) var(--ease);
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top button{
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 26px -10px rgba(28,28,28,.5);
  transition: background var(--dur-fast) var(--ease);
}
.back-to-top button:hover{ background: var(--accent); }

.preloader{
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1), visibility .7s ease;
}
.preloader__mark{
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 76px);
  letter-spacing: .22em;
  text-indent: .22em;
  color: var(--accent);
  font-weight: 400;
  display: inline-block;
  animation: preloaderPulse 1.8s ease-in-out infinite;
}
@keyframes preloaderPulse{
  0%, 100%{ opacity: .4; transform: scale(0.95); }
  50%{ opacity: 1; transform: scale(1.05); }
}
.preloader.is-hidden{ opacity: 0; visibility: hidden; pointer-events: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px){
  .about__grid, .contact__grid{ grid-template-columns: 1fr; gap: 60px; }
  .about__frame--float{ position: static; width: 70%; margin-top: -60px; margin-left: auto; }
  .pricing__grid, .testimonial-track{ grid-template-columns: 1fr 1fr; }
  .insta-grid{ grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px){
  .main-nav{ display: none; }
  .hamburger{ display: flex; }
  .site-header__actions .btn:not(.btn--whatsapp){ display: none; }
  .site-header__actions{ gap: 10px; align-items: center; }
  .btn--whatsapp span{ display: none; }
  .btn--whatsapp{ padding: 0; border-radius: var(--radius); width: 38px; height: 38px; min-width: 38px; gap: 0; justify-content: center; flex-shrink: 0; }
  .btn--whatsapp .btn__icon-whatsapp{ width: 16px; height: 16px; }
  .site-header__inner{ gap: 12px; }
  .masonry{ columns: 2 220px; }
  .pricing__grid, .testimonial-track{ grid-template-columns: 1fr; }
  .price-card--featured{ order: -1; }
  .insta-grid{ grid-template-columns: repeat(3, 1fr); }
  .about__watermark{ font-size: 70vw; }
}

@media (max-width: 560px){
  :root{ --header-h: 76px; }
  .site-header__inner{ padding-inline: 16px; }
  .brand{ gap: 8px; flex-shrink: 1; min-width: 0; }
  .brand__mark{ width: 36px; height: 36px; font-size: 20px; flex-shrink: 0; }
  .brand__word{ font-size: 11px; }
  .brand__word em{ font-size: 8px; }
  .section-head--split{ align-items: flex-start; }
  .hero__cta{ flex-direction: column; width: 100%; }
  .hero__cta .btn{ width: 100%; }
  .masonry{ columns: 1; }
  .form-row{ grid-template-columns: 1fr; }
  .timeline__item{ grid-template-columns: 1fr; gap: 10px; }
  .about, .portfolio, .films, .experience, .pricing, .testimonials, .instagram, .contact{ padding-top: 90px; padding-bottom: 90px; }
  .contact__grid{ padding-bottom: 80px; }
}

/* =========================================================================
   MULTI-PAGE ADDITIONS
   Interior page banner, CTA band, journal cards, team grid, breadcrumb.
   ========================================================================= */

/* ---------- Interior page banner (replaces full-screen hero on inner pages) ---------- */
.page-hero{
  position: relative;
  padding: calc(var(--header-h) + 88px) 0 90px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}
.page-hero__watermark{
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: min(40vw, 460px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(176,141,87,.12);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.page-hero__inner{ position: relative; z-index: 1; }
.page-hero .eyebrow{ justify-content: center; display: flex; }
.page-hero .section-title{ margin-bottom: 18px; }
.breadcrumb{
  display: flex; justify-content: center; gap: 8px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a{ color: var(--muted); transition: color var(--dur-fast); }
.breadcrumb a:hover{ color: var(--accent); }
.breadcrumb span{ color: var(--accent); }

/* ---------- CTA band (used before footer on interior pages) ---------- */
.cta-band{
  background: var(--bg-secondary);
  color: var(--ink);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-band__watermark{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: min(34vw, 380px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(176,141,87,.12);
  white-space: nowrap; line-height: 1;
  pointer-events: none;
}
.cta-band__inner{ position: relative; z-index: 1; max-width: 620px; margin-inline: auto; }
.cta-band .eyebrow{ justify-content: center; display: flex; color: var(--accent); }
.cta-band .section-title{ color: var(--ink); margin-bottom: 30px; }
.cta-band .btn-row{ display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--solid{ background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cta-band .btn--solid:hover{ background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }
.cta-band .btn--outline{ border-color: var(--ink); color: var(--ink); }
.cta-band .btn--outline:hover{ background: var(--ink); color: var(--bg); transform: translateY(-2px); }

/* ---------- Journal / blog cards ---------- */
.journal-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.journal-card{ display: block; }
.journal-card .placeholder-img{ aspect-ratio: 4/3; margin-bottom: 22px; transition: transform .8s var(--ease); overflow: hidden; }
.journal-card:hover .placeholder-img{ transform: none; }
.journal-card:hover .placeholder-img span{ opacity: .7; }
.journal-card__meta{
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px; font-weight: 700;
}
.journal-card__title{ font-family: var(--font-display); font-size: 25px; margin-bottom: 10px; line-height: 1.25; }
.journal-card__excerpt{ font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.journal-card .text-link{ margin-top: 0; }

/* ---------- Client Albums grid ---------- */
.albums-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 36px;
  margin-top: 56px;
}
.album-card{ display: block; }
.album-card .placeholder-img{
  min-height: 380px;
  transition: transform .8s var(--ease);
}
.album-card:hover .placeholder-img{ transform: scale(1.05); }
.album-card__overlay{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 60px 28px 26px;
  text-align: center;
  background: linear-gradient(to top, rgba(28,28,28,.82) 0%, rgba(28,28,28,.36) 60%, rgba(28,28,28,0) 100%);
}
.album-card__title{
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--bg);
  margin-bottom: 6px;
  line-height: 1.2;
}
.album-card__date{
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: .85;
  font-weight: 600;
}

/* ---------- Signature Albums Intro (client-albums.html) ---------- */
.signature-albums-intro{
  padding: 100px 0 60px;
  background: var(--bg-secondary);
}
.sig-albums__grid{
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 768px){
  .sig-albums__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.sig-albums__video-box{
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 48px -12px rgba(28,28,28,.18);
  background: #000;
  position: relative;
}
.sig-albums__video-box iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* 9:16 vertical for YouTube Shorts */
.sig-albums__video-box--portrait{
  aspect-ratio: 9 / 16;
  max-width: 360px;
  margin-inline: auto;
}
.sig-albums__placeholder{
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 0;
}


.team{ padding: 140px 0; }
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card{ text-align: center; }
.team-card .placeholder-img{ aspect-ratio: 3/4; margin-bottom: 18px; }
.team-card__name{ font-family: var(--font-display); font-size: 22px; }
.team-card__role{ font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-top: 6px; }

/* ---------- Values strip (About page) ---------- */
.values{ padding: 0 0 140px; }
.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-card{ background: var(--bg); padding: 48px 40px; }
.value-card__num{ font-family: var(--font-display); color: var(--accent); font-size: 15px; display: block; margin-bottom: 20px; }
.value-card h3{ font-family: var(--font-display); font-size: 26px; margin-bottom: 12px; }
.value-card p{ font-size: 14px; }

/* ---------- Portfolio / Films page intro copy ---------- */
.page-intro{ max-width: 680px; margin: 0 auto 60px; text-align: center; }
.page-intro p{ margin-top: 14px; }

/* ---------- Pricing page add-ons list ---------- */
.addons{ padding: 0 0 140px; background: var(--bg-secondary); }
.addons-list{
  max-width: 780px; margin: 56px auto 0;
  border-top: 1px solid var(--border);
}
.addon-row{
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.addon-title-wrap{ display: flex; flex-direction: column; gap: 2px; }
.addon-row h4{ font-family: var(--font-display); font-size: 19px; font-weight: 400; }
.addon-row span{ color: var(--accent); font-size: 14px; letter-spacing: .04em; white-space: nowrap; }
.addon-row .addon-sub{ color: var(--muted); font-size: 12px; letter-spacing: .02em; }

@media (max-width: 1080px){
  .journal-grid{ grid-template-columns: 1fr 1fr; }
  .albums-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid{ grid-template-columns: 1fr 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
}

/* ---------- Hero Section Responsive Adjustments ---------- */
@media (max-width: 1024px){
  .hero{
    min-height: 500px;
  }
  .hero__img{
    object-position: center 75%;
    transform-origin: center 75%;
  }
}

@media (max-width: 860px){
  .page-hero{ padding-top: calc(var(--header-h) + 60px); }
}

@media (max-width: 768px){
  .hero{
    min-height: 460px;
  }
  .hero__img{
    object-position: center 72%;
    transform-origin: center 72%;
  }
  .hero__content{
    padding: 0 var(--gutter) 72px;
  }
  .hero__cta{
    gap: 14px;
    margin-top: 32px;
  }
}

@media (max-width: 560px){
  .journal-grid{ grid-template-columns: 1fr; }
  .albums-grid{ grid-template-columns: 1fr; gap: 24px; }
  .team-grid{ grid-template-columns: 1fr 1fr; }
  .addon-row{ flex-direction: column; align-items: flex-start; gap: 4px; }
  .team, .values, .addons, .cta-band{ padding-top: 90px; padding-bottom: 90px; }
  
  .hero{
    min-height: 420px;
  }
  .hero__img{
    object-position: center 70%;
    transform-origin: center 70%;
    transform: scale(1.03);
    animation-name: heroZoomMobile;
  }
  .hero__banner-img{
    max-width: 220px;
  }
  .hero__content{
    padding: 0 var(--gutter) 54px;
  }
  .hero__cta{
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .hero__cta .btn{
    width: 100%;
    justify-content: center;
  }
}

@keyframes heroZoomMobile{
  from{ transform: scale(1.03); }
  to{ transform: scale(1.09); }
}

@media (max-height: 500px) and (orientation: landscape){
  .hero{
    min-height: 100vh;
  }
  .hero__img{
    object-position: 50% 30%;
  }
  .hero__content{
    padding: 0 var(--gutter) 36px;
  }
}

/* ---------- About Us Page Pillars & Location Badge ---------- */
.location-badge{
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 32px;
}
.location-badge__icon{
  font-size: 22px;
  line-height: 1;
}

.pillars-section{
  padding: 120px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.pillars-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.pillar-card{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.pillar-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(28,28,28,.18);
}
.pillar-card__tag{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.pillar-card__title{
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 16px;
}
.pillar-card__desc{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 860px){
  .pillars-grid{ grid-template-columns: 1fr; }
}

/* ---------- Form Select & International Booking ---------- */
.field select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231C1C1C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.field select:focus {
  border-color: var(--accent);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.dest-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  cursor: pointer;
}
.dest-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.dest-card__flag { font-size: 36px; display: block; margin-bottom: 12px; }
.dest-card__title { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin-bottom: 6px; }
.dest-card__desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

@media (max-width: 860px) {
  .destinations-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* =========================================================================
   GET A QUOTE PAGE & ENQUIRY FORM
   ========================================================================= */
.quote-section {
  padding: 40px 0 120px;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: flex-start;
}
.quote-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 44px 38px;
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--header-h) + 30px);
}
.quote-form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 44px 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.chip-option {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.chip-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.chip-option input:checked + .chip-label {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.chip-option:hover .chip-label {
  border-color: var(--accent);
}
.process-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-step {
  display: flex;
  gap: 16px;
}
.process-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.process-step__text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.process-step__text p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-info-card {
    position: static;
  }
  .quote-form-card {
    padding: 32px 24px;
  }
}

/* Accessibility & SEO Screen Reader Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
