/* ==========================================================================
   NOIR//FORM — AFTER DARK (FW26)
   Exact High-Fashion Editorial Hero Composition
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  --bg: #030305;
  --text-pure: #ffffff;
  --text-body: #eaeaf0;
  --text-muted: #888892;
  --text-subtle: #4f4f5a;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-pill: rgba(255, 255, 255, 0.38);

  /* Fonts */
  --font-headline: 'Impact', 'Anton', -apple-system, sans-serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-script: 'Pinyon Script', 'Alex Brush', cursive;

  /* Z-Indices */
  --z-bg: 1;
  --z-overlay: 2;
  --z-atmosphere: 3;
  --z-typography: 5;
  --z-model: 6;
  --z-foreground: 7;
  --z-ui-elements: 10;
  --z-marquee: 15;
  --z-header: 25;
  --z-grain: 30;
}

/* --- Reset & Global --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  color: var(--text-pure);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  /* Perfect full-screen single-viewport hero */
}

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

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* --- Refined Accessibility Focus Indication --- */
:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
}

.cta-pill:focus-visible {
  outline: 1px solid #f7f6f2;
  outline-offset: 4px;
}

.cta-secondary-play:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
  border-radius: 4px;
}

.menu-toggle-btn:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
  border-radius: 2px;
}

/* --- Film Grain Overlay --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   NAVIGATION (Layer 8)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: clamp(20px, 2.8vh, 32px) clamp(28px, 4.5vw, 68px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand Logo */
.brand-logo {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  letter-spacing: 0.16em;
  color: var(--text-pure);
  display: inline-block;
  transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .brand-logo:hover {
    letter-spacing: 0.20em;
    opacity: 0.88;
    transform: translateX(1px);
  }
}

/* Center Nav */
.nav-center {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(28px, 3.8vw, 56px);
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.75);
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
  transition: color 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Editorial Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-pure);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: var(--text-pure);
  }

  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.nav-link.active::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

/* Right Nav */
.header-right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.nav-action-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease, opacity 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-action-link:hover {
    color: var(--text-pure);
    opacity: 0.85;
  }
}

/* 3-Bar Editorial Hamburger Menu Icon */
.menu-toggle-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 22px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-pure);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .menu-toggle-btn:hover .menu-bar:nth-child(1) {
    transform: translateX(4px);
  }

  .menu-toggle-btn:hover .menu-bar:nth-child(2) {
    transform: translateX(-4px);
  }

  .menu-toggle-btn:hover .menu-bar:nth-child(3) {
    transform: translateX(4px);
  }
}

/* ==========================================================================
   HERO SECTION CONTAINER (100vw x 100vh)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background-color: var(--bg);
}

/* ==========================================================================
   LAYER 1: BRUTALIST ARCHITECTURAL BACKGROUND
   ========================================================================== */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-bg);
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.12) brightness(0.88);
}

/* ==========================================================================
   LAYER 2: BACKGROUND DARK GRADIENT OVERLAY
   ========================================================================== */
.hero-dark-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-overlay);
  pointer-events: none;
  background:
    /* Horizontal gradient: Left side dark shadow for text legibility, right opens for light beam */
    linear-gradient(90deg,
      rgba(3, 3, 5, 0.95) 0%,
      rgba(3, 3, 5, 0.88) 32%,
      rgba(3, 3, 5, 0.4) 52%,
      rgba(3, 3, 5, 0.08) 72%,
      rgba(3, 3, 5, 0.55) 100%),
    /* Top and bottom vignette */
    linear-gradient(180deg,
      rgba(3, 3, 5, 0.75) 0%,
      rgba(3, 3, 5, 0.02) 20%,
      rgba(3, 3, 5, 0.02) 78%,
      rgba(3, 3, 5, 0.88) 100%);
}

/* ==========================================================================
   LAYER 3: CINEMATIC ATMOSPHERE LIGHTING OVERLAY
   ========================================================================== */
.hero-atmosphere-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-atmosphere);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.35;
}

.hero-atmosphere-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* ==========================================================================
   LAYER 5: MAIN TYPOGRAPHY (Behind Model)
   ========================================================================== */
.hero-typography-container {
  position: absolute;
  top: clamp(76px, 12.8vh, 140px);
  left: clamp(28px, 4.8vw, 80px);
  z-index: var(--z-typography);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  max-width: 48vw;
}

/* Eyebrow Label */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.58rem, 0.66vw, 0.68rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: clamp(8px, 1.3vh, 14px);
  user-select: none;
}

/* Enormous Brutalist Refined Headline with Viewport-Height-Aware Scaling for 100% Zoom */
.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(52px, min(8.2vw, 15vh), 122px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.83;
  letter-spacing: 0.01em;
  color: #f7f6f2;
  margin: 0;
  padding: 0;
  user-select: none;
}

.headline-line {
  display: block;
  line-height: 0.83;
}

.headline-line-3 {
  font-size: 0.935em;
  /* Refined negative space */
  letter-spacing: 0.005em;
}

.headline-word {
  display: inline-block;
  color: #f7f6f2;
  /* Refined subtle editorial fashion print texture (warm off-white) */
  background-color: #f6f5f1;
  background-image:
    linear-gradient(180deg, #fdfcf9 0%, #ebe8e1 100%),
    url('../public/subtle_fashion_texture.png');
  background-size: 100% 100%, 700px auto;
  background-blend-mode: multiply;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.88));
}

/* Supporting Copy with Horizontal Rule */
.hero-supporting-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(12px, 1.8vh, 22px);
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

.supporting-text {
  font-family: var(--font-ui);
  font-size: clamp(0.66rem, 0.74vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.supporting-rule {
  width: clamp(40px, 5.5vw, 80px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.32);
  display: inline-block;
}

/* ==========================================================================
   LAYER 9: CALL TO ACTIONS
   ========================================================================== */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  z-index: var(--z-ui-elements);
}

/* Primary Pill Button — Editorial Left-to-Right Expanding Fill */
.cta-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(9px, 1.3vh, 12px) clamp(20px, 1.8vw, 28px);
  border-radius: 9999px;
  border: 1px solid var(--border-pill);
  background: transparent;
  color: var(--text-pure);
  font-family: var(--font-ui);
  font-size: clamp(0.64rem, 0.7vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-pill::before {
  content: '';
  position: absolute;
  inset: -1px;
  background-color: #f7f6f2;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.cta-pill-label {
  position: relative;
  z-index: 1;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-pill-arrow {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  display: inline-block;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .cta-pill:hover {
    transform: scale(1.02);
    border-color: #f7f6f2;
    color: #050507;
  }

  .cta-pill:hover::before {
    transform: scaleX(1);
  }

  .cta-pill:hover .cta-pill-label {
    color: #050507;
  }

  .cta-pill:hover .cta-pill-arrow {
    transform: translateX(6px);
    color: #050507;
  }
}

/* Secondary Play Button — Refined Fashion Interaction */
.cta-secondary-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px 6px;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 4.4vh, 36px);
  height: clamp(32px, 4.4vh, 36px);
  border-radius: 50%;
  border: 1px solid var(--border-pill);
  color: var(--text-pure);
  transition:
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-svg {
  width: 13px;
  height: 13px;
  margin-left: 2px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-text-stack {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  color: var(--text-pure);
  text-transform: uppercase;
  transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-text-top {
  opacity: 0.95;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-text-bottom {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .cta-secondary-play:hover .play-circle-icon {
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.08);
    transform: scale(1.08);
  }

  .cta-secondary-play:hover .play-svg {
    transform: translateX(2px);
  }

  .cta-secondary-play:hover .play-text-stack {
    letter-spacing: 0.22em;
  }

  .cta-secondary-play:hover .play-text-top,
  .cta-secondary-play:hover .play-text-bottom {
    opacity: 1;
    color: var(--text-pure);
  }
}

/* ==========================================================================
   EDITION COUNTER (Bottom Left, above Marquee)
   ========================================================================== */
.hero-edition-counter {
  position: absolute;
  left: clamp(32px, 5.2vw, 84px);
  bottom: clamp(52px, 6.8vh, 66px);
  z-index: var(--z-ui-elements);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  user-select: none;
  pointer-events: auto;
  cursor: default;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-edition-counter:hover {
    opacity: 1;
  }
}

.edition-curr {
  color: var(--text-pure);
  font-weight: 700;
}

.edition-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 6px;
}

.edition-total {
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   LAYER 6: FASHION MODEL (Grounded Solidly to Floor Plane)
   ========================================================================== */
.hero-model-wrap {
  position: absolute;
  left: 47%;
  bottom: -4px;
  /* Grounded directly to the concrete floor */
  top: auto;
  height: clamp(480px, 88.5vh, 860px);
  max-height: calc(100vh - 66px);
  /* Ensures head has clear breathing room below header */
  z-index: var(--z-model);
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.95));
}

/* Floor contact ambient occlusion shadow directly under boots */
.hero-model-wrap::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14%;
  width: 72%;
  height: 22px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 75%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}

.hero-model-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  transform-origin: bottom center;
}

/* ==========================================================================
   LAYER 7: HANDWRITTEN SCRIPT TEXT (Right of Model)
   ========================================================================== */
.hero-handwritten-wrap {
  position: absolute;
  right: clamp(52px, 8vw, 130px);
  top: clamp(230px, 33vh, 320px);
  z-index: var(--z-foreground);
  pointer-events: auto;
  cursor: default;
  user-select: none;
  transform: rotate(-10deg);
}

.handwritten-text {
  font-family: var(--font-script);
  font-size: clamp(36px, 3.8vw, 62px);
  line-height: 0.94;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  flex-direction: column;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hw-row-2 {
  margin-left: 18px;
}

.hw-row-3 {
  margin-left: 36px;
}

@media (hover: hover) and (pointer: fine) {
  .hero-handwritten-wrap:hover .handwritten-text {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.03em;
  }
}

/* ==========================================================================
   VERTICAL EDITORIAL TEXT (Far Right)
   ========================================================================== */
.hero-vertical-wrap {
  position: absolute;
  right: clamp(16px, 2.2vw, 32px);
  top: 22%;
  z-index: var(--z-ui-elements);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
  cursor: default;
  user-select: none;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-vertical-wrap:hover {
    opacity: 1;
  }
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.vertical-line {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.25);
  transition: background-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-vertical-wrap:hover .vertical-line {
    background-color: rgba(255, 255, 255, 0.55);
  }
}

/* ==========================================================================
   LAYER 10: RIGHT CAMPAIGN METADATA MODULE (Bottom Right)
   ========================================================================== */
.hero-campaign-module {
  position: absolute;
  right: clamp(34px, 5.2vw, 84px);
  bottom: clamp(52px, 7vh, 72px);
  z-index: var(--z-ui-elements);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.campaign-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-align: center;
  cursor: default;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .campaign-header:hover {
    opacity: 1;
  }
}

.campaign-season {
  color: var(--text-pure);
  font-weight: 700;
}

.campaign-drop {
  color: rgba(255, 255, 255, 0.7);
}

/* Campaign Thumbnail Frame with Editorial Depth and Cue */
.campaign-img-frame {
  position: relative;
  width: 76px;
  height: 104px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transform-origin: center center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.campaign-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  filter: brightness(0.92) contrast(1.02);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.campaign-cue {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #f7f6f2;
  background: rgba(3, 3, 5, 0.82);
  backdrop-filter: blur(4px);
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .campaign-img-frame:hover {
    border-color: rgba(255, 255, 255, 0.48);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.88);
  }

  .campaign-img-frame:hover .campaign-thumb {
    transform: scale(1.06);
    filter: brightness(1.06) contrast(1.04);
  }

  .campaign-img-frame:hover .campaign-cue {
    opacity: 1;
    transform: translateY(0);
  }
}

.campaign-caption {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
  transition: opacity 0.3s ease, color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .campaign-caption:hover {
    color: var(--text-pure);
  }
}

/* ==========================================================================
   LAYER 11: BOTTOM MARQUEE TICKER (Interactive Hover Pace)
   ========================================================================== */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: var(--z-marquee);
  display: flex;
  align-items: center;
  background: rgba(3, 3, 5, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.85;
  cursor: pointer;
  transition: opacity 0.4s ease, border-color 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-marquee:hover {
    opacity: 1;
    border-top-color: rgba(255, 255, 255, 0.25);
  }
}

.marquee-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  padding-left: 28px;
  flex-shrink: 0;
}

.marquee-item {
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-marquee:hover .marquee-item {
    color: rgba(255, 255, 255, 0.85);
  }
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.44rem;
}

/* Performance Optimizations for GSAP Animations */
.hero-bg-img,
.hero-atmosphere-img {
  will-change: transform, opacity;
}

.hero-model-img {
  will-change: transform, opacity, filter;
}

.headline-line {
  will-change: transform, opacity, clip-path;
}

/* Parallax Layers GPU Acceleration */
.hero-headline,
.hero-model-wrap,
.hero-handwritten-wrap,
.hero-campaign-module,
.hero-edition-counter,
.hero-vertical-wrap {
  will-change: transform;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Desktop First -> Tablet -> Mobile)
   ========================================================================== */

/* Large screens (> 1600px) */
@media (min-width: 1600px) {
  .hero-model-wrap {
    left: 45%;
  }
}

/* Medium Desktop (1025px - 1366px) */
@media (max-width: 1366px) {
  .hero-model-wrap {
    left: 44%;
  }

  .hero-handwritten-wrap {
    right: 48px;
  }
}

/* ==========================================================================
   TABLET LAYOUT (768px - 1023px) — Editorial Two-Column Proportion
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header {
    padding: 24px 32px;
  }

  .nav-center {
    display: none;
  }

  .brand-logo {
    font-size: 1.05rem;
  }

  .header-right {
    gap: 24px;
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-typography-container {
    top: 130px;
    left: 32px;
    max-width: 58vw;
  }

  .hero-headline {
    font-size: clamp(60px, 9.2vw, 96px);
    line-height: 0.84;
  }

  .hero-model-wrap {
    left: 42%;
    height: 88vh;
    right: auto;
  }

  .hero-handwritten-wrap {
    right: 32px;
    top: 170px;
    transform: rotate(-6deg) scale(0.9);
  }

  .hero-vertical-wrap {
    right: 12px;
    top: 38%;
  }

  .hero-campaign-module {
    right: 32px;
    bottom: 56px;
    transform: scale(0.92);
  }

  .hero-edition-counter {
    left: 32px;
    bottom: 56px;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE ART DIRECTION (<= 767px)
   A Dedicated High-Fashion Mobile Campaign Composition
   ========================================================================== */
@media (max-width: 767px) {
  /* Prevent horizontal scroll while allowing vertical scrolling */
  html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  /* 1. Mobile Navigation: NOIR//FORM left | CART (0) + MENU right */
  .site-header {
    padding: 20px 22px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .brand-logo {
    font-size: clamp(19px, 5.2vw, 21px);
    letter-spacing: 0.14em;
    font-weight: 700;
  }

  /* Hide center nav items & search link */
  .nav-center,
  .header-right .nav-action-link:first-child {
    display: none !important;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-right .nav-action-link {
    font-size: clamp(11px, 3.2vw, 12px);
    letter-spacing: 0.16em;
    font-weight: 500;
  }

  .menu-toggle-btn {
    width: 25px;
    height: 20px;
    gap: 4.5px;
  }

  .menu-bar {
    height: 1.5px;
  }

  /* 2. Mobile Hero Container */
  .hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  /* 3. Mobile Background & Left Gradient Shield */
  .hero-bg-img {
    object-position: 58% center;
    filter: contrast(1.10) brightness(0.85);
  }

  .hero-dark-overlay {
    z-index: 1;
    background:
      /* Left subtle text shield */
      linear-gradient(90deg,
        rgba(3, 3, 5, 0.92) 0%,
        rgba(3, 3, 5, 0.80) 36%,
        rgba(3, 3, 5, 0.25) 62%,
        rgba(3, 3, 5, 0.02) 100%),
      /* Top vignette for nav & bottom vignette for counter/marquee */
      linear-gradient(180deg,
        rgba(3, 3, 5, 0.85) 0%,
        rgba(3, 3, 5, 0.02) 15%,
        rgba(3, 3, 5, 0.15) 68%,
        rgba(3, 3, 5, 0.96) 100%);
  }

  .hero-atmosphere-img {
    object-position: 65% center;
    opacity: 0.45;
  }

  /* 4. Mobile Model: Controlled Scale, Face & Torso 100% Fully Visible */
  .hero-model-wrap {
    position: absolute;
    left: auto !important;
    right: -10%;
    top: 5%;
    bottom: auto !important;
    width: 105vw;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.90));
  }

  .hero-model-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
    transform-origin: top center;
    filter: contrast(1.08) brightness(0.94);
  }

  /* Ambient floor shadow below boots */
  .hero-model-wrap::after {
    display: none;
  }

  /* 5. Mobile Typography & Hierarchy: Sitting to the Left of Model Face */
  .hero-typography-container {
    position: absolute;
    top: clamp(96px, 14.2vh, 120px);
    left: 20px;
    right: auto;
    width: 72vw;
    max-width: 270px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
  }

  /* Collection Eyebrow */
  .hero-eyebrow {
    font-size: clamp(8.5px, 2.4vw, 10px);
    letter-spacing: 0.20em;
    margin-bottom: clamp(6px, 1vh, 9px);
    color: rgba(255, 255, 255, 0.68);
    white-space: nowrap;
  }

  /* Editorially Stacked Headline: WEAR / THE / ATTITUDE (Left of Face) */
  .hero-headline {
    font-size: clamp(48px, 13.8vw, 68px);
    line-height: 0.84;
    letter-spacing: -0.025em;
  }

  .headline-line {
    line-height: 0.84;
  }

  .headline-line-3 {
    font-size: 0.94em;
    letter-spacing: -0.025em;
  }

  .headline-word {
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.95));
  }

  /* Supporting Copy directly below ATTITUDE */
  .hero-supporting-block {
    margin-top: 14px;
    margin-bottom: clamp(16px, 2.4vh, 22px);
    gap: 12px;
  }

  .supporting-text {
    font-size: clamp(9.5px, 2.5vw, 10.5px);
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.82);
    white-space: normal;
  }

  .supporting-rule {
    width: 32px;
    flex-shrink: 0;
  }

  /* 6. Mobile CTAs: Vertically Stacked */
  .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 4;
  }

  /* Primary CTA: SHOP THE DROP */
  .cta-pill {
    width: clamp(230px, 64vw, 260px);
    height: 48px;
    padding: 0 22px;
    font-size: 0.70rem;
    letter-spacing: 0.18em;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Secondary CTA: WATCH THE FILM Stacked Below */
  .cta-secondary-play {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .play-circle-icon {
    width: 36px;
    height: 36px;
  }

  .play-svg {
    width: 12px;
    height: 12px;
  }

  .play-text-top {
    font-size: 0.60rem;
    letter-spacing: 0.20em;
  }

  .play-text-bottom {
    font-size: 0.68rem;
    letter-spacing: 0.20em;
  }

  /* 7. More Than Clothes: Mid-Right, Clear of Face */
  .hero-handwritten-wrap {
    position: absolute;
    left: auto;
    right: clamp(10px, 3vw, 16px);
    top: clamp(31%, 33vh, 36%);
    transform: rotate(-6deg) scale(0.72);
    transform-origin: right center;
    z-index: 4;
    pointer-events: none;
  }

  .handwritten-text {
    font-size: clamp(2.0rem, 7vw, 2.7rem);
    line-height: 0.82;
  }

  /* 8. Vertical "BUILT DIFFERENT": Mid-Right */
  .hero-vertical-wrap {
    display: block;
    position: absolute;
    right: 8px;
    top: 42%;
    z-index: 4;
    transform: rotate(90deg) scale(0.80);
    transform-origin: right center;
  }

  .vertical-text {
    font-size: 0.50rem;
    letter-spacing: 0.26em;
  }

  .vertical-line {
    width: 22px;
  }

  /* 9. Campaign Module: Lower-Right */
  .hero-campaign-module {
    position: absolute;
    right: clamp(14px, 4vw, 18px);
    bottom: clamp(65px, 8.5vh, 85px);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .campaign-header {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
    gap: 8px;
  }

  .campaign-img-frame {
    width: 68px;
    height: 92px;
  }

  .campaign-caption {
    font-size: 0.48rem;
    letter-spacing: 0.16em;
  }

  /* 10. Collection Counter: Lower-Left Above Marquee */
  .hero-edition-counter {
    display: flex;
    position: absolute;
    left: 20px;
    bottom: 48px;
    z-index: 4;
    font-size: 0.60rem;
    letter-spacing: 0.20em;
  }

  /* 11. Bottom Marquee: Contained with zero horizontal spill */
  .hero-marquee {
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
  }

  .marquee-track {
    will-change: transform;
  }

  .marquee-content {
    font-size: 0.58rem;
    gap: 20px;
  }
}

/* ==========================================================================
   MID-RANGE MOBILE (391px - 430px)
   ========================================================================== */
@media (min-width: 391px) and (max-width: 430px) {
  .hero-model-wrap {
    right: -11%;
    top: 5.2%;
    width: 110vw;
  }

  .hero-typography-container {
    width: 70vw;
    max-width: 265px;
  }

  .hero-headline {
    font-size: clamp(48px, 13.5vw, 64px);
  }
}

/* ==========================================================================
   SMALL MOBILE VIEWPORTS (<= 390px)
   ========================================================================== */
@media (max-width: 390px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-logo {
    font-size: 17.5px;
  }

  .hero-typography-container {
    left: 16px;
    top: clamp(88px, 13.5vh, 108px);
    width: 72vw;
    max-width: 245px;
  }

  .hero-eyebrow {
    font-size: 8.5px;
  }

  .hero-headline {
    font-size: clamp(42px, 12.8vw, 54px);
  }

  .hero-supporting-block {
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .supporting-text {
    font-size: 9.5px;
  }

  .cta-pill {
    width: 225px;
    height: 44px;
    font-size: 0.66rem;
    padding: 0 18px;
  }

  .cta-secondary-play {
    margin-top: 13px;
  }

  .hero-handwritten-wrap {
    right: 10px;
    top: clamp(31%, 33vh, 35%);
    transform: rotate(-6deg) scale(0.66);
  }

  /* Hide vertical line on narrow screens to prevent crowding */
  .hero-vertical-wrap {
    display: none;
  }

  .hero-campaign-module {
    right: 14px;
    bottom: 65px;
  }

  .campaign-img-frame {
    width: 60px;
    height: 84px;
  }

  .hero-edition-counter {
    left: 16px;
    bottom: 45px;
  }

  .hero-model-wrap {
    right: -12%;
    top: 5.5%;
    width: 115vw;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}