/* ── Fonts ─────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0c;
  --bg-alt: #111114;
  --surface: #18181c;
  --text: #eaeaea;
  --text-muted: #888;
  --accent: #c8a45a;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --rose: #f43f5e;
  --gradient-1: linear-gradient(135deg, #c8a45a, #f59e0b, #f97316);
  --gradient-2: linear-gradient(135deg, #8b5cf6, #6366f1, #3b82f6);
  --gradient-3: linear-gradient(135deg, #f43f5e, #e879f9, #8b5cf6);
  --radius: 10px;
  --transition: 0.3s ease;
  --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

ul { list-style: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ──────────────────────────────────── */

.nav {
  position: fixed;
  top: 8px;
  left: 12px;
  right: 12px;
  z-index: 100;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.03em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 3;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.15s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10, 10, 12, 0.35) 0%, rgba(10, 10, 12, 0.75) 70%),
    linear-gradient(to bottom, rgba(10, 10, 12, 0.2) 0%, rgba(10, 10, 12, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.hero-panel {
  padding: 56px 64px;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.4s;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer animation for nav logo hover */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.nav-logo {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo:hover {
  background: linear-gradient(
    90deg,
    #c8a45a 0%,
    #f59e0b 25%,
    #fff 50%,
    #f59e0b 75%,
    #f97316 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s ease forwards;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #fff;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-pin {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: var(--gradient-1);
  background-size: 200% 200%;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.8s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 90, 0.3);
}

/* ── Sections ─────────────────────────────────────── */

.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-alt);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 500px;
  font-size: 1.05rem;
}

/* ── Scroll Animations ────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }
.stagger-7 { transition-delay: 0.47s; }
.stagger-8 { transition-delay: 0.54s; }

/* ── Section Divider ──────────────────────────────── */

.section-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 90, 0.3), rgba(139, 92, 246, 0.3), transparent);
  margin: 0;
}

/* ── Video Grid ───────────────────────────────────── */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.video-card {
  display: block;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.video-card.hidden {
  display: none;
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(200, 164, 90, 0.3), rgba(139, 92, 246, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.video-card:hover::before {
  opacity: 1;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.07);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.photo-item img {
  width: 100%;
  display: block;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.video-info {
  padding: 22px;
}

.video-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 8px 0 10px;
}

.video-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Video Grid Expand/Collapse ──────────────────── */

.video-grid-wrapper {
  position: relative;
  max-height: 700px;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-grid-wrapper.expanded {
  max-height: none;
}

.video-grid-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-alt));
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.video-grid-wrapper.expanded .video-grid-fade {
  opacity: 0;
}

.video-see-more {
  display: block;
  margin: 0 auto;
  opacity: 0;
  animation: none;
  position: sticky;
  bottom: 24px;
  z-index: 5;
  margin-top: 32px;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.video-see-more.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Filter Tabs ──────────────────────────────────── */

.photo-filters,
.video-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.filter-btn.active {
  color: #000;
  background: var(--gradient-1);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(200, 164, 90, 0.25);
}

/* ── Photo Grid ───────────────────────────────────── */

.photo-grid {
  columns: 3;
  column-gap: 16px;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.photo-item img {
  display: block;
  width: 100%;
}

/* Gradient + camera info overlay — toggled via JS class to avoid flicker */
.photo-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.photo-info .photo-info-camera {
  display: block;
  font-weight: 600;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.photo-info .photo-info-focal {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  margin-top: 2px;
}

.photo-item.hovered .photo-info {
  opacity: 1;
}

.photo-item.hidden {
  display: none;
}

/* ── Photo Grid Expand/Collapse ──────────────────── */

.photo-grid-wrapper {
  position: relative;
  max-height: 1200px;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-grid-wrapper.expanded {
  max-height: none;
}

.photo-grid-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.photo-grid-wrapper.expanded .photo-grid-fade {
  opacity: 0;
}

.photo-see-more {
  display: block;
  margin: 0 auto;
  opacity: 0;
  animation: none;
  position: sticky;
  bottom: 24px;
  z-index: 5;
  margin-top: 32px;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.photo-see-more.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── About ────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-2);
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  opacity: 0.5;
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.85;
  font-size: 1.02rem;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 36px 0 44px;
}

.about-details h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.about-details li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 5px 0;
}

.about-details p {
  font-size: 0.9rem;
}

.about-text .btn {
  opacity: 1;
  animation: none;
}

/* ── Contact ──────────────────────────────────────── */

.contact-container {
  text-align: center;
}

.contact-container .section-title {
  font-size: 3rem;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-container .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--text);
  border-color: rgba(200, 164, 90, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(200, 164, 90, 0.08);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────── */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Parallax Sections ────────────────────────────── */

.parallax-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
  will-change: transform;
}

.parallax-bg-1 {
  background: var(--purple);
  top: 10%;
  right: -5%;
}

.parallax-bg-2 {
  background: var(--accent);
  bottom: 10%;
  left: -5%;
}

.parallax-bg-3 {
  background: var(--rose);
  top: 40%;
  left: 20%;
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 320px;
  }

  .photo-grid {
    columns: 2;
  }

  .section {
    padding: 80px 0;
  }

  .hero-panel {
    padding: 40px 32px;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 16px 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    columns: 1;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-container .section-title {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-panel {
    padding: 32px 24px;
  }

  .section {
    padding: 64px 0;
  }
}
