  :root {
      --ivory: #000000;
      --gold: #ff935a;
      --gold-light: #a8a8a8;
      --gold-dark: #a8a8a8;
      --charcoal: #dbdbdb;
      --beige: #E8DFD3;
      --white: #ffffff;
      --black: #000000;
      --dark-overlay: rgba(15, 12, 10, 0.62);
      --glass: rgba(255, 255, 255, 0.08);
      --glass-border: rgba(200, 169, 107, 0.25);
      --section-pad: clamp(80px, 10vw, 140px);
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
      font-size: 16px;
  }

  body {
      font-family: 'Montserrat', sans-serif;
      background: var(--ivory);
      color: var(--charcoal);
      overflow-x: hidden;
      cursor: none;
  }

  /* Custom Cursor */
  .cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 10px;
      height: 10px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
      mix-blend-mode: difference;
  }

  .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
      opacity: 0.6;
  }

  body:hover .cursor {
      opacity: 1;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
      width: 4px;
  }

  ::-webkit-scrollbar-track {
      background: var(--charcoal);
  }

  ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 2px;
  }

  /* ============ NAVIGATION ============ */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 12px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav.scrolled {
      background: rgba(20, 16, 12, 0.94);
      backdrop-filter: blur(20px);
      padding: 14px 5%;
      border-bottom: 1px solid var(--glass-border);
  }

  /* Glassmorphism utility */
  .glass {
      background: #0000006e;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      -border-bottom: 1px solid #0706067a;
  }

  .nav-logo {
      width: 180px;
      height: auto;
  }

  .nav-logo img {
      height: auto;
      width: 100%;
      object-fit: cover;
  }

  .nav-logo span {
      font-size: 0.55rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
  }

  .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
  }

  .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      position: relative;
      transition: color 0.3s;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links a:hover {
      color: var(--gold-light);
  }

  .nav-links a:hover::after {
      width: 100%;
  }

  .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      border-radius: 20px 0px;
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 10px 22px;
      cursor: none;
      transition: all 0.3s;
      text-decoration: none;
  }

  .nav-cta:hover {
      background: var(--gold);
      color: var(--charcoal);
  }

  .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: none;
      padding: 4px;
  }

  .hamburger span {
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--black);
      transition: all 0.3s;
      transform-origin: center;
  }

  .hamburger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
  }

  .hamburger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(15, 12, 10, 0.97);
      backdrop-filter: blur(30px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
  }

  .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
  }

  .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 6vw, 3.5rem);
      font-style: italic;
      color: var(--black);
      text-decoration: none;
      transition: color 0.3s;
  }

  .mobile-menu a:hover {
      color: var(--gold);
  }

  /* ============ HERO ============ */
  #home {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }

  .hero-video-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
  }

  .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 0;
  }

  .hero-overlay {
      position: absolute;
      inset: 0;
      background:
          linear-gradient(to bottom,
              rgba(0, 0, 0, 0.35),
              rgba(0, 0, 0, 0.55),
              rgba(0, 0, 0, 0.75));
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 2;
  }

  .scroll-indicator {
      z-index: 2;
  }

  .hero-video {
      animation: heroZoom 20s ease-in-out infinite alternate;
  }

  @keyframes heroZoom {
      from {
          transform: translate(-50%, -50%) scale(1);
      }

      to {
          transform: translate(-50%, -50%) scale(1.08);
      }
  }

  /* .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
  }

  .hero-video-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
              rgba(10, 8, 6, 0.3) 0%,
              rgba(10, 8, 6, 0.5) 40%,
              rgba(10, 8, 6, 0.7) 100%);
      z-index: 1;
  } */

  /* Hero BG — cinematic gradient since no real video in static file */
  .hero-bg-cinematic {
      position: absolute;
      inset: 0;
      background:
          radial-gradient(ellipse 120% 80% at 60% 40%, rgba(90, 60, 30, 0.4), transparent 70%),
          radial-gradient(ellipse 80% 60% at 30% 70%, rgba(60, 40, 20, 0.35), transparent 60%),
          linear-gradient(160deg, #1a1208 0%, #2c1f0f 35%, #0d0a07 70%, #0a0806 100%);
      animation: heroShift 18s ease-in-out infinite alternate;
  }

  @keyframes heroShift {
      0% {
          filter: brightness(0.9) saturate(1.1);
      }

      100% {
          filter: brightness(1.05) saturate(1.2);
      }
  }

  /* Floating bokeh particles */
  .bokeh-wrap {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
  }

  .bokeh {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 169, 107, 0.55) 0%, transparent 70%);
      animation: bokehFloat linear infinite;
  }

  @keyframes bokehFloat {
      0% {
          transform: translateY(110vh) scale(0.5);
          opacity: 0;
      }

      10% {
          opacity: 1;
      }

      90% {
          opacity: 0.6;
      }

      100% {
          transform: translateY(-10vh) scale(1.2);
          opacity: 0;
      }
  }

  .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 20px;
      max-width: 860px;
      animation: heroFadeIn 1.6s cubic-bezier(0.4, 0, 0.2, 1) both;
  }

  @keyframes heroFadeIn {
      0% {
          opacity: 0;
          transform: translateY(40px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-logo-mark {
      display: inline-block;
      margin-bottom: 28px;
      animation: heroFadeIn 1.4s 0.2s both;
  }

  .hero-logo-mark svg {
      width: 64px;
      height: 64px;
  }

  .hero-eyebrow {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      animation: heroFadeIn 1.4s 0.4s both;
  }

  .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 7vw, 6rem);
      font-weight: 400;
      font-style: italic;
      line-height: 1.12;
      color: var(--white);
      margin-bottom: 20px;
      animation: heroFadeIn 1.4s 0.6s both;
      text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  }

  .hero-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.7rem, 1.5vw, 0.85rem);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 50px;
      animation: heroFadeIn 1.4s 0.8s both;
  }

  .hero-btns {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      animation: heroFadeIn 1.4s 1.0s both;
  }

  .hero-cta {
      display: inline-block;
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 0.3rem;
      color: var(--gold);
      text-decoration: none;
      transition: letter-spacing 0.3s;
  }

  .btn-primary {
      background: var(--gold);
      color: var(--charcoal);
      border: none;
      border-radius: 20px 0px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.67rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 16px 38px;
      text-decoration: none;
      cursor: none;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
  }

  .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-light);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn-primary:hover::before {
      transform: scaleX(1);
  }

  .btn-primary span {
      position: relative;
      z-index: 1;
  }

  .btn-outline {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 20px 0px;
      color: var(--charcoal);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.67rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 16px 38px;
      text-decoration: none;
      cursor: none;
      transition: all 0.35s;
  }

  .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
  }

  /* 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: heroFadeIn 1.4s 1.5s both;
      cursor: none;
  }

  .scroll-indicator span {
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      font-family: 'Montserrat', sans-serif;
  }

  .scroll-mouse {
      width: 22px;
      height: 36px;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      border-radius: 11px;
      position: relative;
  }

  .scroll-dot {
      width: 4px;
      height: 8px;
      background: var(--gold);
      border-radius: 2px;
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollDot 1.8s ease-in-out infinite;
  }

  @keyframes scrollDot {

      0%,
      100% {
          top: 6px;
          opacity: 1;
      }

      70% {
          top: 18px;
          opacity: 0.2;
      }
  }

  /* ============ SECTION COMMONS ============ */
  section {
      padding: var(--section-pad) 5%;
  }

  .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: block;
  }

  .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--charcoal);
  }

  .section-title.light {
      color: var(--black);
  }

  .section-divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
      margin: 24px 0 28px;
  }

  .section-divider.centered {
      margin-left: auto;
      margin-right: auto;
  }

  .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.visible {
      opacity: 1;
      transform: none;
  }

  /* ============ ABOUT ============ */
  #about {
      background: var(--black);
      padding: var(--section-pad) 5%;
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
  }

  .about-img-stack {
      position: relative;
      height: 540px;
  }

  .about-img-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 74%;
      height: 78%;
      object-fit: cover;
      background: linear-gradient(135deg, #c8a96b22, #e8dfd3);
      border: 1px solid var(--beige);
      overflow: hidden;
  }

  .about-img-main .img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, #e8dfd3, #d4c4b0, #c8a96b33);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .about-img-secondary {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 58%;
      height: 55%;
      border: 4px solid var(--black);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      overflow: hidden;
  }

  .about-img-secondary .img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, #2c1f0f, #3a2915, #c8a96b44);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .about-gold-frame {
      position: absolute;
      top: 30px;
      left: 30px;
      width: 60%;
      height: 65%;
      border: 1px solid var(--gold-light);
      pointer-events: none;
      opacity: 0.5;
  }

  .about-text {}

  .about-intro {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-style: italic;
      line-height: 1.75;
      color: #ff935a;
      margin-bottom: 24px;
  }

  .about-body {
      font-size: 0.82rem;
      line-height: 1.9;
      color: #ffffff;
      margin-bottom: 36px;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--beige);
      padding-top: 36px;
      margin-top: 36px;
  }

  .stat-item {
      text-align: center;
      padding: 0 10px;
      border-right: 1px solid var(--beige);
  }

  .stat-item:last-child {
      border-right: none;
  }

  .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 600;
      color: var(--gold-dark);
      display: block;
      line-height: 1;
      margin-bottom: 6px;
  }

  .stat-label {
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #9a9390;
      line-height: 1.4;
  }

  .team-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 60px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
  }

  .team-card {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 28px;
      background: var(--ivory);
      border: 1px solid var(--beige);
      border-radius: 40px 0px;
      transition: box-shadow 0.3s, transform 0.3s;
  }

  .team-card:hover {
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
  }

  .team-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
      border: 2px solid var(--gold-light);
  }

  .team-avatar .img-placeholder {
      width: 100%;
      height: 100%;
  }

  .team-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 2px;
  }

  .team-role {
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 10px;
  }

  .team-bio {
      font-size: 0.78rem;
      line-height: 1.75;
      color: #ffffff;
  }

  /* ============ PORTFOLIO ============ */
  #portfolio {
      background: var(--ivory);
      padding: var(--section-pad) 5%;
  }

  .portfolio-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .filter-tabs {
      display: flex;
      gap: 0;
      justify-content: center;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 8px;
  }

  .filter-tab {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 10px 22px;
      border: 1px solid #d4c4b0;
      background: transparent;
      cursor: none;
      transition: all 0.3s;
      color: #6b6560;
  }

  .filter-tab.active,
  .filter-tab:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--charcoal);
  }

  .masonry-grid {
      columns: 3;
      column-gap: 16px;
      max-width: 1300px;
      margin: 0 auto;
  }

  .masonry-item {
      break-inside: avoid;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
      cursor: none;
  }

  .masonry-img {
      width: 100%;
      display: block;
      aspect-ratio: unset;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .masonry-item:hover .masonry-img {
      transform: scale(1.05);
  }

  .masonry-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 8, 6, 0.8) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex;
      align-items: flex-end;
      padding: 20px;
  }

  .masonry-item:hover .masonry-overlay {
      opacity: 1;
  }

  .masonry-caption {
      color: var(--white);
  }

  .masonry-caption h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.1rem;
      font-weight: 200;
      font-style: italic;
      margin-bottom: 3px;
  }

  .masonry-caption span {
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-light);
  }

  /* Placeholder images as SVG art */
  .portfolio-ph {
      width: 100%;
      display: block;
  }

  /* ============ FILMS ============ */
  #films {
      background: var(--black);
      padding: var(--section-pad) 5%;
      position: relative;
      overflow: hidden;
  }

  #films::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a96b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .films-inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .films-header {
      margin-bottom: 60px;
  }

  .featured-film {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      margin-bottom: 40px;
      cursor: none;
  }

  .featured-film-bg {
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, #2c1f0f, #1a1208, #0d0a07);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
  }

  .film-title-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200, 169, 107, 0.08), transparent 70%);
  }

  .film-play-btn {
      width: 78px;
      height: 78px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.35s;
      margin-bottom: 28px;
  }

  .film-play-btn:hover {
      background: var(--gold);
      transform: scale(1.1);
  }

  .film-play-btn svg {
      fill: var(--gold);
      transition: fill 0.35s;
      margin-left: 4px;
  }

  .film-play-btn:hover svg {
      fill: var(--charcoal);
  }

  .film-couple {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-style: italic;
      color: var(--black);
      margin-bottom: 8px;
      text-align: center;
  }

  .film-location {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
  }

  .film-duration {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: var(--glass);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      padding: 6px 14px;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.7);
      font-family: 'Montserrat', sans-serif;
  }

  .film-carousel {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      overflow-x: auto;
      scrollbar-width: none;
  }

  .film-carousel::-webkit-scrollbar {
      display: none;
  }

  .film-thumb {
      aspect-ratio: 16/9;
      overflow: hidden;
      position: relative;
      cursor: none;
      flex-shrink: 0;
  }

  .film-thumb-bg {
      width: 100%;
      height: 100%;
      transition: transform 0.4s;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .film-thumb:hover .film-thumb-bg {
      transform: scale(1.06);
  }

  .film-thumb-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 8, 6, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
  }

  .film-thumb:hover .film-thumb-overlay {
      background: rgba(10, 8, 6, 0.3);
  }

  .film-thumb-play {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
  }

  .film-thumb:hover .film-thumb-play {
      border-color: var(--gold);
      background: rgba(200, 169, 107, 0.2);
      transform: scale(1.1);
  }

  .film-thumb-play svg {
      fill: white;
      margin-left: 3px;
  }

  .film-thumb-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 14px;
      background: linear-gradient(to top, rgba(10, 8, 6, 0.85), transparent);
  }

  .film-thumb-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.9rem;
      font-style: italic;
      color: var(--black);
  }

  /* ============ GALLERY ============ */
  #gallery {
      background: var(--black);
      padding: var(--section-pad) 5%;
  }

  .gallery-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .gallery-masonry {
      columns: 4;
      column-gap: 12px;
      max-width: 1300px;
      margin: 0 auto;
  }

  .gallery-item {
      break-inside: avoid;
      margin-bottom: 12px;
      overflow: hidden;
      cursor: none;
      position: relative;
  }

  .gallery-item:hover .gallery-zoom {
      opacity: 1;
  }

  .gallery-img {
      width: 100%;
      display: block;
      transition: transform 0.5s;
  }

  .gallery-item:hover .gallery-img {
      transform: scale(1.05);
  }

  .gallery-zoom {
      position: absolute;
      inset: 0;
      background: rgba(10, 8, 6, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
  }

  .gallery-zoom svg {
      color: white;
  }

  /* ============ SERVICES ============ */
  #services {
      background: var(--ivory);
      padding: var(--section-pad) 5%;
  }

  .services-header {
      text-align: center;
      margin-bottom: 70px;
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .service-card {
      padding: 44px 36px;
      border: 1px solid var(--beige);
      background: var(--black);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: none;
  }

  .service-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0;
      background: var(--charcoal);
      transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-card:hover::before {
      height: 4px;
  }

  .service-card:hover {
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
      transform: translateY(-8px);
  }

  .service-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 28px;
      color: var(--gold);
  }

  .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 14px;
      color: var(--charcoal);
  }

  .service-desc {
      font-size: 0.8rem;
      line-height: 1.85;
      color: #6b6560;
      margin-bottom: 28px;
  }

  .service-link {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
  }

  .service-link:hover {
      gap: 14px;
  }

  .service-link svg {
      width: 14px;
  }

  /* ============ TESTIMONIALS ============ */
  #testimonials {
      background: linear-gradient(160deg, #1a1208, #2c1f0f, #0d0a07);
      padding: var(--section-pad) 5%;
      position: relative;
      overflow: hidden;
  }

  #testimonials::before {
      content: '"';
      position: absolute;
      top: -40px;
      left: 4%;
      font-family: 'Cormorant Garamond', serif;
      font-size: 28rem;
      font-style: italic;
      color: rgba(200, 169, 107, 0.05);
      line-height: 1;
      pointer-events: none;
  }

  .testimonials-inner {
      max-width: 900px;
      margin: 0 auto;
  }

  .testimonials-header {
      text-align: center;
      margin-bottom: 70px;
  }

  .testimonial-carousel {
      position: relative;
  }

  .testimonial-slide {
      display: none;
      animation: fadeInSlide 0.6s ease;
  }

  .testimonial-slide.active {
      display: block;
  }

  @keyframes fadeInSlide {
      from {
          opacity: 0;
          transform: translateY(16px);
      }

      to {
          opacity: 1;
          transform: none;
      }
  }

  .testimonial-stars {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-bottom: 28px;
  }

  .star {
      color: var(--gold);
      font-size: 1rem;
  }

  .testimonial-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.2rem, 2.5vw, 1.75rem);
      font-style: italic;
      font-weight: 400;
      line-height: 1.6;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 40px;
  }

  .testimonial-couple {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
  }

  .couple-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--gold-light);
  }

  .couple-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      color: var(--black);
  }

  .couple-event {
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
  }

  .testimonial-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 50px;
  }

  .t-dot {
      width: 28px;
      height: 1px;
      background: rgba(255, 255, 255, 0.25);
      cursor: none;
      transition: all 0.3s;
  }

  .t-dot.active {
      background: var(--gold);
      width: 48px;
  }

  .t-arrow {
      background: none;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: rgba(255, 255, 255, 0.6);
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      transition: all 0.3s;
      font-size: 1rem;
  }

  .t-arrow:hover {
      border-color: var(--gold);
      color: var(--gold);
  }

  /* ============ INSTAGRAM ============ */
  #instagram {
      background: var(--black);
      padding: var(--section-pad) 5%;
  }

  .instagram-header {
      text-align: center;
      margin-bottom: 48px;
  }

  .instagram-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
      max-width: 1300px;
      margin: 0 auto 40px;
  }

  .ig-item {
      aspect-ratio: 1;
      overflow: hidden;
      position: relative;
      cursor: none;
  }

  .ig-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
  }

  .ig-item:hover .ig-img {
      transform: scale(1.1);
  }

  .ig-overlay {
      position: absolute;
      inset: 0;
      background: rgba(200, 169, 107, 0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
  }

  .ig-item:hover .ig-overlay {
      opacity: 1;
  }

  .ig-overlay svg {
      color: white;
  }

  .ig-cta {
      text-align: center;
  }

  /* ============ CONTACT ============ */
  #contact {
      background: var(--ivory);
      padding: var(--section-pad) 5%;
  }

  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: start;
  }

  .contact-info-col {}

  .contact-detail {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--beige);
  }

  .contact-detail:last-of-type {
      border-bottom: none;
  }

  .contact-icon {
      width: 42px;
      height: 42px;
      border: 1px solid var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
  }

  .contact-detail-label {
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 4px;
  }

  .contact-detail-value {
      font-size: 0.85rem;
      color: var(--charcoal);
      line-height: 1.5;
  }

  .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #25D366;
      color: white;
      padding: 14px 28px;
      text-decoration: none;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-family: 'Montserrat', sans-serif;
      transition: filter 0.3s;
      cursor: none;
      margin-bottom: 36px;
      font-weight: 500;
  }

  .whatsapp-btn:hover {
      filter: brightness(1.1);
  }

  .map-placeholder {
      height: 200px;
      background: linear-gradient(160deg, #e8dfd3, #d4c4b0);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--beige);
      position: relative;
      overflow: hidden;
      cursor: none;
  }

  .contact-form {}

  .form-group {
      margin-bottom: 24px;
  }

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }

  .form-label {
      display: block;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #9a9390;
      margin-bottom: 8px;
      font-family: 'Montserrat', sans-serif;
  }

  .form-input,
  .form-select,
  .form-textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #d4c4b0;
      background: var(--black);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      color: var(--charcoal);
      outline: none;
      transition: border-color 0.3s;
      appearance: none;
  }

  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
      border-color: var(--gold);
  }

  .form-textarea {
      resize: vertical;
      min-height: 120px;
  }

  .form-submit {
      background: var(--charcoal);
      color: var(--black);
      border: none;
      padding: 16px 44px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.67rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: none;
      transition: background 0.3s, transform 0.2s;
      font-weight: 500;
      width: 100%;
  }

  .form-submit:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
  }

  .social-links {
      display: flex;
      gap: 14px;
      margin-top: 30px;
  }

  .social-link {
      width: 40px;
      height: 40px;
      border: 1px solid var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.3s;
      cursor: none;
  }

  .social-link:hover {
      background: var(--gold);
      color: var(--charcoal);
  }

  /* ============ FOOTER ============ */
  footer {
      background: #0d0a07;
      padding: 70px 5% 30px;
      border-top: 1px solid rgba(200, 169, 107, 0.15);
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 60px;
  }

  .footer-brand {}

  .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--black);
      font-weight: 400;
      margin-bottom: 4px;
      display: block;
  }

  .footer-logo-sub {
      font-size: 0.6rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      display: block;
      margin-bottom: 20px;
  }

  .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.7;
      max-width: 260px;
  }

  .footer-col-title {
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      font-family: 'Montserrat', sans-serif;
  }

  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer-links a:hover {
      color: var(--gold-light);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 14px;
  }

  .footer-copy {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.28);
      letter-spacing: 0.05em;
  }

  .back-to-top {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(200, 169, 107, 0.35);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      transition: all 0.3s;
      color: var(--gold);
  }

  .back-to-top:hover {
      background: var(--gold);
      color: var(--charcoal);
  }

  /* ============ PARALLAX BANNER ============ */
  .parallax-banner {
      position: relative;
      height: 640px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .parallax-bg {
      position: absolute;
      inset: -80px 0;
      background: url("../images/parallax-img.jpg");
      background-attachment: fixed;
      will-change: transform;
  }

  .parallax-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10, 8, 6, 0.55);
  }

  .parallax-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 20px;
  }

  .parallax-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3.5vw, 2.8rem);
      font-style: italic;
      color: var(--charcoal);
      line-height: 1.4;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  }

  .parallax-quote em {
      color: var(--gold-light);
      font-style: italic;
  }

  /* ============ LIGHTBOX ============ */
  /* .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10, 8, 6, 0.95);
      z-index: 5000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 40px;
      backdrop-filter: blur(8px);
  }

  .lightbox.open {
      display: flex;
  }

  .lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 85vh;
  }

  .lightbox-img {
      max-width: 100%;
      max-height: 85vh;
      display: block;
  }

  .lightbox-close {
      position: absolute;
      top: -48px;
      right: 0;
      background: none;
      border: none;
      color: var(--gold);
      font-size: 1.4rem;
      cursor: none;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.1em;
  } */
  /* LIGHTBOX */
  .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      cursor: zoom-out;
  }

  .lightbox.active {
      display: flex;
  }

  .lightbox-container {
      overflow: hidden;
      max-width: 90vw;
      max-height: 90vh;
  }

  #lightbox-img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      transition: transform 0.3s ease;
      cursor: zoom-in;
  }

  .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: #fff;
      cursor: pointer;
      z-index: 10000;
  }

  .zoomable {
      cursor: pointer;
  }



  /* Ensure toolbar is visible */
  .gtoolbar {
      background: rgba(0, 0, 0, 0.4) !important;
      z-index: 99999 !important;
  }

  .gclose {
      display: flex !important;
      align-items: center;
      justify-content: center;
      width: 50px !important;
      height: 50px !important;
      color: #fff !important;
      opacity: 1 !important;
      z-index: 999999 !important;
      top: 20px !important;
      right: 20px !important;
      background: rgba(0, 0, 0, .6) !important;
      border-radius: 50%;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1100px) {
      .masonry-grid {
          columns: 2;
      }

      .gallery-masonry {
          columns: 3;
      }

      .film-carousel {
          grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 40px;
      }
  }

  @media (max-width: 900px) {
      .about-grid {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .about-img-stack {
          height: 420px;
      }

      .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
      }

      .stat-item {
          border-right: none;
          border-bottom: 1px solid var(--beige);
          padding-bottom: 20px;
      }

      .team-row {
          grid-template-columns: 1fr;
      }

      .services-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .contact-grid {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .instagram-grid {
          grid-template-columns: repeat(3, 1fr);
      }

      .nav-links,
      .nav-cta {
          display: none;
      }

      .hamburger {
          display: flex;
      }
  }

  @media (max-width: 640px) {
      .masonry-grid {
          columns: 1;
      }

      .gallery-masonry {
          columns: 2;
      }

      .services-grid {
          grid-template-columns: 1fr;
      }

      .film-carousel {
          grid-template-columns: 1fr;
      }

      .footer-grid {
          grid-template-columns: 1fr;
      }

      .instagram-grid {
          grid-template-columns: repeat(3, 1fr);
      }

      .form-row {
          grid-template-columns: 1fr;
      }

      .hero-btns {
          flex-direction: column;
          align-items: center;
      }
  }

  /* Placeholder image art (SVG-based art) */
  .ph-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }