/* CSS Reset & Variable Definitions */
:root {
  --bg-color: #ffffff;
  --text-red: #c80a0a; /* Premium Cartier Red */
  --text-dark: #111111;
  --font-serif-display: 'Cinzel', serif; /* Solid, premium architectural serif */
  --font-serif-editorial: 'Playfair Display', serif; /* Highly legible, elegant fashion serif */
  --font-sans-clean: 'Montserrat', sans-serif;
  --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-red);
  font-family: var(--font-serif-display);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Luxury Paper Grain Overlay (Subtle) */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10;
}

/* Minimal Editorial Guide Lines (Faint architectural details) */
.editorial-guides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.guide-line {
  position: absolute;
  background-color: rgba(199, 10, 10, 0.04);
}

.guide-line.vertical {
  width: 1px;
  height: 100%;
  top: 0;
}

.guide-line.horizontal {
  height: 1px;
  width: 100%;
  left: 0;
}

/* Position lines in a golden ratio / minimalist layout */
.guide-1 { left: 15%; }
.guide-2 { left: 50%; }
.guide-3 { left: 85%; }
.guide-4 { top: 20%; }
.guide-5 { top: 80%; }

/* ==========================================================================
   Full-Screen 5-Slide Snapping Structure
   ========================================================================== */
.slides-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* SLIDE 1: Landing Intro Cover */
#slide-landing {
  transform: translateY(0);
  opacity: 1;
  z-index: 10;
}

#slide-landing.inactive {
  transform: translateY(-100vh); /* Slide completely up and out */
  opacity: 0;
  pointer-events: none;
}

/* SLIDE 2: Split Images Gallery */
#slide-gallery {
  transform: translateY(100vh); /* Start below slide-landing */
  opacity: 0;
  z-index: 20;
  background-color: #030303; /* Deep premium black to match image backgrounds */
  pointer-events: none;
}

#slide-gallery.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#slide-gallery.inactive {
  transform: translateY(-100vh); /* Slide up when going to Slide 3 */
  opacity: 0;
  pointer-events: none;
}

/* SLIDE 3: Split Videos Gallery */
#slide-videos {
  transform: translateY(100vh); /* Start below slide-gallery */
  opacity: 0;
  z-index: 30;
  background-color: #080808; /* Deep rich dark video backdrop */
  pointer-events: none;
}

#slide-videos.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#slide-videos.inactive {
  transform: translateY(-100vh); /* Slide up when going to Slide 4 */
  opacity: 0;
  pointer-events: none;
}

/* SLIDE 4: Full-Screen Featured Video (Pristine White campaign) */
#slide-featured-video {
  transform: translateY(100vh);
  opacity: 0;
  z-index: 35;
  background-color: #ffffff; /* Squeaky clean luxury white */
  pointer-events: none;
}

#slide-featured-video.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#slide-featured-video.inactive {
  transform: translateY(-100vh);
  opacity: 0;
  pointer-events: none;
}

/* SLIDE 5: Horizontal Carousel Exhibit - Part I (NEW!) */
#slide-carousel-1 {
  transform: translateY(100vh);
  opacity: 0;
  z-index: 40;
  background-color: #ffffff; /* Pristine luxury white */
  pointer-events: none;
}

#slide-carousel-1.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#slide-carousel-1.inactive {
  transform: translateY(-100vh);
  opacity: 0;
  pointer-events: none;
}

/* SLIDE 6: Horizontal Carousel Exhibit - Part II (NEW!) */
#slide-carousel-2 {
  transform: translateY(100vh);
  opacity: 0;
  z-index: 45;
  background-color: #ffffff; /* Pristine luxury white */
  pointer-events: none;
}

#slide-carousel-2.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#slide-carousel-2.inactive {
  transform: translateY(-100vh);
  opacity: 0;
  pointer-events: none;
}

/* SLIDE 7: Manifesto & Profile Exhibit */
#slide-manifesto {
  transform: translateY(100vh); /* Start below slide-carousel-2 */
  opacity: 0;
  z-index: 50;
  background-color: #ffffff; /* Clean luxury white */
  pointer-events: none;
}

#slide-manifesto.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#slide-manifesto.inactive {
  transform: translateY(-100vh); /* Slide up when going to Slide 8 */
  opacity: 0;
  pointer-events: none;
}

/* SLIDE 8: Lookbook & Products Exhibit (NEW!) */
#slide-lookbook {
  transform: translateY(100vh); /* Start below slide-manifesto */
  opacity: 0;
  z-index: 60;
  background-color: #0a0a0a; /* Dark default fallback */
  pointer-events: none;
}

#slide-lookbook.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#slide-lookbook.inactive {
  transform: translateY(-100vh);
  opacity: 0;
  pointer-events: none;
}

/* SLIDE 9: Atelier Shop Exhibit (Farfetch-Inspired Clean White Canvas) - Independent overlay */
#slide-shop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(100vh); /* Starts below */
  opacity: 0;
  z-index: 1500; /* Overlays all snap slides */
  background-color: #ffffff; /* Pure luxury white canvas */
  pointer-events: none;
  overflow-y: auto; /* Allow independent natural page scroll! */
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s ease;
}

#slide-shop.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Vertical Page Slide Navigation Panel (8-dots) */
.page-nav {
  position: fixed;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 900;
}

.nav-dot {
  position: relative;
  width: 6px;
  height: 6px;
  background-color: rgba(199, 10, 10, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.nav-dot.active {
  background-color: var(--text-red);
  transform: scale(1.5);
}

.nav-line {
  width: 1px;
  height: 25px;
  background-color: rgba(199, 10, 10, 0.15);
}

/* Float labels next to the dots */
.nav-label {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans-clean);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  white-space: nowrap;
  color: rgba(199, 10, 10, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease, color 0.4s ease;
  pointer-events: none;
}

.nav-dot:hover .nav-label,
.nav-dot.active .nav-label {
  opacity: 1;
  color: var(--text-red);
}

/* Artistic Canvas Container */
.artistic-canvas {
  position: relative;
  width: 90%;
  max-width: 1400px;
  height: 80vh;
  margin: 10vh auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

/* Editorial Headers / Brand Footprint */
.editorial-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(199, 10, 10, 0.5);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInMeta 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.5s;
}

/* Grand Artistic Typography Container */
.typography-showcase {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 5%;
}

/* Word & Character Layout styling */
.text-line {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  margin-bottom: 2.2vh;
}

/* Sub-wrapper containing the actual text for the clip-path animation */
.text-content {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}

/* The Drawing Pointer / Drafting Tool that guides the drawing reveal */
.drawing-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--text-red);
  opacity: 0;
  pointer-events: none;
}

/* Dynamic glow point at the tip of the drawing line */
.drawing-cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--text-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(199, 10, 10, 0.6);
}

/* Keyframe Reveals for Text & Drawing Cursor */
@keyframes drawTextReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes drawCursorMove {
  0% {
    left: 0%;
    opacity: 1;
  }
  95% {
    left: 100%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Font stylings for specific lines to create "Vogue meets Cube" rhythm */
.line-1 {
  font-family: var(--font-sans-clean);
  font-size: 1.5vw;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-red);
  margin-bottom: 2vh;
}

.line-2 {
  font-family: var(--font-serif-display);
  font-size: 8vw;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.line-3 {
  font-family: var(--font-serif-editorial);
  font-size: 6.5vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: italic;
  padding-left: 10%;
}

.line-4 {
  font-family: var(--font-sans-clean);
  font-size: 1.4vw;
  font-weight: 300;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  margin-top: 1vh;
  margin-bottom: 1.5vh;
  padding-left: 20%;
  color: rgba(199, 10, 10, 0.75);
}

.line-5 {
  font-family: var(--font-serif-display);
  font-size: 6.8vw;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-left: 5%;
}

/* Exquisite individual character base styles */
.char {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              text-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Haute-couture individual letter hover interaction */
.char:hover {
  color: var(--text-dark) !important; /* Turn elegant Gucci solid black */
  transform: translateY(-8px) scale(1.12) skewX(-6deg); /* Lift and artistic slant */
  text-shadow: 0 8px 16px rgba(199, 10, 10, 0.15); /* Soft drop glow */
  cursor: default;
}

/* CTA Container & Premium Button Style */
.cta-container {
  margin-top: 5vh;
  padding-left: 5%;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  gap: 2.2vw;
  align-items: center;
  flex-wrap: wrap;
}

.cover-nav-link {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text-red);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.4s ease, transform 0.4s ease;
  position: relative;
  display: inline-block;
}

.cover-nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--text-red);
  transition: width 0.3s ease, background-color 0.3s ease;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.cover-nav-link:hover::after {
  width: 100%;
  background-color: var(--text-dark);
}

.cover-nav-link:hover {
  color: var(--text-dark);
  transform: translateY(-2px);
}

.view-art-btn {
  display: inline-block;
  background-color: var(--text-red);
  color: #ffffff;
  font-family: var(--font-sans-clean);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 45px;
  border-radius: 0; /* Razor-sharp haute-couture rectangle */
  border: none;
  box-shadow: 0 4px 15px rgba(199, 10, 10, 0.15);
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-art-btn:hover {
  background-color: var(--text-dark); /* Sophisticated shift to absolute black */
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(17, 17, 17, 0.25);
  cursor: pointer;
}

.view-art-btn:active {
  transform: translateY(-1px);
}

/* ==========================================================================
   SLIDE 2: Immersive Images Gallery (No Padding, Full bleed)
   ========================================================================== */
/* Floating White Close Button with drop-shadow for visibility */
.close-gallery-btn {
  position: absolute;
  top: 40px;
  right: 4vw;
  background: none;
  border: none;
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding: 10px 20px;
  z-index: 1010;
  transition: color 0.3s ease, transform 0.3s ease;
}

.close-gallery-btn.close-btn-element {
  color: var(--text-red); /* Uses Red color since backdrop is white */
  text-shadow: none;
}

#slide-gallery .close-btn-element,
#slide-videos .close-btn-element {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

#slide-manifesto .close-btn-element,
#slide-featured-video .close-btn-element,
#slide-carousel-1 .close-btn-element,
#slide-carousel-2 .close-btn-element {
  color: var(--text-red);
  text-shadow: none;
}

#slide-lookbook .close-btn-element {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  mix-blend-mode: difference; /* Elegantly dynamically inverts close button colors */
}

.close-gallery-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
  margin-top: 4px;
}

#slide-manifesto .close-btn-element::after,
#slide-featured-video .close-btn-element::after,
#slide-carousel-1 .close-btn-element::after,
#slide-carousel-2 .close-btn-element::after {
  background-color: var(--text-red);
}

#slide-lookbook .close-btn-element::after {
  background-color: #ffffff;
}

.close-gallery-btn:hover {
  color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

#slide-manifesto .close-btn-element:hover {
  color: var(--text-dark);
}

.close-gallery-btn:hover::after {
  width: 100%;
}

/* Side-by-Side Split Showcase Area */
.gallery-showcase {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* 50/50 Flex Panels with ultra-smooth width adjustments on hover */
.gallery-item {
  flex: 1;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: flex 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CUSTOM HIGH-END MATCHED BACKDROP PALETTES */
.gallery-item.item-left {
  background-color: #060914;
}

.gallery-item.item-right {
  background-color: #170204;
}

/* When hovering over the showcase, contract the other panel and expand the hovered one */
.gallery-showcase:hover .gallery-item {
  flex: 0.85;
}

.gallery-showcase .gallery-item:hover {
  flex: 1.15;
}

/* Image container filling the whole panel bleed */
.image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.06);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#slide-gallery.active .image-wrapper {
  transform: scale(1);
  opacity: 1;
}

#slide-gallery.active .item-left .image-wrapper {
  transition-delay: 0.1s;
}

#slide-gallery.active .item-right .image-wrapper {
  transition-delay: 0.25s;
}

/* ENFORCES FULL IMAGE PRESERVATION */
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Dark elegant gradient masks for label legibility */
.gallery-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  z-index: 5;
  pointer-events: none;
  opacity: 0.85;
}

/* Floating White Typographic Overlays */
.item-meta {
  position: absolute;
  bottom: 6vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.item-left .item-meta {
  left: 4vw;
  align-items: flex-start;
  text-align: left;
}

.item-right .item-meta {
  right: 4vw;
  align-items: flex-end;
  text-align: right;
}

#slide-gallery.active .item-left .item-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

#slide-gallery.active .item-right .item-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.item-title {
  font-family: var(--font-serif-display);
  font-size: 1.5vw;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 0.8vh;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.item-desc {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   SLIDE 3: Double-Video Accordion Showcase
   ========================================================================== */
.video-exhibition-showcase {
  width: 100vw;
  height: 100vh;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.video-panel {
  flex: 1;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #0b0b0a;
  transition: flex 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-panel.panel-left {
  background-color: #121210;
}

.video-panel.panel-right {
  background-color: #080808;
}

.video-exhibition-showcase:hover .video-panel {
  flex: 0.85;
}

.video-exhibition-showcase .video-panel:hover {
  flex: 1.15;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.75;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-panel:hover video {
  transform: scale(1.03);
  opacity: 1;
}

/* Elegant Bottom Dark-to-Transparent Gradient Masks */
.video-panel::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  z-index: 5;
  pointer-events: none;
}

/* Floating White Video Labels */
.video-meta {
  position: absolute;
  bottom: 6vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0.8;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-left .video-meta {
  left: 4vw;
  align-items: flex-start;
  text-align: left;
}

.panel-right .video-meta {
  right: 4vw;
  align-items: flex-end;
  text-align: right;
}

.video-panel:hover .video-meta {
  opacity: 1;
}

.video-title {
  font-family: var(--font-serif-display);
  font-size: 1.5vw;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 0.8vh;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-desc {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   SLIDE 4: Manifesto & Profile Layout Styles (White Minimalist)
   ========================================================================== */
.manifesto-grid {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8vh 8vw;
  background-color: #ffffff;
}

.manifesto-text-panel {
  width: 44%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-image-panel {
  width: 46%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text Element Stylings */
.manifesto-header {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-red);
  margin-bottom: 2.5vh;
}

.manifesto-title {
  font-family: var(--font-serif-display);
  font-size: 3.5vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 3.5vh;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.manifesto-quote {
  font-family: var(--font-serif-editorial);
  font-size: 2.1vw;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--text-red);
  margin-bottom: 3.5vh;
}

.manifesto-divider {
  width: 70px;
  height: 1px;
  background-color: rgba(199, 10, 10, 0.2);
  margin-bottom: 3.5vh;
}

.manifesto-paragraph {
  font-family: var(--font-sans-clean);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: #333333;
  letter-spacing: 0.03em;
}

.accent-word {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.accent-word.red-brand {
  color: var(--text-red);
}

.accent-word.dark-brand {
  color: var(--text-dark);
}

/* Large Interactive Dual-Image Container */
.manifesto-image-container {
  position: relative;
  width: 32vw;
  height: 74vh;
  overflow: hidden;
  border: 1px solid rgba(199, 10, 10, 0.06);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  background-color: #fcfcfc;
}

.manifesto-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  z-index: 1;
  transform: scale(1.05);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-img.active {
  opacity: 1;
  z-index: 5;
  transform: scale(1.01);
}

.manifesto-image-container:hover .manifesto-img.active {
  transform: scale(1.03);
}

/* Indicator dots inside the image overlay */
.switcher-dot-overlay {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.switcher-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(199, 10, 10, 0.2);
  transition: all 0.3s ease;
}

.switcher-dot.active {
  background-color: var(--text-red);
  transform: scale(1.3);
}

/* ==========================================================================
   SLIDE 5: Lookbook / Products Showcase (50/50 Split)
   ========================================================================== */
.lookbook-showcase {
  width: 100vw;
  height: 100vh;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.lookbook-panel {
  flex: 1;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: flex 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Backdrops custom tailored to blend completely with photography bounds */
.lookbook-panel.panel-left {
  background-color: #860b17; /* Saturated royal crimson matching backpack background */
}

.lookbook-panel.panel-right {
  background-color: #ededeb; /* Warm shirting flat-lay grey */
}

.lookbook-showcase:hover .lookbook-panel {
  flex: 0.85;
}

.lookbook-showcase .lookbook-panel:hover {
  flex: 1.15;
}

/* Lookbook panel image wrappers */
.lookbook-panel .image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.06);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#slide-lookbook.active .image-wrapper {
  transform: scale(1);
  opacity: 1;
}

#slide-lookbook.active .panel-left .image-wrapper {
  transition-delay: 0.1s;
}

#slide-lookbook.active .panel-right .image-wrapper {
  transition-delay: 0.25s;
}

.lookbook-panel .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Perfect uncropped display showing robot shoulders and watch details */
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-panel:hover img {
  transform: scale(1.04);
}

/* Dark masks for text overlays inside left panel */
.panel-left::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  z-index: 5;
  pointer-events: none;
}

/* Elegant Symmetrical Floating UI Containers */
.panel-overlay-content {
  position: absolute;
  bottom: 6vh;
  width: 100%;
  padding: 0 4vw;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.panel-left .panel-overlay-content {
  left: 0;
  flex-direction: row;
}

.panel-right .panel-overlay-content {
  right: 0;
  flex-direction: row-reverse;
}

/* Overriding lookbook typographic labels to match contrasts */
.panel-left .item-title {
  color: #ffffff;
}

.panel-left .item-desc {
  color: rgba(255, 255, 255, 0.75);
}

.panel-right .item-title {
  color: var(--text-dark);
}

.panel-right .item-desc {
  color: rgba(199, 10, 10, 0.6);
}

/* Haute-couture Button Styling with spring animations */
.lookbook-btn-wrapper {
  pointer-events: auto;
}

.lookbook-action-btn {
  display: inline-block;
  background-color: #ffffff;
  color: var(--text-red);
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

#slide-lookbook.active .lookbook-action-btn {
  transform: translateY(0);
  opacity: 1;
}

#slide-lookbook.active .panel-left .lookbook-action-btn {
  transition-delay: 0.45s;
}

#slide-lookbook.active .panel-right .lookbook-action-btn {
  transition-delay: 0.6s;
}

.lookbook-action-btn:hover {
  background-color: var(--text-dark);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

/* Dark version of the action button for the light shirting panel */
.lookbook-action-btn.dark-theme-btn {
  background-color: var(--text-dark);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.lookbook-action-btn.dark-theme-btn:hover {
  background-color: var(--text-red);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(199, 10, 10, 0.25);
}

.lookbook-action-btn:active {
  transform: translateY(-1px);
}

/* ==========================================================================
   Entrance Animations and Media
   ========================================================================== */
#slide-manifesto .manifesto-header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

#slide-manifesto .manifesto-title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}

#slide-manifesto .manifesto-quote {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

#slide-manifesto .manifesto-divider {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.25s;
}

#slide-manifesto .manifesto-paragraph {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.35s;
}

#slide-manifesto .manifesto-image-container {
  opacity: 0;
  transform: scale(0.96) translateX(30px);
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

/* Triggered when active */
#slide-manifesto.active .manifesto-header,
#slide-manifesto.active .manifesto-title,
#slide-manifesto.active .manifesto-quote,
#slide-manifesto.active .manifesto-divider,
#slide-manifesto.active .manifesto-paragraph,
#slide-manifesto.active .manifesto-image-container {
  opacity: 1;
  transform: translateY(0) scale(1) scaleX(1) translateX(0);
}

/* ==========================================================================
   SLIDE 4: Full-Screen Featured Video (Pristine White campaign)
   ========================================================================== */
#slide-featured-video {
  transform: translateY(100vh);
  opacity: 0;
  z-index: 35;
  background-color: #ffffff; /* Squeaky clean luxury white */
  pointer-events: none;
}

#slide-featured-video.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#slide-featured-video.inactive {
  transform: translateY(-100vh);
  opacity: 0;
  pointer-events: none;
}

.featured-video-grid {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8vh 8vw;
  background-color: #ffffff;
}

.video-editorial-panel {
  width: 36%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-editorial-label {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-red);
  margin-bottom: 2.5vh;
}

.video-editorial-title {
  font-family: var(--font-serif-display);
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 3.5vh;
}

.video-editorial-divider {
  width: 70px;
  height: 1px;
  background-color: rgba(199, 10, 10, 0.2);
  margin-bottom: 3.5vh;
}

.video-editorial-desc {
  font-family: var(--font-sans-clean);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: #333333;
  letter-spacing: 0.03em;
}

.video-showcase-panel {
  width: 58%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-video-wrapper {
  position: relative;
  width: 44vw; /* Increased from 31vw to make video much larger */
  height: 82vh; /* Increased from 72vh to make video much larger */
  overflow: hidden;
  border: 1px solid rgba(199, 10, 10, 0.06);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  background-color: #fcfcfc;
}

.featured-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-video-wrapper:hover video {
  transform: scale(1.03);
}

/* ==========================================================================
   SLIDES 5 & 6: Horizontal Carousel Exhibits (Two Large Cards)
   ========================================================================== */
.carousel-exhibit-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 8vh 8vw;
  box-sizing: border-box;
}

.carousel-section-meta {
  text-align: center;
  margin-bottom: 4vh;
  width: 100%;
}

.exhibit-label {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-red);
  display: block;
  margin-bottom: 1.5vh;
}

.exhibit-main-title {
  font-family: var(--font-serif-display);
  font-size: 2.8vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-dark); /* Dark black for white page background */
  text-transform: uppercase;
}

.carousel-track {
  display: flex;
  gap: 5vw; /* Generous gap for larger cards spacing */
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  perspective: 1200px; /* Enable beautiful 3D space */
}

.carousel-card {
  width: 38vw; /* Increased from 29vw for a massive visual representation */
  height: 70vh; /* Increased from 58vh for a massive visual representation */
  background-color: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateX(180px) rotateY(-22deg) scale(0.92);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

/* Staggered entrance transition delays when active */
#slide-carousel-1.active .carousel-card,
#slide-carousel-2.active .carousel-card {
  opacity: 1;
  transform: translateX(0) rotateY(0deg) scale(1);
}

#slide-carousel-1.active .card-1 { transition-delay: 0.1s; }
#slide-carousel-1.active .card-2 { transition-delay: 0.3s; }
#slide-carousel-2.active .card-3 { transition-delay: 0.1s; }
#slide-carousel-2.active .card-4 { transition-delay: 0.3s; }

/* Stunning Hover Interactions */
.carousel-card:hover {
  border-color: rgba(199, 10, 10, 0.4);
  box-shadow: 0 20px 45px rgba(199, 10, 10, 0.08);
  transform: translateY(-8px) scale(1.02);
}

.card-img-wrapper {
  width: 100%;
  height: 82%;
  overflow: hidden;
  position: relative;
  background-color: #030303;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Enforces full image preservation */
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Individual Card Color Matching to Melt Contained Image Margins */
.card-1 .card-img-wrapper { background-color: #0c0c0e; }
.card-2 .card-img-wrapper { background-color: #551216; }
.card-3 .card-img-wrapper { background-color: #08080a; }
.card-4 .card-img-wrapper { background-color: #e5e5e5; }

.carousel-card:hover .card-img-wrapper img {
  transform: scale(1.06);
}

.card-meta {
  padding: 2vh 1.2vw;
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
  background-color: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.card-num {
  font-family: var(--font-sans-clean);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-red);
}

.card-title {
  font-family: var(--font-serif-display);
  font-size: 1.4vw; /* Larger font size to balance large card */
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Page load animations */
@keyframes fadeInMeta {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ==========================================================================
   SLIDE 9: Immersive Full-Screen Footer (Sleek Dark Editorial Directory)
   ========================================================================== */
#slide-footer {
  transform: translateY(100vh);
  opacity: 0;
  z-index: 70;
  background-color: #060606; /* Dark editorial default */
  pointer-events: none;
}

#slide-footer.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.footer-grid {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6vh 6vw; /* Reduced margins to unlock maximum screen size */
  background-color: #060606;
}

.footer-storyboard-panel {
  width: 58%; /* Increased from 48% to give image more horizontal space */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.storyboard-img-wrapper {
  position: relative;
  width: 52vw; /* Increased from 38vw to display storyboard colossal on screen */
  height: 76vh; /* Increased from 68vh to display storyboard colossal on screen */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  background-color: #020202;
  transform: scale(1.05);
  opacity: 1;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#slide-footer.active .storyboard-img-wrapper,
#slide-shop.active .storyboard-img-wrapper,
#slide-faq.active .storyboard-img-wrapper,
#slide-contact.active .storyboard-img-wrapper,
#slide-about.active .storyboard-img-wrapper,
#slide-collection.active .storyboard-img-wrapper {
  transform: scale(1);
  opacity: 1;
}

.storyboard-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Full preservation of the 3x3 grid without any cropping */
  transition: transform 2s ease;
}

.storyboard-img-wrapper:hover img {
  transform: scale(1.04);
}

.footer-directory-panel {
  width: 38%; /* Reduced from 44% to balance the large storyboard panel */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6vh 2vw;
}

.directory-brand-title {
  font-family: var(--font-serif-display);
  font-size: 3vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-red);
  text-transform: uppercase;
  margin-bottom: 0.8vh;
}

.directory-brand-sub {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.directory-links-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  margin-top: 2vh;
  margin-bottom: 2vh;
}

.directory-sub-column {
  display: flex;
  flex-direction: column;
  gap: 1.8vh;
  flex: 1;
}

.directory-sub-title {
  font-family: var(--font-sans-clean);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-bottom: 1.5vh;
}

.directory-link {
  font-family: var(--font-sans-clean);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.35s ease, transform 0.35s ease;
  display: inline-block;
  width: fit-content;
}

.directory-link:hover {
  color: var(--text-red);
  transform: translateX(4px);
}

.directory-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans-clean);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3.5vh;
}

/* ==========================================================================
   SLIDE 8: Atelier Shop Layout & Product Cards (Farfetch Style)
   ========================================================================== */
.shop-grid {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8vh 6vw;
  background-color: #ffffff; /* Pure luxurious white backing */
}

/* Minimalist Close Trigger */
.close-shop-btn, .close-faq-btn, .close-contact-btn {
  position: absolute;
  top: 40px;
  left: 6vw;
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #111111;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1010;
  transition: color 0.3s ease, transform 0.3s ease;
}

.close-shop-btn:hover, .close-faq-btn:hover, .close-contact-btn:hover {
  color: var(--text-red);
  transform: translateX(-4px);
}

/* Centered Header block */
.shop-header {
  text-align: center;
  margin-bottom: 6vh;
  width: 100%;
}

.shop-brand-logo {
  font-family: var(--font-serif-display);
  font-size: 2.8vw;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 1vh;
}

.shop-title {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--text-red);
  text-transform: uppercase;
  margin-bottom: 1.5vh;
}

.shop-subtitle {
  font-family: var(--font-serif-editorial);
  font-size: 14px;
  font-style: italic;
  color: #666666;
  display: block;
  margin-bottom: 4vh;
}

/* Horizontal Categories Bar */
.shop-categories {
  display: flex;
  justify-content: center;
  gap: 3.5vw;
  margin-top: 2vh;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 2vh;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.shop-categories .category-btn {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #666666;
  cursor: pointer;
  padding: 5px 0;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

/* Minimalist Underlines */
.shop-categories .category-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #111111;
  transition: width 0.3s ease;
}

.shop-categories .category-btn:hover {
  color: #111111;
}

.shop-categories .category-btn.active {
  color: #111111;
  font-weight: 600;
}

.shop-categories .category-btn.active::before {
  width: 100%;
}

/* Symmetrical 4-Column Product Grid */
.shop-products-container {
  width: 100%;
  max-width: 1400px;
  margin-top: 2vh;
}

.products-grid-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Columns Grid */
  gap: 4vw 2vw;
  width: 100%;
}

/* Clean, Borderless Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s ease;
  opacity: 1;
}

.product-card.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* Warm Off-White Image backing container */
.product-img-wrapper {
  width: 100%;
  height: 48vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9; /* Soft visual backing */
  border: 1px solid #f2f2f2;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.03);
}

/* Wishlist heart overlay icon button */
.wishlist-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #111111;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease,
              background-color 0.3s ease;
}

.wishlist-btn svg {
  width: 16px;
  height: 16px;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.wishlist-btn:hover {
  transform: scale(1.12);
  color: var(--text-red);
}

.wishlist-btn.active svg {
  fill: var(--text-red);
  stroke: var(--text-red);
}

/* Symmetrical Metas below image */
.product-meta {
  padding: 1.8vh 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4vh;
  border: none;
  background: transparent;
  text-align: left;
}

.product-sku {
  font-family: var(--font-sans-clean);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #111111;
  text-transform: uppercase;
}

.product-name {
  font-family: var(--font-sans-clean);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #666666;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-family: var(--font-sans-clean);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #111111;
}

/* ==========================================================================
   Product Detail Drawer (Slide-out Editorial Modal)
   ========================================================================== */
.product-drawer {
  position: fixed;
  top: 0;
  right: -50vw; /* Hidden by default */
  width: 50vw;
  height: 100vh;
  z-index: 2100; /* Absolute high index to overlay everything */
  pointer-events: none;
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-drawer.active {
  right: 0;
  pointer-events: auto;
}

/* Semi-transparent blur overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-backdrop-filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-drawer.active .drawer-overlay {
  opacity: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.05);
  padding: 60px 40px;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Close Button styling */
.close-drawer-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #111111;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.close-drawer-btn:hover {
  background-color: #f5f5f5;
  color: var(--text-red);
  transform: rotate(90deg);
}

/* Grid Layout */
.drawer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  height: 100%;
  align-items: start;
}

/* Gallery Section */
.drawer-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-main-image-wrapper {
  width: 100%;
  height: 52vh;
  background-color: #f9f9f9;
  border: 1px solid #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drawer-main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.drawer-main-image-wrapper:hover img {
  transform: scale(1.04);
}

.drawer-thumbnails {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.drawer-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  background-color: #f9f9f9;
  border: 1px solid #eaeaea;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.drawer-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.drawer-thumb.active {
  opacity: 1;
  border-color: #111111;
  transform: scale(1.05);
}

/* Info Section */
.drawer-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.drawer-brand {
  font-family: var(--font-sans-clean);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.drawer-product-title {
  font-family: var(--font-serif-display);
  font-size: 2.2vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #111111;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 15px;
}

.drawer-price {
  font-family: var(--font-sans-clean);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #111111;
  margin-bottom: 25px;
}

.drawer-divider {
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
  margin-bottom: 25px;
}

.drawer-details-section {
  margin-bottom: 30px;
}

.drawer-section-title {
  font-family: var(--font-sans-clean);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.drawer-desc {
  font-family: var(--font-sans-clean);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #555555;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

/* Specification rows */
.drawer-spec-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-top: 1px solid #eaeaea;
  padding-top: 25px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans-clean);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.spec-label {
  font-weight: 600;
  color: #888888;
}

.spec-value {
  font-weight: 400;
  color: #111111;
}

/* ==========================================================================
   SLIDE 10: Dedicated FAQ (Collapsible Accordions)
   ========================================================================== */
#slide-faq {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(100vh); /* Starts below */
  opacity: 0;
  z-index: 1400; /* Overlays snaps slideshow */
  background-color: #ffffff; /* Clean luxury white */
  pointer-events: none;
  overflow-y: auto; /* Independent native scroll! */
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s ease;
}

#slide-faq.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.faq-grid {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8vh 8vw;
  background-color: #ffffff;
}

.faq-brand-panel {
  width: 44%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-label {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-red);
  margin-bottom: 2.5vh;
}

.faq-main-title {
  font-family: var(--font-serif-display);
  font-size: 3.5vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 3.5vh;
}

.faq-divider {
  width: 70px;
  height: 1px;
  background-color: rgba(199, 10, 10, 0.2);
  margin-bottom: 3.5vh;
}

.faq-brand-desc {
  font-family: var(--font-sans-clean);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: #333333;
  letter-spacing: 0.03em;
}

.faq-accordion-panel {
  width: 48%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 1.5vh;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans-clean);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 2.5vh 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--text-red);
}

.faq-icon {
  font-family: var(--font-sans-clean);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-red);
  transition: transform 0.4s ease;
}

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

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer p {
  font-family: var(--font-sans-clean);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: #555555;
  padding-bottom: 2.5vh;
  letter-spacing: 0.02em;
}

/* Close button custom styling for light slides FAQ/Contact */
#slide-faq .close-btn-element,
#slide-contact .close-btn-element {
  color: var(--text-red);
  text-shadow: none;
}

#slide-faq .close-btn-element::after,
#slide-contact .close-btn-element::after {
  background-color: var(--text-red);
}

#slide-faq .close-btn-element:hover,
#slide-contact .close-btn-element:hover {
  color: var(--text-dark);
}

#slide-faq .close-btn-element:hover::after,
#slide-contact .close-btn-element:hover::after {
  background-color: var(--text-dark);
}

/* ==========================================================================
   SLIDE 11: Dedicated Contact (Minimal Details & Grayscaled Map)
   ========================================================================== */
#slide-contact {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(100vh); /* Starts below */
  opacity: 0;
  z-index: 1400; /* Overlays snaps slideshow */
  background-color: #ffffff; /* Clean luxury white */
  pointer-events: none;
  overflow-y: auto; /* Independent native scroll! */
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s ease;
}

#slide-contact.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.contact-grid {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8vh 8vw;
  background-color: #ffffff;
}

.contact-details-panel {
  width: 44%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-label {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-red);
  margin-bottom: 2.5vh;
}

.contact-main-title {
  font-family: var(--font-serif-display);
  font-size: 3.5vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 3.5vh;
}

.contact-divider {
  width: 70px;
  height: 1px;
  background-color: rgba(199, 10, 10, 0.2);
  margin-bottom: 4vh;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 3.5vh;
}

.contact-row {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-row-title {
  font-family: var(--font-sans-clean);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 0.8vh;
}

.contact-row-link {
  font-family: var(--font-sans-clean);
  font-size: 18px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.contact-row-link:hover {
  color: var(--text-red);
  transform: translateX(4px);
}

.contact-row-text {
  font-family: var(--font-sans-clean);
  font-size: 14px;
  color: #555555;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Premium WhatsApp Direct Button styling */
.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #111111;
  color: #ffffff;
  font-family: var(--font-sans-clean);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 0;
  border: none;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.contact-whatsapp-btn:hover {
  background-color: var(--text-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 10, 10, 0.2);
  cursor: pointer;
}

.whatsapp-icon {
  width: 15px;
  height: 15px;
}

.contact-map-panel {
  width: 48%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-wrapper {
  position: relative;
  width: 38vw;
  height: 74vh;
  overflow: hidden;
  border: 1px solid rgba(199, 10, 10, 0.06);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  background-color: #fcfcfc;
}

/* Luxury Grayscaled Map */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(0.05) contrast(1.1);
  transition: filter 0.5s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0.7) contrast(1.05);
}

.map-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(rgba(199, 10, 10, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(199, 10, 10, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .artistic-canvas {
    height: 90vh;
    padding: 20px;
    margin: 5vh auto;
  }
  .line-1 { font-size: 3.5vw; }
  .line-2 { font-size: 10vw; }
  .line-3 { font-size: 8.5vw; padding-left: 5%; }
  .line-4 { font-size: 3vw; padding-left: 10%; }
  .line-5 { font-size: 8.8vw; padding-left: 2%; }
  .cta-container { margin-top: 4vh; }
  .view-art-btn { padding: 14px 32px; font-size: 10px; }
  
  /* Gallery mobile settings - switch to 100% split vertical panels */
  .gallery-showcase,
  .video-exhibition-showcase,
  .lookbook-showcase {
    flex-direction: column;
    height: 100%;
  }
  .gallery-item,
  .video-panel,
  .lookbook-panel {
    width: 100vw;
    height: 50vh;
  }
  
  .gallery-showcase:hover .gallery-item,
  .video-exhibition-showcase:hover .video-panel,
  .lookbook-showcase:hover .lookbook-panel {
    flex: 1;
  }
  
  .gallery-showcase .gallery-item:hover,
  .video-exhibition-showcase .video-panel:hover,
  .lookbook-showcase .lookbook-panel:hover {
    flex: 1;
  }
  
  .item-title,
  .video-title { font-size: 5vw; }
  .item-desc,
  .video-desc { font-size: 9px; }
  .close-gallery-btn {
    top: 25px;
    right: 4vw;
  }
  .item-meta,
  .video-meta,
  .panel-overlay-content {
    bottom: 3vh;
  }
  
  .page-nav {
    display: none; /* Hide visual slide dots on mobile to keep viewport clean */
  }
  
  /* Manifesto Mobile Settings */
  .manifesto-grid {
    flex-direction: column;
    height: auto;
    padding: 10vh 6vw 6vh;
    gap: 5vh;
  }
  .manifesto-text-panel,
  .manifesto-image-panel {
    width: 100%;
    height: auto;
  }
  .manifesto-title { font-size: 8vw; margin-bottom: 2vh; }
  .manifesto-quote { font-size: 5.5vw; margin-bottom: 2.5vh; }
  .manifesto-image-container {
    width: 100%;
    height: 50vh;
  }
  
  .panel-overlay-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5vh;
  }
  
  .lookbook-action-btn {
    padding: 12px 24px;
    font-size: 9px;
  }

  /* Featured Video Mobile Settings */
  .featured-video-grid {
    flex-direction: column;
    height: auto;
    padding: 10vh 6vw 4vh;
    gap: 4vh;
  }
  .video-editorial-panel,
  .video-showcase-panel {
    width: 100%;
    height: auto;
  }
  .video-editorial-title {
    font-size: 8vw;
    margin-bottom: 2vh;
  }
  .video-editorial-desc {
    font-size: 12.5px;
    line-height: 1.75;
  }
  .featured-video-wrapper {
    width: 100%;
    height: 48vh;
  }

  /* Carousel Mobile Settings (Large Cards Two-by-Two) */
  .carousel-exhibit-container {
    padding: 10vh 4vw 4vh;
    height: auto;
    justify-content: flex-start;
  }
  .exhibit-main-title {
    font-size: 6.5vw;
  }
  .carousel-track {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2vh 4vw;
    gap: 6vw;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    perspective: none; /* Turn off 3D on mobile for performance */
  }
  /* Hide scrollbar for clean luxury look */
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
  .carousel-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .carousel-card {
    width: 76vw; /* High visual presence on mobile */
    height: 48vh;
    flex-shrink: 0;
    scroll-snap-align: center;
    transform: translateX(100px) scale(0.95); /* Simpler slide-in for mobile */
  }
  .card-title {
    font-size: 4.5vw;
  }

  /* Immersive Footer Mobile Settings */
  .footer-grid {
    flex-direction: column;
    height: auto;
    padding: 12vh 6vw 6vh;
    gap: 5vh;
  }
  .footer-storyboard-panel,
  .footer-directory-panel {
    width: 100%;
    height: auto;
  }
  .storyboard-img-wrapper {
    width: 100%;
    height: 44vh;
  }
  .directory-brand-title {
    font-size: 7vw;
  }
  .directory-links-wrapper {
    flex-direction: column;
    gap: 4vh;
  }
  .directory-footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5vh;
    padding-top: 2.5vh;
  }

  /* Shop Mobile Settings */
  .shop-grid {
    padding: 10vh 4vw 4vh;
  }
  
  .shop-brand-logo {
    font-size: 7vw;
  }
  
  .shop-categories {
    flex-direction: row !important;
    justify-content: center;
    gap: 4vw;
  }
  
  .products-grid-scroll {
    grid-template-columns: repeat(2, 1fr); /* 2 Symmetrical Columns on mobile */
    gap: 4vh 3vw;
  }
  
  .product-img-wrapper {
    height: 35vh;
  }
  
  .product-sku {
    font-size: 9px;
  }
  
  .product-name {
    font-size: 11px;
  }
  
  .product-price {
    font-size: 11px;
  }
  
  .close-shop-btn {
    top: 25px;
    left: 4vw;
  }

  /* Drawer Mobile Settings */
  .product-drawer {
    right: -100vw;
    width: 100vw;
  }
  
  .drawer-content {
    padding: 50px 20px 30px;
  }
  
  .drawer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .drawer-main-image-wrapper {
    height: 40vh;
  }
  
  .drawer-product-title {
    font-size: 6.5vw;
  }
  
  .drawer-price {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .close-drawer-btn {
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  /* FAQ Slide Mobile Settings */
  .faq-grid {
    flex-direction: column;
    height: auto;
    padding: 10vh 6vw 6vh;
    gap: 5vh;
  }
  .faq-brand-panel,
  .faq-accordion-panel {
    width: 100%;
    height: auto;
  }
  .faq-main-title {
    font-size: 8vw;
    margin-bottom: 2vh;
  }
  .faq-question {
    font-size: 12px;
    padding: 2vh 0;
  }
  .faq-answer p {
    font-size: 12px;
    line-height: 1.7;
  }

  /* Contact Slide Mobile Settings */
  .contact-grid {
    flex-direction: column;
    height: auto;
    padding: 10vh 6vw 6vh;
    gap: 5vh;
  }
  .contact-details-panel,
  .contact-map-panel {
    width: 100%;
    height: auto;
  }
  .contact-main-title {
    font-size: 8vw;
    margin-bottom: 2vh;
  }
  .contact-row-link {
    font-size: 16px;
  }
  .contact-whatsapp-btn {
    padding: 12px 24px;
    font-size: 9px;
  }
  .map-wrapper {
    width: 100%;
    height: 40vh;
  }
}

/* ==========================================================================
   SLIDE: Dedicated About Us (RR CORP Immersive Manifesto)
   ========================================================================== */
#slide-about {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(100vh); /* Starts below */
  opacity: 0;
  z-index: 1400; /* Overlays snaps slideshow */
  background-color: #080808; /* Luxury deep off-black background */
  pointer-events: none;
  overflow-y: auto; /* Independent native scroll! */
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s ease;
}

#slide-about.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Back Link for About Us */
#slide-about .close-about-btn {
  position: absolute;
  top: 4vh;
  left: 4vw;
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888888;
  text-decoration: none;
  z-index: 1600;
  transition: color 0.3s ease;
}

#slide-about .close-about-btn:hover {
  color: var(--text-red);
}

/* About Us Hero Section */
.about-hero-section {
  width: 100%;
  padding: 18vh 8vw 8vh;
  background-color: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-meta-tag {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--text-red);
  text-transform: uppercase;
  margin-bottom: 3.5vh;
}

.about-hero-title {
  font-family: var(--font-serif-display);
  font-size: 4vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #f5f5f5;
  text-transform: uppercase;
  max-width: 70vw;
  margin-bottom: 4vh;
}

.about-hero-divider {
  width: 100px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* About Editorial Grid Columns */
.about-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
  padding: 0 8vw 12vh;
  background-color: #080808;
}

.about-editorial-col {
  display: flex;
  flex-direction: column;
}

.about-col-title {
  font-family: var(--font-sans-clean);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #b5b5b5;
  text-transform: uppercase;
  margin-bottom: 4vh;
  border-left: 2px solid var(--text-red);
  padding-left: 15px;
}

.about-text {
  font-family: var(--font-sans-clean);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #999999;
  letter-spacing: 0.03em;
  margin-bottom: 3vh;
}

/* Centerpiece Creed Panel */
.about-creed-panel {
  width: 100%;
  padding: 16vh 8vw;
  background-color: #0c0c0c; /* Slightly lighter off-black for division */
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.creed-content {
  max-width: 60vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.creed-sub {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--text-red);
  margin-bottom: 4vh;
}

.creed-statement {
  font-family: var(--font-serif-display);
  font-size: 3vw;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 5vh;
  text-shadow: 0 0 30px rgba(199, 10, 10, 0.15);
}

.creed-cross {
  width: 1px;
  height: 40px;
  background-color: var(--text-red);
}

/* Material Science Editorial Grid */
.about-material-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 14vh 8vw;
  background-color: #080808;
}

.material-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.material-image-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-img-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.material-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease;
}

.material-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Responsive Overrides for About Overlay on Mobile */
@media (max-width: 768px) {
  #slide-about .close-about-btn {
    top: 3vh;
    left: 6vw;
  }
  .about-hero-section {
    padding: 14vh 6vw 6vh;
  }
  .about-hero-title {
    font-size: 8vw;
    max-width: 100%;
  }
  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 6vh;
    padding: 0 6vw 8vh;
  }
  .about-col-title {
    margin-bottom: 2.5vh;
  }
  .about-creed-panel {
    padding: 10vh 6vw;
  }
  .creed-content {
    max-width: 100%;
  }
  .creed-statement {
    font-size: 6.5vw;
  }
  .about-material-grid {
    grid-template-columns: 1fr;
    gap: 6vh;
    padding: 8vh 6vw;
  }
  .material-img-wrapper {
    height: 40vh;
  }
}

/* ==========================================================================
   SLIDE: Dedicated Primavera Collection (Immersive 2x2 Portrait Showcase)
   ========================================================================== */
#slide-collection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(100vh); /* Starts below */
  opacity: 0;
  z-index: 1400; /* Overlays snaps slideshow */
  background-color: #faf9f6; /* Ivory luxury silk background */
  pointer-events: none;
  overflow-y: auto; /* Independent native scroll! */
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s ease;
}

#slide-collection.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Close Link for Collection */
#slide-collection .close-collection-btn {
  position: absolute;
  top: 4vh;
  left: 4vw;
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #666666;
  text-decoration: none;
  z-index: 1600;
  transition: color 0.3s ease;
}

#slide-collection .close-collection-btn:hover {
  color: var(--text-red);
}

/* Collection Hero Cover */
.collection-hero-section {
  width: 100vw;
  height: 100vh;
  background-color: #faf9f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8vw;
  position: relative;
}

.collection-meta-tag {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--text-red);
  text-transform: uppercase;
  margin-bottom: 4vh;
}

.collection-hero-title {
  font-family: var(--font-sans-clean);
  font-size: 3.8vw;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1.3;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 5vh;
}

.accent-title-serif {
  font-family: var(--font-serif-display);
  font-size: 6vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-red);
  text-shadow: 0 0 40px rgba(199, 10, 10, 0.04);
}

.collection-hero-divider {
  width: 120px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-bottom: 6vh;
}

/* Scroll Prompt Indicator */
.scroll-prompt-arrow {
  position: absolute;
  bottom: 6vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.arrow-text {
  font-family: var(--font-sans-clean);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #888888;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--text-red);
  animation: scrollDownFlow 2s ease infinite;
}

@keyframes scrollDownFlow {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* Catalog Container & 2-Column Grid */
.collection-catalog-container {
  width: 100vw;
  background-color: #faf9f6;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.collection-grid-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16vh 6vw;
  padding: 18vh 8vw;
}

.collection-card {
  display: flex;
  flex-direction: column;
}

/* Portrait Card Image Wrapper */
.col-img-wrapper {
  position: relative;
  width: 100%;
  height: 85vh; /* Massive Portrait size! */
  overflow: hidden;
  background-color: #f0eee9;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.col-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s ease;
}

.collection-card:hover .col-img-wrapper img {
  transform: scale(1.04);
  filter: brightness(0.98);
}

/* Special Extreme Detail Zoom Close-Up view ("mucho zoom") */
.zoom-extreme img {
  transform: scale(1.7) translate(-4%, 3%);
  filter: contrast(1.05) brightness(0.96);
  object-fit: cover;
}

.collection-card:hover .zoom-extreme img {
  transform: scale(1.82) translate(-2%, 1%);
  filter: contrast(1.1) brightness(0.98);
}

/* Meta Details under the Colossal Cards */
.col-meta {
  padding-top: 3.5vh;
}

.col-sku {
  font-family: var(--font-sans-clean);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--text-red);
  display: block;
  margin-bottom: 1.5vh;
}

.col-name {
  font-family: var(--font-serif-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 2.2vh;
}

.col-desc {
  font-family: var(--font-sans-clean);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: #555555;
  letter-spacing: 0.02em;
  max-width: 90%;
}

/* Symmetrical Light theme styling for integrated footer inside Collection */
#slide-collection .footer-grid {
  background-color: #faf9f6;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

#slide-collection .footer-grid,
#slide-collection .directory-column,
#slide-collection .footer-directory-panel {
  background-color: #faf9f6;
}

#slide-collection .directory-brand-title {
  color: var(--text-dark);
}

#slide-collection .directory-brand-sub {
  color: #777777;
}

#slide-collection .directory-sub-title {
  color: var(--text-dark);
}

#slide-collection .directory-link {
  color: #666666;
}

#slide-collection .directory-link:hover {
  color: var(--text-red);
}

#slide-collection .directory-footer-meta {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #888888;
}

#slide-collection .storyboard-img-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  background-color: #f2f0ea;
}

/* Responsive Overrides for Collection Mobile View */
@media (max-width: 768px) {
  #slide-collection .close-collection-btn {
    top: 3vh;
    left: 6vw;
  }
  .collection-hero-section {
    padding: 0 6vw;
  }
  .collection-hero-title {
    font-size: 7.5vw;
  }
  .accent-title-serif {
    font-size: 11vw;
  }
  .collection-grid-two-columns {
    grid-template-columns: 1fr;
    gap: 8vh;
    padding: 10vh 6vw;
  }
  .col-img-wrapper {
    height: 52vh; /* Reduced height on small touchscreens */
  }
  .col-desc {
    max-width: 100%;
  }
}

/* High-Fashion Clickable Collection Card Pointer */
.collection-card.clickable-product {
  cursor: pointer;
}

/* Luxury Performance Fade-In Transitions for Deferred Assets */
.product-img-wrapper img,
.col-img-wrapper img {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 2.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-img-wrapper img.loaded,
.col-img-wrapper img.loaded {
  opacity: 1;
}
