/* ═══════════════════════════════════════════
   WEAVEDPHOTONS — Design System
   Dark Luxurious Wedding Photography
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Tokens ─── */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-glass: rgba(22, 22, 22, 0.65);
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a07d2e;
  --warm: #f5e6c8;
  --warm-muted: #c4a882;
  --text-primary: #f0ece4;
  --text-secondary: #9a9590;
  --text-muted: #5c5650;
  --border: rgba(201, 168, 76, 0.15);
  --border-hover: rgba(201, 168, 76, 0.4);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.08);
  --shadow-deep: 0 25px 60px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);

  /* Interactive Exposure System */
  --exposure: 1.0;
  --hero-bg-opacity: 0.83;
  --gold-exposed: #c9a84c;
  --gold-bloom: 0 0 10px rgba(201, 168, 76, 0.3);
  --hero-brightness: 100%;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Preloader ─── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--transition), visibility 0.8s;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: pulseGold 2s ease-in-out infinite;
}
.preloader-line {
  width: 120px;
  height: 2px;
  background: var(--bg-card);
  margin-top: 24px;
  border-radius: 1px;
  overflow: hidden;
}
.preloader-line::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: loadSlide 1.2s ease-in-out infinite;
}
@keyframes loadSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@keyframes pulseGold {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ─── Cursor Spotlight ─── */
#cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: transform;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.4s var(--transition);
}
.nav-cta:hover { color: var(--bg-primary); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5.5px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease, transform 8s linear;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  display: none; /* filmstrip-overlay now handles the cinematic gradient */
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--transition) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.7s var(--transition) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s 0.9s var(--transition) forwards;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 1.1s var(--transition) forwards;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--transition);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--transition);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 1.5s var(--transition) forwards;
  opacity: 0;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ─── Section Common ─── */
section {
  position: relative;
  padding: 120px 48px;
}
.section-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-desc { margin: 0 auto; }

/* Divider */
.section-divider {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

/* ─── Gallery (3D Tilt Cards) ─── */
#gallery { background: var(--bg-secondary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1200px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s;
  cursor: pointer;
  will-change: transform;
}
.gallery-item:nth-child(2) { aspect-ratio: 3/3.5; }
.gallery-item:nth-child(5) { aspect-ratio: 3/3.5; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover { box-shadow: var(--shadow-deep), 0 0 60px rgba(201, 168, 76, 0.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  transform: translateY(10px);
  transition: transform 0.4s var(--transition);
}
.gallery-item:hover .gallery-item-overlay h4 { transform: translateY(0); }
.gallery-item-overlay p {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  transform: translateY(10px);
  transition: transform 0.4s 0.05s var(--transition);
}
.gallery-item:hover .gallery-item-overlay p { transform: translateY(0); }

/* ─── About / Story ─── */
#about {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-visual {
  flex: 0 0 420px;
  position: relative;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.about-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content { flex: 1; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
}
.stat p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ─── Testimonials ─── */
#testimonials {
  background: var(--bg-secondary);
  overflow: hidden;
}
.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card {
  text-align: center;
  display: none;
  animation: fadeIn 0.6s var(--transition);
}
.testimonial-card.active { display: block; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 32px;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── Pricing / Get a Quote ─── */
#pricing {
  max-width: 900px;
  margin: 0 auto;
}
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.quote-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}
.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.quote-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.6rem;
}
.quote-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.quote-card > p {
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.quote-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: left;
}
.quote-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.quote-feature .check {
  color: var(--gold);
  font-size: 1rem;
}

/* ─── Instagram Feed ─── */
#instagram {
  text-align: center;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 100%;
  margin-top: 48px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition), filter 0.5s;
}
.insta-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.6);
}
.insta-item::after {
  content: '♡';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-item:hover::after { opacity: 1; }

/* ─── Contact ─── */
#contact {
  background: var(--bg-secondary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-info > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-detail-text p {
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; gap: 20px; }
.form-group { flex: 1; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-primary); }

.form-submit {
  padding: 16px 48px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.4s var(--transition);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

/* ─── Footer ─── */
.footer {
  padding: 60px 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.1);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── Page Transition Overlay ─── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.page-transition .panel {
  position: absolute;
  width: 25%;
  height: 100%;
  background: var(--bg-card);
  transform: scaleY(0);
  transform-origin: bottom;
}
.page-transition .panel:nth-child(1) { left: 0; }
.page-transition .panel:nth-child(2) { left: 25%; }
.page-transition .panel:nth-child(3) { left: 50%; }
.page-transition .panel:nth-child(4) { left: 75%; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── Magnetic Button ─── */
.magnetic { transition: transform 0.2s ease-out; }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--transition);
  cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s var(--transition);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.lightbox-close:hover { transform: rotate(90deg); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  section { padding: 80px 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  #about { flex-direction: column; gap: 48px; padding: 80px 32px; }
  .about-visual { flex: unset; max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-features { grid-template-columns: 1fr; }
  .quote-card { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  /* Mobile menu */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition);
  }
  .mobile-menu.active { opacity: 1; visibility: visible; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 20px; }
  .stories-track { gap: 20px; }
  .story-card { min-width: 260px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   NEW FEATURES — V2 Enhancements
   ═══════════════════════════════════════════ */

/* ─── Hero Video Showreel ─── */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-fallback {
  display: none;
}

/* ─── Sound Toggle ─── */
.sound-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  color: var(--gold);
  font-size: 1.2rem;
}
.sound-toggle:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.15);
  transform: scale(1.1);
}
.sound-toggle .bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}
.sound-toggle .bar {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: height 0.3s;
}
.sound-toggle.playing .bar {
  animation: soundBars 0.6s ease-in-out infinite alternate;
}
.sound-toggle .bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.sound-toggle .bar:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.sound-toggle .bar:nth-child(3) { height: 8px; animation-delay: 0.3s; }
.sound-toggle .bar:nth-child(4) { height: 14px; animation-delay: 0.1s; }
.sound-toggle .bar:nth-child(5) { height: 5px; animation-delay: 0.25s; }
.sound-toggle:not(.playing) .bar {
  height: 3px !important;
  animation: none;
}
@keyframes soundBars {
  0% { height: 4px; }
  100% { height: 18px; }
}

/* ─── Horizontal Scroll Stories ─── */
#stories {
  overflow: hidden;
  background: var(--bg-primary);
}
.stories-container {
  position: relative;
}
.stories-track {
  display: flex;
  gap: 28px;
  padding: 0 48px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.stories-track::-webkit-scrollbar { display: none; }
.stories-track:active { cursor: grabbing; }

.story-card {
  min-width: 340px;
  max-width: 340px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.5s var(--transition), box-shadow 0.5s;
  cursor: pointer;
}
.story-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-deep), 0 0 40px rgba(201, 168, 76, 0.06);
}
.story-card-img {
  width: 100%;
  aspect-ratio: 9/14;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.story-card:hover .story-card-img { transform: scale(1.06); }

.story-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
}
.story-card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.story-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
.story-card-location {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.stories-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.stories-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--transition);
}
.stories-nav button:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

/* ─── Blog / Journal ─── */
#blog {
  background: var(--bg-primary);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--transition);
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body {
  padding: 28px;
}
.blog-card-date {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-card-link {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.blog-card:hover .blog-card-link { gap: 12px; }

/* ─── Client Gallery (Password Protected) ─── */
#client-gallery {
  background: var(--bg-secondary);
  text-align: center;
}
.client-gallery-cta {
  max-width: 600px;
  margin: 0 auto;
}
.client-gallery-lock {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  color: var(--gold);
  transition: all 0.4s var(--transition);
}
.client-gallery-cta:hover .client-gallery-lock {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.client-gallery-cta > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* Client Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--transition);
}
.gallery-modal.active { opacity: 1; visibility: visible; }
.gallery-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s var(--transition);
}
.gallery-modal.active .gallery-modal-box {
  transform: translateY(0) scale(1);
}
.gallery-modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.gallery-modal-box > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.gallery-modal-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.2em;
  outline: none;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.gallery-modal-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.gallery-modal-input.error {
  border-color: #e74c3c;
  animation: shake 0.4s;
}
.gallery-modal-error {
  color: #e74c3c;
  font-size: 0.78rem;
  margin-bottom: 16px;
  min-height: 20px;
}
.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.3s;
}
.gallery-modal-close:hover { color: var(--gold); }

/* Client gallery success view */
.gallery-modal-success {
  display: none;
}
.gallery-modal-success.active { display: block; }
.gallery-modal-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.gallery-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 20px;
}
.gallery-modal-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
}
.gallery-modal-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-modal-download {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition);
  z-index: 10;
}
.gallery-modal-download:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: scale(1.1);
}
.gallery-modal-download svg {
  width: 13px;
  height: 13px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(8px); }
  75% { transform: translateX(-4px); }
}

/* ═══════════════════════════════════════════
   CAMERA CONSOLE INTERACTIVE ENGINE
   ═══════════════════════════════════════════ */

/* ─── Hero Left-Aligned & Layout Overrides ─── */
.hero-content {
  position: absolute !important;
  left: 12% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  text-align: left !important;
  max-width: 580px !important;
  padding: 0 !important;
  z-index: 5 !important;
}

.hero-subtitle {
  margin: 0 0 40px 0 !important;
}

.hero-btns {
  justify-content: flex-start !important;
}

/* Applied dynamic variables */
.hero-title em {
  color: var(--gold-exposed) !important;
  text-shadow: var(--gold-bloom) !important;
  transition: color 0.15s ease-out, text-shadow 0.15s ease-out;
}

/* Background Refractive Canvas */
#lens-flare-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Exposure Dial Wrapper */
.ev-dial-wrapper {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  opacity: 0;
  animation: fadeIn 1s 1.2s var(--transition) forwards;
}

.ev-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.ev-track {
  position: relative;
  height: 320px;
  width: 30px;
  display: flex;
  justify-content: center;
}

.ev-ticks {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.ev-tick {
  position: relative;
  width: 10px;
  height: 1px;
  background: var(--border);
  transition: background 0.3s;
}

.ev-tick[data-val$="0"], .ev-tick[data-val$="5"] {
  width: 18px;
  background: var(--text-muted);
}

.ev-tick span {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 500;
}

.ev-handle-drag {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-exposed);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.25);
  cursor: grab;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.ev-handle-drag:active {
  cursor: grabbing;
}

.ev-handle-line {
  width: 12px;
  height: 1px;
  background: var(--gold-exposed);
  transition: background-color 0.15s ease-out;
}

/* Full-Bleed Hero Filmstrip — no boundaries, image covers entire hero */
.filmstrip-gate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: none;
  border-radius: 0;
  z-index: 1;
  opacity: 1;
  animation: none;
}

.filmstrip-track {
  width: 100%;
  height: 100%;
  position: relative;
  will-change: transform;
}

.filmstrip-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s var(--transition);
  transform: scale(1.06);
  transition: opacity 1.8s var(--transition), transform 8s ease-out;
}

.filmstrip-slide.active {
  opacity: var(--hero-bg-opacity);
  transform: scale(1);
}

.filmstrip-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(var(--hero-brightness)) contrast(1.05);
  transition: filter 0.15s ease-out;
}

/* Rich cinematic gradient — text readable without boxing the image */
.filmstrip-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 8, 8, 0.55) 0%,
      rgba(8, 8, 8, 0.15) 30%,
      rgba(8, 8, 8, 0.10) 55%,
      rgba(8, 8, 8, 0.72) 100%
    ),
    linear-gradient(90deg,
      rgba(8, 8, 8, 0.60) 0%,
      rgba(8, 8, 8, 0.05) 55%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 3;
}

/* Technical Sidebar overlay columns */
.tech-sidebar {
  position: absolute;
  left: 100px;
  right: 100px;
  bottom: 48px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.2s 1.5s var(--transition) forwards;
}

.tech-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tech-item {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
}

.tech-col.right-align {
  text-align: right;
  align-items: flex-end;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .ev-dial-wrapper, .tech-sidebar {
    display: none !important;
  }
  .hero-content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    text-align: center !important;
    max-width: 100% !important;
    padding: 0 24px !important;
    margin-top: 100px !important;
  }
  .hero-btns {
    justify-content: center !important;
  }
}

/* Ambient Backdrop Blur Container */
.hero-bg-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(80px) brightness(var(--hero-brightness)) saturate(0.5);
  opacity: 0.15;
  transition: background-image 1.2s ease-in-out, filter 0.15s ease-out;
  will-change: background-image;
}

/* ═══ WhatsApp Floating Button ═══ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition);
  text-decoration: none;
  animation: wpPulse 2.8s ease-in-out infinite;
}
.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}
.whatsapp-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6), 0 4px 16px rgba(0,0,0,0.35);
  animation: none;
}
@keyframes wpPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}

/* ═══ Gallery Logout Button ═══ */
.gallery-logout-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 10px 0;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.gallery-logout-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ═══ Section tag Instagram link ═══ */
.section-tag a {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: inherit;
  transition: opacity 0.2s;
}
.section-tag a:hover { opacity: 0.75; }

/* ═══ Insta grid — allow <a> elements as items ═══ */
a.insta-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

a.blog-card-link {
  text-decoration: none;
  display: inline-block;
}

/* ═══ Lightroom Showcase ═══ */
#lightroom-showcase {
  padding: var(--section-pad, 120px) var(--pad, clamp(24px, 6vw, 120px));
}

.lr-embed-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(201,168,76,0.08), var(--shadow-deep);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.lr-embed-wrap:hover {
  box-shadow: 0 0 80px rgba(201,168,76,0.18), var(--shadow-deep);
  transform: translateY(-4px);
}

