/* ═══════════════════════════════════════════════════════════════
   RICH ART PRODUCTION — World-Class Premium CSS v4.0
   Cinematic Luxury Studio · A24 × LVMH Level Aesthetics
   Author: Senior UI/UX + Senior Frontend Dev
═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --gold:          #C9A96E;
  --gold-light:    #E8C98A;
  --gold-dark:     #A07A40;
  --gold-glow:     rgba(201,169,110,.16);
  --gold-glow2:    rgba(201,169,110,.08);
  --black:         #000000;
  --ink:           #080808;
  --charcoal:      #0F0F0F;
  --dark:          #161616;
  --dark-mid:      #1E1E1E;
  --smoke:         #282828;
  --ash:           #333333;
  --silver:        #8A8A8A;
  --pearl:         #C8C8C8;
  --off-white:     #F7F5F2;
  --light:         #F2F0ED;
  --white:         #FFFFFF;
  --cream:         #FAF8F5;

  /* Semantic */
  --bg:            var(--white);
  --fg:            #111111;
  --accent:        var(--gold);
  --border:        rgba(0,0,0,.07);
  --border-md:     rgba(0,0,0,.12);
  --border-dark:   rgba(255,255,255,.08);
  --glass-light:   rgba(255,255,255,.88);
  --glass-dark:    rgba(8,8,8,.92);
  --shadow-xs:     0 1px 4px rgba(0,0,0,.05);
  --shadow-sm:     0 2px 16px rgba(0,0,0,.07);
  --shadow-md:     0 8px 40px rgba(0,0,0,.10);
  --shadow-lg:     0 24px 80px rgba(0,0,0,.14);
  --shadow-gold:   0 8px 40px rgba(201,169,110,.25);
  --shadow-gold-lg:0 16px 60px rgba(201,169,110,.35);

  /* Typography */
  --font-display:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:     'Montserrat', 'DM Sans', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  /* Motion */
  --ease:          cubic-bezier(.16,1,.3,1);
  --ease-out:      cubic-bezier(.0,0,.2,1);
  --ease-bounce:   cubic-bezier(.34,1.56,.64,1);
  --ease-spring:   cubic-bezier(.175,.885,.32,1.275);
  --dur-fast:      180ms;
  --dur-mid:       380ms;
  --dur-slow:      700ms;
  --trans:         all var(--dur-mid) var(--ease);
  --trans-fast:    all var(--dur-fast) var(--ease-out);

  /* Layout */
  --max-w:         1340px;
  --gutter:        clamp(1.25rem, 4vw, 3.5rem);
  --radius-xs:     4px;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --radius-pill:   999px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, iframe, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--gold); color: var(--black); }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-dark), var(--gold)); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ── Scroll Progress Bar ───────────────────────────────────── */
#rap-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(201,169,110,.5);
}

/* ── Page Loader ───────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.75rem;
  transition: opacity .7s var(--ease), visibility .7s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo-img {
  width: 90px; height: 90px;
  border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(201,169,110,.35);
  box-shadow: 0 0 50px rgba(201,169,110,.25), 0 0 100px rgba(201,169,110,.10);
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { box-shadow: 0 0 30px rgba(201,169,110,.2), 0 0 60px rgba(201,169,110,.08); }
  50%      { box-shadow: 0 0 60px rgba(201,169,110,.4), 0 0 100px rgba(201,169,110,.18); }
}
.loader-brand {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 300;
  color: var(--white); letter-spacing: .1em;
}
.loader-sub {
  font-size: .5rem; letter-spacing: .7em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-top: -.75rem;
}
.loader-track {
  width: 140px; height: 1px;
  background: rgba(255,255,255,.08);
  position: relative; overflow: hidden;
  border-radius: 1px;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: loaderBar 2.4s var(--ease) forwards;
  box-shadow: 0 0 8px rgba(201,169,110,.4);
}
@keyframes loaderBar { 0%{width:0} 100%{width:100%} }
@keyframes loaderFadeIn { from{opacity:0} to{opacity:1} }

/* ── Navbar ────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1200;
  padding: 1.6rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
  background: transparent;
}
#navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, transparent 100%);
  opacity: 1; transition: opacity .4s;
  pointer-events: none;
}
#navbar.scrolled::before { opacity: 0; }
#navbar.scrolled {
  background: var(--glass-dark);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 30px rgba(0,0,0,.35), 0 1px 0 rgba(201,169,110,.08);
  padding: 1rem var(--gutter);
}

.nav-logo {
  display: flex; align-items: center; gap: .85rem;
  position: relative; z-index: 2;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(201,169,110,.4);
  transition: var(--trans);
  box-shadow: 0 0 20px rgba(201,169,110,.18);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.07);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,169,110,.35);
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--white); letter-spacing: .04em;
  display: block;
}
.nav-logo-tagline {
  font-size: .4rem; letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  display: block; margin-top: .06rem;
}

.nav-links {
  display: flex; align-items: center;
  gap: 2.5rem; list-style: none;
  position: relative; z-index: 2;
}
.nav-link {
  font-size: .64rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .3s;
  position: relative; padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%) !important;
  color: var(--black) !important;
  padding: .65rem 1.6rem !important;
  border-radius: var(--radius-pill) !important;
  font-size: .6rem !important;
  font-weight: 700 !important;
  letter-spacing: .22em !important;
  box-shadow: var(--shadow-gold) !important;
  transition: var(--trans) !important;
  display: inline-flex !important; align-items: center !important; gap: .4rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold-lg) !important;
}

/* Nav icons */
.nav-icon-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .85rem;
  transition: var(--trans); flex-shrink: 0;
  position: relative; z-index: 2;
  text-decoration: none;
}
.nav-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.1);
  transform: translateY(-1px);
}
.nav-icon-btn.wa-nav { border-color: rgba(37,211,102,.25); color: rgba(37,211,102,.7); }
.nav-icon-btn.wa-nav:hover { border-color: #25d366; color: #25d366; background: rgba(37,211,102,.08); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem;
  position: relative; z-index: 2;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  transition: var(--trans);
}
.nav-hamburger:hover { border-color: rgba(201,169,110,.4); }
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-extra {
  display: flex; align-items: center; gap: .65rem;
  position: relative; z-index: 2;
}

/* ── Mobile Nav Drawer ─────────────────────────────────────── */
#mobile-nav {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
  overflow: hidden;
}
#mobile-nav.open { opacity: 1; visibility: visible; }
#mobile-nav::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,.14) 0%, transparent 55%);
  pointer-events: none;
}
#mobile-nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.3), transparent);
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 300;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  transition: color .3s, transform .3s;
  position: relative;
}
.mobile-nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.mobile-nav-link:hover { color: var(--white); transform: translateX(8px); }
.mobile-nav-link:hover::after { width: 100%; }

.mobile-nav-cta {
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-size: .68rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: var(--trans);
  display: inline-flex; align-items: center; gap: .5rem;
}
.mobile-nav-cta:hover { transform: scale(1.04); box-shadow: var(--shadow-gold-lg); }

#mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
#mobile-close:hover { background: rgba(255,255,255,.06); border-color: var(--gold); color: var(--gold); }

/* Mobile socials row */
.mobile-nav-socials {
  display: flex; gap: 1rem; margin-top: -1rem;
}
.mobile-nav-socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .9rem;
  transition: var(--trans);
}
.mobile-nav-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.08); }

/* ── Global Button Styles ──────────────────────────────────── */
.btn-primary {
  padding: .92rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  color: var(--black) !important;
  font-size: .66rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none; text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: var(--trans);
  display: inline-flex; align-items: center; gap: .55rem;
  min-height: 50px; white-space: nowrap;
  cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-lg); }
.btn-primary:hover::before { background: rgba(255,255,255,.08); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  padding: .92rem 2.5rem;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.78) !important;
  font-size: .66rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  text-decoration: none; background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--trans);
  display: inline-flex; align-items: center; gap: .55rem;
  min-height: 50px; white-space: nowrap;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,.1);
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.btn-outline-light {
  padding: .75rem 1.85rem;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65) !important;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  text-decoration: none; transition: var(--trans);
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 46px; white-space: nowrap;
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,.45);
  color: var(--white) !important;
  background: rgba(255,255,255,.05);
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Section headers */
.section-eyebrow {
  font-size: .5rem; letter-spacing: .72em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300; color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-subtitle {
  color: var(--silver);
  font-size: .9rem; font-weight: 300;
  margin-top: 1rem; max-width: 560px;
  line-height: 1.8;
}

/* ── Hero Section ─────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex; align-items: stretch;
  position: relative; overflow: hidden;
  padding: 0;
}
.hero-swiper {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.hero-swiper .swiper-wrapper { height: 100%; }
.hero-swiper .swiper-slide {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 100svh;
  overflow: hidden;
}

/* Slide background with Ken Burns */
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 9s ease;
  will-change: transform;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1.0); }

/* Multi-layer cinematic overlay */
.hero-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.6) 0%, transparent 28%, transparent 52%, rgba(0,0,0,.8) 100%),
    linear-gradient(105deg, rgba(0,0,0,.5) 0%, transparent 55%);
  z-index: 1;
}

/* Slide content */
.hero-slide-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  max-width: 1000px;
  width: 100%;
}

/* Animated slide elements */
.hero-slide-logo {
  width: clamp(64px, 8vw, 96px);
  height: clamp(64px, 8vw, 96px);
  border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(201,169,110,.4);
  box-shadow: 0 0 50px rgba(201,169,110,.22);
  margin: 0 auto 1.75rem;
  display: block;
  opacity: 0; transform: scale(.82);
  transition: opacity .8s .0s ease, transform .8s .0s var(--ease-bounce);
}
.swiper-slide-active .hero-slide-logo { opacity: 1; transform: scale(1); }

.hero-slide-eyebrow {
  font-size: .5rem; letter-spacing: .7em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem; display: block;
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s .15s ease, transform .75s .15s ease;
}
.swiper-slide-active .hero-slide-eyebrow { opacity: 1; transform: translateY(0); }

.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 300; color: var(--white);
  line-height: 1.04; letter-spacing: -.01em;
  margin-bottom: .9rem;
  opacity: 0; transform: translateY(35px);
  transition: opacity .9s .28s ease, transform .9s .28s var(--ease);
}
.hero-slide-title em { font-style: italic; color: var(--gold); }
.swiper-slide-active .hero-slide-title { opacity: 1; transform: translateY(0); }

.hero-slide-sub {
  font-size: clamp(.8rem, 1.4vw, 1rem);
  font-weight: 300; color: rgba(255,255,255,.52);
  letter-spacing: .14em; line-height: 1.95;
  max-width: 580px; margin: 0 auto 2.25rem;
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s .44s ease, transform .75s .44s ease;
}
.swiper-slide-active .hero-slide-sub { opacity: 1; transform: translateY(0); }

.hero-slide-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity .75s .58s ease, transform .75s .58s ease;
}
.swiper-slide-active .hero-slide-actions { opacity: 1; transform: translateY(0); }

/* Swiper Controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 54px; height: 54px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
  color: var(--white);
  transition: var(--trans);
  top: 50%;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: .82rem; font-weight: 700; }
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(201,169,110,.2);
  border-color: var(--gold);
  transform: scale(1.08);
}
.hero-swiper .swiper-button-prev { left: 1.75rem; }
.hero-swiper .swiper-button-next { right: 1.75rem; }

/* Pagination */
.hero-swiper .swiper-pagination { bottom: 2.25rem; }
.hero-swiper .swiper-pagination-bullet {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.3);
  opacity: 1; transition: all .35s var(--ease);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 32px; border-radius: 3px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.75rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: .55rem; cursor: pointer;
  opacity: .55; transition: opacity .3s;
  z-index: 3; background: none; border: none;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* Hero slide gradient fallbacks */
.slide-bg-wedding     { background: linear-gradient(135deg,#0a0608 0%,#1a0d12 40%,#0d0a00 100%); }
.slide-bg-prewedding  { background: linear-gradient(135deg,#050810 0%,#0d1a1a 40%,#0a0a05 100%); }
.slide-bg-baby        { background: linear-gradient(135deg,#080a05 0%,#151a10 40%,#0a0808 100%); }
.slide-bg-maternity   { background: linear-gradient(135deg,#0a0808 0%,#1a1008 40%,#080a08 100%); }
.slide-bg-fashion     { background: linear-gradient(135deg,#050505 0%,#181015 40%,#0a0808 100%); }
.slide-bg-events      { background: linear-gradient(135deg,#080805 0%,#151508 40%,#0a0a05 100%); }
.slide-bg-cinematic   { background: linear-gradient(135deg,#050508 0%,#080d1a 40%,#050505 100%); }
.slide-bg-reels       { background: linear-gradient(135deg,#080505 0%,#1a0808 40%,#0a0505 100%); }
.slide-bg-shortfilms  { background: linear-gradient(135deg,#050808 0%,#081515 40%,#050808 100%); }
.slide-bg-commercial  { background: linear-gradient(135deg,#050805 0%,#101a08 40%,#080805 100%); }
.slide-bg-drone       { background: linear-gradient(135deg,#050808 0%,#081a1a 40%,#050808 100%); }
.slide-bg-traditional { background: linear-gradient(135deg,#080505 0%,#1a1008 40%,#080505 100%); }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--charcoal);
  padding: 0;
  border-top: 1px solid rgba(201,169,110,.12);
  border-bottom: 1px solid rgba(201,169,110,.12);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,.06) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(201,169,110,.10);
  position: relative;
}
.stat-item {
  background: var(--charcoal);
  padding: 2.25rem 1.5rem; text-align: center;
  transition: background .35s;
  position: relative;
}
.stat-item:hover { background: var(--dark); }
.stat-val {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label {
  font-size: .5rem; letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-top: .6rem; display: block;
}

/* ── Gallery Grid (Homepage) ───────────────────────────────── */
.cat-filter-wrap {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 2rem; margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 4px;
}
.cat-filter-wrap::-webkit-scrollbar { display: none; }

.cat-btn {
  height: 38px; padding: 0 1.1rem;
  background: transparent;
  border: 1px solid rgba(0,0,0,.10);
  color: var(--silver);
  border-radius: var(--radius-pill);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  transition: all .25s ease;
  white-space: nowrap; flex-shrink: 0;
  cursor: pointer;
}
.cat-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow2);
}
.cat-btn.active {
  background: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
}

#galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.55rem, 1.2vw, .9rem);
  margin-top: 1rem;
}
#galleryGrid .gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden; position: relative;
  background: var(--light);
  aspect-ratio: 1; cursor: pointer;
  transition: opacity .35s ease, transform .35s ease;
}
#galleryGrid .gallery-item:nth-child(7) {
  grid-column: span 2; aspect-ratio: 2/1;
}
#galleryGrid .gallery-item.rap-hidden { display: none !important; }
#galleryGrid .gallery-item.rap-fade-in {
  animation: rapFadeIn .4s ease forwards;
}
@keyframes rapFadeIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
#galleryGrid .gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease);
  display: block;
}
#galleryGrid .gallery-item:hover .gallery-img { transform: scale(1.07); }
#galleryGrid .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 52%);
  opacity: 0; transition: opacity .4s;
}
#galleryGrid .gallery-item:hover .gallery-overlay { opacity: 1; }
#galleryGrid .gallery-caption {
  position: absolute; bottom: .85rem; left: .85rem; right: .85rem;
  color: var(--white); font-size: .72rem; font-weight: 400;
  opacity: 0; transform: translateY(8px);
  transition: all .35s; z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
#galleryGrid .gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ── Services Section ──────────────────────────────────────── */
.services-section {
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.25), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  gap: 1px;
  background: rgba(0,0,0,.06);
  margin-top: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card {
  background: var(--white);
  padding: 2.4rem 1.85rem;
  transition: var(--trans);
  cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width .45s var(--ease);
}
.service-card:hover { background: var(--charcoal); transform: translateY(-2px); }
.service-card:hover::before { width: 100%; }

.service-icon {
  font-size: 2rem; margin-bottom: 1.2rem;
  display: block; line-height: 1;
  transition: transform .35s var(--ease-bounce);
}
.service-card:hover .service-icon { transform: scale(1.18) rotate(-2deg); }

.service-name {
  font-size: .88rem; font-weight: 600;
  color: var(--charcoal); transition: color .3s;
  letter-spacing: .02em;
}
.service-card:hover .service-name { color: var(--white); }

.service-desc {
  font-size: .76rem; font-weight: 300;
  color: var(--silver); margin-top: .5rem;
  line-height: 1.7; transition: color .3s;
}
.service-card:hover .service-desc { color: rgba(255,255,255,.42); }

.service-learn {
  margin-top: 1.25rem;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .58rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  transition: var(--trans); opacity: 0;
}
.service-card:hover .service-learn { opacity: 1; transform: translateX(4px); }
.service-learn i { font-size: .65rem; transition: transform .3s; }
.service-card:hover .service-learn i { transform: translateX(4px); }

/* ── Showreel Section ──────────────────────────────────────── */
.showreel-section {
  background: var(--ink);
  position: relative; overflow: hidden;
}
.showreel-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,.08) 0%, transparent 65%);
  pointer-events: none;
}
.showreel-container {
  position: relative; max-width: 960px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(201,169,110,.12);
  aspect-ratio: 16/9;
  background: var(--dark);
}
.showreel-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .6s;
  display: block;
}
.showreel-container:hover .showreel-thumb {
  transform: scale(1.04);
  filter: brightness(.8);
}
.showreel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.3) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s;
}
.showreel-container:hover .showreel-overlay { background: rgba(0,0,0,.45); }

.showreel-play {
  width: 86px; height: 86px;
  border: 1.5px solid rgba(201,169,110,.6);
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans);
  color: var(--white); font-size: 1.5rem;
  padding-left: .25rem;
  box-shadow: 0 0 0 20px rgba(201,169,110,.08);
  animation: playPulse 2.5s ease-in-out infinite;
}
@keyframes playPulse {
  0%,100% { box-shadow: 0 0 0 15px rgba(201,169,110,.06); }
  50%      { box-shadow: 0 0 0 28px rgba(201,169,110,.02); }
}
.showreel-play:hover {
  background: rgba(201,169,110,.2);
  border-color: var(--gold);
  transform: scale(1.12);
  animation: none;
  box-shadow: var(--shadow-gold);
}
.showreel-label {
  position: absolute; bottom: 1.5rem; left: 1.75rem;
  font-size: .55rem; letter-spacing: .5em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}

/* Showreel modal */
#showreelModal {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.97);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(5px);
}
#showreelModal.open { display: flex; }
#showreelModal iframe, #showreelModal video {
  width: min(92vw, 1100px);
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}
#showreelClose {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans);
}
#showreelClose:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.1); }

/* ── Dynamic Showreel Modals (new multi-showreel system) ─── */
[id^="showreelModal_"] {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.97);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(5px);
}
[id^="showreelModal_"].open { display: flex; }
[id^="showreelModal_"] iframe,
[id^="showreelModal_"] video {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}
.showreel-close-btn {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans);
  z-index: 10;
}
.showreel-close-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.1); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--ink); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.2), transparent);
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-eyebrow { color: var(--gold); }

.swiper.rap-testimonials-swiper {
  padding-bottom: 3.5rem !important;
  overflow: visible !important;
  margin-top: 3rem;
}
.swiper-pagination-bullet { background: rgba(255,255,255,.2) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  transition: var(--trans);
  height: 100%;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 6rem; font-weight: 300; line-height: 1;
  color: rgba(201,169,110,.08);
  pointer-events: none;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,169,110,.2);
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.testimonial-stars {
  color: var(--gold); font-size: .85rem;
  letter-spacing: .12em; margin-bottom: 1.2rem;
  display: block;
}
.testimonial-quote {
  font-size: .9rem; font-weight: 300;
  color: rgba(255,255,255,.58);
  line-height: 1.9; font-style: italic;
  position: relative;
}
.testimonial-author {
  margin-top: 1.85rem; padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: .85rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
  background: var(--smoke);
  border: 1.5px solid rgba(201,169,110,.2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; overflow: hidden;
}
.testimonial-name {
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.85); display: block;
}
.testimonial-role {
  font-size: .62rem; color: rgba(255,255,255,.28);
  display: block; margin-top: .18rem;
  letter-spacing: .08em;
}

/* ── Client Logo Slider ───────────────────────────────────── */
.clients-section {
  background: var(--light); overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.clients-section .section-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.client-slider-wrap {
  position: relative; margin-top: 2.75rem; overflow: hidden;
}
.client-slider-wrap::before,
.client-slider-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 100px;
  z-index: 2; pointer-events: none;
}
.client-slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--light) 0%, transparent 100%);
}
.client-slider-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--light) 0%, transparent 100%);
}
.client-track {
  display: flex; gap: 3rem; align-items: center;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}
.client-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  width: 130px; height: 60px; object-fit: contain;
  filter: grayscale(1) opacity(.45);
  transition: filter .4s, transform .3s;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal);
}
.client-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.07); }

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-list {
  max-width: 800px; margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
  font-size: .9rem; font-weight: 500;
  color: var(--charcoal); cursor: pointer;
  transition: color .25s; background: none; border: none;
  text-align: left; gap: 1rem;
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question.open { color: var(--gold-dark); }
.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid var(--border-md);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); font-size: .7rem;
  transition: var(--trans);
}
.faq-question.open .faq-icon {
  background: var(--charcoal); border-color: var(--charcoal);
  color: var(--white); transform: rotate(45deg);
}
.faq-answer {
  display: none; padding-bottom: 1.4rem;
  font-size: .88rem; font-weight: 300;
  color: var(--silver); line-height: 1.85;
}
.faq-answer.open { display: block; animation: faqOpen .3s ease; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Awards Section ──────────────────────────────────────── */
.awards-section { background: var(--charcoal); position: relative; overflow: hidden; }
.awards-section .section-title { color: var(--white); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(201,169,110,.10);
  margin-top: 3rem;
  border-radius: var(--radius-md); overflow: hidden;
}
.award-card {
  background: var(--dark-mid);
  padding: 2.25rem 1.75rem; text-align: center;
  transition: background .35s;
}
.award-card:hover { background: var(--smoke); }
.award-icon {
  font-size: 2.2rem; color: var(--gold);
  margin-bottom: 1rem; display: block;
  transition: transform .35s var(--ease-bounce);
}
.award-card:hover .award-icon { transform: scale(1.15) rotate(5deg); }
.award-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 300;
  color: var(--white); line-height: 1.3;
}
.award-year {
  font-size: .58rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold);
  margin-top: .5rem; display: block;
}
.award-desc {
  font-size: .75rem; font-weight: 300;
  color: rgba(255,255,255,.35); margin-top: .4rem;
}

/* ── Booking Section ─────────────────────────────────────── */
.booking-section {
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.2), transparent);
}
.booking-form-wrap {
  max-width: 780px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.booking-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

/* Booking stepper */
.booking-stepper {
  display: flex; gap: .5rem; margin-bottom: 2.25rem;
  align-items: center;
}
.booking-step {
  flex: 1; height: 3px; border-radius: 999px;
  background: rgba(0,0,0,.08);
  transition: background .4s;
}
.booking-step.active {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  box-shadow: 0 0 8px rgba(201,169,110,.3);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  font-size: .56rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--silver);
  display: block; margin-bottom: .55rem;
}
.form-control {
  width: 100%; padding: .9rem 1.1rem;
  background: var(--light);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem;
  color: var(--charcoal); outline: none;
  transition: border-color .3s, box-shadow .3s;
  appearance: auto;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
  background: var(--white);
}
.form-control::placeholder { color: rgba(0,0,0,.28); }
select.form-control { cursor: pointer; }

.form-submit {
  width: 100%; padding: 1.15rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  color: var(--black); border: none;
  font-family: var(--font-body); font-size: .66rem;
  font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; cursor: pointer;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: var(--trans); margin-top: .6rem;
  min-height: 54px; display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-lg); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

#bookingMsg {
  display: none; margin-top: 1rem;
  padding: 1rem 1.25rem; text-align: center;
  font-size: .85rem; font-weight: 400;
  border-radius: var(--radius-sm);
}

/* ── About Section ────────────────────────────────────────── */
.about-section {
  background: var(--white);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem; align-items: center;
}
.about-body p {
  color: #5a5855; font-size: .9rem;
  font-weight: 300; line-height: 2;
  margin-bottom: 1.2rem;
}
.about-stats {
  display: flex; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.about-stat-val {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300; color: var(--charcoal);
  display: block; line-height: 1;
}
.about-stat-label {
  font-size: .52rem; letter-spacing: .38em;
  text-transform: uppercase; color: var(--silver);
  display: block; margin-top: .45rem;
}
.about-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.about-photo-grid > div {
  aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-sm); background: var(--light);
  position: relative;
}
.about-photo-grid > div::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,.3) 100%);
  opacity: 0; transition: opacity .4s;
}
.about-photo-grid > div:hover::after { opacity: 1; }
.about-photo-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease);
}
.about-photo-grid > div:hover img { transform: scale(1.07); }

/* ── Team Section ──────────────────────────────────────────── */
.team-section { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,260px), 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--trans);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 4/5; overflow: hidden; background: var(--light);
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  opacity: 0; transition: opacity .35s;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .85rem;
  transition: var(--trans); text-decoration: none;
  background: rgba(255,255,255,.05);
}
.team-social-btn:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--black);
}
.team-info { padding: 1.4rem 1.5rem; }
.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 400; color: var(--charcoal);
}
.team-role {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-dark); margin-top: .3rem;
}

/* ── Contact Bar ──────────────────────────────────────────── */
.contact-bar {
  background: linear-gradient(135deg, #0f0f0f 0%, #161616 100%);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(201,169,110,.12);
  position: relative; overflow: hidden;
}
.contact-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,.07) 0%, transparent 55%);
  pointer-events: none;
}
.contact-bar-inner {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: center;
  position: relative;
}
.contact-bar-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white); font-weight: 300; font-style: italic;
}
.contact-bar-cta-sub {
  color: rgba(255,255,255,.38); font-size: .82rem;
  font-weight: 300; margin-top: .3rem;
  letter-spacing: .04em;
}
.contact-bar-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 5.5rem 0 2.75rem;
  border-top: 1px solid rgba(255,255,255,.03);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3.5rem; margin-bottom: 3.5rem;
}
.footer-brand-logo {
  width: 72px; height: 72px;
  border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(201,169,110,.2);
  margin-bottom: 1.2rem;
  box-shadow: 0 0 30px rgba(201,169,110,.12);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 300;
  color: var(--white); font-style: italic;
  display: block; margin-bottom: .3rem;
}
.footer-brand-sub {
  font-size: .45rem; letter-spacing: .52em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18); display: block;
}
.footer-brand-desc {
  font-size: .8rem; font-weight: 300;
  color: rgba(255,255,255,.28); line-height: 1.9;
  margin-top: 1.35rem; max-width: 280px;
}
.footer-social {
  display: flex; gap: .65rem; margin-top: 1.75rem; flex-wrap: wrap;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: rgba(255,255,255,.38);
  transition: var(--trans); text-decoration: none;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.1);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: .5rem; letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: 1.35rem; display: block;
}
.footer-link {
  display: block; font-size: .8rem; font-weight: 300;
  color: rgba(255,255,255,.34); margin-bottom: .6rem;
  transition: color .25s, transform .25s;
  text-decoration: none;
}
.footer-link:hover {
  color: rgba(255,255,255,.68);
  transform: translateX(4px);
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .8rem; font-weight: 300;
  color: rgba(255,255,255,.34); margin-bottom: .7rem;
}
.footer-contact-item a {
  color: inherit; text-decoration: none;
  transition: color .25s;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-newsletter { margin-top: .75rem; }
.newsletter-form {
  display: flex; gap: .5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
  padding: .3rem .3rem .3rem .9rem;
  transition: border-color .3s;
  margin-top: .75rem;
}
.newsletter-form:focus-within { border-color: rgba(201,169,110,.35); }
.newsletter-input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-body); font-size: .78rem;
  color: rgba(255,255,255,.65); min-width: 0;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.22); }
.newsletter-btn {
  padding: .5rem 1.1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black); border-radius: var(--radius-pill);
  font-size: .58rem; font-weight: 700; letter-spacing: .18em;
  white-space: nowrap; transition: var(--trans);
  text-transform: uppercase;
}
.newsletter-btn:hover { transform: scale(1.04); box-shadow: var(--shadow-gold); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.04); margin-bottom: 1.85rem; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-copy {
  font-size: .62rem; color: rgba(255,255,255,.18);
  letter-spacing: .06em;
}
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.35rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.4) !important;
  font-size: .58rem; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none;
  transition: var(--trans);
}
.footer-wa:hover {
  border-color: #25d366;
  color: #25d366 !important;
  background: rgba(37,211,102,.06);
}

/* ── Footer Google Map ────────────────────────────────────── */
.footer-map-section {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.footer-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 2rem;
  gap: 1rem;
}
.footer-map-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-map-directions {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .85;
  transition: opacity .2s;
}
.footer-map-directions:hover { opacity: 1; }
.footer-map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 28%;  /* 28% height = cinematic band */
  min-height: 200px;
  overflow: hidden;
}
.footer-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) contrast(1.05) brightness(.88) sepia(20%);
  transition: filter .4s;
}
.footer-map-iframe:hover {
  filter: grayscale(20%) contrast(1.05) brightness(.95);
}
@media (max-width: 768px) {
  .footer-map-embed {
    padding-bottom: 56%;
  }
  .footer-map-header {
    padding: .65rem 1.25rem;
    flex-wrap: wrap;
  }
}

/* ── WhatsApp Float ───────────────────────────────────────── */
#wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1150;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  border-radius: 30%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 35px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
#wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 55px rgba(37,211,102,.55);
}
#wa-float svg { width: 30px; height: 30px; fill: white; }

/* WhatsApp pulse ring */
#wa-float::before {
  content: '';
  position: absolute; inset: -4px;
  border: 1.5px solid rgba(37,211,102,.4);
  border-radius: 50%;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.15); opacity: 0; }
}

/* ── Back to Top ──────────────────────────────────────────── */
#rapBackTop {
  position: fixed; right: 2rem; bottom: 6.5rem;
  width: 46px; height: 46px;
  border: 1px solid rgba(201,169,110,.28);
  border-radius: 50%;
  background: rgba(8,8,8,.88);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 1140; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  backdrop-filter: blur(14px);
  font-size: .9rem;
}
#rapBackTop.visible { opacity: 1; pointer-events: auto; }
#rapBackTop:hover { transform: translateY(-3px); background: rgba(201,169,110,.15); }

/* ── Dark/Light Mode ───────────────────────────────────────── */
#rap-theme-toggle {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .85rem;
  transition: var(--trans); flex-shrink: 0;
  position: relative; z-index: 2;
}
#rap-theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.1);
}

/* Smooth theme transition */
body { transition: background-color .4s ease, color .4s ease; }

/* Dark mode */
body.rap-dark {
  --bg:       #080808;
  --fg:       #E6E4DF;
  --border:   rgba(255,255,255,.07);
  --border-md:rgba(255,255,255,.14);
  --silver:   #999999;
  --pearl:    #CCCCCC;
  --light:    #141414;
  --off-white:#101010;
  --cream:    #0e0e0e;
  --charcoal: #E0DED8;
}
body.rap-dark .section { background: #080808; }
body.rap-dark .services-section { background: #0f0f0f; }
body.rap-dark .service-card { background: #181818; }
body.rap-dark .service-card:hover { background: #0f0f0f; }
body.rap-dark .service-name { color: #E0DED8; }
body.rap-dark .booking-section { background: #080808; }
body.rap-dark .about-section { background: #080808; }
body.rap-dark .about-body p { color: #7a7875; }
body.rap-dark .clients-section { background: #0f0f0f; }
body.rap-dark .team-section { background: #0f0f0f; }
body.rap-dark .team-card { background: #181818; border-color: rgba(255,255,255,.06); }
body.rap-dark .faq-section { background: #0a0a0a; }
body.rap-dark .faq-question { color: #E0DED8; }
body.rap-dark .section-title { color: #E0DED8; }
body.rap-dark .booking-form-wrap {
  background: #181818 !important;
  border-color: rgba(255,255,255,.08) !important;
}
body.rap-dark .form-control {
  background: #222 !important;
  border-color: rgba(255,255,255,.10) !important;
  color: #E0DED8 !important;
}
body.rap-dark .form-control::placeholder { color: rgba(255,255,255,.28) !important; }
body.rap-dark .cat-btn { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.45); }
body.rap-dark .cat-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.08); }
body.rap-dark .cat-btn.active { background: rgba(255,255,255,.08) !important; border-color: var(--gold) !important; color: var(--gold) !important; }
body.rap-dark #galleryGrid .gallery-item { background: #1a1a1a; }
body.rap-dark .about-photo-grid > div { background: #1a1a1a; }
body.rap-dark .awards-section { background: #0f0f0f; }
body.rap-dark .award-card { background: #181818; }
body.rap-dark .award-card:hover { background: #222; }

/* Light mode */
body.rap-light {
  --bg:      #FAFAF8;
  --fg:      #111111;
  --border:  rgba(0,0,0,.07);
  --silver:  #777777;
  --light:   #F0EEEA;
  --off-white:#F5F3EF;
  --cream:   #FAF8F5;
}
body.rap-light .stats-strip { background: #111111; }
body.rap-light .testimonials-section { background: #111111; }
body.rap-light .contact-bar { background: linear-gradient(135deg,#111 0%,#1a1a1a 100%); }
body.rap-light footer { background: #0A0A0A; }
body.rap-light .service-card { background: #FFFFFF; }
body.rap-light .service-card:hover { background: #111111; }
body.rap-light .booking-form-wrap { background: var(--white); }

/* ── Gallery Page (gallery.php) ────────────────────────────── */
.rap-gallery-page {
  background: #0A0A0A;
  color: var(--pearl);
}
.rap-gallery-page #navbar {
  background: var(--glass-dark) !important;
  backdrop-filter: blur(24px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(140%) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.rap-gallery-page .nav-link { color: rgba(255,255,255,.65) !important; }
.rap-gallery-page .nav-link:hover,
.rap-gallery-page .nav-link.active { color: var(--white) !important; }

.gallery-hero {
  padding: clamp(6rem, 14vw, 10rem) var(--gutter) clamp(2rem, 5vw, 3rem);
  max-width: var(--max-w); margin: 0 auto;
}
.gallery-hero .hero-eyebrow {
  font-size: .52rem; letter-spacing: .65em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem; display: block;
}
.gallery-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; color: var(--white); line-height: 1.05;
}
.gallery-hero .hero-title em { color: var(--gold); font-style: italic; }
.gallery-hero .hero-sub {
  color: rgba(255,255,255,.4); font-size: .9rem; font-weight: 300;
  margin-top: 1rem; max-width: 520px;
}

.gallery-shell {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 7rem);
}
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding-bottom: 1.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.filter-btn {
  height: 40px; padding: 0 1.2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.52);
  border-radius: var(--radius-pill);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  transition: var(--trans);
}
.filter-btn:hover {
  background: rgba(201,169,110,.1);
  border-color: rgba(201,169,110,.3);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(.75rem, 1.5vw, 1rem);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-mid);
}
.gallery-item button {
  display: block; width: 100%;
  aspect-ratio: 4/5; overflow: hidden;
  position: relative; border-radius: var(--radius-md);
  background: #1a1a1a; border: 0; padding: 0;
  cursor: pointer;
}
.gallery-item .gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease), filter .3s;
  filter: saturate(1.05) contrast(1.02);
}
.gallery-item button:hover .gallery-img { transform: scale(1.07); filter: saturate(1.12); }
.gallery-item button::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.78) 100%);
  opacity: 0; transition: opacity .35s;
}
.gallery-item button:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute; bottom: .9rem; left: .9rem; right: .9rem;
  color: var(--white); font-size: .78rem; font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(6px);
  transition: all .35s; z-index: 2;
}
.gallery-item button:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.gallery-loading {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}
.gallery-loading span {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
  background-size: 600px 100%;
  animation: rapShimmer 1.15s linear infinite;
}
.gallery-empty {
  padding: 5rem 1rem; text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); background: rgba(255,255,255,.03);
}

/* Lightbox (gallery page) */
.lightbox {
  position: fixed; inset: 0; z-index: 2500;
  background: rgba(0,0,0,.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  animation: lbIn .3s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: min(94vw, 1200px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.lightbox-close {
  position: fixed; top: 1.25rem; right: 1.25rem;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); backdrop-filter: blur(10px);
}
.lightbox-close:hover { background: rgba(201,169,110,.15); border-color: var(--gold); color: var(--gold); }
#lightbox-caption {
  color: rgba(255,255,255,.5);
  font-size: .82rem; font-weight: 300;
  margin-top: 1.25rem; text-align: center;
}
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; background: rgba(0,0,0,.6);
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); backdrop-filter: blur(10px);
}
.lightbox-nav:hover { background: rgba(201,169,110,.2); border-color: var(--gold); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.gallery-footer {
  padding: 2rem var(--gutter);
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  color: rgba(255,255,255,.3); font-size: .7rem;
  letter-spacing: .1em;
}
.gallery-footer a { color: var(--gold); transition: color .25s; }
.gallery-footer a:hover { color: var(--gold-light); }

/* ── Utility / Animations ─────────────────────────────────── */
@keyframes rapShimmer {
  from { background-position: -600px 0; }
  to   { background-position:  600px 0; }
}
.rap-skeleton {
  background: linear-gradient(90deg, #e8e6e2 25%, #f2f0ec 50%, #e8e6e2 75%);
  background-size: 600px 100%;
  animation: rapShimmer 1.2s infinite linear;
  border-radius: var(--radius-sm);
}
body.rap-dark .rap-skeleton {
  background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
  background-size: 600px 100%;
}

/* Lazy load blur-up */
img.rap-lazy {
  filter: blur(10px) saturate(0);
  transition: filter .5s ease;
}
img.rap-lazy.loaded {
  filter: blur(0) saturate(1);
}

/* AOS overrides */
[data-aos] { opacity: 1 !important; transform: none !important; }
[data-aos].aos-animate { opacity: 1 !important; transform: none !important; }

/* Inline lightbox (home page) */
#rapLightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.97);
  align-items: center; justify-content: center; padding: 1.5rem;
}
#rapLightbox.open { display: flex; }

/* ── Admin Panel ──────────────────────────────────────────── */
.admin-wrap .section { padding: 0; }
.admin-wrap h1, .admin-wrap h2, .admin-wrap h3 {
  font-family: 'Playfair Display', Georgia, serif !important;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (min-width: 1400px) {
  #galleryGrid { grid-template-columns: repeat(4, 1fr) !important; }
  #galleryGrid .gallery-item:nth-child(7) { grid-column: span 2; aspect-ratio: 2/1; }
}

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr !important; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2.5rem !important; }
}

@media (max-width: 992px) {
  :root { --gutter: 2rem; }
  #galleryGrid { grid-template-columns: repeat(2, 1fr) !important; }
  #galleryGrid .gallery-item:nth-child(7) { grid-column: 1 !important; aspect-ratio: 1 !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.5rem; }

  .hero-slide-title { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .hero-slide-sub { font-size: .82rem; }
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next { display: none !important; }

  #galleryGrid { grid-template-columns: repeat(2, 1fr) !important; }
  #galleryGrid .gallery-item:nth-child(7) { grid-column: 1 !important; aspect-ratio: 1 !important; }

  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr !important; }
  .booking-form-wrap { padding: 1.75rem !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .about-stats { gap: 2rem; }
  .contact-bar-inner { flex-direction: column; text-align: center; }
  .contact-bar-actions { justify-content: center; }
  .lightbox-nav { display: none; }
  .section { padding: clamp(3rem, 7vw, 5rem) 0; }
  #wa-float { width: 56px; height: 56px; bottom: 1.5rem; right: 1.25rem; }
  #rapBackTop { right: 1.25rem; bottom: 5.5rem; }
  .mobile-nav-link { font-size: 2rem; }
  .nav-extra { gap: .5rem; }
}

@media (max-width: 576px) {
  :root { --gutter: 1.1rem; }
  #galleryGrid { grid-template-columns: 1fr !important; }
  .hero-slide-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .section-title { font-size: clamp(1.9rem, 7vw, 2.8rem) !important; }
  .booking-form-wrap { padding: 1.35rem !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .btn-primary, .btn-ghost { padding: .8rem 1.65rem; font-size: .6rem; }
  .services-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 375px) {
  :root { --gutter: .9rem; }
  .hero-slide-title { font-size: 1.9rem; }
  .nav-logo-text { display: none; }
  .services-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 320px) {
  :root { --gutter: .75rem; }
  .hero-slide-title { font-size: 1.7rem; }
}

/* Ultra-wide */
@media (min-width: 1600px) { :root { --max-w: 1540px; } }
@media (min-width: 2000px) { :root { --max-w: 1820px; font-size: 18px; } }

/* Print */
@media print {
  #navbar, #loader, #wa-float, #rapBackTop, .hero-scroll { display: none; }
  body { background: white; color: black; }
}

/* ── No horizontal scroll guard ─────────────────────────── */
html, body { max-width: 100%; overflow-x: hidden; }

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO CATEGORIES SECTION — Added for Harish Portfolio
═══════════════════════════════════════════════════════════════ */

/* Portfolio Categories Section */
.portfolio-cats-section {
  background: var(--off-white);
}

.portcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.portcat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.5rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portcat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transition: transform .5s var(--ease);
  transform-origin: left;
}

.portcat-card:hover::before { transform: scaleX(1); }
.portcat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,.1);
}

.portcat-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--charcoal), var(--dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.portcat-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .35rem;
  line-height: 1.2;
}

.portcat-sub {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
  display: block;
}

.portcat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.portcat-list li {
  font-size: .78rem;
  font-weight: 300;
  color: #5a5855;
  padding: .32rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.portcat-list li:last-child { border-bottom: none; }

.portcat-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.portcat-count {
  font-size: .65rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--light);
  border-radius: var(--radius-pill);
  padding: .15rem .55rem;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.portcat-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--trans-fast);
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}

.portcat-cta:hover {
  color: var(--gold-dark);
  gap: .7rem;
}

/* ── Navbar improvements for mobile ─────────────────────── */
#navbar {
  gap: .5rem;
}

.nav-extra {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

/* Fix navbar logo text overflow on tablet */
@media (max-width: 1100px) {
  .nav-logo-tagline { display: none; }
  .nav-links { gap: 1.25rem; }
}

@media (max-width: 980px) {
  .nav-logo-name { font-size: .82rem; }
}

/* ── Portcat responsive ──────────────────────────────────── */
@media (max-width: 1100px) {
  .portcat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .portcat-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .portcat-card { padding: 1.5rem 1.35rem; }
}

/* ── Fix mobile nav drawer ───────────────────────────────── */
#mobile-nav {
  padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 5vw, 3rem) 2rem;
}

@media (max-width: 480px) {
  .mobile-nav-link { font-size: 1.6rem; }
  .mobile-nav-cta { font-size: .68rem; }
}

/* ── Contact bar responsive fix ─────────────────────────── */
@media (max-width: 576px) {
  .contact-bar-actions {
    flex-wrap: wrap;
    gap: .5rem;
  }
  .contact-bar-actions .btn-primary,
  .contact-bar-actions .btn-outline-light {
    flex: 1 1 calc(50% - .25rem);
    min-width: 0;
    justify-content: center;
  }
}

/* ── Footer grid fix ─────────────────────────────────────── */
@media (max-width: 480px) {
  .footer-grid { gap: 1.75rem !important; }
  .footer-brand-logo { width: 56px; height: 56px; }
  .footer-brand-name { font-size: 1rem; }
}

/* ── Hero action buttons mobile ──────────────────────────── */
@media (max-width: 400px) {
  .hero-slide-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
  .hero-slide-actions .btn-primary,
  .hero-slide-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ── Services grid improvement ───────────────────────────── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr !important; gap: .75rem !important; }
  .service-card { padding: 1.4rem 1.25rem; }
}

/* ── Booking form mobile ─────────────────────────────────── */
@media (max-width: 480px) {
  .booking-form-wrap { border-radius: var(--radius-md) !important; }
  .form-submit { width: 100%; justify-content: center; }
}

/* ── About grid mobile ───────────────────────────────────── */
@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
  .about-stat-val { font-size: 1.6rem !important; }
}

/* ── Testimonials mobile ─────────────────────────────────── */
@media (max-width: 576px) {
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonial-card { padding: 1.5rem !important; }
}

/* ── Stats strip mobile ──────────────────────────────────── */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1px !important; }
  .stat-item { padding: 1.75rem 1rem !important; }
  .stat-val { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
}

/* ── Gallery filter overflow fix ─────────────────────────── */
.cat-filter-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .5rem;
}
.cat-filter-wrap::-webkit-scrollbar { display: none; }
.cat-filter-wrap { display: flex; flex-wrap: nowrap; gap: .5rem; }

@media (max-width: 768px) {
  .cat-btn { flex-shrink: 0; white-space: nowrap; }
}

/* ── Section inner max-width consistency ─────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

