/*
================================================================================
⚠️⚠️⚠️ MO'MINT - DESKTOP LAYOUT LOCKED (Viewport width > 1024px) ⚠️⚠️⚠️
================================================================================
🚨 CRITICAL: DO NOT MODIFY LINES 1-967 (DESKTOP CODE) WITHOUT EXPLICIT USER PERMISSION 🚨

This desktop layout is FINAL and LOCKED.
- ONLY modify mobile/tablet code (line 968+, inside @media blocks)
- NEVER change default/desktop styles (lines 1-967)
- When in doubt, ask the user first

Key Desktop Layout Specifications:
- Black fade overlay: 33.33% width (1/3 of screen), positioned at left: 66.67%
- Content areas: left: calc(66.67vw + 60px), width: calc(33.33vw - 120px)
- Navigation: split at 66.67% mark with 60px padding from black fade edge
- 60px margins throughout all black fade content areas
- Typography: hyphens: none (no word breaks)
- Buttons: text-transform: uppercase
- Footers: copyright (bottom-left), photography credit (outside black fade, bottom-right)

🔒 DESKTOP LAYOUT ENDS AT LINE 967 🔒
================================================================================
*/

:root{
  /* nudged further toward cyan (user-requested tweak) */
  --mint-950: #000f18; /* deepened for better contrast */
  --mint-900: #00262f;
  --mint-700: #00CFE7; /* cyan family */
  --mint-500: #00E7DE; /* target cyan */
  --mint-300: #86F7F6;
  --cream: #f8f8f6;
  --glass: rgba(255,255,255,0.06);
  /* use the mint components for dynamic gradients and glows */
  --glow: 0 6px 28px rgba(var(--mint-r),var(--mint-g),var(--mint-b),0.16), 0 2px 6px rgba(var(--mint-r),var(--mint-g),var(--mint-b),0.08);
  /* mint color components for CSS-built gradients */
  --mint-r: 0; --mint-g: 231; --mint-b: 222;
  /* Animated blob defaults (percent positions and scale) - JS will update these for motion */
  --b1x: 30%; --b1y: 72%; --b1s: 1;
  --b2x: 12%; --b2y: 38%; --b2s: 1;
  --b3x: 88%; --b3y: 14%; --b3s: 1;
}
*{box-sizing:border-box}
html,body{height:100%;}
body{
  margin:0;font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  /* dark base color (fixed animated bg will overlay this) */
  background: #0d5f6f;
  color:var(--cream); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}

/* Fixed animated background that doesn't scroll - 25% darker */
.fixed-animated-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(-45deg, #001f28 0%, #003a44 20%, #00686f 40%, #007c82 60%, #00888d 75%, #001f28 100%);
  background-size: 600% 600%;
  animation: mmGradient 10s ease infinite;
  pointer-events: none;
}
.site-header{position:fixed;left:0;right:0;top:0;z-index:60;background:transparent;padding:18px 0}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:0;margin:0 auto;height:40px;position:relative}
.logo{position:absolute;left:clamp(40px,6vw,80px);top:50%;transform:translateY(-50%);display:flex;align-items:center}
/* DESKTOP LAYOUT - Hide mobile menu elements */
.hamburger-btn,
.mobile-menu {
  display: none;
}
.top-nav-left{position:absolute;right:33.33%;top:0;bottom:0;padding-right:60px;display:flex;gap:clamp(16px,2vw,24px);align-items:center}
.top-nav-right{position:absolute;left:66.67%;top:0;bottom:0;padding-left:60px;display:flex;gap:clamp(16px,2vw,24px);align-items:center}
.logo h1{font-family:'Playfair Display', serif;margin:0;font-weight:400;letter-spacing:0.6px;font-size:clamp(28px,4vw,48px);color:var(--cream);text-shadow:0 2px 12px rgba(0,0,0,0.45);line-height:0.95}
.logo .accent{color:var(--mint-300);font-weight:700;font-size:clamp(30px,4.8vw,56px);margin-right:6px;letter-spacing:1.6px;text-shadow: 0 10px 30px rgba(47,224,209,0.10);display:inline-block;vertical-align:middle}
/* Make `main` the primary scroll container */
main{
  height:100vh;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-y: contain;
}

/* Desktop only: snap between panels */
@media (min-width: 1025px) {
  main{
    scroll-snap-type:y mandatory;
  }
}

/* Background track container - all backgrounds on one horizontal track */
main::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 300vw;
  height: 100vh;
  z-index: 0;
  transform: translateX(0);
  transition: transform 0.05s linear;
  will-change: transform;
  pointer-events: none;
}
.hero{height:100vh;position:relative;touch-action:pan-y}
.hero .video-wrap{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;touch-action:pan-y;}
.about-section{height:100vh;display:flex;align-items:center;justify-content:center;position:relative;overflow:visible}
.info-section{height:100vh;display:flex;align-items:center;justify-content:center;position:relative;overflow:visible}
.contact-section{height:100vh;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}

/* Desktop only: scroll-snap and z-index */
@media (min-width: 1025px) {
  .hero{scroll-snap-align:start;z-index:10}
  .about-section{scroll-snap-align:start;z-index:15}
  .info-section{scroll-snap-align:start;z-index:15}
  .contact-section{scroll-snap-align:start;z-index:15}
}

/* Fixed background track layer - completely independent */
body::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 300vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  transform: translateX(0);
}

body::after{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
.top-nav-left a, .top-nav-right a{color:var(--cream);text-decoration:none;font-weight:600;letter-spacing:1.6px;text-transform:uppercase;font-size:clamp(11px,1.2vw,13px);transition:transform 220ms cubic-bezier(.2,.9,.2,1), opacity 180ms ease}
.epk-btn, .contact-btn{background:transparent;color:var(--cream);padding:clamp(6px,1.1vw,10px) clamp(10px,2.2vw,16px);border-radius:0;box-shadow: inset 0 0 0 2px rgba(255,255,255,1);text-transform:uppercase}

/* stronger hide rule to prevent subpixel peeking in browsers with compositing quirks */
.hero.hero-hidden{transform:translate3d(0,-200%,0) scale(0.995);opacity:0;pointer-events:none}

.hero{height:100vh;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;background:transparent}
.video-wrap{position:relative;width:100%;height:100%;}
.demo-video{width:100%;height:100%;object-fit:cover;display:block;filter:contrast(1.05) saturate(1.35) brightness(1);touch-action:pan-y}
.mute-toggle{position:absolute;right:20px;bottom:20px;background:transparent;border:0;padding:10px;border-radius:0;color:var(--cream);cursor:pointer;box-shadow:inset 0 0 0 2px rgba(255,255,255,1)}
.hero-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;pointer-events:none}
.hero-ctas-centered{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:clamp(36px,4.5vw,60px);pointer-events:auto;transition:opacity 420ms ease}
.hero-logo{display:flex;align-items:center;justify-content:center}
.hero-logo img{height:132px;display:block}
.learn-more-link{
  position:absolute;
  bottom:clamp(30px,4vw,50px);
  left:50%;
  transform:translateX(-50%);
  color:var(--cream);
  text-decoration:none;
  font-size:clamp(14px,1.4vw,16px);
  font-weight:400;
  letter-spacing:1.2px;
  display:flex;
  align-items:center;
  gap:8px;
  pointer-events:auto;
  transition:transform 220ms cubic-bezier(.2,.9,.2,1), opacity 220ms ease;
  opacity:0.9;
}
.learn-more-link i{
  font-size:clamp(12px,1.2vw,14px);
  animation:bounce 2s ease-in-out infinite;
}
.learn-more-link:hover{
  transform:translateX(-50%) translateY(-4px);
  opacity:1;
}
@keyframes bounce{
  0%, 100%{transform:translateY(0)}
  50%{transform:translateY(4px)}
}
.logo-lockup{max-width:720px; padding:clamp(20px,4.5vw,56px); border-radius:16px; border:1px solid rgba(255,255,255,0.06); box-shadow:0 18px 60px rgba(0,0,0,0.45); background:rgba(255,255,255,0.015); backdrop-filter: blur(12px) saturate(1.08); -webkit-backdrop-filter: blur(12px) saturate(1.08); pointer-events:auto; display:flex; flex-direction:column; gap:18px; align-items:flex-start}
.lead{font-family:'Playfair Display', serif;font-size:clamp(28px,6.5vw,72px);line-height:0.98;margin:0 0 clamp(18px,3.4vw,36px);color:var(--mint-500);text-shadow:0 20px 48px rgba(46,221,209,0.06);font-weight:400;letter-spacing:0.6px}
.strap{margin:0;color:rgba(255,255,255,0.93);font-size:clamp(14px,1.6vw,18px);letter-spacing:0.6px;max-width:62ch}
.lead.glow{filter:drop-shadow(0 10px 28px rgba(47,224,209,0.20));}

/* stagger children inside logo-lockup for a couture exit animation */
.logo-lockup > *{transition:transform 520ms cubic-bezier(.2,.9,.2,1), opacity 420ms ease;transform-origin:center;}
.logo-lockup .lead{transition-delay:0s}
.logo-lockup .strap{transition-delay:0.06s}
.logo-lockup .hero-ctas{transition-delay:0.12s}

/* mute button gets a movement and fade */
.mute-toggle{transition:transform 420ms cubic-bezier(.2,.9,.2,1), opacity 360ms ease}

/* header slide out */
.site-header{transition:transform 420ms cubic-bezier(.2,.9,.2,1), opacity 320ms ease}
.site-header.hidden{transform:translateY(-110%);opacity:0;pointer-events:none}

.hero-ctas{margin-top:6px;display:flex;gap:14px;align-items:center}
.watch-btn{background:transparent;color:var(--cream);padding:12px 22px;border-radius:0;font-weight:400;letter-spacing:1px;cursor:pointer;box-shadow:none;transition:transform 220ms cubic-bezier(.2,.9,.2,1), opacity 180ms ease}
.watch-btn:hover{transform:translateY(-4px) scale(1.01);opacity:1}
.watch-btn:active{transform:translateY(-1px) scale(.998)}

/* subtle frosted highlight line */
.logo-lockup::after{content:'';position:absolute;left:8%;right:8%;top:8%;height:1px;background:linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0));opacity:0.8;pointer-events:none;border-radius:2px}

@media (max-width:1024px){
  .hero-overlay{padding:24px}
}

/* when below-hero is active, slide the hero up and out with a parallax-like motion */
.hero{transition:transform 820ms cubic-bezier(.16,.85,.24,1), opacity 620ms ease;will-change:transform,opacity}

/* give the video-wrap a slightly different motion for parallax during the hide */
.hero.hero-hidden .video-wrap{transition:transform 820ms cubic-bezier(.16,.85,.24,1);transform:translate3d(0,-36px,0) scale(1.03) rotateX(1deg)}

/* reduced-motion fallback: don't transform offscreen abruptly */
@media (prefers-reduced-motion: reduce){
  .hero{transition:none}
  .hero.hero-hidden{transform:none;opacity:1;display:block}
  .hero.hero-hidden .video-wrap{transform:none}
}

/* reveal animation: when hero is 'revealed' we hide the lockup */
.hero--revealed .logo-lockup{transform:translateY(28px) rotate(-0.6deg) scale(0.98);opacity:0;pointer-events:none}
.hero--revealed .logo-lockup .lead{transform:translateY(-6px) rotate(-0.4deg) scale(0.98);opacity:0}
.hero--revealed .logo-lockup .strap{transform:translateY(4px) rotate(-0.2deg) scale(0.99);opacity:0}
.hero--revealed .logo-lockup .hero-ctas{transform:translateY(10px) scale(0.98);opacity:0}
.hero--revealed .mute-toggle{transform:translateY(8px) scale(0.96);opacity:0}
.hero--revealed .top-nav-left a, .hero--revealed .top-nav-right a{transform:translateY(-6px);opacity:0}

/* reverse (enter) animation: when not revealed, ensure elements are visible */
.logo-lockup{transform:none;opacity:1}
.logo-lockup .lead,.logo-lockup .strap,.logo-lockup .hero-ctas{transform:none;opacity:1}
.mute-toggle{transform:none;opacity:1}
.top-nav-left a, .top-nav-right a{transform:none;opacity:1}

/* make video bleed to edges — remove default body margins and ensure container fills */
html,body{height:100%;width:100%;}
main{min-height:100vh}

/* when body is fixed during reveal, avoid double scrollbars on some browsers */
body[style*="position: fixed"]{overflow:hidden;width:100%}
.shimmer{position:absolute;inset:0;background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.04) 42%, rgba(255,255,255,0.07) 48%, rgba(255,255,255,0.02) 72%);transform:rotate(-12deg);opacity:0.85;mix-blend-mode:screen;pointer-events:none;animation:shimmer 6s linear infinite}
@keyframes shimmer{0%{transform:translateX(-120%) rotate(-12deg)}100%{transform:translateX(120%) rotate(-12deg)}}

.content-section{padding:110px 0}
.below-hero .container{padding-left:clamp(20px,4vw,80px);padding-right:clamp(20px,4vw,80px);display:flex;flex-direction:column;align-items:flex-start;text-align:left}
.container{max-width:1200px;margin:0 auto}
.intro{color:rgba(255,255,255,0.94);font-size:clamp(16px,1.8vw,22px);letter-spacing:0.3px;line-height:1.7;margin-bottom:28px;word-wrap:break-word;overflow-wrap:break-word;hyphens:none}
.section-head{font-family:'Playfair Display', serif;font-size:clamp(28px,4.5vw,48px);letter-spacing:-2px;line-height:1.1;margin-bottom:28px;color:var(--mint-300);font-weight:400;word-wrap:break-word;overflow-wrap:break-word;hyphens:none}
.about-section .section-head{font-size:clamp(32px,5.2vw,54px);letter-spacing:0}
.muted{color:rgba(255,255,255,0.75);font-size:clamp(14px,1.5vw,16px);margin-bottom:24px;word-wrap:break-word;overflow-wrap:break-word;hyphens:none}

.grid{display:grid;grid-template-columns:minmax(280px,1fr) 360px;gap:48px;align-items:start;justify-content:center}
.card{position:relative;background:linear-gradient(180deg, rgba(4,6,7,0.82), rgba(6,8,9,0.75));padding:26px 22px;border-radius:18px;border:1px solid rgba(47,224,209,0.04);max-width:820px;width:100%;box-shadow:0 20px 60px rgba(0,0,0,0.6);overflow:hidden}
.card > *{position:relative;z-index:2}

/* teal corner glow on cards (subtle, no white). Uses a pseudo-element to keep the glow clipped to the card */
.about-left.card::before, .about-right.card::before{
  content:"";position:absolute;left:-6%;top:-8%;width:56%;height:42%;pointer-events:none;border-radius:inherit;
  background: radial-gradient(220px 120px at 6% 8%, rgba(47,224,209,0.18), rgba(47,224,209,0.06) 28%, transparent 36%);
  filter:blur(22px);opacity:0.95;mix-blend-mode:screen;z-index:1;
}

/* faint diagonal teal sheen (very subtle, avoids white highlights) */
.about-left.card::after, .about-right.card::after{
  content:"";position:absolute;inset:0;pointer-events:none;border-radius:inherit;
  background: linear-gradient(135deg, rgba(47,224,209,0.03) 0%, rgba(47,224,209,0.00) 18%, rgba(0,0,0,0.0) 60%);
  mix-blend-mode:overlay;z-index:1;opacity:0.9;transform:translateZ(0);
}

.epk-cta .muted{color:rgba(255,255,255,0.85)}

/* About, Info, and Contact sections - transparent to show fixed background */
.about-section, .info-section, .contact-section{
  position:relative;
  background: transparent;
  color:var(--cream);
}

/* Enable horizontal transforms for section sliding */
.hero, .about-section, .info-section{
  transition: transform 0.05s linear;
  will-change: transform;
  pointer-events: auto;
}

/* Full-bleed responsive backgrounds for about, info, and contact sections */
/* Desktop only - backgrounds handled by fixed track */
@media (min-width: 1025px) {
  .about-section, .info-section, .contact-section{
    background: none !important;
  }
}

/* Independent fixed background layers - each at different horizontal positions */
#bgHero, #bgHow, #bgAbout, #bgContact{
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

#bgHero{
  left: 0;
  background-color: transparent;
}

#bgHow{
  left: 0;
  background-image: url('../assets/img-ben-and-olya.jpg');
}

#bgAbout{
  left: 0;
  background-image: url('../assets/img-ben-and-olya-2.jpg');
}

#bgContact{
  left: 0;
  background-image: url('../assets/img-ben-and-olya-3.jpg');
}

/* Right-side overlay with blur for about, info, and contact sections */
/* DESKTOP LAYOUT (above 1024px) - Black fade occupies 1/3 of screen */
@media (min-width: 1025px) {
  #fixedOverlay{
    position: fixed;
    top: 0;
    left: 66.67%;
    width: 33.33%;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.8s ease-out;
    pointer-events: none;
  }

  /* Overlay visible when past Hero section */
  #fixedOverlay.visible{
    opacity: 1;
  }
}

/* Mobile breakpoint will be added later (below 1024px) */

/* Section content positioning */
.section-content{
  position:relative;
  z-index:20;
  max-width:720px;
  width:100%;
  padding:clamp(40px,6vw,80px);
  text-align:center;
}


/* Info section layout - aligned to right like about-section */
/* DESKTOP LAYOUT (above 1024px) - locked, do not modify */
.info-content-left{
  text-align:left;
  position:absolute;
  left: calc(66.67vw + 60px);
  width: calc(33.33vw - 120px);
  right: auto;
  max-width: none !important;
  top:50%;
  transform:translateY(-50%);
  padding:0 !important;
  margin: 0 !important;
  opacity:0;
  transition: opacity 0.8s ease-in-out;
  z-index:20;
  will-change: opacity;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:center;
  box-sizing: border-box;
}

.info-content-left > * {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
  text-align: left !important;
}

/* Info text content animations - fade in/out */
.info-content-left.slide-out-left{
  opacity:0 !important;
}

.info-content-left.slide-in{
  opacity:1 !important;
}

/* Child element animations - heading and intro from top, muted and button from bottom */
.info-content-left .section-head{
  transform:translateY(-40px);
  opacity:0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition-delay: 0.1s;
}

.info-content-left.slide-in .section-head{
  transform:translateY(0);
  opacity:1;
}

.info-content-left.slide-out-left .section-head{
  transform:translateY(-40px);
  opacity:0;
}

.info-content-left .intro{
  transform:translateY(-40px);
  opacity:0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition-delay: 0.15s;
}

.info-content-left.slide-in .intro{
  transform:translateY(0);
  opacity:1;
}

.info-content-left.slide-out-left .intro{
  transform:translateY(-40px);
  opacity:0;
}

.info-content-left .muted,
.info-content-left .btn{
  transform:translateY(40px);
  opacity:0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition-delay: 0.2s;
}

.info-content-left.slide-in .muted,
.info-content-left.slide-in .btn{
  transform:translateY(0);
  opacity:1;
}

.info-content-left.slide-out-left .muted,
.info-content-left.slide-out-left .btn{
  transform:translateY(40px);
  opacity:0;
}

/* .info-image no longer used - background applied to section */
.info-image{
  display: none;
}

/* About section specific layout with image - 2/3 image, 1/3 text */
/* DESKTOP LAYOUT (above 1024px) - locked, do not modify */
.about-content-left{
  text-align:left;
  position:absolute;
  left: calc(66.67vw + 60px);
  width: calc(33.33vw - 120px);
  right: auto;
  max-width: none !important;
  top:50%;
  transform:translateY(-50%);
  padding:0 !important;
  margin: 0 !important;
  opacity:0;
  transition: opacity 0.8s ease-in-out;
  z-index:20;
  will-change: opacity;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:center;
  box-sizing: border-box;
}

.about-content-left > * {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
  text-align: left !important;
}

/* Text content animations - fade in/out */
.about-content-left.slide-out-left{
  opacity:0 !important;
}

.about-content-left.slide-in{
  opacity:1 !important;
}

/* Child element animations - heading from top, others from bottom */
.about-content-left .section-head{
  transform:translateY(-40px);
  opacity:0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition-delay: 0.1s;
}

.about-content-left.slide-in .section-head{
  transform:translateY(0);
  opacity:1;
}

.about-content-left.slide-out-left .section-head{
  transform:translateY(-40px);
  opacity:0;
}

.about-content-left .intro,
.about-content-left .muted,
.about-content-left .btn{
  transform:translateY(40px);
  opacity:0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition-delay: 0.2s;
}

.about-content-left.slide-in .intro,
.about-content-left.slide-in .muted,
.about-content-left.slide-in .btn{
  transform:translateY(0);
  opacity:1;
}

.about-content-left.slide-out-left .intro,
.about-content-left.slide-out-left .muted,
.about-content-left.slide-out-left .btn{
  transform:translateY(40px);
  opacity:0;
}

/* .about-image no longer used - background applied to section */
.about-image{
  display: none;
}

@keyframes blobDrift{
  0%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(-4%,2%,0) scale(1.02)}
  100%{transform:translate3d(0,0,0) scale(1)}
}
@keyframes mmGradient{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}



@keyframes wander{0%{transform:translate(0,0) scale(1)}25%{transform:translate(-6%,4%) scale(1.02)}50%{transform:translate(-2%,-6%) scale(1.01)}75%{transform:translate(6%,3%) scale(1)}100%{transform:translate(0,0) scale(1)}}
@keyframes fall{0%{transform:translateY(-5%)}100%{transform:translateY(10%)}}

/* canvas for sparkles - positioned within sections */
.sparkle-canvas{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:3;mix-blend-mode:screen;opacity:1;visibility:visible !important}

/* Full-screen color fill for all non-hero sections */
.full-color-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:1;
  background-color:#02649D;
  opacity:0;
  transition:opacity 0.8s ease-out;
  will-change:opacity;
}
.full-color-overlay.visible{
  opacity:0.12;
}

/* Static color overlays - fixed color tint behind sparkles */
.color-overlay-fixed{
  position:fixed;
  top:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:1;
  background-color:#029A9D;
  mix-blend-mode:multiply;
  opacity:0;
  transition:opacity 0.8s ease-out;
  will-change:opacity;
}
.color-overlay-fixed.visible{
  opacity:0.05;
}

/* Fixed sparkle canvases - positioned behind black fade (z-index 5) */
.sparkle-canvas-fixed{
  position:fixed;
  top:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:2;
  mix-blend-mode:screen;
  opacity:0;
  transition:opacity 0.8s ease-out;
  will-change:transform,opacity;
}
.sparkle-canvas-fixed.visible{
  opacity:1;
}

@media (prefers-reduced-motion: reduce){
  .sparkle-canvas, .sparkle-canvas-fixed, .color-overlay-fixed, .full-color-overlay{display:none}
  .fixed-animated-bg{animation:none}
  /* Disable slide animations for reduced motion preference */
  .about-content-left, .info-content-left{
    transition:none !important;
  }
  .about-content-left.slide-out-left,
  .about-content-left.slide-in,
  .info-content-left.slide-out-left,
  .info-content-left.slide-in{
    transform:none !important;
    opacity:1 !important;
  }
}
.big-epk{display:inline-block;padding:12px 24px;background:transparent;color:var(--cream);border-radius:0;font-weight:700;text-decoration:none;border:none;letter-spacing:0.6px;text-align:center;box-shadow: inset 0 0 0 2px rgba(255,255,255,1);text-transform:uppercase}
/* micro-interactions: subtle lift and scale with softer shadows */
.big-epk, .submit{transition:transform 220ms cubic-bezier(.2,.9,.2,1), box-shadow 220ms ease, opacity 220ms ease}
.big-epk:hover{transform:translateY(-2px);}
.big-epk:active{transform:translateY(-1px);opacity:0.98}
.big-epk:focus{outline:2px solid rgba(255,255,255,0.12);outline-offset:3px}
.sparkle-layer{position:absolute;inset:0;pointer-events:none;display:block;opacity:0.95}
.sparkle-layer img{width:110%;height:110%;object-fit:cover;display:block;mix-blend-mode:screen;filter:brightness(1.08) saturate(1.2)}
.sparkle-layer.top{opacity:0.6}
.sparkle-layer.mid{opacity:0.8}
.sparkle-layer.fore{opacity:1}

/* mouse parallax */
.video-wrap{transition:transform 0.08s linear}

/* Fluid spacing utilities
   Usage: set custom properties on the element, e.g.
     style="--space-min:8px; --space-pref:2vw; --space-max:24px" and add .u-fluid-pad
*/
.u-fluid-pad{padding:clamp(var(--space-min,8px), var(--space-pref,1.8vw), var(--space-max,24px));}
.u-fluid-pad-x{padding-left:clamp(var(--space-min-x,8px), var(--space-pref-x,1.8vw), var(--space-max-x,24px));padding-right:clamp(var(--space-min-x,8px), var(--space-pref-x,1.8vw), var(--space-max-x,24px));}
.u-fluid-pad-y{padding-top:clamp(var(--space-min-y,6px), var(--space-pref-y,1.0vw), var(--space-max-y,20px));padding-bottom:clamp(var(--space-min-y,6px), var(--space-pref-y,1.0vw), var(--space-max-y,20px));}
.u-fluid-mar{margin:clamp(var(--mar-min,8px), var(--mar-pref,1.6vw), var(--mar-max,32px));}
.u-fluid-gap{gap:clamp(var(--gap-min,8px), var(--gap-pref,1.6vw), var(--gap-max,32px));}

@media (max-width:1024px){
  .lead{font-size:28px}
  .logo-lockup{padding:20px}
  .split{flex-direction:column}
  .about-grid{grid-template-columns:1fr;gap:20px}
  .hero-overlay{justify-content:center;padding:0 20px}
}

/* Debug HUD (opt-in via #debug or localStorage 'mmDebug' = '1') */
.mm-debug{position:fixed;right:16px;top:16px;z-index:99999;background:rgba(0,0,0,0.6);color:#fff;padding:10px 12px;border-radius:10px;font-family:monospace;font-size:12px;line-height:1.2;max-width:320px;box-shadow:0 8px 30px rgba(0,0,0,0.6)}
.mm-debug b{display:block;font-weight:700;margin-bottom:6px}
.mm-debug .row{display:flex;justify-content:space-between;gap:8px}
.mm-debug button{margin-top:8px;background:transparent;border:1px solid rgba(255,255,255,0.06);color:#fff;padding:6px 8px;border-radius:6px;cursor:pointer}


/* Contact section layout - aligned to right like about and info */
/* DESKTOP LAYOUT (above 1024px) - locked, do not modify */
.contact-content{
  text-align:left;
  position:absolute;
  left: calc(66.67vw + 60px);
  width: calc(33.33vw - 120px);
  right: auto;
  max-width: none !important;
  top:50%;
  transform:translateY(-50%);
  padding:0 !important;
  margin: 0 !important;
  opacity:0;
  transition: opacity 0.8s ease-in-out;
  z-index:20;
  will-change: opacity;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.contact-content::-webkit-scrollbar {
  display: none;
}

.contact-content > * {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
  text-align: left !important;
}

/* Contact text content animations - fade in/out */
.contact-content.slide-out-left{
  opacity:0 !important;
}

.contact-content.slide-in{
  opacity:1 !important;
}

/* Child element animations - heading from top, others from bottom */
.contact-content .section-head{
  transform:translateY(-40px);
  opacity:0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition-delay: 0.1s;
}

.contact-content.slide-in .section-head{
  transform:translateY(0);
  opacity:1;
}

.contact-content.slide-out-left .section-head{
  transform:translateY(-40px);
  opacity:0;
}

.contact-content .muted,
.contact-content .contact-form{
  transform:translateY(40px);
  opacity:0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition-delay: 0.2s;
}

.contact-content.slide-in .muted,
.contact-content.slide-in .contact-form{
  transform:translateY(0);
  opacity:1;
}

.contact-content.slide-out-left .muted,
.contact-content.slide-out-left .contact-form{
  transform:translateY(40px);
  opacity:0;
}

.contact-section .contact-form{max-width:100%;margin-top:22px;background:transparent;padding:0;border-radius:0;border:0}
.contact-form label{display:block;margin-bottom:12px;color:var(--cream);margin-left:0;margin-right:0;padding-left:0;padding-right:0}
/* visually hidden label text (we use placeholders inside inputs) */
.contact-form label span{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
/* minimalist underline inputs */
.contact-form input,.contact-form textarea{
  width:100% !important;
  max-width: none !important;
  padding:12px 14px;
  box-sizing: border-box;
  border-radius:0; /* square */
  background-color: rgba(0, 0, 0, 0.4);
  /* single-pixel outline so the fields read lighter */
  border:1px solid rgba(255,255,255,1);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  outline:none;
  box-shadow:none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, border-width 0.3s ease;
}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:rgba(255,255,255,0.36)}
.contact-form input:focus,.contact-form textarea:focus{
  background-color: var(--mint-300);
  border-color: var(--mint-300);
  color: #000000;
  outline:none;
}
.contact-form input:focus::placeholder,.contact-form textarea:focus::placeholder{
  color: rgba(0, 0, 0, 0.5);
}
/* Filled state (when field has content) */
.contact-form input:not(:placeholder-shown):not(:focus),.contact-form textarea:not(:placeholder-shown):not(:focus){
  background-color: #000000;
  border: 3px solid var(--mint-300);
  color: #ffffff;
  padding:10px 12px; /* Adjust padding to compensate for thicker border */
}
.submit{display:block;padding:12px 16px;background:var(--mint-300);color:#000000;border-radius:0;cursor:pointer;font-weight:800;box-shadow:none;letter-spacing:0.8px;height:48px;border:2px solid var(--mint-300);appearance:none;-webkit-appearance:none;background-clip:padding-box;transition:transform 220ms cubic-bezier(.2,.9,.2,1), opacity 220ms ease;text-transform:uppercase}
.submit.fullwidth{width:100%}

/* base button styles to unify font/size/height/radius */
.btn{font-family:inherit;font-weight:700;font-size:15px;line-height:1;display:inline-flex;align-items:center;justify-content:center;height:56px;padding:0 20px;border-radius:0;cursor:pointer;background:transparent;color:var(--cream);border:0;appearance:none;-webkit-appearance:none;background-clip:padding-box;text-transform:uppercase}
.btn{box-shadow: inset 0 0 0 2px rgba(255,255,255,1);} 
.watch-btn, .epk-btn, .contact-btn, .big-epk, .submit{font-family:inherit}
.watch-btn{height:56px}
.epk-btn, .contact-btn{height:40px}
.submit:hover{transform:translateY(-3px)}
.submit:active{transform:translateY(-1px) scale(0.997);opacity:0.97}
.submit:focus{outline:3px solid rgba(255,255,255,0.12);outline-offset:3px}

/* focus ring for all buttons to remain visible on keyboard navigation */
.btn:focus{outline:3px solid rgba(255,255,255,0.12);outline-offset:3px}

/* card and chip styles */
.about-left.card{background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));border-radius:16px;padding:28px;box-shadow: inset 0 2px 0 rgba(255,255,255,0.01), 0 18px 40px rgba(0,0,0,0.5)}
/* contact card square, outlined, no drop shadows */
.about-right.card{background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));border-radius:0;padding:28px;border:1px solid rgba(255,255,255,0.06);box-shadow:none}
.chip{display:inline-flex;align-items:center;justify-content:center;padding:10px 18px;border-radius:999px;border:1px solid rgba(255,255,255,0.06);background:rgba(255,255,255,0.02);color:var(--cream);cursor:pointer;margin:6px}
.chip--active{background:linear-gradient(90deg,var(--mint-700),var(--mint-500));color:#002;box-shadow:0 12px 36px rgba(47,224,209,0.10)}
.form-status{margin-top:10px}

/* Fixed footer sections - bottom left and bottom right (inside black fade) */
.site-footer-left,
.site-footer-right {
  position: fixed;
  bottom: 0;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  z-index: 100;
  letter-spacing: 0.3px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.site-footer-left.visible,
.site-footer-right.visible {
  opacity: 1;
  pointer-events: auto;
}

.site-footer-left {
  left: 20px;
  bottom: 20px;
}

.site-footer-right {
  right: calc(33.33vw + 20px);
  bottom: 20px;
  text-align: right;
  padding: 0;
}

/* Footer links styling (applies to both Mode Indigo and photography credit) */
.footer-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--mint-300);
}

/* Parallax small JS-driven offset */
[data-speed]{transform:translate3d(0,0,0);will-change:transform}

/*
================================================================================
🔒 END OF DESKTOP LAYOUT - LINE 967 ABOVE 🔒
================================================================================
⬇️⬇️⬇️ MOBILE/TABLET RESPONSIVE CODE BEGINS BELOW (SAFE TO EDIT) ⬇️⬇️⬇️

ALL CODE BELOW THIS LINE is for mobile/tablet (≤1024px) and can be modified.
Desktop layout (lines 1-967 above) must NOT be changed without explicit permission.
================================================================================
*/

@media (max-width:1024px){
  .lead{font-size:28px}
  .hero-overlay{padding:0 20px}
  .hero-logo img{height:clamp(80px,20vw,132px)}
  .section-content{padding:clamp(30px,8vw,60px) clamp(20px,5vw,40px)}

  /* Mobile: Reset navigation to default layout */
  .top-nav-left{position:static;right:auto;padding-right:0}
  .top-nav-right{position:static;left:auto;padding-left:0}

  /* Mobile headings 2x bigger */
  .section-head{font-size:clamp(48px,12vw,72px)}
  .about-section .section-head{font-size:clamp(54px,13.5vw,80px);letter-spacing:0}
  .intro{font-size:clamp(15px,4vw,18px)}

  /* Mobile: Stack UI on top of images with flexbox layout */
  .about-section, .info-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    padding:clamp(40px,8vw,80px) clamp(20px,5vw,40px) 0 clamp(20px,5vw,40px);
  }

  /* About section - UI stacked on top of image with 2x padding */
  .about-content-left{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    transform:translateY(50px);
    max-width:100%;
    padding:clamp(60px,16vw,120px) clamp(40px,10vw,80px) clamp(40px,8vw,80px);
    text-align:left;
    order:1;
  }

  /* About image - no longer used */
  .about-image{
    display: none;
  }

  /* Info section - UI stacked on top of image with 2x padding */
  .info-content-left{
    position:relative;
    left:auto;
    top:auto;
    transform:translateY(50px);
    max-width:100%;
    padding:clamp(60px,16vw,120px) clamp(40px,10vw,80px) clamp(40px,8vw,80px);
    text-align:left;
    order:1;
  }

  /* Info image - no longer used */
  .info-image{
    display: none;
  }

  /* Unified mobile slide animations - text elements slide up from bottom with fade */
  .about-content-left.slide-out-left,
  .info-content-left.slide-out-left{
    transform:translateY(50px) !important;
    opacity:0 !important;
  }

  .about-content-left.slide-in,
  .info-content-left.slide-in{
    transform:translateY(0) !important;
    opacity:1 !important;
  }
}

/*
================================================================================
MOBILE & TABLET BREAKPOINTS (≤1024px)
================================================================================
Mobile and vertical tablet layouts are defined below.
Desktop layout (above) remains untouched and applies to:
- Desktop: > 1024px
- Tablet landscape: will use desktop layout

Breakpoint Strategy:
- Tablet (portrait): 768px - 1024px
- Mobile: < 768px
================================================================================
*/

/* ============================================
   SHARED MOBILE & TABLET PORTRAIT STYLES
   ============================================ */
@media (max-width: 1024px) {
  /* Hide desktop navigation */
  .top-nav-left,
  .top-nav-right {
    display: none;
  }

  /* Show hamburger button */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    right: clamp(20px, 5vw, 40px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 70;
    padding: 0;
  }

  .hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--cream);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  /* Hamburger animation when open */
  .hamburger-btn.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .hamburger-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  /* Mobile menu overlay */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 65;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .mobile-menu-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-size: 20px;
    transition: color 0.2s ease;
  }

  .mobile-menu-link:hover {
    color: var(--mint-300);
  }

  .mobile-menu-btn {
    margin-top: 20px;
    text-decoration: none;
  }

  .mobile-menu-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    pointer-events: none;
  }

  .mobile-menu-footer p {
    margin: 0;
    pointer-events: auto;
  }

  .mobile-footer-left {
    position: absolute;
    bottom: clamp(20px, 5vw, 40px);
    left: clamp(20px, 5vw, 40px);
  }

  .mobile-footer-right {
    position: absolute;
    bottom: clamp(20px, 5vw, 40px);
    right: clamp(20px, 5vw, 40px);
  }

  /* Mobile menu close button - centered at top */
  .mobile-menu-close {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 66;
  }

  .mobile-menu-close:hover {
    color: var(--mint-300);
    transform: translateX(-50%) scale(1.1);
  }

  .mobile-menu-close svg {
    display: block;
  }

  /* Blur panel - dynamic height set by JavaScript based on content */
  /* No padding - content provides its own padding */
  #fixedOverlay {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 50vh; /* Default, JavaScript will override */
    min-height: 30vh !important;
    max-height: 70vh !important;
    padding: 0 !important;
    transform: none !important;
    transition: opacity 0.3s ease, height 0.3s ease !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 60 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    visibility: visible !important;
    overflow-y: auto !important;
  }

  /* Show blur panel when scrolled past hero */
  body.scrolled-past-hero #fixedOverlay {
    opacity: 1 !important;
  }

  /* Content areas - positioned at bottom with uniform padding matching navigation */
  .about-content-left,
  .info-content-left {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: clamp(20px, 5vw, 40px) !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    overflow-x: hidden;
    box-sizing: border-box;
    z-index: 200 !important;
    text-align: left !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .about-content-left::-webkit-scrollbar,
  .info-content-left::-webkit-scrollbar {
    display: none;
  }

  /* Show content when slide-in class is added */
  .about-content-left.slide-in,
  .info-content-left.slide-in {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Ensure all child elements respect container width */
  .about-content-left *,
  .info-content-left * {
    max-width: 100%;
    box-sizing: border-box;
    text-align: left !important;
  }

  /* Text wrapping for headings and paragraphs */
  .about-content-left .section-head,
  .about-content-left .intro,
  .info-content-left .section-head,
  .info-content-left .intro {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    margin-left: 0;
    margin-right: 0;
  }

  /* Force buttons to respect container width */
  .about-content-left .big-epk,
  .info-content-left .big-epk {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Contact content - positioned at bottom with uniform padding matching navigation */
  .contact-content {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: clamp(20px, 5vw, 40px) !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    overflow-x: hidden;
    box-sizing: border-box;
    z-index: 200 !important;
    text-align: left !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .contact-content::-webkit-scrollbar {
    display: none;
  }

  /* Show contact content when slide-in class is added */
  .contact-content.slide-in {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* All contact content left-aligned */
  .contact-content *,
  .contact-content .section-head,
  .contact-content .muted,
  .contact-content form,
  .contact-content .contact-form {
    text-align: left !important;
  }

  /* Ensure contact form elements fit within container */
  .contact-content form,
  .contact-content .contact-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-content input,
  .contact-content textarea,
  .contact-content button,
  .contact-content label {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Enable scroll-snap on body for vertical layouts */
  html {
    scroll-snap-type: y mandatory !important;
    -webkit-scroll-snap-type: y mandatory !important;
    scroll-behavior: smooth;
  }

  body {
    scroll-snap-type: y mandatory !important;
    -webkit-scroll-snap-type: y mandatory !important;
  }

  /* Each section snaps to viewport */
  .hero,
  .about-section,
  .info-section,
  .contact-section {
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    -webkit-scroll-snap-coordinate: 0 0 !important;
  }

  /* Ensure sections are exactly full viewport height for snapping */
  .hero,
  .about-section,
  .info-section,
  .contact-section {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
  }

  /* Add small padding after last section to ensure it's reachable with scroll-snap */
  .contact-section {
    margin-bottom: 1px;
  }

  /* Hero specific styling */
  .hero {
    z-index: 1 !important; /* Lower than sections (z-index: 20) so hero stays behind */
    position: relative !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
  }

  /* Hide hero completely when scrolled past on mobile */
  body.scrolled-past-hero .hero {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Hide header on hero section, show when scrolled past */
  .site-header {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
  }

  body.scrolled-past-hero .site-header {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Hide desktop fixed background layers on mobile - not used in vertical layout */
  #bgHero,
  #bgHow,
  #bgAbout,
  #bgContact {
    display: none !important;
  }

  /* Make video non-interactive on mobile to allow scrolling */
  .demo-video {
    pointer-events: none !important;
  }

  .hero .video-wrap {
    pointer-events: none !important;
  }

  /* Ensure sparkle layers don't block scrolling on mobile */
  .sparkle-layer {
    pointer-events: none !important;
  }

  /* Hide per-section sparkle canvases — they're position:absolute inside sections
     and don't work well in the mobile vertical layout. Use the fixed canvases instead. */
  .sparkle-canvas {
    display: none !important;
  }

  /* Fixed sparkle canvases — cover full viewport, over photos but below blur panel */
  .sparkle-canvas-fixed {
    top: 0 !important;
    bottom: auto !important;
    height: 100vh !important;
    z-index: 59 !important; /* Below blur panel (z-index: 60) */
  }

  /* Hero overlay should not block scrolling */
  .hero-overlay {
    pointer-events: none !important;
  }

  /* But buttons inside should still be clickable */
  .hero-ctas-centered,
  .watch-btn,
  .mute-toggle,
  .learn-more-link {
    pointer-events: auto !important;
  }

  /* Mute button - add extra bottom spacing to avoid being cut off by phone UI */
  .mute-toggle {
    bottom: 80px !important;
  }

  /* Learn More button - add extra bottom spacing to avoid being cut off by phone UI */
  .learn-more-link {
    bottom: 80px !important;
  }

  /* Explicitly allow touch scrolling on hero */
  .hero * {
    touch-action: pan-y !important;
  }

  /* Main container - not a scroll container on mobile, let body handle scrolling */
  main {
    height: auto !important;
    min-height: 400vh !important; /* Ensure all 4 sections (Hero, About, Info, Contact) fit */
    overflow: visible !important;
    scroll-snap-type: none !important; /* Body handles snap, not main */
  }

  /* Force hide scrollbar on all sections for vertical layouts */
  body,
  html,
  .about-section,
  .info-section,
  .contact-section,
  main {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
  }

  body::-webkit-scrollbar,
  html::-webkit-scrollbar,
  .about-section::-webkit-scrollbar,
  .info-section::-webkit-scrollbar,
  .contact-section::-webkit-scrollbar,
  main::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
    width: 0 !important;
    height: 0 !important;
  }

  /* Prevent any horizontal overflow */
  body,
  html {
    overflow-x: hidden !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Ensure body and html have proper height for mobile */
  html {
    height: 100%;
    min-height: -webkit-fill-available;
    overflow: visible !important;
    position: static !important;
  }

  body {
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    overflow: visible !important;
    position: static !important;
    height: auto !important;
  }

  /* Ensure form elements don't overflow */
  .contact-content .contact-form {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-content .contact-form input,
  .contact-content .contact-form textarea,
  .contact-content .contact-form .submit {
    width: 100% !important;
    box-sizing: border-box !important;
  }


  /* Hide desktop footers on vertical layouts */
  .site-footer-left,
  .site-footer-right {
    display: none;
  }

  /* Ensure buttons have desktop vertical padding */
  .about-content-left .btn,
  .info-content-left .btn,
  .contact-content .btn,
  .about-content-left .big-epk,
  .info-content-left .big-epk,
  .contact-content .submit {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  /* Increase heading sizes by 2x within black fade */
  .about-content-left .section-head,
  .info-content-left .section-head,
  .contact-content .section-head {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 10px;
  }

  /* Contact heading spacing - 12px to body copy (50% reduction) */
  .contact-content .section-head {
    margin-bottom: 12px;
  }

  /* Download EPK button spacing */
  .info-content-left .big-epk {
    margin-top: 24px;
  }

  /* Contact form submit button spacing (50% reduction) */
  .contact-content .submit {
    margin-top: 16px;
  }

  /* Contact body copy spacing - creates gap before form (50% reduction) */
  .contact-content .muted {
    margin-top: 0;
    margin-bottom: 20px;
  }

  /* Reduce body copy to 16-18px */
  .about-content-left .intro,
  .info-content-left .intro,
  .about-content-left .muted,
  .info-content-left .muted,
  .contact-content .muted {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.5;
    margin-bottom: 16px;
  }

  /* Override animations: all content comes from bottom on vertical layouts */
  .about-content-left .section-head,
  .info-content-left .section-head {
    transform: translateY(40px) !important;
    opacity: 0;
  }

  .contact-content .section-head {
    transform: translateY(40px) !important;
    opacity: 0;
  }

  .about-content-left.slide-in .section-head,
  .info-content-left.slide-in .section-head,
  .contact-content.slide-in .section-head {
    transform: translateY(0) !important;
    opacity: 1;
  }

  .about-content-left.slide-out-left .section-head,
  .info-content-left.slide-out-left .section-head,
  .contact-content.slide-out-left .section-head {
    transform: translateY(40px) !important;
    opacity: 0;
  }

  .about-content-left .intro,
  .about-content-left .muted,
  .about-content-left .btn,
  .info-content-left .intro,
  .info-content-left .muted,
  .info-content-left .btn,
  .contact-content .muted,
  .contact-content .contact-form {
    transform: translateY(40px) !important;
    opacity: 0;
  }

  .about-content-left.slide-in .intro,
  .about-content-left.slide-in .muted,
  .about-content-left.slide-in .btn,
  .info-content-left.slide-in .intro,
  .info-content-left.slide-in .muted,
  .info-content-left.slide-in .btn,
  .contact-content.slide-in .muted,
  .contact-content.slide-in .contact-form {
    transform: translateY(0) !important;
    opacity: 1;
  }

  .about-content-left.slide-out-left .intro,
  .about-content-left.slide-out-left .muted,
  .about-content-left.slide-out-left .btn,
  .info-content-left.slide-out-left .intro,
  .info-content-left.slide-out-left .muted,
  .info-content-left.slide-out-left .btn,
  .contact-content.slide-out-left .muted,
  .contact-content.slide-out-left .contact-form {
    transform: translateY(40px) !important;
    opacity: 0;
  }

  /* Adjust section backgrounds to fill space above black fade */
  /* z-index MUST be auto — any non-auto z-index creates a stacking context,
     which breaks position:fixed on child content panels (they become fixed
     relative to the stacking context instead of the viewport). */
  .about-section,
  .info-section,
  .contact-section {
    height: 100vh;
    background: #001f28 !important;
    z-index: auto !important;
    will-change: auto !important;
    transition: none !important;
    position: relative;
  }

  /* Top background image - fills space above blur panel, resizes dynamically */
  .about-section::before,
  .info-section::before,
  .contact-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--blur-height, 50vh));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 51;
    pointer-events: none;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
  }

  /* Apply specific background images to ::before */
  .about-section::before {
    background-image: url('../assets/img-ben-and-olya.jpg');
  }

  .info-section::before {
    background-image: url('../assets/img-ben-and-olya-2.jpg');
  }

  .contact-section::before {
    background-image: url('../assets/img-ben-and-olya-3.jpg');
  }

  /* Show correct photo based on active section */
  body.section-about .about-section::before {
    opacity: 1;
    z-index: 52;
  }

  body.section-info .info-section::before {
    opacity: 1;
    z-index: 52;
  }

  body.section-contact .contact-section::before {
    opacity: 1;
    z-index: 52;
  }

  /* Flipped background reflections no longer needed - blur panel is dynamic height */
  /* Background photo shows through backdrop-filter naturally */
  .about-section::after,
  .info-section::after,
  .contact-section::after {
    display: none;
  }

  /* Teal tint — covers full viewport so both top photo and flipped photo get the same tint */
  #fullColorOverlay {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: #0d5f6f !important;
    opacity: 0 !important;
    z-index: 58 !important;
    pointer-events: none !important;
    transition: opacity 0.4s ease !important;
  }

  body.scrolled-past-hero #fullColorOverlay {
    opacity: 0.1 !important;
  }

  /* Prevent sections from creating stacking contexts */
  .hero, .about-section, .info-section {
    will-change: auto !important;
    transition: none !important;
  }

  /* Footers adjusted for mobile */
  .site-footer-left,
  .site-footer-right {
    bottom: 10px;
    font-size: 11px;
  }

  .site-footer-left {
    left: 10px;
  }

  .site-footer-right {
    right: 10px;
    left: auto;
    text-align: right;
  }

  /* Logo positioning */
  .logo {
    left: clamp(20px, 5vw, 40px);
  }
}

/* ============================================
   TABLET PORTRAIT SPECIFIC (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 768px) {
  /* Tablet-specific overrides if needed */
  .mobile-menu-link {
    font-size: 24px;
  }

  .mobile-menu-nav {
    gap: 40px;
  }

  /* TABLET ONLY: Flipped photography in bottom area behind blur panel */
  .about-section::after,
  .info-section::after,
  .contact-section::after {
    display: block !important;
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--blur-height, 50vh);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scaleY(-1); /* Flip vertically */
    z-index: 53; /* Behind blur panel (z-index: 60) but above top photo */
    pointer-events: none;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
  }

  /* Apply specific flipped background images to ::after */
  .about-section::after {
    background-image: url('../assets/img-ben-and-olya.jpg');
  }

  .info-section::after {
    background-image: url('../assets/img-ben-and-olya-2.jpg');
  }

  .contact-section::after {
    background-image: url('../assets/img-ben-and-olya-3.jpg');
  }

  /* Show correct flipped photo based on active section */
  body.section-about .about-section::after {
    opacity: 1;
  }

  body.section-info .info-section::after {
    opacity: 1;
  }

  body.section-contact .contact-section::after {
    opacity: 1;
  }

  /* TABLET ONLY: Blur panel - ONLY visible on About/Info/Contact, NOT on Hero */
  #fixedOverlay {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: var(--blur-height, 50vh) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 60 !important;
    pointer-events: none !important;
    /* Default: completely hidden on Hero */
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease !important;
  }

  /* ONLY show when scrolled past hero (About/Info/Contact sections) */
  body.scrolled-past-hero #fixedOverlay {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* TABLET ONLY: Use per-section color overlays and sparkles (like desktop) */
  /* Hide the mobile fullColorOverlay on tablet */
  #fullColorOverlay {
    display: none !important;
  }

  /* Color overlays - Always visible after Hero on tablet */
  .color-overlay-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #029A9D !important;
    mix-blend-mode: multiply !important;
    z-index: 58 !important;
    pointer-events: none !important;
    display: block !important;
    opacity: 0 !important; /* Hidden on Hero */
    visibility: visible !important;
    transition: opacity 0.8s ease-out !important;
  }

  /* Show color overlays when scrolled past Hero - Increased for visibility on tablet */
  body.scrolled-past-hero .color-overlay-fixed {
    opacity: 0.15 !important; /* Increased from 0.05 for better visibility */
  }

  /* Sparkle canvases - Hidden on Hero, visible on About/Info/Contact */
  canvas.sparkle-canvas-fixed,
  #sparkleCanvasHow,
  #sparkleCanvasAbout,
  #sparkleCanvasContact {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 59 !important;
    mix-blend-mode: screen !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 0 !important; /* Hidden on Hero */
    transition: opacity 0.8s ease-out !important;
  }

  /* Show sparkles when scrolled past Hero */
  body.scrolled-past-hero canvas.sparkle-canvas-fixed,
  body.scrolled-past-hero #sparkleCanvasHow,
  body.scrolled-past-hero #sparkleCanvasAbout,
  body.scrolled-past-hero #sparkleCanvasContact {
    opacity: 1 !important;
  }
}

/* ============================================
   MOBILE SPECIFIC (< 768px)
   ============================================ */
@media (max-width: 767px) {
  /* Mobile-specific overrides */
  .mobile-menu-link {
    font-size: 18px;
  }

  .section-head {
    font-size: clamp(24px, 8vw, 36px);
  }

  .intro {
    font-size: clamp(14px, 4vw, 16px);
  }
}
