/* ============================================================
   House of Linen — Scroll-Driven Video Website
   ============================================================ */

/* ============================================================
   FONTS — self-hosted Lora + Inter (see fonts/VERSIONS.txt)
   ============================================================ */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora/lora-v37-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora/lora-v37-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/lora/lora-v37-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/lora/lora-v37-latin-500italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/lora/lora-v37-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lora/lora-v37-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-700.woff2') format('woff2');
}

:root {
  --brand-sand: #B8A994;
  --brand-cream: #F4EDE3;
  --brand-ink: #1F1B17;
  --brand-slate: #6E6A64;
  --brand-navy: #1E2A3A;

  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--brand-cream); background: var(--brand-ink); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--brand-ink);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--brand-cream);
  margin-bottom: 2rem;
}
.loader-brand em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.loader-track {
  width: min(60vw, 300px);
  height: 2px;
  background: rgba(244, 237, 227, 0.15);
  border-radius: 1px;
  overflow: hidden;
}
#loader-bar {
  width: 0%;
  height: 100%;
  background: var(--brand-sand);
  transition: width 0.15s ease;
}
#loader-percent {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--brand-slate);
  margin-top: 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 3rem;
  transition: background 0.4s ease, padding 0.4s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.site-header.scrolled {
  background: rgba(31, 27, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 3rem;
}
.site-header.hidden {
  transform: translateY(-110%);
}
.site-header nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
}
.header-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--brand-cream);
}
.header-logo em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.header-links {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-links a {
  color: rgba(244, 237, 227, 0.7);
  transition: color 0.3s ease;
}
.header-links a:hover { color: var(--brand-cream); }
.header-cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(244, 237, 227, 0.3);
  border-radius: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.header-cta:hover { border-color: var(--brand-cream); }

/* ============================================================
   HERO (standalone 100vh, fixed overlay with solid bg)
   ============================================================ */
.hero-standalone {
  position: fixed; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--brand-ink);
  text-align: center;
  padding: 2rem;
}

.hero-standalone .section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-sand);
  margin-bottom: 2rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 13rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--brand-cream);
  margin-bottom: 1.5rem;
  max-width: 90vw;
}
.hero-heading .word {
  display: inline-block;
  margin: 0 0.15em;
  opacity: 0;
  transform: translateY(40px);
}
.hero-heading em {
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-slate);
}

/* ============================================================
   CANVAS (reveals via circle-wipe after hero)
   ============================================================ */
.canvas-wrap {
  position: fixed; inset: 0; z-index: 1;
  clip-path: circle(0% at 50% 50%);
  -webkit-clip-path: circle(0% at 50% 50%);
}
#canvas {
  width: 100%; height: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.canvas-mobile-fallback {
  display: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-slate);
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   DARK OVERLAY
   ============================================================ */
#dark-overlay {
  position: fixed; inset: 0; z-index: 3;
  background: var(--brand-ink);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  position: fixed; top: 50%; left: 0;
  transform: translateY(-50%);
  z-index: 4;
  width: 100vw;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.marquee-text {
  font-family: var(--font-display);
  font-size: 12vw;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--brand-sand);
  opacity: 0.3;
  white-space: nowrap;
  will-change: transform;
}

/* ============================================================
   SCROLL CONTAINER
   ============================================================ */
#scroll-container {
  position: relative;
  height: 900vh;
  z-index: 5;
}

/* ============================================================
   SCROLL SECTIONS (positioned absolutely)
   ============================================================ */
.scroll-section {
  position: absolute;
  left: 0; right: 0;
  display: flex; align-items: center;
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.scroll-section.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Side alignment zones */
.align-left {
  padding-left: 5vw;
  padding-right: 55vw;
  justify-content: flex-start;
}
.align-right {
  padding-left: 55vw;
  padding-right: 5vw;
  justify-content: flex-end;
}
.align-left .section-inner,
.align-right .section-inner {
  max-width: 40vw;
}

/* Section inner — darkened card with blur for readability over the canvas */
.section-inner {
  position: relative;
  padding: 2.75rem 3rem;
  background: rgba(16, 13, 10, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(184, 169, 148, 0.14);
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.35);
}
.align-left .section-inner::before,
.align-right .section-inner::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  width: 2rem;
  height: 1px;
  background: var(--brand-sand);
  opacity: 0.55;
}
.align-left .section-inner::before { left: 3rem; }
.align-right .section-inner::before { right: 3rem; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-sand);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--brand-cream);
  margin-bottom: 1.2rem;
}

.section-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(244, 237, 227, 0.8);
}

.section-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--brand-slate);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   CERT BADGES
   ============================================================ */
.cert-badges {
  display: flex; gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.cert-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(184, 169, 148, 0.4);
  border-radius: 2px;
  color: var(--brand-sand);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.section-stats {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5vw;
}
.stats-header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.stats-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--brand-cream);
  margin-top: 0.85rem;
  letter-spacing: -0.005em;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.75rem;
}
.stat + .stat {
  border-left: 1px solid rgba(184, 169, 148, 0.22);
}
.stat-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.05em;
  line-height: 1;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: var(--brand-cream);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 0.42em;
  font-weight: 400;
  color: var(--brand-sand);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-slate);
  margin-top: 1.1rem;
}
.stats-caption {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: rgba(244, 237, 227, 0.55);
  margin-top: 3.5rem;
  letter-spacing: 0.08em;
  font-style: italic;
}

/* ============================================================
   POST-SCROLL SECTIONS (standalone, after scroll-container)
   ============================================================ */
.post-scroll {
  position: relative;
  z-index: 20;
  background: var(--brand-ink);
}
.post-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

/* ---- Colorway Showcase ---- */
.showcase-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  background: var(--brand-ink);
  border-top: 1px solid rgba(184, 169, 148, 0.12);
}
.showcase-media {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 2px;
}
.showcase-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(31,27,23,0) 60%, rgba(31,27,23,0.35) 100%);
  pointer-events: none;
}
.showcase-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.showcase-caption {
  max-width: 520px;
}
.showcase-caption .section-heading {
  margin-top: 0.25rem;
}
.swatches {
  display: flex;
  gap: 0.55rem;
  margin-top: 2rem;
}
.swatch {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(244, 237, 227, 0.18);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ---- Video Pullquote ---- */
.video-section {
  padding: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,27,23,0.55) 0%, rgba(31,27,23,0.35) 40%, rgba(31,27,23,0.7) 100%);
  z-index: 2;
}
.video-caption {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 6rem 1.5rem;
  max-width: 900px;
}
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--brand-cream);
  margin: 1rem 0 1.5rem;
}
.pullquote em {
  font-style: italic;
  color: var(--brand-sand);
  font-weight: 400;
}
.pullquote-attribution {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-slate);
}

/* ---- Product Range ---- */
.range-section {
  background: var(--brand-cream);
  color: var(--brand-ink);
}
.range-header {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.range-header .section-label {
  color: #8a7354;
}
.range-header .section-heading {
  color: var(--brand-ink);
}
.range-header .section-body {
  color: rgba(31, 27, 23, 0.72);
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(31, 27, 23, 0.12);
  border: 1px solid rgba(31, 27, 23, 0.12);
}
.range-card {
  background: var(--brand-cream);
  padding: clamp(2rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s ease;
}
.range-card:hover {
  background: #ede4d6;
}
.range-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brand-sand);
}
.range-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brand-ink);
}
.range-copy {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(31, 27, 23, 0.7);
}
.range-spec {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-slate);
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 27, 23, 0.12);
}

/* ---- Contact Section (standalone) ---- */
.contact-section {
  background: var(--brand-ink);
  border-top: 1px solid rgba(184, 169, 148, 0.12);
  scroll-margin-top: 6rem;
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-email {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.25em 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--brand-cream);
  border-bottom: 1px solid rgba(244, 237, 227, 0.35);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.contact-email:hover,
.contact-email:focus-visible {
  border-bottom-color: var(--brand-sand);
  color: var(--brand-sand);
}
.contact-section .section-note {
  margin-top: 2.25rem;
}

/* ---- Footer ---- */
.site-footer {
  padding: 4rem clamp(1.5rem, 5vw, 5rem) 3rem;
  text-align: center;
  background: var(--brand-ink);
  border-top: 1px solid rgba(184, 169, 148, 0.12);
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--brand-cream);
  margin-bottom: 1.25rem;
}
.footer-wordmark em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--brand-sand);
}
.footer-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-slate);
  margin-bottom: 1.5rem;
}
.footer-meta span {
  margin: 0 0.25rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--brand-sand);
  opacity: 0.75;
}

/* ============================================================
   MOBILE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Hero: replace scroll-driven canvas with a static image */
  #canvas { display: none; }
  #canvas-wrap {
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
  .canvas-mobile-fallback {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Hero flows as a normal block instead of a fixed overlay */
  .hero-standalone {
    position: relative !important;
    inset: auto !important;
    min-height: 100vh;
  }

  /* Scroll container is a natural flow parent on mobile —
     sections stack vertically instead of being driven by scroll progress */
  #scroll-container {
    height: auto !important;
  }
  .scroll-section {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  /* Stats section keeps its own padding rhythm */
  .section-stats {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* Scroll-driven chrome that no longer has a scroll container to drive it */
  #marquee { display: none; }
  #dark-overlay { display: none; }
  .scroll-indicator { display: none; }

  /* Stats section gets its own dark backdrop (desktop uses #dark-overlay) */
  .section-stats {
    background: rgba(16, 13, 10, 0.82);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
  }

  /* IntersectionObserver-driven fade-in for section content on mobile.
     Children start hidden and translate up; .in-view on the section
     triggers the reveal. Desktop is unaffected — it uses GSAP. */
  .scroll-section .section-inner,
  .scroll-section .stats-header,
  .scroll-section .stats-grid,
  .scroll-section .stats-caption {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .scroll-section.in-view .section-inner,
  .scroll-section.in-view .stats-header,
  .scroll-section.in-view .stats-grid,
  .scroll-section.in-view .stats-caption {
    opacity: 1;
    transform: translateY(0);
  }
  /* Slight stagger within the stats section */
  .scroll-section.in-view .stats-header { transition-delay: 0.05s; }
  .scroll-section.in-view .stats-grid { transition-delay: 0.2s; }
  .scroll-section.in-view .stats-caption { transition-delay: 0.5s; }

  .header-links { display: none; }
  .site-header { padding: 1rem 1.5rem; }

  .hero-heading { font-size: clamp(2.8rem, 14vw, 5rem); }

  .align-left,
  .align-right {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: center;
  }
  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 100%;
    background: rgba(31, 27, 23, 0.75);
  }
  .section-inner {
    padding: 2rem;
  }

  .marquee-text { font-size: 18vw; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
  .stat { padding: 0 0.5rem; }
  .stat + .stat { border-left: 0; }
  .stats-header { margin-bottom: 2.5rem; }

  .section-heading {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  /* ---- Post-scroll sections on mobile ---- */
  .showcase-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .showcase-media {
    aspect-ratio: 4 / 5;
    max-height: none;
  }
  .range-grid {
    grid-template-columns: 1fr;
  }
  .video-caption {
    padding: 4rem 1.5rem;
  }
  .pullquote {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-indicator { animation: none; }
}
