/* ============================================
   ECLAIRS STUDIO — Multi-Page Design System
   Mobile-First · Glassmorphism · Horizontal Scroll · Video · Auto-Animations
   ============================================ */

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

:root {
  --bg: #060608;
  --bg2: #0c0c10;
  --bg3: #12121a;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-h: rgba(255, 255, 255, 0.06);
  --glass-s: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --border-h: rgba(255, 255, 255, 0.12);
  --border-g: rgba(201, 168, 76, 0.25);
  --border-gs: rgba(201, 168, 76, 0.5);
  --gold: #c9a84c;
  --gold-l: #e0c872;
  --gold-d: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.08);
  --bronze: #b08d57;
  --warm: #d4a574;
  --txt: #f0ece4;
  --txt2: #9a958d;
  --txt3: #5a554f;
  --txt4: #3a3630;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'Space Grotesk', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --bnav: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bnav) + var(--safe-b) + 8px);
}

@media (min-width:993px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.4s var(--ease);
}

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

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l), var(--warm));
  z-index: 9999;
  width: 0%;
}

/* ============================================
   CUSTOM CURSOR (desktop)
   ============================================ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px 3px rgba(201, 168, 76, 0.5);
  display: none;
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.8);
  pointer-events: none;
  z-index: 99998;
  display: none;
  will-change: left, top, width, height;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), margin 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.cursor-ring.has-text {
  background: rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(4px);
}

.cursor-ring.expanded {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
}

.cursor-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
}

@media (min-width:993px) and (hover:hover) {
  .cursor-dot,
  .cursor-ring {
    display: block;
  }
}

/* Grain */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width:768px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width:1200px) {
  .container {
    padding: 0 48px;
  }
}

/* GSAP handles reveals imperatively via gsap.set() in JS.
   No opacity:0 in CSS — content stays visible if JS fails. */
[data-reveal] {
  will-change: transform, opacity;
}

.stagger-children > * {
  will-change: transform, opacity;
}

/* Auto float */
.auto-float {
  animation: autoFloat 6s ease-in-out infinite;
}

.auto-float-delay {
  animation: autoFloat 6s ease-in-out infinite 2s;
}

.auto-float-slow {
  animation: autoFloat 10s ease-in-out infinite;
}

@keyframes autoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Auto pulse glow */
.auto-pulse {
  animation: autoPulse 3s ease-in-out infinite;
}

@keyframes autoPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--gold-glow);
  }

  50% {
    box-shadow: 0 0 30px 8px var(--gold-glow);
  }
}

/* Auto rotate */
.auto-rotate {
  animation: autoRotate 20s linear infinite;
}

@keyframes autoRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Auto scale breathe */
.auto-breathe {
  animation: autoBreathe 4s ease-in-out infinite;
}

@keyframes autoBreathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}



/* Marquee */
@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ============================================
   MOBILE TOP BAR
   ============================================ */
.mobile-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 89;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width:993px) {
  .mobile-topbar {
    display: none;
  }
}

.mobile-topbar .brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt);
}

.mobile-topbar .brand em {
  color: var(--gold);
  font-style: italic;
}

.topbar-btn {
  background: var(--gold);
  color: var(--bg);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 7px 14px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* ============================================
   DESKTOP NAV — Glass Pill
   ============================================ */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: calc(100% - 32px);
  max-width: 900px;
  padding: 10px 24px;
  background: rgba(12, 12, 16, 0.65);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.5s var(--ease);
  display: none;
}

@media (min-width:993px) {
  .navbar {
    display: block;
  }
}

.navbar.scrolled {
  background: rgba(12, 12, 16, 0.88);
  border-color: var(--border-h);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  max-width: none;
}

.navbar-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--txt);
}

.navbar-brand em {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-links a {
  color: var(--txt2);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all .3s var(--ease);
}

.nav-links a:hover {
  color: var(--txt);
  background: var(--glass-h);
}

.nav-links a.active {
  color: var(--bg);
  background: var(--gold);
}

/* ============================================
   BOTTOM NAV — App-Like
   ============================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(12, 12, 16, 0.88);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-top: 1px solid var(--border);
  padding: 6px 0 calc(6px + var(--safe-b));
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media (min-width:993px) {
  .bottom-nav {
    display: none;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  color: var(--txt3);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  border-radius: var(--r-sm);
  text-decoration: none;
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--gold);
}

.bottom-nav-item.active {
  background: var(--gold-glow);
}

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

@media (max-width:992px) {
  .hero {
    margin-top: 48px;
    min-height: 480px;
  }
}

.hero-parallax-bg {
  position: absolute;
  inset: -60px;
  z-index: 0;
  will-change: transform;
}

.hero-parallax-bg img,
.hero-parallax-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) contrast(1.15) saturate(0.7);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 20%, var(--bg) 85%),
    linear-gradient(180deg, rgba(6, 6, 8, 0.5) 0%, transparent 25%, transparent 55%, var(--bg) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(201, 168, 76, 0.06);
  top: 10%;
  right: -80px;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 250px;
  height: 250px;
  background: rgba(176, 141, 87, 0.04);
  bottom: 20%;
  left: -60px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(20px, -15px) scale(1.03)
  }

  66% {
    transform: translate(-15px, 20px) scale(.97)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--border-g);
  border-radius: 100px;
  background: var(--gold-glow);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: heroFadeUp 1s .2s var(--ease) forwards;
}

.hero-eyebrow .pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.6)
  }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 1.2s .4s var(--ease) forwards;
}

.hero-title .line {
  display: block;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-l), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(.85rem, 2vw, 1.1rem);
  color: var(--txt2);
  font-weight: 300;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp 1.2s .6s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1.2s .8s var(--ease) forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

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

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all .4s var(--ease);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .3);
  color: var(--bg);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform .3s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--txt);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 100px;
  cursor: pointer;
  transition: all .4s var(--ease);
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--glass-h);
  border-color: var(--border-h);
  transform: translateY(-2px);
  color: var(--txt);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

@media (max-width:600px) {
  .hero-scroll {
    display: none
  }
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--txt3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse .scroll-dot {
  width: 2px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(10px);
    opacity: 0
  }
}

.scroll-text {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--txt3);
}

/* ============================================
   HORIZONTAL SCROLL SECTION
   ============================================ */
.horizontal-section {
  position: relative;
  overflow: hidden;
}

.horizontal-track {
  display: flex;
  gap: 16px;
  padding: 0 16px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.horizontal-track::-webkit-scrollbar {
  display: none;
}

.h-card {
  flex: 0 0 80%;
  max-width: 340px;
  scroll-snap-align: center;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg2);
  transition: all 0.5s var(--ease);
}

@media (min-width:768px) {
  .horizontal-track {
    gap: 24px;
    padding: 0 32px 24px;
  }

  .h-card {
    flex: 0 0 320px;
    max-width: 360px;
  }
}

.h-card img,
.h-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: brightness(.85) saturate(.9);
}

.h-card:hover img,
.h-card:hover video {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

.h-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 6, 8, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.h-card-tag {
  font-family: var(--mono);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 4px;
}

.h-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Play button overlay for video cards */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all .3s var(--ease);
}

.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--bg);
  margin-left: 3px;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.marquee-track {
  display: flex;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--txt4);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.marquee-item .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label .label-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: .92rem;
  color: var(--txt2);
  font-weight: 300;
  max-width: 480px;
}

/* ============================================
   BENTO GRID (About)
   ============================================ */
.about {
  padding: clamp(60px, 10vw, 140px) 0;
}

.bento-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width:768px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }
}

.bento-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease);
}

.bento-card:hover {
  border-color: var(--border-h);
  background: var(--glass-h);
}

@media (min-width:993px) {
  .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
  }
}

.bento-image {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 400px;
}

@media (min-width:768px) {
  .bento-image {
    grid-column: span 5;
    grid-row: span 5;
    max-height: none;
    aspect-ratio: auto
  }
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  transition: transform .8s var(--ease);
  filter: grayscale(10%) contrast(1.05);
}

.bento-image:hover img {
  transform: scale(1.04);
  filter: none;
}

.bento-bio {
  padding: 28px;
}

@media (min-width:768px) {
  .bento-bio {
    grid-column: span 7;
    grid-row: span 3;
    padding: 32px
  }
}

.bento-bio h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.15;
}

.bento-bio h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bento-bio p {
  color: var(--txt2);
  font-size: .9rem;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.8;
}

.bento-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (min-width:768px) {
  .bento-stat {
    grid-column: span 7;
    grid-row: span 2;
    gap: 16px
  }
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 16px;
  text-align: center;
  transition: all .4s var(--ease);
}

.stat-card:hover {
  border-color: var(--border-g);
  background: var(--gold-glow);
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .65rem;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bento-mini {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

@media (min-width:768px) {
  .bento-mini {
    grid-column: span 4;
    grid-row: span 2;
    padding: 28px
  }
}

.bento-mini .mini-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--gold-d);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: all .3s var(--ease);
}

.bento-mini:hover .mini-icon {
  transform: scale(1.05) rotate(-3deg);
}

.bento-mini h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.bento-mini p {
  font-size: .78rem;
  color: var(--txt3);
  line-height: 1.5;
}

/* ============================================
   INSTAGRAM PORTFOLIO GRID
   ============================================ */
.portfolio {
  padding: clamp(60px, 10vw, 140px) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-header .section-subtitle {
  margin: 0 auto;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

@media (min-width:768px) {
  .insta-grid {
    gap: 4px
  }
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.insta-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.insta-item img,
.insta-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: brightness(.85) saturate(.9);
}

.insta-item:hover img,
.insta-item:hover video {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, .6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(2px);
}

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

@media (hover:none) {
  .insta-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 6, 8, .7) 100%);
    justify-content: flex-end;
    padding-bottom: 12px;
  }
}

.insta-overlay span {
  font-size: .72rem;
  color: var(--txt);
  font-weight: 500;
}

.insta-overlay .tag {
  font-size: .6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

/* ============================================
   VIDEO / REELS SECTION
   ============================================ */
.reels-section {
  padding: clamp(60px, 10vw, 100px) 0;
}

.reels-header {
  text-align: center;
  margin-bottom: 32px;
}

.reels-header .section-subtitle {
  margin: 0 auto;
}

.reels-track {
  display: flex;
  gap: 12px;
  padding: 0 16px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reels-track::-webkit-scrollbar {
  display: none;
}

.reel-card {
  flex: 0 0 200px;
  scroll-snap-align: center;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  background: var(--bg2);
  cursor: pointer;
}

@media (min-width:768px) {
  .reel-card {
    flex: 0 0 240px;
  }
}

.reel-card img,
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.reel-card:hover img,
.reel-card:hover video {
  transform: scale(1.05);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 6, 8, .7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.reel-title {
  font-size: .82rem;
  font-weight: 600;
}

.reel-views {
  font-size: .65rem;
  color: var(--txt3);
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.reel-play::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--bg);
  margin-left: 2px;
}

.reel-play:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Landscape video section */
.landscape-videos {
  padding: clamp(40px, 8vw, 80px) 0;
}

.landscape-track {
  display: flex;
  gap: 16px;
  padding: 0 16px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.landscape-track::-webkit-scrollbar {
  display: none;
}

.landscape-card {
  flex: 0 0 85%;
  max-width: 640px;
  scroll-snap-align: center;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  background: var(--bg2);
  cursor: pointer;
}

@media (min-width:768px) {
  .landscape-card {
    flex: 0 0 560px;
    max-width: 720px
  }
}

.landscape-card img,
.landscape-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.landscape-card:hover img,
.landscape-card:hover video {
  transform: scale(1.03);
}

.landscape-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 6, 8, .7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.landscape-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.landscape-desc {
  font-size: .78rem;
  color: var(--txt2);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: clamp(60px, 10vw, 140px) 0;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.video-testimonials-swiper {
  width: 100%;
}

.video-testimonial-card {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.video-testimonial-card .iframe-wrapper {
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
  background: var(--bg);
}

.video-testimonial-card iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-testimonial-card .video-info {
  padding: 16px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.testimonial-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt);
}

.testimonial-event {
  font-size: 0.8rem;
  color: var(--txt3);
  margin-top: 4px;
}

.video-pagination {
  position: relative !important;
  margin-top: 24px;
}
.video-pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

.scroll-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.scroll-dot-ind {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--txt4);
  transition: all .3s;
}

.scroll-dot-ind.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.services {
  padding: clamp(60px, 10vw, 140px) 0;
  background: var(--bg2);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width:768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }
}

.pricing-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  position: relative;
  transition: all .5s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .2);
}

@media (min-width:993px) {
  .pricing-card:hover {
    transform: translateY(-6px)
  }
}

.pricing-card.featured {
  border-color: var(--border-g);
  background: rgba(201, 168, 76, .03);
}

@media (min-width:768px) {
  .pricing-card.featured {
    transform: scale(1.03);
  }

  .pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
  }
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--gold-d);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: transform .4s var(--bounce);
}

.pricing-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: .78rem;
  color: var(--txt3);
  margin-bottom: 24px;
  font-style: italic;
}

.card-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.card-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  font-size: .85rem;
  color: var(--txt2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card-features li .check {
  color: var(--gold);
  font-size: .6rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.card-cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border-h);
  color: var(--txt);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--glass);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .4s var(--ease);
  text-decoration: none;
}

.card-cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.pricing-card.featured .card-cta {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact {
  padding: clamp(60px, 10vw, 140px) 0;
  position: relative;
}

.contact-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .04), transparent);
  top: 50%;
  left: -160px;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(60px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 60px
  }
}

.contact-info p.section-desc {
  color: var(--txt2);
  font-weight: 300;
  margin-bottom: 32px;
  font-size: .92rem;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--txt2);
  font-size: .85rem;
  transition: all .4s var(--ease);
}

.contact-detail:hover {
  border-color: var(--border-g);
  background: var(--gold-glow);
  transform: translateX(6px);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--gold-d);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
}

.form-wrapper {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--txt3);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--txt);
  font-family: var(--sans);
  font-size: .88rem;
  transition: all .4s var(--ease);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .03);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--txt4);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235a554f' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  border: none;
  color: var(--bg);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .4s var(--ease);
  margin-top: 4px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .3);
}

.booking-notice {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: var(--r-md);
}

.booking-notice p {
  font-size: .78rem;
  color: var(--txt2);
  line-height: 1.6;
}

.booking-notice strong {
  color: var(--gold);
  font-weight: 600;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.form-success.active {
  display: block;
  animation: heroFadeUp .6s var(--ease);
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-d);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.form-success p {
  color: var(--txt2);
  font-size: .88rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

@media (min-width:768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px
  }
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 8px;
}

.footer-brand em {
  color: var(--gold);
  font-style: italic;
}

.footer-desc {
  font-size: .82rem;
  color: var(--txt3);
  max-width: 280px;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--txt3);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--txt2);
  font-size: .82rem;
  transition: all .3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt2);
  transition: all .4s var(--ease);
  background: var(--glass);
}

.social-link:hover {
  border-color: var(--border-g);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: var(--txt4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  padding: clamp(100px, 15vw, 180px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width:992px) {
  .page-header {
    padding-top: 100px;
  }
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .section-title {
  margin-bottom: 16px;
}

.page-header .section-subtitle {
  margin: 0 auto;
  max-width: 520px;
}

/* ============================================
   DESKTOP GRID OVERRIDES
   Convert horizontal scroll → proper grids on desktop
   ============================================ */
@media (min-width:993px) {
  /* Horizontal showcase → 3-column grid */
  .horizontal-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 48px !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
  }
  .h-card {
    flex: none !important;
    max-width: none !important;
    scroll-snap-align: none !important;
  }

  /* Reels → 5-column grid */
  .reels-track {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 0 48px !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
  }
  .reel-card {
    flex: none !important;
    scroll-snap-align: none !important;
  }

  /* Landscape films → 2-column grid */
  .landscape-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 48px !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
  }
  .landscape-card {
    flex: none !important;
    max-width: none !important;
    scroll-snap-align: none !important;
  }

}

/* ============================================
   UNIFIED INSTAGRAM FEED GRID
   Mixes photos, reels, and landscape in one grid
   ============================================ */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
@media (min-width:768px) { .feed-grid { gap: 6px; } }
@media (min-width:993px) {
  .feed-grid {
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.feed-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg2);
}

/* Different aspect ratios for different content types */
.feed-item.photo { aspect-ratio: 1; }
.feed-item.reel { aspect-ratio: 9/16; grid-row: span 2; }
.feed-item.landscape { aspect-ratio: 16/9; grid-column: span 2; }
.feed-item.featured { grid-column: span 2; grid-row: span 2; }

.feed-item img, .feed-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: brightness(.85) saturate(.9);
}
.feed-item:hover img, .feed-item:hover video {
  transform: scale(1.06); filter: brightness(1) saturate(1.1);
}

.feed-overlay {
  position: absolute; inset: 0;
  background: rgba(6,6,8,.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transition: opacity .4s var(--ease);
  backdrop-filter: blur(2px);
}
.feed-item:hover .feed-overlay { opacity: 1; }

@media (hover:none) {
  .feed-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(6,6,8,.7) 100%);
    justify-content: flex-end; padding-bottom: 12px;
  }
}

.feed-overlay .tag {
  font-size: .55rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
}
.feed-overlay span { font-size: .72rem; color: var(--txt); font-weight: 500; }

/* Type badge on feed items */
.feed-type {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--txt);
  font-size: .5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 8px; border-radius: 4px;
  z-index: 2;
}

.feed-type.gold {
  background: rgba(201,168,76,.8);
  color: var(--bg);
  border-color: var(--gold);
}

.feed-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,.85); border: none;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center; z-index: 2;
}
.feed-play::after {
  content: ''; width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--bg);
  margin-left: 2px;
}

/* ============================================
   NEW: CAROUSEL WRAPPERS (Desktop Arrows)
   ============================================ */
.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 12, 16, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-g);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 993px) {
  .carousel-wrapper:hover .carousel-btn:not(:disabled) {
    opacity: 1;
    pointer-events: auto;
  }
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.3);
}

.carousel-btn:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
  pointer-events: none !important;
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

/* In a carousel, keep horizontal scrolling on desktop */
@media (min-width: 993px) {
  .carousel-wrapper .horizontal-track,
  .carousel-wrapper .testimonials-track,
  .carousel-wrapper .reels-track,
  .carousel-wrapper .landscape-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .carousel-wrapper .h-card,
  .carousel-wrapper .testimonial-card,
  .carousel-wrapper .reel-card,
  .carousel-wrapper .landscape-card {
    flex: 0 0 calc(33.333% - 16px) !important;
    max-width: none !important;
  }
  .carousel-wrapper .reels-track .reel-card {
    flex: 0 0 calc(25% - 12px) !important;
  }
  .carousel-wrapper .landscape-track .landscape-card {
    flex: 0 0 calc(50% - 10px) !important;
  }
}

/* ============================================
   NEW: LIGHTBOX
   ============================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(6, 6, 8, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border-radius: var(--r-md);
  overflow: hidden;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: white;
  color: black;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--bounce);
  backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-50%) scale(1.15);
}

.lightbox-prev { left: 4vw; }
.lightbox-next { right: 4vw; }

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.lightbox-modal.active .lightbox-caption {
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* ============================================
   NEW: WHATSAPP FLOATING CTA
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: calc(var(--bnav) + var(--safe-b) + 20px);
  right: 20px;
  z-index: 94;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  animation: floatEntrance 1s 1s both var(--bounce), autoPulseWA 3s infinite;
  transition: transform 0.4s var(--bounce);
}

@media (min-width: 993px) {
  .whatsapp-float {
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes autoPulseWA {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0); }
}

@keyframes floatEntrance {
  0% { transform: scale(0) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* ============================================
   NEW: BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: calc(var(--bnav) + var(--safe-b) + 90px);
  right: 20px;
  z-index: 93;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--border-g);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.4s var(--bounce);
  backdrop-filter: blur(8px);
}

@media (min-width: 993px) {
  .back-to-top {
    bottom: 30px;
    right: 110px;
  }
}

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

.back-to-top:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-5px);
}

/* ============================================
   NEW: HOW IT WORKS / PROCESS SECTION
   ============================================ */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row;
    gap: 0;
  }
}

.process-step {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 16px;
  perspective: 1000px;
}

.process-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 2;
  transition: all 0.6s var(--bounce);
  transform-style: preserve-3d;
}

.process-step:hover .process-icon-wrap {
  transform: rotateY(180deg) scale(1.1);
  background: var(--gold-glow);
  box-shadow: 0 15px 30px rgba(201, 168, 76, 0.2);
}

.process-icon-wrap > span {
  transition: transform 0.6s;
}

.process-step:hover .process-icon-wrap > span {
  transform: rotateY(-180deg);
}

.process-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(20px);
}

.process-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--txt);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.process-step:hover .process-title {
  color: var(--gold);
}

.process-line {
  display: none;
}

@media (min-width: 768px) {
  .process-line {
    display: block;
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    z-index: 1;
    opacity: 0.3;
  }
  .process-step:last-child .process-line {
    display: none;
  }
}

/* ============================================
   NEW: FAQ ACCORDION WITH 3D INTERACTION
   ============================================ */
.accordion-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.accordion-item:hover {
  border-color: var(--border-g);
  background: var(--glass-h);
  transform: translateZ(10px);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--txt);
  user-select: none;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  transition: transform 0.4s var(--bounce);
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
  color: var(--txt2);
  font-size: 0.9rem;
  line-height: 1.7;
}

.accordion-item.active {
  border-color: var(--gold);
  background: var(--gold-glow);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.accordion-item.active .accordion-header {
  color: var(--gold);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 300px; /* arbitrary large enough height */
  opacity: 1;
  padding: 4px 24px 24px 24px;
}

/* ============================================
   NEW: TRUST STRIP
   ============================================ */
.trust-strip {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 24px 0;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--txt2);
  transition: transform 0.3s;
}

.trust-item:hover {
  transform: translateY(-3px) scale(1.05);
  color: var(--gold);
}

.trust-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.trust-item span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   NEW: PORTFOLIO FILTERS
   ============================================ */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--txt2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.filter-btn:hover {
  border-color: var(--border-g);
  color: var(--txt);
}

.filter-btn.active {
  color: var(--bg);
  border-color: var(--gold);
}

.filter-btn.active::before {
  width: 200px;
  height: 200px;
}

/* 3D Grid Reveal for feed-item filtering */
.feed-item {
  transition: opacity 0.4s ease, transform 0.4s ease, scale 0.4s ease;
}

.feed-item.filtering-out {
  opacity: 0;
  transform: scale(0.8) translateZ(-100px);
  pointer-events: none;
}

/* ============================================
   ADDITIONAL 3D EFFECTS
   ============================================ */
/* Enhancing the tilt-card effect from script.js to have more depth */
.tilt-card {
  transform-style: preserve-3d;
}
.tilt-card .card-icon,
.tilt-card .bento-mini-icon,
.tilt-card .card-cta {
  transform: translateZ(30px);
}
.tilt-card .card-title,
.tilt-card h2,
.tilt-card h3 {
  transform: translateZ(20px);
}

/* ============================================
   NEW: BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: #fff;
}

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

/* ============================================
   NEW: WHATSAPP FLOATING CTA
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 84px; /* Default above back-to-top */
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   NEW: LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

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

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.lightbox-caption {
  color: var(--txt1);
  margin-top: 16px;
  font-size: 1.1rem;
  text-align: center;
  font-family: var(--font-primary);
  letter-spacing: 0.02em;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
  border-color: var(--gold);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: calc(var(--bnav) + var(--safe-b) + 8px);
    left: 16px;
    right: 16px;
    z-index: 94;
  }

  .sticky-cta a {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    color: var(--bg);
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 24px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
    transition: all 0.3s var(--ease);
  }

  .sticky-cta a:hover {
    box-shadow: 0 12px 48px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
  }
}

/* ============================================
   MASK REVEAL (Portfolio overflow containers)
   ============================================ */
.feed-item {
  overflow: hidden;
}

.feed-item img,
.feed-item video {
  will-change: transform;
}

/* ============================================
   BREATHING ROOM — Premium Section Spacing
   ============================================ */
.about,
.portfolio,
.testimonials,
.pricing-section,
.process-section {
  padding-top: clamp(60px, 12vh, 140px);
  padding-bottom: clamp(60px, 12vh, 140px);
}

/* ============================================
   FULL-BLEED MOBILE PORTFOLIO
   ============================================ */
@media (max-width: 768px) {
  .feed-grid {
    margin-left: -16px;
    margin-right: -16px;
    gap: 2px;
  }
}

/* ============================================
   HIDE DEFAULT CURSOR ON DESKTOP (custom cursor active)
   ============================================ */
@media (min-width:993px) and (hover:hover) {
  *,
  a,
  button {
    cursor: none !important;
  }
}

/* ============================================
   LENIS OVERRIDES
   ============================================ */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}