/* ================================================
   RAMG PRODUCTION — LUXURY EDITORIAL THEME
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Pinyon+Script&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CUSTOM BRAND FONTS ===== */
@font-face {
  font-family: 'Quince';
  src: url('../assets/fonts/Quince.otf') format('opentype'),
       url('../assets/fonts/Quince.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hugh is Life';
  src: url('../assets/fonts/Hugh-is-Life.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- DESIGN TOKENS --- */
:root {
  --clr-bg:         #09090b;
  --clr-bg-light:   #121215;
  --clr-bg-card:    #131316;
  --clr-gold:       #dfb142;
  --clr-gold-light: #f7e28b;
  --clr-gold-dark:  #b88a28;
  --clr-white:      #f5f5f7;
  --clr-muted:      #a1a1aa;
  --clr-border:     rgba(223, 177, 66, 0.18);
  --font-serif:     'Cormorant Garamond', 'Playfair Display', 'Quince', Georgia, serif;
  --font-script:    'Pinyon Script', 'Hugh is Life', cursive, serif;
  --font-sans:      'Plus Jakarta Sans', 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cinematic: 'Cinzel', serif;
  --nav-h:          80px;
  --ease-gold:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--clr-bg); color: var(--clr-white); font-family: var(--font-sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; }


/* --- GLOBAL PRELOADER --- */
.global-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: var(--clr-bg, #070707);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: auto;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.global-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Content Layer */
.preloader-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.global-preloader.is-revealing .preloader-content {
  opacity: 0;
  transform: scale(0.95) translateY(-20px);
}

/* Minimalist Spinner Animation */
.preloader-minimal-spinner {
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(223, 177, 66, 0.15);
  border-top-color: var(--clr-gold, #dfb142);
  border-radius: 50%;
  animation: preloader-spin-minimal 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.preloader-ring-inner {
  position: absolute;
  inset: 5px;
  border: 1.5px solid transparent;
  border-bottom-color: rgba(255, 246, 209, 0.85);
  border-radius: 50%;
  animation: preloader-spin-reverse 1.3s linear infinite;
}

.preloader-brand-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--clr-gold, #dfb142);
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* Luxury Progress Bar Track & Fill */
.preloader-bar-container {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: visible;
  margin-bottom: 20px;
}

.preloader-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8860b 0%, #dfb142 50%, #fff6d1 100%);
  border-radius: 4px;
  transition: width 0.15s ease-out;
}

.preloader-bar-glow {
  position: absolute;
  top: -3px;
  left: 0%;
  width: 12px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  filter: blur(4px);
  transform: translateX(-50%);
  opacity: 0.9;
  transition: left 0.15s ease-out;
  pointer-events: none;
}

/* Footer Info (Status & Counter) */
.preloader-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
}

.preloader-status {
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.preloader-counter {
  font-family: var(--font-serif, 'Cinzel', serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-gold, #dfb142);
  letter-spacing: 0.05em;
}

/* Animations */
@keyframes preloader-spin-minimal {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloader-spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}


/* --- WALLPAPER BACKGROUND --- */
.bg-wallpaper {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: -999;
  pointer-events: none;
  background: #000000;
}

.bg-wallpaper__inner {
  display: none;
}

@keyframes bg-zoom-global {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 2px; }
::selection { background: var(--clr-gold); color: #ffffff; }

/* ===== NAVIGATION & HAMBURGER ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  width: 100%;
  height: 80px;
  display: flex; 
  align-items: center;
  justify-content: space-between; 
  padding: 0 4vw;
  background: #08080a;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}
.nav.scrolled {
  background: #08080a;
  border-bottom: 1px solid var(--clr-border);
}

/* TOP LEFT BRAND LOGO */
.nav__brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: auto;
  transition: transform 0.35s var(--ease-gold);
}

.nav__brand-logo:hover {
  transform: translateY(-1px) scale(1.02);
}

.nav__brand-logo-img {
  height: 62px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.nav__brand-logo:hover .nav__brand-logo-img {
  filter: none !important;
}

@media (max-width: 768px) {
  .nav {
    height: 70px;
    padding: 0 16px;
  }
  .nav__brand-logo-img,
  .nav__overlay-logo-img {
    height: 54px;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .nav {
    height: 64px;
    padding: 0 12px;
  }
  .nav__brand-logo-img,
  .nav__overlay-logo-img {
    height: 48px;
    max-width: 190px;
  }
}

.nav__logo { display: flex; align-items: center; line-height: 1; text-decoration: none; }
.nav__logo-icon { font-family: var(--font-serif); font-size: 26px; font-weight: 500; font-style: italic; color: var(--clr-gold); letter-spacing: 2px; text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8); }
.nav__logo-text { display: none !important; }
.nav__overlay-logo-img { height: 90px; width: auto; max-width: 360px; object-fit: contain; margin-bottom: 0; transition: transform 0.35s var(--ease-gold); }

/* ===== DESKTOP NAVBAR LINKS (TRADITIONAL TOP BAR) ===== */
.nav__desktop-links {
  display: flex !important;
  align-items: center !important;
  gap: 36px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.nav__desktop-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-white);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav__desktop-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width 0.3s var(--ease-gold);
}

.nav__desktop-link:hover {
  color: var(--clr-gold-light);
}

.nav__desktop-link:hover::after,
.nav__desktop-link.active::after {
  width: 100%;
}

.nav__desktop-link.active {
  color: var(--clr-gold-light);
}

/* RESPONSIVE TOGGLE: DESKTOP VS MOBILE */
@media (min-width: 901px) {
  .nav__burger {
    display: none !important;
  }
}

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

/* PREMIUM HAMBURGER BUTTON — PROMINENT & BOLD (MOBILE ONLY) */
.nav__burger {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px;
  border: 1px solid var(--clr-gold);
  border-radius: 50px;
  background: var(--clr-bg-card);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.35s var(--ease-gold);
  cursor: pointer;
}

.nav__burger:hover {
  border-color: var(--clr-gold-light);
  background: var(--clr-bg-light);
  box-shadow: 0 10px 32px rgba(223, 177, 66, 0.3);
  transform: translateY(-2px);
}

.nav__burger-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-white);
  transition: color 0.3s;
}

.nav__burger:hover .nav__burger-text {
  color: var(--clr-gold-light);
}

.nav__burger-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
}

.nav__burger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-expo), opacity 0.3s, background 0.3s;
}

.nav__burger:hover .nav__burger-lines span {
  background: #ffffff;
}

.nav__burger.open {
  border-color: var(--clr-gold-light);
  background: #1a1814;
}

.nav__burger.open .nav__burger-text {
  color: var(--clr-gold-light);
}

.nav__burger.open .nav__burger-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--clr-gold-light);
}

.nav__burger.open .nav__burger-lines span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open .nav__burger-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--clr-gold-light);
}

/* OVERLAY MENU — BRIGHT LIGHT THEME */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-gold), visibility 0.5s;
}

.nav__overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav__overlay-bg {
  position: absolute;
  inset: 0;
  background: #08080a;
}

.nav__overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 64px 48px;
  overflow-y: auto;
  box-sizing: border-box;
}

.nav__overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 128px);
  margin-left: -64px;
  margin-top: -32px;
  padding: 24px 64px;
  background: #000000;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.nav__overlay-header .nav__logo-icon {
  color: var(--clr-gold);
}

.nav__overlay-header .nav__logo-text {
  color: var(--clr-muted);
}

.nav__overlay-close {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--clr-gold);
  padding: 12px 28px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.nav__overlay-close:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #000000;
  font-weight: 700;
  transform: translateY(-2px) scale(1.05);
}

.nav__overlay-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: center;
}

.nav__overlay-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav__overlay-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-gold), transform 0.4s var(--ease-gold);
}

.nav__overlay.open .nav__overlay-item {
  opacity: 1;
  transform: translateY(0);
}

.nav__overlay.open .nav__overlay-item:nth-child(1) { transition-delay: 0.1s; }
.nav__overlay.open .nav__overlay-item:nth-child(2) { transition-delay: 0.15s; }
.nav__overlay.open .nav__overlay-item:nth-child(3) { transition-delay: 0.2s; }
.nav__overlay.open .nav__overlay-item:nth-child(4) { transition-delay: 0.25s; }

.nav__overlay-link {
  display: inline-flex;
  align-items: baseline;
  gap: 20px;
  color: #ffffff;
  transition: transform 0.35s var(--ease-gold), color 0.3s;
}

.nav__overlay-num {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--clr-gold-light);
  opacity: 0.9;
}

.nav__overlay-label {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1.5px;
  position: relative;
}

.nav__overlay-link:hover {
  transform: translateX(14px);
  color: var(--clr-gold-light);
}

.nav__overlay-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 48px;
  border-left: 1px solid var(--clr-border);
}

.nav__overlay-info-title {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 8px;
}

.nav__overlay-info-text,
.nav__overlay-info-link {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--clr-white);
  line-height: 1.6;
}

.nav__overlay-info-link:hover {
  color: var(--clr-gold-light);
}

.nav__overlay-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav__overlay-socials a {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--clr-muted);
  transition: color 0.3s, transform 0.3s;
}

.nav__overlay-socials a:hover {
  color: var(--clr-gold-light);
  transform: translateX(4px);
}

.nav__overlay-quote {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .nav__overlay-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav__overlay-info {
    padding-left: 0;
    border-left: none;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav__overlay-content {
    padding: 24px 28px;
  }
  .nav__overlay-header {
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-top: -24px;
    padding: 16px 28px;
  }
}

/* ===== LUXURY DUAL-ELEMENT CUSTOM CURSOR ===== */
@media (min-width: 769px), (hover: hover), (pointer: fine) {
  html, body, a, button, input, select, textarea, [role="button"], *, *::before, *::after {
    cursor: none !important;
  }
}

@media (max-width: 768px) and (pointer: coarse) {
  html, body, *, *::before, *::after {
    cursor: auto !important;
  }
}

/* ===== GOLDEN ARROW CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none !important;
  z-index: 999999;
  opacity: 1;
  transition: opacity 0.3s ease;
  /* offset so tip of arrow is the hotspot */
  transform: translate3d(-200px, -200px, 0);
  will-change: transform;
}

.custom-cursor.is-hidden {
  opacity: 0 !important;
}

/* The SVG arrow element */
.custom-cursor__arrow {
  display: block;
  width: 21px;
  height: 28px;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: top left;
  filter: none;
}

/* Hover — slightly larger */
.custom-cursor.is-hovered .custom-cursor__arrow {
  transform: scale(1.25);
}

/* Click — compress */
.custom-cursor.is-clicked .custom-cursor__arrow {
  transform: scale(0.85);
}

/* Hide the old dot/ring if they ever exist */
.custom-cursor__dot,
.custom-cursor__ring { display: none !important; }

/* ===== HERO SLIDE BRAND OVERLAY (SLIDING IMAGES ONLY) ===== */
.hero__slide-overlay {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 6;
  pointer-events: none;
  text-align: center;
  padding: 0 32px;
}

.hero__slide-brand {
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.4vw, 18px);
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: clamp(4px, 0.6vw, 8px);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
  margin: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  line-height: 1.2;
}

/* ===== SPLIT SCREEN REVEAL ===== */
.split-scroll-container {
  position: relative;
  width: 100%;
}

.split-hero-pin {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 100;
}

.split-hero-pin .hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-reveal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* SPLIT SCREEN CENTER LOGO OVERLAY */
.split-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 90vw;
  will-change: transform, opacity;
}

.split-center-logo-img {
  height: clamp(65px, 9vw, 120px);
  width: auto;
  max-width: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.85));
}

/* CENTER EXPLORE WEBSITE BUTTON — MINIMAL WHITE DESIGN (PC & MOBILE) */
.split-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  transition: all 0.35s var(--ease-gold);
  pointer-events: auto !important;
  z-index: 30;
}

.split-explore-btn:hover,
.split-explore-btn:active {
  background: #ffffff;
  color: #0b0a09;
  border-color: #ffffff;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
  transform: scale(1.03);
}

/* SPLIT SCREEN SCROLL INDICATOR SIGN */
.split-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  will-change: transform, opacity;
}

.split-scroll-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.split-scroll-arrow {
  color: var(--clr-gold-light);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
  animation: split-scroll-bounce 2s infinite var(--ease-gold);
}

@keyframes split-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.split-panel {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 10;
  background-color: #0b0a09;
}

.split-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.split-slide.active {
  opacity: 1;
  z-index: 2;
}

.split-panel-img {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 1;
  filter: none !important;
  pointer-events: none;
}

.split-panel-left {
  left: 0;
  justify-content: center;
}

.split-panel-left .split-panel-img {
  left: 0;
  right: auto;
}

.split-panel-left .split-panel-content {
  position: relative;
  z-index: 3;
  color: var(--clr-gold-light);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.95);
  text-align: center;
}

.split-panel-right {
  right: 0;
  justify-content: center;
}

.split-panel-right .split-panel-img {
  right: 0;
  left: auto;
}

/* MOBILE RESPONSIVE SPLIT REVEAL STACKING */
@media (max-width: 768px) {
  .split-hero-pin {
    height: 100dvh !important;
    min-height: -webkit-fill-available;
  }
  
  .split-panel {
    width: 100vw !important;
    height: 50dvh !important;
  }
  
  .split-panel-left {
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
  }
  
  .split-panel-left .split-panel-img {
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: 100vw !important;
    height: 100dvh !important;
    object-position: center center !important;
  }
  
  .split-panel-right {
    top: 50dvh !important;
    left: 0 !important;
    right: auto !important;
  }

  .split-panel-right .split-panel-img {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: auto !important;
    width: 100vw !important;
    height: 100dvh !important;
    object-position: center center !important;
  }
  
  .split-center-logo-img {
    display: none !important;
  }
  
  .split-explore-btn {
    display: flex !important;
  }
  
  .split-scroll-indicator {
    display: none !important;
  }

  .hero-reveal-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #0b0a09 !important;
  }
}

.split-panel-right .split-panel-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.95);
  text-align: center;
}

.split-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 12rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.02em;
}

.split-title--script {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 9.5vw, 11rem);
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

em, .section-title em, .home-intro__title em, .home-about__content h2 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: normal;
  letter-spacing: 1px;
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper { padding-top: var(--nav-h); min-height: 100vh; }

/* ===== HERO SLIDER ===== */
.hero { position: relative; height: calc(100vh - var(--nav-h)); overflow: hidden; background: #0b0b09; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero__slide.active { opacity: 1; }
.hero__slide picture { display: block; width: 100%; height: 100%; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); transform: scale(1.15); will-change: transform; }
.hero__slide.active img,
.hero__slide.exit img { 
  animation: zoom-out 8s cubic-bezier(0.21, 0.85, 0.35, 1) forwards; 
}
@keyframes zoom-out {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.hero__slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%, rgba(0,0,0,0.15) 100%); }
.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.15); border-top: 1px solid rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.03); color: var(--clr-white); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); backdrop-filter: blur(4px) saturate(160%) brightness(1.1); box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0,0,0,0.3), 0 4px 10px rgba(0,0,0,0.2); overflow: hidden; }
.hero__arrow:hover { border-color: rgba(255, 255, 255, 0.3); border-top: 1px solid rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.08); color: var(--clr-white); transform: translateY(-50%) scale(1.08); box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.4), inset 0 -2px 8px rgba(0, 0, 0, 0.1), 0 14px 30px rgba(0,0,0,0.4), 0 6px 12px rgba(0,0,0,0.25); }
.hero__arrow--prev { left: 40px; }
.hero__arrow--next { right: 40px; }
.hero__dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero__dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(138,111,62,0.3); transition: background 0.3s, transform 0.3s; }
.hero__dot.active { background: var(--clr-gold); transform: scale(1.4); }

/* ===== SECTION HEADINGS ===== */
.section-label { font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: var(--clr-gold); margin-bottom: 14px; }
.section-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px); font-weight: 300; font-style: italic; color: var(--clr-white); line-height: 1.15; }
.section-title em { font-style: normal; color: var(--clr-gold); }
.gold-line { width: 40px; height: 1px; background: var(--clr-gold); margin: 24px 0; opacity: 0.5; }

/* ===== GALLERY PAGE ===== */
.gallery-page { padding: 60px 48px 100px; max-width: 1400px; margin: 0 auto; }
.gallery-page__header { margin-bottom: 60px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.5s; filter: brightness(0.95) saturate(0.95); animation: ambient-zoom-out 16s ease-in-out infinite alternate; will-change: transform; }
.gallery-item:hover img { filter: brightness(0.75) saturate(0.85); }
.gallery-item__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 24px; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%); opacity: 0; transition: opacity 0.45s; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__title { font-family: var(--font-serif); font-size: 22px; font-style: italic; color: #ffffff; margin-bottom: 4px; }
.gallery-item__date { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ===== ESHOOT PAGE ===== */
.eshoot-page { max-width: 880px; margin: 0 auto; padding: 60px 48px 120px; }
.eshoot-page__header { margin-bottom: 60px; }
.eshoot-item { margin-bottom: 80px; }
.eshoot-item__image { width: 100%; aspect-ratio: 3/2; object-fit: cover; margin-bottom: 20px; filter: brightness(0.95) saturate(0.95); transition: filter 0.5s; animation: ambient-zoom-out 16s ease-in-out infinite alternate; will-change: transform; }
.eshoot-item__image:hover { filter: brightness(1) saturate(1); }
.eshoot-item__title { font-family: var(--font-serif); font-size: 28px; font-style: italic; color: var(--clr-gold); margin-bottom: 6px; }
.eshoot-item__date { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-muted); margin-bottom: 14px; }
.eshoot-item__desc { font-size: 15px; color: var(--clr-muted); line-height: 1.8; }

/* ===== STORIES PAGE ===== */
.stories-page { max-width: 960px; margin: 0 auto; padding: 60px 48px 120px; }
.stories-page__header { margin-bottom: 60px; }
.story-item { margin-bottom: 100px; border-bottom: 1px solid var(--clr-border); padding-bottom: 60px; }
.story-item:last-child { border-bottom: none; }
.story-item__image-main { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 12px; filter: brightness(0.93); transition: filter 0.5s; animation: ambient-zoom-out 16s ease-in-out infinite alternate; will-change: transform; }
.story-item__image-main:hover { filter: brightness(1); }
.story-item__thumbnails { display: flex; gap: 4px; margin-bottom: 20px; }
.story-item__thumb { flex: 1; aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: 0.55; transition: opacity 0.3s; filter: brightness(0.9); }
.story-item__thumb:hover, .story-item__thumb.active { opacity: 1; filter: brightness(1); }
.story-item__meta { display: flex; gap: 24px; align-items: center; padding: 12px 0; border-top: 1px solid var(--clr-border); margin-bottom: 32px; }
.story-item__action { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--clr-muted); transition: color 0.3s; }
.story-item__action:hover { color: var(--clr-gold); }
.story-item__title { font-family: var(--font-serif); font-size: 34px; font-style: italic; color: var(--clr-gold); margin-bottom: 8px; }
.story-item__date { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-muted); }

/* ===== ABOUT PAGE ===== */
.about-page { padding: 60px 48px 120px; max-width: 1200px; margin: 0 auto; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 20px; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: brightness(0.95) saturate(0.9); animation: ambient-zoom-out 16s ease-in-out infinite alternate; will-change: transform; }
.about-image-wrap::before { content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px; border: 1px solid var(--clr-border); z-index: -1; }
.about-image-label { position: absolute; bottom: 0; left: 0; right: 0; text-align: center; font-family: var(--font-serif); font-style: italic; font-size: 13px; letter-spacing: 3px; color: var(--clr-muted); background: rgba(255,255,255,0.88); padding: 12px; }
.about-content h1 { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 64px); font-weight: 300; font-style: italic; color: var(--clr-gold); margin-bottom: 28px; line-height: 1.1; }
.about-content p { font-size: 15px; color: var(--clr-muted); line-height: 1.9; margin-bottom: 20px; }
.about-content p strong { color: var(--clr-white); font-weight: 400; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 60px 48px 120px; max-width: 1100px; margin: 0 auto; }
.contact-page__header { margin-bottom: 60px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-group { margin-bottom: 28px; }
.form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-gold); margin-bottom: 8px; }
.form-label span { color: var(--clr-muted); font-size: 8px; }
.form-input, .form-textarea { width: 100%; background: var(--clr-bg-card); border: 1px solid var(--clr-border); color: var(--clr-white); font-family: var(--font-sans); font-size: 13px; font-weight: 300; padding: 14px 16px; outline: none; transition: border-color 0.3s, background 0.3s; -webkit-appearance: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--clr-gold); background: var(--clr-bg-light); color: var(--clr-white); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-submit { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #000000; background: var(--clr-gold); font-weight: 600; padding: 16px 36px; transition: background 0.3s, transform 0.3s; border: none; cursor: pointer; }
.form-submit:hover { background: var(--clr-gold-light); transform: translateY(-2px); }
.contact-info h3 { font-family: var(--font-serif); font-size: 28px; font-style: italic; color: var(--clr-gold); margin-bottom: 32px; }
.contact-detail { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--clr-border); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail__label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-gold); margin-bottom: 6px; }
.contact-detail__value { font-size: 14px; color: var(--clr-muted); line-height: 1.7; }
.contact-detail__value a:hover { color: var(--clr-gold); }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--clr-border); padding: 60px 48px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; background: transparent; }
.footer__quote { max-width: 500px; background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-left: 4px solid var(--clr-gold); padding: 24px 32px; border-radius: 0 12px 12px 0; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.footer__quote p { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: var(--clr-white); line-height: 1.8; margin-bottom: 12px; min-height: 85px; display: flex; align-items: center; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform: translateY(0); }
.footer__quote cite { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-gold-light); font-weight: 500; font-style: normal; display: block; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform: translateY(0); }
.footer__quote.fade-out p, .footer__quote.fade-out cite { opacity: 0; transform: translateY(8px); }
.footer__social { display: flex; gap: 28px; align-items: center; }
.footer__social a { display: inline-flex; align-items: center; color: var(--clr-muted); transition: color 0.3s, transform 0.3s; }
.footer__social a:hover { color: var(--clr-gold); transform: translateY(-3px); }
.footer__social-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--clr-border); }
.footer__copy { font-size: 10px; letter-spacing: 2px; color: rgba(122,112,104,0.5); text-transform: uppercase; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes ambient-zoom-out {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { height: calc(100svh - 64px); }
  .gallery-page, .eshoot-page, .stories-page, .about-page, .contact-page { padding: 40px 24px 80px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-group--row { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px 32px; }
}
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__slide { transition: none; } }
/* ===== HOMEPAGE-ONLY SECTIONS ===== */

/* Hero — full 100vh on homepage (nav sits on top, transparent) */
.hero--full { height: 100vh; }

/* Intro statement */
.home-intro {
  max-width: 900px;
  margin: 120px auto;
  padding: 80px 64px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  text-align: center;
}
.home-intro__eyebrow {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--clr-gold); margin-bottom: 32px; display: block;
}
.home-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300; font-style: italic;
  color: #000000; line-height: 1.2;
  margin-bottom: 32px;
}
.home-intro__title em { 
  font-style: normal; 
  background: linear-gradient(135deg, #8b6c31 0%, #bd9b52 30%, #d4af37 50%, #bd9b52 70%, #8b6c31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-intro__line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  margin: 0 auto 32px;
}
.home-intro__body {
  font-size: 16px; color: #111111; line-height: 1.9;
  max-width: 620px; margin: 0 auto;
}

/* Featured Work */
.home-featured {
  padding: 0 48px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.home-featured__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.home-featured__header-left .section-label { margin-bottom: 8px; }
.home-featured__header-left h2 {
  font-family: var(--font-serif); font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; font-style: italic; color: var(--clr-white);
}
.home-featured__cta {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--clr-gold); border-bottom: 1px solid var(--clr-gold);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.home-featured__cta:hover { color: var(--clr-gold-light); border-color: var(--clr-gold-light); }
.home-featured__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 4px;
}
.home-featured__item {
  position: relative; overflow: hidden; cursor: pointer;
}
.home-featured__item--tall { grid-row: span 2; }
.home-featured__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: filter 0.5s;
  filter: brightness(0.92) saturate(0.9);
  transform: scale(1.4); /* Start heavily zoomed in */
  will-change: transform;
}
.home-featured__item.in-view img {
  animation: zoom-out-scroll 25s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes zoom-out-scroll {
  0% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.home-featured__item:hover img { filter: brightness(0.72); }
.home-featured__item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.58) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
}
.home-featured__item:hover .home-featured__item-label { opacity: 1; }
.home-featured__item-label p {
  font-family: var(--font-serif); font-size: 18px; font-style: italic; color: #fff;
}

/* Services strip */
.home-services {
  padding: 100px 48px;
  background: #ffffff;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.home-services__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  background: transparent;
}
.home-service {
  background: transparent;
  border: 1px solid rgba(224, 219, 212, 0.6);
  padding: 52px 44px; position: relative;
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
}
.home-service:hover { background: rgba(255,255,255,0.2); }
.home-service__num {
  font-family: var(--font-serif); font-size: 48px; font-style: italic;
  color: #000000; line-height: 1; margin-bottom: 28px;
  transition: color 0.35s;
}
.home-service:hover .home-service__num { color: var(--clr-gold); opacity: 0.3; }
.home-service__title {
  font-family: var(--font-serif); font-size: 24px; font-style: italic;
  background: linear-gradient(135deg, #5c4415 0%, #8b6c31 25%, #bd9b52 45%, #8b6c31 65%, #5c4415 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.home-service__desc { font-size: 13px; color: var(--clr-muted); line-height: 1.8; }
.home-service__arrow {
  position: absolute; bottom: 44px; right: 44px;
  font-size: 20px; color: var(--clr-gold); opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.home-service:hover .home-service__arrow { opacity: 1; transform: translateX(4px); }


/* Cinema Showcase (Featured Player + Playlist Cards) */
.home-cinema {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-cinema__header {
  margin-bottom: 32px;
}

.home-cinema__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000000;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(149, 117, 49, 0.2);
  margin-bottom: 24px;
}

.home-cinema__click-capture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  cursor: pointer;
  display: none;
  pointer-events: none; /* Default: don't block clicks */
}

.home-cinema__stage.is-initialized .home-cinema__click-capture {
  display: block;
  pointer-events: auto; /* Enable only before video plays */
}

/* When video is actively playing, click-capture must NOT block the YouTube iframe */
.home-cinema__stage.is-playing .home-cinema__click-capture {
  pointer-events: none;
}

.home-cinema__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.home-cinema__cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-cinema__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-cinema__stage:hover .home-cinema__thumb {
  transform: scale(1.02);
}

.home-cinema__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
}

.home-cinema__meta {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  z-index: 6;
  pointer-events: none;
}

.home-cinema__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold, #957531);
  margin-bottom: 6px;
}

.home-cinema__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.home-cinema__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--clr-gold, #957531);
  background: rgba(19, 19, 22, 0.8);
  color: var(--clr-gold, #957531);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              background-color 0.3s ease, 
              color 0.3s ease, 
              opacity 0.4s ease, 
              visibility 0.4s ease;
  backdrop-filter: blur(8px);
}

.home-cinema__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--clr-gold, #957531);
  color: #131316;
  box-shadow: 0 15px 35px rgba(149, 117, 49, 0.4);
}

.home-cinema__play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.home-cinema__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: none;
}

/* When playing, lift the player above the click-capture so iframe controls work */
.home-cinema__stage.is-playing .home-cinema__player {
  z-index: 6;
}

/* Playlist Cards Container */
.home-cinema__playlist-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.home-cinema__playlist-wrap::-webkit-scrollbar {
  display: none;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-nav:hover {
  background: var(--clr-gold);
  color: #000;
  border-color: var(--clr-gold);
}
.carousel-nav.prev {
  left: 16px;
}
.carousel-nav.next {
  right: 16px;
}
.carousel-nav svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .carousel-nav { 
    display: flex !important;
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    z-index: 25;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  .carousel-nav.prev {
    left: 6px;
  }
  .carousel-nav.next {
    right: 6px;
  }
  .carousel-nav svg {
    width: 22px;
    height: 22px;
  }
}

.home-cinema__playlist {
  display: flex;
  gap: 20px;
  width: max-content;
}

.home-cinema__card {
  flex: 0 0 75vw;
  max-width: 1000px;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
}
.home-cinema__card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  background: #111114;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.home-cinema__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}
.home-cinema__card:hover .home-cinema__card-img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 80px;
  height: 80px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.play-overlay svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.home-cinema__card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

/* End of cinema styles */

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .home-cinema {
    padding: 60px 16px;
  }
  .home-cinema__meta {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .home-cinema__title {
    font-size: 17px;
  }
  .home-cinema__play-btn {
    width: 64px;
    height: 64px;
  }
  .home-cinema__playlist-wrap {
    margin: 0 -16px;
    padding: 0 16px 16px 16px;
  }
  .home-cinema__card {
    flex: 0 0 85vw;
  }
}

/* About teaser */
.home-about {
  padding: 120px 48px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.home-about__img-wrap { position: relative; }
.home-about__img-wrap img,
.home-about__img-wrap video {
  width: 100%; height: auto;
  filter: brightness(0.94) saturate(0.9);
  border: 10px solid #ffffff;
  border-radius: 0;
  box-shadow: 
    inset 0 0 12px rgba(0, 0, 0, 0.7),
    0 20px 45px rgba(0, 0, 0, 0.85);
  will-change: transform;
}
.home-about__img-wrap::after {
  display: none !important;
}

.video-badge {
  position: absolute;
  bottom: -80px;
  left: -30px;
  background: var(--clr-bg);
  padding: 20px 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-badge img {
  width: 260px;
  height: auto;
  display: block;
}

.round-badge {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  z-index: 10;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease;
}

.round-badge:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
}

.round-badge img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.round-badge img.active {
  opacity: 1;
  transform: scale(1);
}
.home-about__content {
  background: #131316 !important;
  padding: 64px 48px;
  border-radius: 12px;
  border: 1px solid var(--clr-border) !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5) !important;
}
.home-about__content p {
  font-size: 15px; color: #d0c8b8 !important; line-height: 1.9; margin-bottom: 20px;
}
.home-about__content .section-label { margin-bottom: 16px; }
.home-about__content h2 {
  font-family: var(--font-serif); font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300; font-style: italic; color: var(--clr-white);
  margin-bottom: 28px; line-height: 1.2;
}
.home-about__content h2 em { font-style: normal; color: var(--clr-gold); }
.home-about__content p {
  font-size: 15px; color: var(--clr-muted); line-height: 1.9; margin-bottom: 20px;
}
.home-about__link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--clr-white); margin-top: 12px;
  border-bottom: 1px solid var(--clr-border); padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.home-about__link:hover { color: var(--clr-gold); border-color: var(--clr-gold); }
.home-about__link::after { content: '→'; transition: transform 0.3s; }
.home-about__link:hover::after { transform: translateX(4px); }

/* Responsive */
@media (max-width: 1024px) {
  .home-featured__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }
  .home-featured__item--tall { grid-row: span 1; }
  .home-services__inner { grid-template-columns: 1fr; }
  .home-about { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== MOBILE — APP-LIKE EXPERIENCE ===== */
@media (max-width: 768px) {

  /* --- Split Screen Reveal (VERTICAL STACKED MOBILE PANELS) --- */
  .split-hero-pin { height: 100dvh !important; min-height: -webkit-fill-available; }
  .split-panel { width: 100vw !important; height: 50dvh !important; height: 50vh !important; }
  .split-panel-left { top: 0 !important; left: 0 !important; right: auto !important; bottom: auto !important; padding: 0 !important; }
  .split-panel-left .split-panel-img { top: 0 !important; left: 0 !important; right: auto !important; bottom: auto !important; width: 100vw !important; height: 100dvh !important; height: 100vh !important; object-fit: cover !important; object-position: center center !important; }
  .split-panel-right { top: 50dvh !important; top: 50vh !important; left: 0 !important; right: auto !important; bottom: auto !important; padding: 0 !important; }
  .split-panel-right .split-panel-img { top: auto !important; bottom: 0 !important; left: 0 !important; right: auto !important; width: 100vw !important; height: 100dvh !important; height: 100vh !important; object-fit: cover !important; object-position: center center !important; }
  .split-title { font-size: clamp(3.5rem, 13vw, 6.5rem) !important; font-weight: 400; }
  .split-title--script { font-size: clamp(3.2rem, 12vw, 6rem) !important; }

  /* --- Hero Slider (full-bleed mobile) --- */
  .hero--full { height: 100svh; }
  .hero__arrow { width: 38px; height: 38px; }
  .hero__arrow--prev { left: 14px; }
  .hero__arrow--next { right: 14px; }
  .hero__dots { bottom: 18px; gap: 8px; }
  .hero__slide-overlay { padding: 16px 12px; bottom: 30px; }
  .hero__slide-brand { 
    font-size: clamp(11px, 3.5vw, 15px) !important; 
    text-align: center !important; 
    letter-spacing: 4px !important;
    line-height: 1.2 !important;
    width: 100% !important;
  }

  /* --- Intro Statement (card feel) --- */
  .home-intro {
    margin: 48px 14px;
    padding: 48px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  }
  .home-intro__title { font-size: clamp(28px, 7vw, 42px); margin-bottom: 20px; }
  .home-intro__line { height: 40px; margin-bottom: 20px; }
  .home-intro__body { font-size: 14px; line-height: 1.8; }

  /* --- Featured Work Grid (Creative Staggered Mobile Layout) --- */
  .home-featured { padding: 0 14px 64px; }
  .home-featured__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
  .home-featured__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }
  .home-featured__item {
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
  }
  .home-featured__item--tall {
    grid-row: span 1;
    grid-column: span 2;
    aspect-ratio: 16/10;
  }
  .home-featured__item:nth-child(2) { grid-column: 1; }
  .home-featured__item:nth-child(3) { grid-column: 2; }
  .home-featured__item:nth-child(4) { grid-column: 1; }
  .home-featured__item:nth-child(5) { grid-column: 2; }
  .home-featured__item-label { opacity: 1; padding: 14px 12px 12px; }
  .home-featured__item-label p { font-size: 14px; }

  /* --- Services Strip (stacked cards) --- */
  .home-services { padding: 48px 14px; }
  .home-services__inner { grid-template-columns: 1fr; gap: 14px; }
  .home-service {
    padding: 28px 22px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .home-service__num {
    font-size: 32px;
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: 40px;
  }
  .home-service__title { font-size: 18px; margin-bottom: 8px; }
  .home-service__desc { font-size: 12.5px; line-height: 1.7; }
  .home-service__arrow { opacity: 1; bottom: 28px; right: 22px; font-size: 16px; }

  /* --- About Teaser (stacked, full-width) --- */
  .home-about {
    padding: 48px 14px 64px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-about__img-wrap { overflow: visible; }
  .home-about__img-wrap video,
  .home-about__img-wrap img {
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
  .home-about__img-wrap::after { display: none; }
  .video-badge {
    position: relative;
    bottom: auto; left: auto;
    margin: -24px auto 0;
    width: fit-content;
    border-radius: 12px;
    padding: 14px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .video-badge img { width: 200px; }
  .round-badge {
    top: -20px;
    right: -10px;
    width: 72px;
    height: 72px;
  }
  .home-about__content {
    padding: 32px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  }
  .home-about__content h2 { font-size: clamp(26px, 6vw, 36px); margin-bottom: 16px; }
  .home-about__content p { font-size: 13.5px; line-height: 1.8; margin-bottom: 14px; }

  /* --- Footer (compact mobile) --- */
  .footer { padding: 40px 14px 28px; gap: 24px; }
  .footer__quote { padding: 18px 20px; }
  .footer__quote p { font-size: 14px; min-height: 70px; }
}

/* --- SHINY HOVER EFFECT --- */
.shiny-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.shiny-wrapper::before,
.shiny-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: 5;
  pointer-events: none;
}
.shiny-wrapper:hover::before {
  animation: shine-sweep 2.5s ease forwards;
}
.shiny-wrapper:hover::after {
  animation: shine-sweep 2.5s ease 0.4s forwards;
}
@keyframes shine-sweep {
  0% { left: -150%; }
  100% { left: 250%; }
}

/* --- PREMIUM GOLD/SILVER SHINE FOR CARDS --- */
.home-intro,
.home-services,
.footer__quote {
  position: relative;
  overflow: hidden;
}

.home-intro::before,
.home-services::before,
.footer__quote::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 150%; height: 100%;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(212, 175, 55, 0.3) 40%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(192, 192, 192, 0.35) 55%,
    rgba(212, 175, 55, 0.3) 60%,
    transparent 80%
  );
  animation: premium-shine 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes premium-shine {
  0% { left: -150%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

/* ================================================
   NEW FOLDER LUXURY REDESIGN STYLES
   (About, Contact, Gallery & Lightbox)
   ================================================ */

/* ===== LUXURY EDITORIAL ABOUT PAGE ===== */
.about-editorial-wrapper {
  padding: 40px 48px 120px;
  max-width: 1380px;
  margin: 0 auto;
}

.hero__layout {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 100px;
}

.hero__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 40px 44px;
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--clr-gold);
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.hero__title-wrap {
  overflow: visible;
  line-height: 1.15;
  display: block;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #000000;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.hero__title.italic {
  font-family: var(--font-script);
  padding-left: 1.2rem;
  color: var(--clr-gold);
}

.hero__desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 480px;
  margin-top: 1.8rem;
  font-weight: 300;
  color: #333333;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
  text-decoration: none;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1.5px solid var(--clr-gold);
  padding-bottom: 0.5rem;
  align-self: flex-start;
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.hero__cta:hover {
  color: var(--clr-gold);
  border-color: #111111;
  transform: translateX(4px);
}

.hero__image-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__image-wrapper {
  width: 100%;
  max-width: 580px;
  height: 75vh;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 120px;
}

.editorial-split-section.reverse {
  grid-template-columns: 1fr 1fr;
}

.editorial-image-wrapper {
  width: 100%;
  height: 520px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.editorial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 40px 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.editorial-text-col .hero__eyebrow {
  color: var(--clr-gold);
}

.editorial-text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--clr-gold);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.editorial-text-col p {
  font-size: 1.02rem;
  color: #333333;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.editorial-quote-box {
  border-left: 3px solid var(--clr-gold);
  padding: 14px 20px;
  margin-top: 1.8rem;
  background: rgba(149, 117, 49, 0.08);
}

.editorial-quote-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #111111;
  line-height: 1.7;
  margin-bottom: 0;
}

.editorial-stats-section {
  background: #ffffff;
  padding: 48px 40px;
  margin-bottom: 120px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.editorial-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card__number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--clr-gold);
  line-height: 1;
}

.stat-card__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #222222;
  font-weight: 500;
  margin-top: 0.8rem;
}

/* ===== LUXURY EDITORIAL CONTACT PAGE ===== */
.contact-redesign-wrapper {
  padding: 40px 48px 120px;
  max-width: 1380px;
  margin: 0 auto;
}

.contact-split-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 90px;
  min-height: 75vh;
}

.contact-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-text-box {
  background: #ffffff;
  padding: 40px 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.contact-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(149, 117, 49, 0.08);
  border: 1px solid rgba(149, 117, 49, 0.3);
  backdrop-filter: blur(12px);
  padding: 8px 22px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
  align-self: flex-start;
  font-weight: 500;
}

.contact-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 20px;
}

.contact-main-heading em {
  font-family: var(--font-script);
  color: var(--clr-gold);
}

.contact-hero-bio {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 0;
}

.giant-email-banner {
  background: rgba(18, 18, 15, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 24px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.giant-email-banner:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--clr-gold-light);
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(229, 193, 88, 0.2);
}

.giant-email__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #ffffff;
  letter-spacing: 0.5px;
}

.giant-email__badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e5c158;
  background: rgba(10, 10, 8, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.contact-split-media {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 600px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.contact-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-media-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 8, 0.88);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e5c158;
  border-radius: 4px;
}

.contact-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.platform-card-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px 26px;
  border-radius: 16px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card-item:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.55);
}

.platform-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.platform-card-item:hover .platform-card__icon {
  background: var(--clr-gold);
  color: #ffffff;
  transform: scale(1.08);
}

.platform-card__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 6px;
  font-weight: 500;
}

.platform-card__val {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #111111;
  margin-bottom: 14px;
}

.platform-card__btn {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444444;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 15, 12, 0.95);
  border: 1px solid var(--clr-gold);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.copy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== GALLERY PAGE SHOWCASE & MASONRY ===== */
.gallery-hero-collage {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 20px;
  margin-bottom: 50px;
  align-items: center;
}

.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collage-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-item--left { height: 380px; }
.collage-item--main { height: 480px; }
.collage-item--right { height: 380px; }

.collage-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 10, 8, 0.82);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

.filter-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.filter-btn.active {
  color: #000000;
  font-weight: 600;
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(149, 117, 49, 0.35);
}

.gallery-masonry-wrapper {
  width: 100%;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.4s var(--ease-gold), box-shadow 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-expo), filter 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card--tilt-left:hover { transform: translateY(-6px) rotate(-1.5deg); }
.gallery-card--tilt-right:hover { transform: translateY(-6px) rotate(1.5deg); }

.gallery-card__expand {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 10, 8, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-card:hover .gallery-card__expand {
  opacity: 1;
  transform: scale(1.1);
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background: rgba(10, 10, 8, 0.95);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
  cursor: default !important;
}

.lightbox-modal.active iframe {
  cursor: auto !important;
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 2.4rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer !important;
  z-index: 100000000 !important;
  pointer-events: auto !important;
  transition: transform 0.3s, color 0.3s;
}

.lightbox-close:hover {
  color: var(--clr-gold);
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  z-index: 100000000 !important;
  pointer-events: auto !important;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.lightbox-nav:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav--prev { left: 32px; }
.lightbox-nav--next { right: 32px; }

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-video-container {
  width: 80vw;
  max-width: 850px;
  aspect-ratio: 16/9;
  position: relative;
  background: #000000;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

#lightboxYoutubePlayer {
  width: 100%;
  height: 100%;
  position: relative;
}

.lightbox-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery Video Badge styling */
.gallery-card {
  position: relative;
}

.gallery-card__video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(19, 19, 22, 0.85);
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none; /* Let clicks pass through to open the card */
}

.gallery-card:hover .gallery-card__video-badge {
  background: var(--clr-gold);
  color: #131316;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(149, 117, 49, 0.4);
}

.gallery-card__video-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .lightbox-video-container {
    width: 90vw;
  }
}


.lightbox-caption {
  margin-top: 20px;
  text-align: center;
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--clr-gold);
  margin-bottom: 4px;
}

.lightbox-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== MOBILE APP-FRIENDLY RESPONSIVE OVERHAUL (About, Contact, Gallery) ===== */
@media (max-width: 900px) {
  .about-editorial-wrapper, .contact-redesign-wrapper { padding: 20px 16px 64px; }
  
  /* Force 1 column on all grid splits including .reverse specificity */
  .hero__layout, 
  .editorial-split-section, 
  .editorial-split-section.reverse, 
  .contact-split-hero { 
    display: grid !important;
    grid-template-columns: 1fr !important; 
    gap: 2rem !important; 
    margin-bottom: 60px !important; 
    width: 100% !important;
  }
  
  /* Order images first on mobile */
  .hero__image-col,
  .editorial-image-wrapper,
  .contact-split-media {
    order: -1;
  }
  
  .hero__image-wrapper { height: 48vh; border-radius: 16px; width: 100% !important; }
  .editorial-image-wrapper, .contact-split-media { height: 320px; border-radius: 16px; width: 100% !important; }
  .editorial-text-col, .hero__text-col { width: 100% !important; box-sizing: border-box !important; }
  
  .editorial-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; width: 100% !important; }
  .contact-platforms-grid { grid-template-columns: 1fr; gap: 12px; width: 100% !important; }
  
  /* Gallery Horizontal App Story Showcase */
  .gallery-hero-collage {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 12px;
    margin-bottom: 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-hero-collage::-webkit-scrollbar { display: none; }
  .collage-item {
    flex: 0 0 84%;
    scroll-snap-align: center;
    border-radius: 16px;
  }
  .collage-item--left, .collage-item--right, .collage-item--main { height: 340px; }

  /* Horizontal Scrollable Filter Tabs */
  .gallery-filters {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 4px 16px 14px 2px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 0.68rem;
    border-radius: 20px;
  }

  .gallery-masonry { column-count: 2; column-gap: 10px; width: 100% !important; }
  .gallery-card { margin-bottom: 10px; border-radius: 10px; }
  
  /* Gallery Header Line Alignment */
  .gallery-page__header { text-align: center; margin-bottom: 28px; }
  .gallery-page__header .gold-line { margin: 16px auto !important; }
}

@media (max-width: 600px) {
  .about-editorial-wrapper, .contact-redesign-wrapper, .gallery-page { padding: 16px 12px 50px; width: 100% !important; box-sizing: border-box !important; }
  
  /* About Mobile App Polish */
  .hero__text-col, .editorial-text-col, .contact-text-box {
    padding: 24px 18px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero__eyebrow { font-size: 0.68rem; letter-spacing: 2.5px; margin-bottom: 1rem; }
  
  /* Title Text Overlap Fix */
  .hero__title-wrap { display: block; width: 100%; margin-bottom: 6px; }
  .hero__title { font-size: clamp(2rem, 7.5vw, 3.2rem) !important; line-height: 1.2 !important; display: block; }
  .hero__title.italic { 
    display: block !important; 
    padding-left: 0.2rem !important; 
    margin-top: 0.2em !important; 
    line-height: 1.3 !important; 
  }
  
  .hero__desc { font-size: 0.92rem; line-height: 1.7; margin-top: 1.2rem; }
  .hero__cta { margin-top: 1.4rem; font-size: 0.75rem; letter-spacing: 2px; }
  
  .editorial-quote-box { padding: 14px 16px; border-radius: 10px; margin-top: 1.4rem; }
  .editorial-quote-box p { font-size: 0.92rem; line-height: 1.7; }
  .editorial-stats-section { padding: 24px 16px; border-radius: 16px; margin-bottom: 50px; width: 100% !important; box-sizing: border-box !important; }
  .stat-card__number { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .stat-card__label { font-size: 0.65rem; letter-spacing: 2px; }

  /* Contact Mobile App Polish */
  .contact-eyebrow-pill { padding: 6px 14px; font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 16px; }
  .contact-main-heading { font-size: clamp(2rem, 7.5vw, 3.2rem) !important; line-height: 1.2 !important; margin-bottom: 14px; }
  .contact-main-heading em { display: inline-block; margin-top: 0.15em; }
  .contact-hero-bio { font-size: 0.92rem; line-height: 1.7; }
  
  /* Giant Email Banner App Button */
  .giant-email-banner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 18px 16px !important;
    border-radius: 14px !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .giant-email-banner > div:first-child {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .giant-email-banner:active { transform: scale(0.98); }
  .giant-email__text { font-size: clamp(0.9rem, 4.2vw, 1.15rem) !important; word-break: break-all !important; text-align: center !important; }
  .giant-email__badge { font-size: 0.62rem; padding: 6px 14px; }
  
  .contact-split-media { height: 260px; border-radius: 14px; width: 100% !important; }
  
  /* Contact Platform Cards iOS List Item style */
  .platform-card-item {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: auto !important;
    padding: 16px 18px !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .platform-card-item:active { transform: scale(0.98); }
  .platform-card-item > div:first-child { display: flex; align-items: center; gap: 14px; }
  .platform-card__icon { margin-bottom: 0; width: 42px; height: 42px; flex-shrink: 0; }
  .platform-card__label { font-size: 0.6rem; margin-bottom: 2px; }
  .platform-card__val { font-size: 1.05rem; margin-bottom: 0; }
  .platform-card__btn { font-size: 0.65rem; }
  .platform-card__btn span { display: none; }

  /* Gallery Mobile App Grid */
  .gallery-page__header { text-align: center; margin-bottom: 24px; }
  .gallery-page__header .section-title { font-size: clamp(1.8rem, 6.5vw, 2.8rem); }
  .gallery-masonry { column-count: 2; column-gap: 8px; width: 100% !important; }
  .gallery-card { margin-bottom: 8px; border-radius: 8px; }
  .gallery-card__expand { width: 30px; height: 30px; font-size: 0.9rem; top: 10px; right: 10px; opacity: 1; background: rgba(0,0,0,0.6); }

  /* Mobile Lightbox modal */
  .lightbox-close { top: 18px; right: 18px; font-size: 2rem; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 2rem; }
  .lightbox-nav--prev { left: 12px; }
  .lightbox-nav--next { right: 12px; }
  .lightbox-title { font-size: 1.3rem; }
  .lightbox-sub { font-size: 0.65rem; }
}

/* MINIMAL CONTACT & SOCIAL CHANNELS — PREMIUM METALLIC DESIGN */
.contact-minimal-section {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(149, 117, 49, 0.15);
}

.contact-minimal-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.contact-minimal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--clr-muted, #3b3632);
  transition: transform 0.35s var(--ease-gold), color 0.35s var(--ease-gold);
}

.contact-minimal-item:hover {
  color: var(--clr-gold, #957531);
  transform: translateY(-5px);
}

.contact-minimal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: var(--clr-gold, #957531);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.35s var(--ease-gold);
}

.contact-minimal-item:hover .contact-minimal-icon {
  color: var(--clr-gold-light, #bd9b52);
  box-shadow: 0 10px 28px rgba(149, 117, 49, 0.22);
  transform: translateY(-2px) scale(1.06);
}

.contact-minimal-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .contact-minimal-grid {
    gap: 32px;
  }
  .contact-minimal-icon {
    width: 50px;
    height: 50px;
  }
  .contact-minimal-name {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

@media (max-width: 600px) {
  .contact-minimal-grid {
    flex-direction: column !important;
    gap: 28px !important;
  }
  .contact-minimal-icon {
    width: 52px !important;
    height: 52px !important;
  }
  .contact-minimal-name {
    font-size: 11px !important;
    letter-spacing: 1px !important;
    word-break: break-all !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   REVIEWS & CLIENT STORIES PAGE STYLES
   ========================================================================== */
.reviews-page {
  padding: 120px 4vw 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-hero {
  text-align: center;
  margin: 0 auto 50px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  padding: 44px 32px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  max-width: 800px;
}

.reviews-hero .section-label {
  color: var(--clr-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.reviews-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-white);
  margin: 12px 0;
}

.reviews-hero__desc {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-muted);
}

/* Trust Stats Banner */
.reviews-stats {
  margin-bottom: 70px;
}

.reviews-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: 32px 24px;
}

.reviews-stat-card {
  text-align: center;
}

.reviews-stat-card__number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--clr-gold-light);
  margin-bottom: 6px;
}

.reviews-stat-card__label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* Spotlight Review */
.reviews-spotlight {
  margin-bottom: 90px;
}

.reviews-spotlight__quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--clr-white);
  margin: 20px 0;
}

.reviews-spotlight__author {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--clr-gold);
}

/* Category Filter Tabs */
.reviews-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.review-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-filter-btn:hover,
.review-filter-btn.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #000000;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(223, 177, 66, 0.3);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.review-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 177, 66, 0.45);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--clr-gold);
  flex-shrink: 0;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2px;
}

.review-card__location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.review-card__stars {
  color: var(--clr-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.review-card__badge {
  color: var(--clr-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-card__date {
  color: rgba(255, 255, 255, 0.45);
}

/* CTA Banner */
.reviews-cta-banner {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.95));
  border: 1px solid rgba(149, 117, 49, 0.3);
  border-radius: 24px;
  padding: 60px 30px;
  text-align: center;
}

.reviews-cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 12px;
}

.reviews-cta-banner p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto 28px;
}

/* Responsive Overrides for Reviews Page */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-page {
    padding: 90px 16px 50px;
  }
  .reviews-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 16px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .review-filter-btn {
    padding: 8px 16px;
    font-size: 0.72rem;
  }
}

/* ================================================
   FLOATING ROUND THEME TOGGLE BUTTON & LIGHT THEME
   ================================================ */
.theme-toggle-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #131316;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(223, 177, 66, 0.2);
  transition: transform 0.35s var(--ease-gold), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}

.theme-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

/* Default state (Dark Mode): Show Sun icon to switch to light mode */
.theme-icon--sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon--moon {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

/* Light Theme state: Show Moon icon to switch to dark mode */
[data-theme="light"] .theme-icon--sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

[data-theme="light"] .theme-icon--moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle-btn:hover {
  transform: scale(1.12) rotate(15deg);
  background: var(--clr-gold);
  color: #000000;
  box-shadow: 0 12px 35px rgba(223, 177, 66, 0.4);
}

.theme-toggle-btn:active {
  transform: scale(0.95);
}

/* --- LIGHT THEME OVERRIDES --- */
[data-theme="light"] {
  --clr-bg:         #f8f7f5;
  --clr-bg-light:   #efece6;
  --clr-bg-card:    #ffffff;
  --clr-gold:       #957531;
  --clr-gold-light: #b89343;
  --clr-gold-dark:  #785912;
  --clr-white:      #111113;
  --clr-muted:      #4a4742;
  --clr-border:     rgba(149, 117, 49, 0.25);
}

[data-theme="light"] body {
  background: var(--clr-bg);
  color: var(--clr-white);
}

[data-theme="light"] .bg-wallpaper {
  background: #f8f7f5;
}

[data-theme="light"] .nav {
  background: #ffffff !important;
  border-bottom: 1px solid var(--clr-border) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .nav.scrolled {
  background: #ffffff !important;
}

[data-theme="light"] .nav__desktop-link {
  color: #111113 !important;
}

[data-theme="light"] .nav__overlay-bg {
  background: #f8f7f5;
}

[data-theme="light"] .nav__overlay-link,
[data-theme="light"] .nav__overlay-info-text,
[data-theme="light"] .nav__overlay-info-link,
[data-theme="light"] .nav__overlay-quote {
  color: #111113;
}

[data-theme="light"] .nav__burger {
  background: #ffffff;
}

[data-theme="light"] .home-intro,
[data-theme="light"] .home-services,
[data-theme="light"] .home-about__content,
[data-theme="light"] .footer__quote,
[data-theme="light"] .review-card,
[data-theme="light"] .stat-card {
  background: #ffffff !important;
  color: #111113 !important;
  border-color: rgba(149, 117, 49, 0.2) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .home-about__content p,
[data-theme="light"] .review-card__text,
[data-theme="light"] .section-desc {
  color: #4a4742 !important;
}

[data-theme="light"] .filter-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
  color: #111113;
}

[data-theme="light"] .filter-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.25);
  color: #000000;
}

[data-theme="light"] .filter-btn.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(149, 117, 49, 0.35);
}

[data-theme="light"] .theme-toggle-btn {
  background: #ffffff;
  color: #111113;
  border-color: var(--clr-gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: var(--clr-gold);
  color: #ffffff;
}

@media (max-width: 768px) {
  .theme-toggle-btn {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ================================================
   TEAM / CREATIVE COLLECTIVE SECTION (10 MEMBERS)
   ================================================ */
.team-section {
  padding: 90px 4vw 100px;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
}

.team-section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.team-section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--clr-white);
  margin-bottom: 18px;
}

.team-section__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Team Card */
.team-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-gold), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-gold);
  box-shadow: 0 16px 40px rgba(223, 177, 66, 0.15);
}

.team-card__img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/4.8;
  overflow: hidden;
  background: #000;
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo), filter 0.4s ease;
}

.team-card:hover .team-card__img {
  transform: scale(1.06);
}

.team-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.team-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card__bio-short {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Toggable Full Bio */
.team-card__bio-full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease-expo), opacity 0.35s ease, margin 0.35s ease;
}

.team-card.is-bio-expanded .team-card__bio-full {
  max-height: 250px;
  opacity: 1;
  margin-top: 6px;
  margin-bottom: 12px;
}

.team-card__bio-full-text {
  font-size: 0.84rem;
  color: var(--clr-white);
  line-height: 1.65;
  border-top: 1px dashed var(--clr-border);
  padding-top: 10px;
}

.team-card__bio-toggle {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.25s ease;
}

.team-card__bio-toggle:hover {
  color: #ffffff;
}

/* Extra Team Members (Hidden until "View All Team Members" is clicked) */
.team-card.is-extra-member {
  display: none;
}

.team-section.is-expanded .team-card.is-extra-member {
  display: flex;
  animation: teamFadeIn 0.5s var(--ease-gold) forwards;
}

@keyframes teamFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Expand All Team Members Button */
.team-grid__controls {
  margin-top: 48px;
  text-align: center;
}

.team-grid__expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clr-gold-light);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-gold);
  padding: 16px 36px;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s var(--ease-gold);
}

.team-grid__expand-btn:hover {
  background: var(--clr-gold);
  color: #000000;
  box-shadow: 0 12px 35px rgba(223, 177, 66, 0.35);
  transform: translateY(-2px);
}

.team-grid__expand-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease-gold);
}

.team-section.is-expanded .team-grid__expand-btn svg {
  transform: rotate(180deg);
}

/* Light Mode Overrides for Team Section */
[data-theme="light"] .team-card {
  background: #ffffff !important;
  border-color: rgba(149, 117, 49, 0.2) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .team-card__name {
  color: #111113 !important;
}

[data-theme="light"] .team-card__bio-short {
  color: #4a4742 !important;
}

[data-theme="light"] .team-card__bio-full-text {
  color: #111113 !important;
  border-top-color: rgba(149, 117, 49, 0.2) !important;
}

[data-theme="light"] .team-grid__expand-btn {
  background: #ffffff;
  color: #957531;
  border-color: #957531;
}

/* ================================================
   ABOUT PAGE EXPANDABLE STORY / SEE MORE
   ================================================ */
.about-expandable-box {
  margin-top: 10px;
  position: relative;
}

.about-expandable-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-expo), opacity 0.4s ease;
}

.about-expandable-box.is-open .about-expandable-content {
  max-height: 500px;
  opacity: 1;
  margin-bottom: 12px;
}

.about-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clr-gold-light);
  background: transparent;
  border: 1px solid var(--clr-border);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.about-expand-btn:hover {
  background: var(--clr-gold);
  color: #000000;
  border-color: var(--clr-gold);
}

[data-theme="light"] .about-expand-btn {
  color: #957531;
  border-color: rgba(149, 117, 49, 0.3);
}

[data-theme="light"] .about-expand-btn:hover {
  background: #957531;
  color: #ffffff;
}





