/* ============================================================
   PHOTOGRAPHE BELLA — Premium Dark Luxury Theme v3
   Complete rewrite: Mobile-first, premium pack cards, logo image,
   floating buttons, pulse CTAs, no emojis
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #070707;
  --bg-alt:      #0D0D10;
  --bg-card:     #111114;
  --bg-card-h:   #16161A;
  --gold:        #C9A84C;
  --gold-h:      #E2C36B;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-glow:   rgba(201,168,76,0.25);
  --gold-border: rgba(201,168,76,0.3);
  --cream:       #F2EDE4;
  --cream-dim:   rgba(242,237,228,0.65);
  --grey:        #8A8A8E;
  --grey-dark:   #2A2A2E;
  --grey-border: #1E1E22;
  --white:       #FFFFFF;
  --font-d:      'Playfair Display', Georgia, serif;
  --font-s:      'Cormorant Garamond', Georgia, serif;
  --font-b:      'Inter', -apple-system, sans-serif;
  --max-w:       1200px;
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --radius:      2px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-b);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold-h); }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.section-subtitle {
  font-family: var(--font-s);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--grey);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 50px;
  width: 200px;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-monogram {
  text-align: center;
  opacity: 0;
  animation: preloaderFadeIn 1s .2s var(--ease-out) forwards;
}
.monogram-letters {
  display: block;
  font-family: var(--font-d);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .12em;
  line-height: 1;
  background: linear-gradient(165deg, #E2C36B 0%, #C9A84C 40%, #B5952F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.monogram-name {
  display: block;
  font-family: var(--font-s);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .25em;
  margin-top: 4px;
  opacity: .7;
}
.preloader-line {
  width: 100px;
  height: 1px;
  background: var(--grey-dark);
  position: relative;
  overflow: hidden;
}
.preloader-line-fill {
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--gold);
  animation: preloaderBar 1.8s .4s var(--ease) forwards;
}
@keyframes preloaderFadeIn { to { opacity: 1; } }
@keyframes preloaderBar { to { width: 100%; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(7,7,7,0.94);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 8px 0;
  box-shadow: 0 1px 0 var(--gold-dim);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity .3s;
}
.nav-logo:hover { opacity: .85; }
.nav-logo-mark {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(165deg, #E2C36B 0%, #C9A84C 40%, #B5952F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-text {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.nav-logo-text em {
  font-style: normal;
  font-weight: 500;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--cream-dim);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease-out), left .4s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; left: 0; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: transform .3s var(--ease), opacity .2s;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-media video {
  display: none;
  /* Fix for videos recorded in portrait but with wrong rotation metadata */
  transform: rotate(0deg);
}
.hero-media.video-ready video { display: block; }
.hero-media.video-ready img { display: none; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(7,7,7,0.70) 0%,
      rgba(7,7,7,0.25) 30%,
      rgba(7,7,7,0.30) 55%,
      rgba(7,7,7,0.85) 100%
    );
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  box-shadow: inset 0 0 150px 60px rgba(7,7,7,0.5);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}
.hero-content h1 {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8), 0 0 80px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1s 2.4s var(--ease-out) forwards;
}
.hero-content h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-tagline {
  font-family: var(--font-s);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--white);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: .04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9);
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .8s 2.7s var(--ease-out) forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 16px 44px;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .35s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .8s 3s var(--ease-out) forwards, ctaPulse 3s 4.5s ease-in-out infinite;
}
.hero-cta:hover {
  background: var(--gold-h);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.hero-cta:active { transform: scale(.97); }
.hero-cta svg { width: 18px; height: 18px; fill: currentColor; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 24px 8px rgba(201,168,76,0.12); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  animation: heroIn 1s 3.3s var(--ease-out) forwards;
}
.hero-scroll-line {
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: .8; transform: scaleY(1.1); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }

/* ============================================================
   SOBRE NOSOTRAS
   ============================================================ */
.about-content {
  max-width: 640px;
  margin: 0 auto;
}
.about-content p {
  font-size: .98rem;
  color: var(--cream);
  line-height: 1.85;
  opacity: .88;
}
.about-content p + p { margin-top: 18px; }
.about-quote {
  margin-top: 40px;
  padding: 28px 24px;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  font-family: var(--font-s);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  opacity: .9;
  letter-spacing: .02em;
}

/* ============================================================
   BUTTONS — Premium unified system
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 36px;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .35s var(--ease);
  min-height: 48px;
}
.btn-primary:hover {
  background: var(--gold-h);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.btn-primary:active { transform: scale(.97); }
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; }
.btn-primary--lg { padding: 16px 44px; font-size: .85rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  padding: 14px 36px;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: all .35s var(--ease);
  min-height: 48px;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-h);
  background: var(--gold-dim);
  transform: translateY(-2px);
}
.btn-outline:active { transform: scale(.97); }
.btn-outline svg { width: 18px; height: 18px; fill: currentColor; }

/* ============================================================
   PACK CARDS — Premium redesign, NO EMOJIS
   ============================================================ */
.packs-intro {
  font-family: var(--font-s);
  font-size: 1.1rem;
  color: var(--cream-dim);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 48px;
}
.packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.packs-note {
  margin-top: 40px;
  font-size: .88rem;
  color: var(--grey);
}
.packs-note a { text-decoration: underline; }

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.pack-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

/* Featured pack (Prestige) */
.pack-card--featured {
  border-color: var(--gold);
  background: linear-gradient(165deg, var(--bg-card) 0%, rgba(201,168,76,0.04) 100%);
  box-shadow: 0 0 30px rgba(201,168,76,0.08);
}
.pack-card--featured:hover {
  border-color: var(--gold-h);
  box-shadow: 0 0 50px rgba(201,168,76,0.15), 0 8px 40px rgba(0,0,0,0.3);
}

/* Popular pack (Élite) */
.pack-card--popular {
  border-color: var(--gold-border);
}

.pack-card__badge {
  display: inline-block;
  font-family: var(--font-b);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 14px;
  margin-bottom: 16px;
}
.pack-card--featured .pack-card__badge {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.pack-card__name {
  font-family: var(--font-d);
  font-size: 1.7rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.pack-card__subtitle {
  font-family: var(--font-s);
  font-size: .95rem;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 24px;
}
.pack-card__divider {
  width: 40px;
  height: 1px;
  background: var(--gold-border);
  margin-bottom: 24px;
}

.pack-card__section-title {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 20px;
}
.pack-card__section-title:first-of-type { margin-top: 0; }

.pack-card__list {
  list-style: none;
  margin-bottom: 8px;
}
.pack-card__list li {
  font-size: .88rem;
  color: var(--cream);
  opacity: .8;
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}
.pack-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-border);
  font-size: .75rem;
}

.pack-card__cambios {
  margin-top: 16px;
  font-family: var(--font-s);
  font-size: .95rem;
  color: var(--gold);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--grey-border);
}

.pack-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 28px;
  padding: 14px 24px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  transition: all .35s var(--ease);
  min-height: 48px;
}
.pack-card__cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,168,76,0.25);
}
.pack-card__cta:active { transform: scale(.97); }
.pack-card__cta svg { width: 16px; height: 16px; fill: currentColor; }

.pack-card--featured .pack-card__cta {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.pack-card--featured .pack-card__cta:hover {
  background: var(--gold-h);
  box-shadow: 0 8px 35px rgba(201,168,76,0.35);
}

/* ============================================================
   GALLERY — Masonry
   ============================================================ */
.gallery-grid {
  columns: 2;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .6s var(--ease-out), filter .6s;
  filter: brightness(.92);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* ============================================================
   CINEMA PLAYER
   ============================================================ */
.cinema-player {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg);
}
.cinema-player video {
  width: 100%;
  display: block;
}
.cinema-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,7,7,0.45);
  cursor: pointer;
  transition: background .3s;
  z-index: 2;
}
.cinema-play-btn:hover { background: rgba(7,7,7,0.25); }
.cinema-play-btn svg {
  width: 56px; height: 56px;
  fill: var(--gold);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
  transition: transform .3s var(--ease);
}
.cinema-play-btn:hover svg { transform: scale(1.15); }
.cinema-play-btn.hidden { display: none; }
.cinema-text {
  font-family: var(--font-s);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-dim);
  margin-top: 28px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto;
}
.contact-form label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
  margin-top: 18px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  color: var(--cream);
  padding: 14px 16px;
  font-family: var(--font-b);
  font-size: .9rem;
  transition: border-color .3s;
  min-height: 48px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  margin-top: 24px;
  width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--grey-border);
  text-align: center;
}
.footer-monogram {
  margin: 0 auto 20px;
}
.footer-monogram span {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 400;
  background: linear-gradient(165deg, #E2C36B 0%, #C9A84C 40%, #B5952F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .6;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: .82rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-links svg { fill: currentColor; }
.footer-copy {
  font-size: .75rem;
  color: var(--grey);
}
.footer-copy a { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.floating-btns.visible {
  opacity: 1;
  transform: translateY(0);
}
.floating-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  background: var(--bg-card);
  border: 1px solid var(--grey-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.floating-btn svg {
  width: 18px; height: 18px;
  fill: var(--gold);
}
.floating-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.floating-btn:hover svg { fill: var(--gold-h); }
.floating-btn:active { transform: scale(.93); }

.floating-btn--wa { }
.floating-btn--ig { }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  transition: color .3s, transform .3s;
  font-size: 2rem;
  z-index: 10;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close { top: 16px; right: 16px; font-size: 2.2rem; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

.lightbox-counter {
  margin-top: 16px;
  font-size: .78rem;
  color: var(--grey);
  letter-spacing: .08em;
}
.lightbox-caption {
  font-family: var(--font-s);
  font-size: .9rem;
  font-style: italic;
  color: var(--cream-dim);
  margin-top: 6px;
}

/* ============================================================
   RESPONSIVE — Mobile First
   ============================================================ */
@media (min-width: 600px) {
  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    columns: 3;
    column-gap: 10px;
  }
  .gallery-item { margin-bottom: 10px; }
}

@media (min-width: 960px) {
  .packs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .gallery-grid {
    columns: 4;
    column-gap: 12px;
  }
  .gallery-item { margin-bottom: 12px; }
  .section { padding: 100px 0; }
  .container { padding: 0 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(7,7,7,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--grey-border);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }

  .hero-content h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .hero-tagline { font-size: 1rem; margin-bottom: 28px; }
  .hero-cta { padding: 14px 32px; font-size: .8rem; }

  .contact-channels {
    flex-direction: column;
    align-items: center;
  }
  .contact-channels .btn-primary,
  .contact-channels .btn-outline {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 1.8rem; }
  
  .nav-logo-mark { font-size: 1.3rem; }
  .nav-logo-text { font-size: .6rem; }

  .pack-card { padding: 28px 20px; }
  .pack-card__name { font-size: 1.4rem; }
  
  .about-quote { padding: 20px 16px; font-size: 1.05rem; }
  
  .floating-btns { bottom: 16px; right: 14px; }
  .floating-btn { width: 40px; height: 40px; }
  .floating-btn svg { width: 16px; height: 16px; }
}
