/* =============================================
   SAKINA — Professional Model Portfolio
   Design System & Complete Styles
   ============================================= */

/* ===========================
   1. DESIGN TOKENS
   =========================== */
:root {
  /* Palette */
  --color-bg: #0A0A0A;
  --color-bg-elevated: #111111;
  --color-surface: #161616;
  --color-text: #F5F0EB;
  --color-text-muted: rgba(245, 240, 235, 0.45);
  --color-text-dim: rgba(245, 240, 235, 0.2);
  --color-accent: #C4A265;
  --color-accent-glow: rgba(196, 162, 101, 0.15);
  --color-border: rgba(245, 240, 235, 0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Outfit', 'Helvetica Neue', 'Arial', sans-serif;

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --space-3xl: 14rem;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);

  /* Durations */
  --dur-fast: 0.3s;
  --dur-normal: 0.6s;
  --dur-slow: 1s;
  --dur-slower: 1.4s;

  /* Layout */
  --nav-height: 70px;
  --container-padding: clamp(1.5rem, 5vw, 6rem);
}

/* ===========================
   2. RESET & BASE
   =========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Luxury Vertical Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(196, 162, 101, 0.4);
  border-radius: 5px;
  border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom cursor hidden to use native responsive cursor */
.cursor,
.cursor-follower {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ===========================
   3. PRELOADER
   =========================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: transform 1.2s var(--ease-in-out-quart);
}

#preloader.loaded {
  transform: translateY(-100%);
  pointer-events: none;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-name {
  display: flex;
  gap: 0.3em;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--color-text);
}

.preloader-name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  animation: preloaderLetterIn 0.7s var(--ease-out-expo) forwards;
}

.preloader-name span:nth-child(1) {
  animation-delay: 0.15s;
}

.preloader-name span:nth-child(2) {
  animation-delay: 0.25s;
}

.preloader-name span:nth-child(3) {
  animation-delay: 0.35s;
}

.preloader-name span:nth-child(4) {
  animation-delay: 0.45s;
}

.preloader-name span:nth-child(5) {
  animation-delay: 0.55s;
}

.preloader-name span:nth-child(6) {
  animation-delay: 0.65s;
}

@keyframes preloaderLetterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-line {
  width: 0;
  height: 1px;
  background: var(--color-accent);
  margin-top: 1.5rem;
  animation: preloaderLineGrow 1.6s 0.9s var(--ease-out-expo) forwards;
}

@keyframes preloaderLineGrow {
  to {
    width: 80px;
  }
}

/* ===========================
   4. CUSTOM CURSOR
   =========================== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out-expo),
    height 0.35s var(--ease-out-expo),
    background 0.3s;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor.active {
  opacity: 1;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(196, 162, 101, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.45s var(--ease-out-expo),
    height 0.45s var(--ease-out-expo),
    border-color 0.3s,
    opacity 0.3s;
  opacity: 0;
}

.cursor-follower.active {
  opacity: 1;
}

.cursor.hovering {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 1.5px solid var(--color-accent);
}

.cursor-follower.hovering {
  width: 64px;
  height: 64px;
  border-color: rgba(196, 162, 101, 0.8);
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {

  .cursor,
  .cursor-follower {
    display: none !important;
  }
}

/* ===========================
   5. NAVIGATION
   =========================== */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--container-padding);
  height: var(--nav-height);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.45) 75%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--dur-fast),
    backdrop-filter var(--dur-fast),
    box-shadow var(--dur-fast);
}

#main-nav.scrolled,
#main-nav.nav-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-text);
  transition: opacity var(--dur-fast);
}

.nav-logo:hover {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.5s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 10002;
}

/* Hamburger - 3 Lines (Hidden on PC, Visible on Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  z-index: 10002;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out-expo),
    width 0.4s var(--ease-out-expo),
    opacity 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  width: 28px;
}

.menu-toggle span:nth-child(2) {
  width: 20px;
}

.menu-toggle span:nth-child(3) {
  width: 28px;
}

/* Open State (3 Lines -> Cross X) */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 28px;
  background: var(--color-accent);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 28px;
  background: var(--color-accent);
}

/* ===========================
   6. MOBILE MENU OVERLAY
   =========================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 99999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  display: flex !important;
}

/* Dedicated Close Cross Button inside Mobile Menu Overlay */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100005;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: 2rem;
  text-align: center;
}

.mobile-menu-inner a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #F5F0EB;
  text-decoration: none;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-inner a:hover {
  color: var(--color-accent);
  transform: scale(1.08) !important;
}

/* ===========================
   7. HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 30%, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.5) 70%),
    linear-gradient(to bottom,
      rgba(10, 10, 10, 0.25) 0%,
      rgba(10, 10, 10, 0.05) 30%,
      rgba(10, 10, 10, 0.15) 55%,
      rgba(10, 10, 10, 0.7) 80%,
      rgba(10, 10, 10, 0.98) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 10vh;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 13vw, 13rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 0.95;
  color: var(--color-text);
  margin: 0;
}

.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  will-change: transform, opacity;
}

.hero-letter.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.1vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: var(--space-md);
  opacity: 0;
  transform: translateY(25px);
}

.hero-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s var(--ease-out-expo),
    transform 1s var(--ease-out-expo);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0;
}

.scroll-indicator.visible {
  opacity: 1;
  transition: opacity 1s 0.6s ease;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 45px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ===========================
   8. SECTION HEADERS (shared)
   =========================== */
.section-header {
  padding: var(--space-2xl) var(--container-padding) var(--space-xl);
  text-align: center;
}

.section-number {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1.1;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  margin-top: var(--space-sm);
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   9. EDITORIAL SECTION
   =========================== */
.editorial {
  position: relative;
  background-color: var(--color-bg);
  transition: background-color 1.2s var(--ease-out-quart);
  padding-bottom: var(--space-xl);
}

.editorial-item {
  padding: var(--space-lg) var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.editorial-image-wrap {
  width: 100%;
  max-width: 750px;
  overflow: hidden;
  position: relative;
}

.editorial-image-wrap img,
.editorial-image-wrap video {
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(8%);
  transform: scale(1.12);
  transition: clip-path 1.4s var(--ease-out-expo),
    transform 1.8s var(--ease-out-expo);
  will-change: clip-path, transform;
}

.editorial-image-wrap.revealed img,
.editorial-image-wrap.revealed video {
  clip-path: inset(0%);
  transform: scale(1);
}

.editorial-image-wrap img:hover,
.editorial-image-wrap video:hover {
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-out-expo);
}

.editorial-meta {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  width: 100%;
  max-width: 650px;
}

.editorial-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.6;
}

.editorial-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.editorial-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.editorial-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ===========================
   10. DIGITALS SECTION
   =========================== */
.digitals {
  background: var(--color-bg);
  padding-bottom: var(--space-2xl);
}

.digitals-layout {
  padding: 0 var(--container-padding);
  max-width: 1100px;
  margin: 0 auto;
}

.digitals-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.digital-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.digital-card-inner {
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-surface);
  aspect-ratio: auto;
}

.digitals-faces .digital-card-inner {
  aspect-ratio: 4 / 5;
}

.digitals-body .digital-card-inner {
  aspect-ratio: 3 / 4;
}

.digital-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.digital-card:hover .digital-card-inner img {
  transform: scale(1.04);
}

.digital-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-top: var(--space-2xs);
}

/* Comp Card */
.comp-card {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-bg-elevated);
}

.comp-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.comp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm) var(--space-lg);
}

.comp-stat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex-shrink: 0;
  min-width: 55px;
}

.stat-divider {
  flex: 1;
  height: 1px;
  background: var(--color-border);
  min-width: 20px;
}

.stat-value {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-text);
  flex-shrink: 0;
}

/* ===========================
   10. MOVEMENT SECTION (EDITORIAL MATCHING SHOWCASE)
   =========================== */
.movement-section {
  background: var(--color-bg);
  padding: 0 0 var(--space-xl) 0;
  position: relative;
}

.movement-card-large {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: radial-gradient(circle at center, #1c1c1c 0%, #090909 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.movement-card-large:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.7);
}

.movement-card-large video.movement-video {
  width: 100% !important;
  height: auto !important;
  max-height: 85vh;
  object-fit: cover;
  display: block;
}

.movement-big-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s ease, color 0.3s ease, opacity 0.4s ease;
  pointer-events: auto;
  cursor: pointer;
}

.movement-card-large:hover .movement-big-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--color-accent);
  color: #0a0a0a;
}

.editorial-image-wrap video,
.movement-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.movement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, transparent 35%, transparent 65%, rgba(10, 10, 10, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-md);
  pointer-events: none;
}

.movement-badge {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.movement-controls {
  align-self: flex-end;
  pointer-events: auto;
}

.video-control-btn {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
}

.video-control-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
  transform: scale(1.08);
}

/* Comp Card Styling in Digitals */
.comp-card {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-bg-elevated);
}

.btn-download-comp:hover {
  background: var(--color-accent);
  color: var(--color-bg) !important;
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

/* ===========================
   11. ABOUT SECTION
   =========================== */
.about {
  background: var(--color-bg);
  padding-bottom: var(--space-md);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  padding: 0 var(--container-padding);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-portrait {
  overflow: hidden;
  border-radius: 2px;
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.about-portrait img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(6%);
  transform: scale(1.1);
  transition: clip-path 1.4s var(--ease-out-expo),
    transform 1.8s var(--ease-out-expo);
}

.about-portrait.revealed img {
  clip-path: inset(0%);
  transform: scale(1);
}

.about-text {
  padding-top: var(--space-sm);
}

.about-lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.drop-cap {
  float: left;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 0.75;
  padding-right: 0.12em;
  padding-top: 0.08em;
  color: var(--color-accent);
}

.about-text p {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 200;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.about-detail {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
}

.detail-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  min-width: 100px;
  flex-shrink: 0;
}

.detail-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

/* ===========================
   12. CONTACT SECTION
   =========================== */
.contact {
  padding: var(--space-xl) var(--container-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.contact-prompt {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 200;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-lg);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.contact-email,
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.contact-email:hover,
.contact-phone:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.contact-socials {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: nowrap;
}

/* ============ LANGUAGE SWITCHER ============ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 162, 101, 0.45);
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  color: var(--color-accent);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(196, 162, 101, 0.4);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

.mobile-lang-switch {
  margin-top: var(--space-md);
}

/* ============ VISIBLE & RECOGNIZABLE SOCIAL BUTTONS ============ */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-social svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-social:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

/* Instagram Button */
.btn-instagram {
  background: rgba(225, 48, 108, 0.12);
  color: #f09433;
  border: 1px solid rgba(225, 48, 108, 0.45);
}

.btn-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.45);
}

/* TikTok Button */
.btn-tiktok {
  background: rgba(0, 242, 234, 0.12);
  color: #00f2fe;
  border: 1px solid rgba(0, 242, 234, 0.45);
}

.btn-tiktok:hover {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #ff0050 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 242, 234, 0.45);
}

.social-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  transition: color var(--dur-fast);
}

.social-link:hover {
  color: var(--color-text);
}

.social-dot {
  color: var(--color-text-dim);
  font-size: 0.6rem;
}

/* ===========================
   13. FOOTER
   =========================== */
.site-footer {
  padding: var(--space-lg) var(--container-padding);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-agency {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--color-accent);
}

.footer-sep {
  color: var(--color-border);
}

.footer-contact-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
  margin: var(--space-xs) 0;
  flex-wrap: wrap;
}

.footer-social-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
  margin: var(--space-xs) 0;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
}

/* ===========================
   14. REVEAL ANIMATIONS
   =========================== */

/* Generic reveal — fade up */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Image reveal — clip-path */
.reveal-image {
  /* initial state handled by img inside */
}

.reveal-image.revealed img {
  /* triggered by JS */
}

/* Card reveal — stagger */
.reveal-card {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
  transition-delay: calc(var(--card-delay, 0) * 0.12s);
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   15. RESPONSIVE
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
  }

  .editorial-image-wrap {
    max-width: 550px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero-content {
    margin-top: 5vh;
  }

  .hero-image {
    object-position: center 0%;
  }

  /* Section headers */
  .section-header {
    padding: var(--space-xl) var(--container-padding) var(--space-lg);
  }

  /* Editorial */
  .editorial-item {
    padding: var(--space-md) var(--container-padding);
  }

  .editorial-image-wrap {
    max-width: 100%;
  }

  .editorial-meta {
    max-width: 100%;
    margin-top: var(--space-md);
    gap: var(--space-sm);
  }

  .editorial-number {
    font-size: 2.5rem;
  }

  /* Digitals */
  .digitals-row {
    gap: clamp(0.5rem, 1.5vw, 1rem);
  }

  .comp-card {
    padding: var(--space-md);
  }

  .comp-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* About */
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-portrait {
    position: static;
    max-width: 350px;
    margin: 0 auto;
  }

  .drop-cap {
    font-size: 3.5rem;
  }

  .about-detail {
    flex-direction: column;
    gap: var(--space-2xs);
  }

  .detail-label {
    min-width: unset;
  }

  /* Contact */
  .contact {
    padding: var(--space-2xl) var(--container-padding);
  }

  .contact::before {
    width: 300px;
    height: 300px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-title {
    letter-spacing: 0.06em;
  }

  .digitals-faces .digital-card-inner {
    aspect-ratio: 3 / 4;
  }

  .digitals-body .digital-card-inner {
    aspect-ratio: 2.5 / 4;
  }

  .editorial-meta {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-image {
    transform: none !important;
  }

  .editorial-image-wrap img {
    clip-path: inset(0%) !important;
    transform: none !important;
  }

  .about-portrait img {
    clip-path: inset(0%) !important;
    transform: none !important;
  }

  .reveal,
  .reveal-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-letter {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-subtitle {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */

.gallery-page {
  background-color: var(--color-bg, #0a0a0a);
  color: var(--color-text, #f4f4f4);
}

.gallery-hero {
  padding: 12rem var(--side-padding, 5vw) 4rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.gallery-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-hero-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #d4af37;
  margin-bottom: 1rem;
}

.gallery-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.gallery-hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.gallery-sec-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.sec-bar-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1.25rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  text-decoration: none;
}

.sec-bar-link:hover,
.sec-bar-link.active {
  color: #0a0a0a;
  border-color: #d4af37;
  background: #d4af37;
  transform: translateY(-2px);
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #d4af37;
  color: #0a0a0a;
  border-color: #d4af37;
  transform: translateY(-4px) scale(1.05);
}

/* GALLERY SECTIONS */
.gallery-section {
  padding: 6rem var(--side-padding, 5vw);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-section-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.gallery-sec-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #d4af37;
  line-height: 1;
}

.gallery-sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.gallery-sec-desc {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* GALLERY GRIDS */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: 380px;
  gap: 2rem;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background-color: #141414;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2rem;
  z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-category {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d4af37;
  margin-bottom: 0.4rem;
}

.gallery-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.gallery-item-meta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-expand-icon,
.video-play-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-item:hover .gallery-expand-icon,
.gallery-item:hover .video-play-badge {
  transform: scale(1.1);
  background: #d4af37;
  color: #0a0a0a;
}

/* DEDICATED VERTICAL REELS / VIDEOS GRID (PC & TABLET) */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 300px));
  justify-content: center;
  gap: 2.5rem 2rem;
  grid-auto-rows: auto;
}

.gallery-video-item {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.4s ease;
  background: radial-gradient(circle at center, #1c1c1c 0%, #090909 100%);
  position: relative;
}

.video-extracted-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-video-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 20px 45px rgba(196, 162, 101, 0.25);
}

.gallery-video-item .gallery-item-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
  border-radius: 12px;
}

.gallery-video-item .video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease-out-expo), background 0.3s ease, color 0.3s ease;
  z-index: 3;
}

.gallery-video-item:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--color-accent);
  color: #0a0a0a;
}

.video-container {
  width: 100%;
  height: 100%;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background-color: rgba(6, 6, 6, 0.96);
  backdrop-filter: blur(15px);
  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: auto;
}

.lightbox-close {
  position: fixed;
  top: 25px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100010;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s var(--ease-out-expo), background 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover {
  background: var(--color-accent);
  color: #0a0a0a;
  transform: scale(1.12) rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10010;
  transition: all 0.3s ease;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-nav:hover {
  background: #d4af37;
  color: #0a0a0a;
  border-color: #d4af37;
}

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

.lightbox-media-container {
  max-width: 85vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media-container img {
  max-width: 85vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-media-container video {
  max-width: 85vw;
  max-height: 75vh;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  outline: none;
}

.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
}

.lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.lightbox-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #d4af37;
  letter-spacing: 0.05em;
}

/* RESPONSIVE GALLERY STYLES */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 400px;
  }

  .gallery-item-wide,
  .gallery-video-item {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    padding: 9rem var(--side-padding, 4vw) 3rem;
  }

  .gallery-section {
    padding: 3.5rem var(--side-padding, 4vw);
  }

  .gallery-sec-bar {
    gap: 0.5rem;
  }

  .sec-bar-link {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(480px, auto);
    gap: 1.5rem;
  }

  .gallery-item {
    min-height: 480px;
    height: 100%;
  }

  .gallery-item img {
    object-position: center 15%;
  }

  .gallery-item-tall {
    grid-row: span 1;
    min-height: 520px;
  }

  .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.3) 45%, transparent 100%);
    padding: 1.25rem;
  }

  .gallery-item-title {
    font-size: 1.35rem;
  }

  .gallery-item-meta {
    font-size: 0.75rem;
  }

  .gallery-expand-icon,
  .video-play-badge {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 46px;
    height: 46px;
    z-index: 100010;
  }

  .lightbox-prev {
    left: 0.5rem;
    width: 44px;
    height: 44px;
  }

  .lightbox-next {
    right: 0.5rem;
    width: 44px;
    height: 44px;
  }

  .lightbox-content-wrap {
    max-width: 95vw;
  }

  .lightbox-media-container img,
  .lightbox-media-container video {
    max-width: 95vw;
    max-height: 70vh;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
  }
}