/* ii world — Page Styles
   Hero, product detail, cart, checkout, about, lookbook, 404 */

/* ========== Hero (Home) ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-top: calc(-1 * var(--nav-height));
}

@media (min-width: 768px) {
  .hero { min-height: 600px; }
}

.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}

.hero__poster { z-index: 1; }
.hero__video { z-index: 2; display: none; }

@media (min-width: 768px) {
  .hero__video { display: block; }
  .hero:has(.hero__video) .hero__poster { display: none; }
}

/* 3a: poster-hero's section-driven hero renders ONE element with the
   video's own poster= attribute — no sibling img, always shown at all
   viewports. The --responsive modifier opts out of the legacy mobile-hide
   behavior used by home.html / cinematic.html. */
.hero__video--responsive { display: block; z-index: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(245,240,235,0.6) 80%,
    rgba(245,240,235,0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 20px 60px;
  max-width: 700px;
}

@media (min-width: 768px) {
  .hero__content { padding: 0 40px 80px; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero__subtitle {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  white-space: pre-line;
}

/* ========== Brand Statement ========== */
.brand-statement {
  text-align: center;
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .brand-statement { padding: 120px 40px; }
}

.brand-statement__text {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* ========== Editorial Break ========== */
.editorial-break {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.editorial-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Collections Row ========== */
.collections-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .collections-row { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
}

.collection-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

.collection-link:hover {
  border-color: var(--color-border);
}

.collection-link__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  transition: opacity 0.4s ease;
}

.collection-link:hover .collection-link__bg { opacity: 0.25; }

.collection-link__name {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

/* ========== Shop Landing — editorial collection showcase ========== */
.page-shop-landing .main {
  margin-top: calc(-1 * var(--nav-height));
}

.shop-landing {
  display: flex;
  flex-direction: column;
}

.shop-col {
  position: relative;
  display: block;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.shop-col:first-child {
  height: 100vh;
}

.shop-col__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shop-col__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1.2s ease;
}

.shop-col:hover .shop-col__img {
  transform: scale(1.03);
}

.shop-col__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.6s ease;
}

.shop-col:hover .shop-col__overlay {
  background: rgba(0, 0, 0, 0.45);
}

.shop-col__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
  transition: letter-spacing 0.6s ease;
}

.shop-col:hover .shop-col__name {
  letter-spacing: 0.25em;
}

.shop-landing__all {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.3s ease;
}

.shop-landing__all:hover {
  background: var(--color-bg-alt);
}

.shop-landing__all-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  .shop-col {
    height: 70vh;
    min-height: 400px;
  }
  .shop-col:first-child {
    height: 80vh;
  }
}

/* ========== Product Detail ========== */
.product-page {
  padding: 30px 20px 80px;
}

@media (min-width: 768px) {
  .product-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 40px 120px;
  }
}

.product-breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 24px;
}

.product-breadcrumb a { transition: color 0.2s; padding: 8px 0; }
.product-breadcrumb a:hover { color: var(--color-text); }
.product-breadcrumb__sep { margin: 0 8px; }

@media (min-width: 1025px) {
  .product-breadcrumb a { padding: 0; }
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .product-layout { grid-template-columns: 1fr 1fr; gap: 60px; }
}

@media (min-width: 1025px) {
  .product-layout { gap: 80px; }
}

/* Gallery */
.gallery { min-width: 0; }

.gallery__hero {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: transparent;
  margin-bottom: 12px;
  cursor: zoom-in;
  max-height: calc(80vh - 60px);
  max-height: calc(80svh - 60px);
}

.gallery__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__hero:hover img { transform: scale(1.06); }

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 479px) {
  .gallery__thumbs { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}

@media (min-width: 768px) {
  .gallery__thumbs { gap: 12px; }
}

.gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.gallery__thumb--active,
.gallery__thumb:hover { border-color: var(--color-accent); }

.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(245,240,235,0.96);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox--open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .lightbox__close { top: 20px; right: 20px; }
}

/* Product Info */
.product-info { padding-top: 0; }

@media (min-width: 768px) {
  .product-info { padding-top: 20px; }
}

.product-info__collection {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 12px;
}

.product-info__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.product-info__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.product-info__price {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.product-info__compare-price {
  font-size: 0.9rem;
  color: var(--color-text-tertiary);
  text-decoration: line-through;
}

.product-info__divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: 28px 0;
}

.product-info__description {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.product-info__ar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: 16px;
  transition: color 0.2s;
}

.product-info__ar:hover { color: var(--color-text); }

.add-to-cart {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--color-accent);
  color: var(--color-bg);
  border: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
  min-height: 52px;
  border-radius: 100px;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .add-to-cart { border-radius: 0; min-height: auto; }
}

@media (hover: hover) {
  .add-to-cart:hover { background: var(--color-text-secondary); }
}

.add-to-cart:disabled { opacity: 0.4; cursor: not-allowed; }

.add-to-cart__feedback {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  min-height: 24px;
}

/* ========== Collection Page ========== */
.collection-page {
  padding: 40px 20px 80px;
}

@media (min-width: 768px) {
  .collection-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 40px 120px;
  }
}

.collection-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .collection-header { margin-bottom: 64px; }
}

.collection-header__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 12px;
}

.collection-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.collection-header__count {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
}

/* CMS content sections injected into collection pages */
.collection-cms-content {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 var(--grid-gutter);
}
.cms-section { margin-bottom: 32px; text-align: center; }
.cms-section__image { margin-bottom: 16px; }
.cms-section__image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.cms-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.cms-section__body {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.collection-empty {
  text-align: center;
  padding: 80px 20px;
}

.collection-empty__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.collection-empty__link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  text-decoration: underline;
  transition: color 0.2s;
}

.collection-empty__link:hover { color: var(--color-text); }

/* ========== PDP Vertical Gallery (Entire Studios layout) ========== */
/* Mobile: horizontal carousel with snap */
.pdp-gallery {
  display: flex;
  flex-direction: row;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.pdp-gallery::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .pdp-gallery {
    flex-direction: column;
    gap: 16px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
}

/* Editorial B&W — driven by data-bw-scope on .pdp-gallery, --bw set inline */
.pdp-gallery[data-bw-scope="all"] .pdp-gallery__card img,
.pdp-gallery[data-bw-scope="all"] .pdp-gallery__more img {
  filter: grayscale(var(--bw, 0));
  transition: filter 0.4s ease;
}
.pdp-gallery[data-bw-scope="hero"] .pdp-gallery__card:first-child img {
  filter: grayscale(var(--bw, 0));
  transition: filter 0.4s ease;
}
.pdp-gallery[data-bw-scope="gallery"] .pdp-gallery__card:not(:first-child) img,
.pdp-gallery[data-bw-scope="gallery"] .pdp-gallery__more img {
  filter: grayscale(var(--bw, 0));
  transition: filter 0.4s ease;
}

/* 360° interactive spin viewer — replaces the auto-rotating animated360 card
   when admin enables spin and a folder with ≥12 frames is configured. JS
   handles drag/scroll → frame scrubbing. */
.pdp-spin-viewer {
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.pdp-spin-viewer.pdp-spin-viewer--dragging,
.pdp-spin-viewer:active {
  cursor: grabbing;
}
.pdp-gallery__card.pdp-spin-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  cursor: inherit;
}
.pdp-spin-viewer__hint {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255,255,255,0.92);
  color: #1a1a1a;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
  font-family: var(--font-display), sans-serif;
  text-align: center;
  transition: opacity 0.3s ease;
}
.pdp-spin-viewer--dragging .pdp-spin-viewer__hint {
  opacity: 0;
}

/* Cinematic slow zoom — clipping is handled in cinematic.js by wrapping the
   <img> in an overflow:hidden div on activation, so the scaled image clips
   inside the card without affecting siblings (Shop The Look pins, STL badge,
   etc.) that intentionally extend past the card's box. */
.pdp-gallery__card-cin-wrap {
  /* IN FLOW — no position:absolute. img's natural height drives wrap → card.
     overflow:hidden clips the cinematic scale transform without breaking
     layout. (An earlier absolute-positioned variant collapsed the card to
     0 height because the img was the only content and got pulled out of flow.) */
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.pdp-gallery__card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-card);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  flex: 0 0 85vw;
  scroll-snap-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .pdp-gallery__card { border-radius: 12px; flex: none; }
}

.pdp-gallery__card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.pdp-gallery__card-inner {
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.pdp-gallery__card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.pdp-gallery__card img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

/* 2026-04-20 — 360° card badge + expandable "View all" block */
.pdp-gallery__card--360 {
  position: relative;
}
.pdp-gallery__360-label {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 600;
  border-radius: 99px;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.pdp-gallery__more {
  grid-column: 1 / -1;
  width: 100%;
}
.pdp-gallery__more > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  user-select: none;
  transition: background 0.15s;
}
.pdp-gallery__more > summary::-webkit-details-marker { display: none; }
.pdp-gallery__more > summary::after {
  content: " ↓";
  margin-left: 6px;
}
.pdp-gallery__more[open] > summary::after { content: " ↑"; }
.pdp-gallery__more > summary:hover {
  background: var(--color-bg-card);
}
.pdp-gallery__more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .pdp-gallery__more-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* PDP carousel dots — mobile only */
.pdp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 4px;
}

@media (min-width: 768px) {
  .pdp-dots { display: none; }
}

.pdp-dots__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background 0.3s ease, transform 0.3s ease;
}

.pdp-dots__dot--active {
  background: var(--color-accent);
  transform: scale(1.4);
}

/* PDP sticky info */
.pdp-info {
  padding-top: 0;
}

@media (min-width: 768px) {
  .pdp-info {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    padding-top: 20px;
    align-self: start;
  }
}

/* ==========================================================================
   PDP Composition · Care · Origin block (Step 5 / Slice C₃)

   Lives between the description and the size selector. Each row is a
   two-column grid with an uppercase tracked label on the left and the
   resolved value list on the right. Notes line is italic + muted under
   the value list. Top + per-row rule lines match the existing tokenized
   border style used elsewhere on the PDP for visual consistency.
   ========================================================================== */
.pdp-care-block {
  border-top: 1px solid var(--color-border-light);
  margin: 22px 0 4px;
}

.pdp-care-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.pdp-care-row--last {
  border-bottom: 0;
}

.pdp-care-row__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  padding-top: 2px;
  font-weight: 500;
}

.pdp-care-row__value {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}

.pdp-care-row__list {
  display: inline;
}

.pdp-care-row__bullets {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.pdp-care-row__bullets li {
  margin: 2px 0;
}

.pdp-care-row__notes {
  font-size: 12px;
  font-style: italic;
  color: var(--color-text-tertiary);
  margin-top: 6px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .pdp-care-row {
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 14px 0;
  }
  .pdp-care-row__label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .pdp-care-row__value {
    font-size: 13px;
  }
}

/* ========== PDP Inner Zoom ========== */
.ii-zoom-overlay {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
}

.ii-zoom-overlay--active {
  opacity: 1;
  pointer-events: auto;
  cursor: crosshair;
}

.ii-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: var(--font-display), system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 6;
  pointer-events: none;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ii-zoom-hint { display: none; }
}

/* ========== Shop the Look ========== */
.stl-pin {
  position: absolute;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.stl-pin::before {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
}

.stl-pin:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.stl-pin::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  animation: stl-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes stl-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.35); opacity: 0; }
}

.stl-card {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 12px;
  width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 11;
}

.stl-pin:hover .stl-card,
.stl-pin--expanded .stl-card {
  opacity: 1;
  pointer-events: auto;
}

.stl-card__name {
  font-family: var(--font-editorial), Georgia, serif;
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.stl-card__price {
  font-family: var(--font-display), sans-serif;
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.stl-card__link {
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 1px;
}

.stl-card__link:hover { opacity: 0.7; }

/* Removed: stl-card--left no longer needed — card opens below pin */

/* Edge-detect flip: when the pin sits too close to the viewport's left edge,
   the centered popup would clip off-screen. JS adds .stl-card--right to push
   the popup to the RIGHT of the pin instead of centered below it. */
.stl-card--right {
  left: calc(100% + 8px);
  transform: translateX(0);
}

/* Override overflow and cursor on cards with STL pins */
.pdp-gallery__card:has(.stl-pin) {
  overflow: visible;
}

.pdp-gallery__card:has(.stl-pin),
.pdp-gallery__card:has(.stl-pin) img {
  cursor: default;
}

.pdp-gallery__card:has(.stl-pin) img {
  border-radius: inherit;
}

.stl-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  z-index: 9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  pointer-events: none;
}

/* ========== Marquee — infinite scroll gallery ========== */
.marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 12px;
}

.marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.marquee__track--left {
  animation: marquee-left 40s linear infinite;
}

.marquee__track--right {
  animation: marquee-right 40s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee__card {
  flex-shrink: 0;
  width: 200px;
  text-decoration: none;
  color: var(--color-text);
}

@media (min-width: 480px) {
  .marquee__card { width: 220px; }
}

@media (min-width: 768px) {
  .marquee__card { width: 280px; }
  .marquee__track { gap: 20px; }
  .marquee { margin-bottom: 20px; }
}

.marquee__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-surface);
}

.marquee__img {
  width: 100%;
  height: 100%;
  /* 2026-04-20 — `contain` (not `cover`) for transparent SS2026 silhouettes
     (1237x2580 ≈ 0.48 aspect, more portrait than the 3:4 card). `cover`
     cropped ~35% off the bottom (= legs cut on every card in marquee). */
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.marquee__card:hover .marquee__img {
  transform: scale(1.03);
}

/* 2026-05-02 — Spotlight rotation mode (section.spotlightRotation in VB).
   Only the card whose center is closest to the viewport center plays its 360°;
   all others show their hero photo.  /static/js/marquee-spotlight.js sets
   `.marquee__card--active` on the spotlight card; the cross-fade is purely
   CSS (400ms opacity).  Both images are loaded eagerly so the handoff is
   instant — the hero photo is already cached site-wide from product cards. */
.marquee--spotlight .marquee__img-wrap > .marquee__img {
  position: absolute;
  inset: 0;
  transition: opacity 400ms ease;
}

.marquee--spotlight .marquee__img--still { opacity: 1; }
.marquee--spotlight .marquee__img--active { opacity: 0; }

.marquee--spotlight .marquee__card--active .marquee__img--still { opacity: 0; }
.marquee--spotlight .marquee__card--active .marquee__img--active { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  /* Track scroll already pauses via the existing animation rules. With
     spotlight, pin the active class to the first on-screen card (set in JS)
     and let the hero stand in for everyone else — calmest possible state. */
  .marquee--spotlight .marquee__track { animation-play-state: paused; }
}

.marquee__info {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.marquee__name {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.marquee__price {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

/* ========== Editorial Grid — asymmetric masonry for Homepage 2 ========== */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .editorial-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
  }
}

.editorial-grid__item {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
}

/* Mobile: all items stack, uniform aspect ratio */
.editorial-grid__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-card);
}

/* Desktop grid placement: 6 items cycle */
@media (min-width: 768px) {
  /* Wide: spans 8 cols, shorter aspect */
  .editorial-grid__item--wide {
    grid-column: span 8;
  }
  .editorial-grid__item--wide .editorial-grid__img-wrap {
    aspect-ratio: 16 / 10;
  }

  /* Tall: spans 4 cols, portrait */
  .editorial-grid__item--tall {
    grid-column: span 4;
  }
  .editorial-grid__item--tall .editorial-grid__img-wrap {
    aspect-ratio: 3 / 4;
  }

  /* Square: spans 6 cols each */
  .editorial-grid__item--square {
    grid-column: span 6;
  }
  .editorial-grid__item--square .editorial-grid__img-wrap {
    aspect-ratio: 1 / 1;
  }
}

.editorial-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

.editorial-grid__item:hover .editorial-grid__img {
  transform: scale(1.04);
}

.editorial-grid__info {
  padding: 12px 4px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.editorial-grid__collection {
  width: 100%;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.editorial-grid__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.editorial-grid__price {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
  margin-left: auto;
}

/* ========== Lookbook Scroll — horizontal snap gallery for Homepage 2 ========== */
.lookbook-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 0 20px;
}

.lookbook-scroll::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .lookbook-scroll {
    margin: 0 -40px;
    padding: 0 40px;
  }
}

.lookbook-scroll__track {
  display: flex;
  gap: 16px;
}

@media (min-width: 768px) {
  .lookbook-scroll__track { gap: 24px; }
}

.lookbook-scroll__card {
  flex: 0 0 75vw;
  max-width: 420px;
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .lookbook-scroll__card {
    flex: 0 0 340px;
  }
}

@media (min-width: 1025px) {
  .lookbook-scroll__card {
    flex: 0 0 380px;
  }
}

.lookbook-scroll__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-card);
}

.lookbook-scroll__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

.lookbook-scroll__card:hover .lookbook-scroll__img {
  transform: scale(1.04);
}

.lookbook-scroll__info {
  padding: 14px 4px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.lookbook-scroll__collection {
  width: 100%;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.lookbook-scroll__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.lookbook-scroll__price {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
  margin-left: auto;
}

/* ========== Homepage 3 — "Gallery Walk" editorial scroll ========== */

/* --- Opening: typographic full-screen --- */
.hp3-opening {
  height: 100vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  margin-top: calc(-1 * var(--nav-height));
  position: relative;
}

.hp3-opening__inner {
  max-width: 720px;
}

.hp3-opening__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 40px;
}

.hp3-opening__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hp3-opening__subtitle {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.hp3-opening__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-tertiary);
  animation: hp3-bounce 2s ease infinite;
}

@keyframes hp3-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Section headers with number --- */
.hp3-section {
  padding: 0;
}

.hp3-section--collections {
  padding: 80px 20px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hp3-section--collections { padding: 120px 40px 60px; }
}

.hp3-section__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 60px 20px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hp3-section__header { padding: 100px 40px 48px; }
}

.hp3-section__number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-text-tertiary);
}

.hp3-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* --- Cinema panels (New Arrivals) --- */
.hp3-panel {
  margin-bottom: 4px;
}

/* Full-bleed panel */
.hp3-panel__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color-bg);
}

.hp3-panel--full .hp3-panel__image {
  width: 100%;
  height: 80vh;
  min-height: 400px;
  max-height: 900px;
  overflow: hidden;
}

.hp3-panel--full .hp3-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s ease;
}

.hp3-panel--full:hover .hp3-panel__image img {
  transform: scale(1.02);
}

.hp3-panel__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 32px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .hp3-panel__overlay { padding: 60px 48px 40px; }
}

.hp3-panel__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp3-panel__collection {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hp3-panel__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hp3-panel__name--large {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text);
}

.hp3-panel__price {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hp3-panel__cta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.hp3-panel:hover .hp3-panel__cta { opacity: 1; }

.hp3-panel__cta--dark {
  color: var(--color-text-secondary);
  margin-top: 24px;
}

/* Split panel */
.hp3-panel__link--split {
  display: grid;
  grid-template-columns: 1fr;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .hp3-panel__link--split {
    grid-template-columns: 3fr 2fr;
  }
}

.hp3-panel__image--split {
  width: 100%;
  height: 60vh;
  min-height: 350px;
  max-height: 700px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hp3-panel__image--split {
    height: 85vh;
    max-height: 900px;
  }
}

.hp3-panel__image--split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s ease;
}

.hp3-panel--split:hover .hp3-panel__image--split img {
  transform: scale(1.02);
}

.hp3-panel__sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .hp3-panel__sidebar { padding: 60px 48px; }
}

.hp3-panel__sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
}

.hp3-panel__idx {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-text-tertiary);
  margin-bottom: 8px;
}

/* --- Contact sheet (Featured) --- */
.hp3-contact-sheet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 600px) {
  .hp3-contact-sheet { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .hp3-contact-sheet { grid-template-columns: repeat(4, 1fr); gap: 3px; }
}

@media (min-width: 1200px) {
  .hp3-contact-sheet { grid-template-columns: repeat(6, 1fr); }
}

.hp3-contact__item {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--color-text);
}

.hp3-contact__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-card);
}

.hp3-contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hp3-contact__hover {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hp3-contact__item:hover .hp3-contact__hover {
  opacity: 1;
}

.hp3-contact__item:hover .hp3-contact__img {
  transform: scale(1.06);
}

.hp3-contact__hover-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}

.hp3-contact__hover-price {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.hp3-contact__label {
  display: block;
  padding: 6px 4px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--color-text-tertiary);
  text-align: center;
}

/* --- Collections list --- */
.hp3-collist {
  border-top: 1px solid var(--color-border-light);
}

.hp3-collist__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
  color: var(--color-text);
  transition: padding-left 0.3s ease;
}

@media (min-width: 768px) {
  .hp3-collist__item { padding: 24px 0; gap: 24px; }
}

.hp3-collist__item:hover {
  padding-left: 12px;
}

.hp3-collist__idx {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--color-text-tertiary);
  min-width: 28px;
}

.hp3-collist__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  flex: 1;
}

.hp3-collist__arrow {
  font-size: 1.1rem;
  color: var(--color-text-tertiary);
  transition: transform 0.3s ease, color 0.3s ease;
}

.hp3-collist__item:hover .hp3-collist__arrow {
  transform: translateX(6px);
  color: var(--color-text);
}

.hp3-collist__item--all .hp3-collist__name {
  font-weight: 400;
}

/* ========== Dahl Collection Page ========== */

/* Hero — dark immersive full-viewport */
.dahl-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #0a0a0a;
}
.dahl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dahl-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(30%);
}
.dahl-hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem;
  color: #fff;
  max-width: 600px;
}
.dahl-hero__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.dahl-hero__title {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  line-height: 0.85;
  margin: 0;
}
.dahl-hero__subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 1.5rem;
}
.dahl-hero__line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 1.5rem 0;
}
.dahl-hero__count {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* Asymmetric grid */
.dahl-grid {
  padding: 2rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.dahl-grid__row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.dahl-grid__row--a {
  grid-template-columns: 1.6fr 1fr;
  min-height: 70vh;
}
.dahl-grid__row--b {
  grid-template-columns: 1fr 1fr;
}
.dahl-grid__stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dahl-grid__item {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}
.dahl-grid__item--large {
  min-height: 70vh;
}
.dahl-grid__item--small {
  flex: 1;
  min-height: 30vh;
}
.dahl-grid__item--half {
  min-height: 50vh;
}
.dahl-grid__img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #f0efed;
}
.dahl-grid__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.dahl-grid__item:hover .dahl-grid__img-wrap img {
  transform: scale(1.03);
}
.dahl-grid__info {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
}
.dahl-grid__idx {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  opacity: 0.35;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 1025px) {
  .dahl-grid__idx { font-size: 0.65rem; }
}
.dahl-grid__name {
  flex: 1;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.dahl-grid__price {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* Full-width editorial break */
.dahl-editorial {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  margin: 4rem 0;
  min-height: 70vh;
  background: #0a0a0a;
}
.dahl-editorial__image {
  overflow: hidden;
}
.dahl-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.dahl-editorial__text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}
.dahl-editorial__quote {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 300;
  max-width: 300px;
  margin: 0;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 1.5rem;
}

/* Product index list */
.dahl-index {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1.5rem 4rem;
}
.dahl-index__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
  margin-bottom: 0;
}
.dahl-index__title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dahl-index__count {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
}
.dahl-index__row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: padding-left 0.3s ease, opacity 0.3s ease;
}
.dahl-index__row:hover {
  padding-left: 1rem;
}
.dahl-index__num {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  opacity: 0.3;
  font-variant-numeric: tabular-nums;
  min-width: 2rem;
}
@media (min-width: 1025px) {
  .dahl-index__num { font-size: 0.65rem; }
}
.dahl-index__name {
  flex: 1;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.dahl-index__price {
  font-size: 0.85rem;
  opacity: 0.5;
}
.dahl-index__arrow {
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dahl-index__row:hover .dahl-index__arrow {
  opacity: 0.6;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .dahl-hero__content {
    padding: 2rem;
  }
  .dahl-hero__title {
    font-size: clamp(3rem, 15vw, 6rem);
  }
  .dahl-grid__row--a,
  .dahl-grid__row--b {
    grid-template-columns: 1fr;
  }
  .dahl-grid__item--large {
    min-height: 50vh;
  }
  .dahl-editorial {
    grid-template-columns: 1fr;
  }
  .dahl-editorial__text {
    padding: 2rem;
  }
}


/* ========== UFW2024 Collection Page ========== */

.ufw-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
}
.ufw-hero__image {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.ufw-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.ufw-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 4rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}
.ufw-hero__brand {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.ufw-hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 200;
  letter-spacing: 0.12em;
  line-height: 1;
  margin: 0;
}
.ufw-hero__subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.75rem;
}
.ufw-hero__line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 1.25rem 0;
}
.ufw-hero__credit {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Pieces section */
.ufw-pieces {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
}
.ufw-pieces__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--clr-border, #ddd);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.ufw-pieces__title {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ufw-pieces__count {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Product grid — clean product shots with labels */
.ufw-pieces__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}
.ufw-piece {
  display: block;
  text-decoration: none;
  color: inherit;
}
.ufw-piece__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--clr-surface, #f5f5f0);
}
.ufw-piece__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ufw-piece:hover .ufw-piece__image img {
  transform: scale(1.03);
}
.ufw-piece__label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--clr-border, #ddd);
  margin-top: 0.75rem;
}
.ufw-piece__num {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.4;
  min-width: 1.5rem;
}
.ufw-piece__name {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  flex: 1;
}
.ufw-piece__price {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* Editorial break */
.ufw-editorial {
  margin: 4rem 0;
  padding: 0 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.ufw-editorial__image {
  width: 100%;
  overflow: hidden;
}
.ufw-editorial__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Photographer credit */
.ufw-credit {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--clr-border, #ddd);
  margin-top: 2rem;
}
.ufw-credit__text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}
.ufw-credit__event {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .ufw-hero__overlay {
    padding: 2rem;
  }
  .ufw-pieces__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ufw-pieces {
    padding: 2rem 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .ufw-hero__overlay {
    padding: 1.5rem;
  }
}

/* ========== Homepage 4 — Editorial Split ========== */
.page-hp4 { --hp4-dark: #0a0a0a; --hp4-light: #f0f0ee; }

/* 1. Split-screen hero */
.hp4-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: calc(-1 * var(--nav-height));
}

@media (min-width: 768px) {
  .hp4-split { grid-template-columns: 1fr 1fr; }
}

.hp4-split__text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hp4-dark);
  padding: calc(var(--nav-height) + 60px) clamp(32px, 6vw, 80px) 60px;
  min-height: 50vh;
}

@media (min-width: 768px) {
  .hp4-split__text { min-height: 100vh; padding-top: 0; }
}

.hp4-split__text-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.hp4-split__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hp4-split__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 200;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--hp4-light);
}

.hp4-split__sub {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 320px;
}

.hp4-split__btn {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hp4-light);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 36px;
  margin-top: 12px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.hp4-split__btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.hp4-split__image {
  overflow: hidden;
  background: var(--color-bg-card);
  min-height: 50vh;
}

@media (min-width: 768px) {
  .hp4-split__image { min-height: 100vh; }
}

.hp4-split__image a { display: block; height: 100%; }

.hp4-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hp4-split__image:hover img { transform: scale(1.03); }

/* 2. Scrolling text ribbon */
.hp4-ribbon {
  overflow: hidden;
  background: var(--hp4-dark);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hp4-ribbon__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: hp4-scroll 30s linear infinite;
}

.hp4-ribbon__word {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  padding: 0 16px;
}

.hp4-ribbon__dot {
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
  padding: 0 16px;
  font-size: 0.5rem;
  line-height: 1.4rem;
}

@keyframes hp4-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 3. Spotlight — single featured product */
.hp4-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 80px 0;
}

@media (min-width: 768px) {
  .hp4-spotlight {
    grid-template-columns: 3fr 2fr;
    padding: 0;
    min-height: 80vh;
  }
}

.hp4-spotlight__img-col { overflow: hidden; }

.hp4-spotlight__img-link {
  display: block;
  height: 100%;
}

.hp4-spotlight__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 50vh;
  transition: transform 0.6s ease;
}

.hp4-spotlight__img-link:hover .hp4-spotlight__img {
  transform: scale(1.02);
}

.hp4-spotlight__info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(24px, 5vw, 80px);
  gap: 16px;
}

.hp4-spotlight__collection {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.hp4-spotlight__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 200;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.hp4-spotlight__price {
  font-size: 1rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
}

.hp4-spotlight__cta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 12px;
  transition: color 0.2s;
}

.hp4-spotlight__cta:hover { color: var(--color-text); }

/* 4. Compact thumbnail grid */
.hp4-thumbs {
  padding: 80px clamp(20px, 5vw, 80px);
}

.hp4-thumbs__header {
  margin-bottom: 40px;
  text-align: center;
}

.hp4-thumbs__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hp4-thumbs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .hp4-thumbs__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hp4-thumbs__grid { grid-template-columns: repeat(6, 1fr); gap: 20px; }
}

.hp4-thumbs__item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hp4-thumbs__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-card);
}

.hp4-thumbs__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hp4-thumbs__item:hover .hp4-thumbs__img img {
  transform: scale(1.05);
}

.hp4-thumbs__name {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hp4-thumbs__price {
  font-size: 0.6rem;
  color: var(--color-text-tertiary);
  letter-spacing: 0.04em;
}

.hp4-thumbs__footer {
  text-align: center;
  margin-top: 40px;
}

.hp4-thumbs__all {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.hp4-thumbs__all:hover { color: var(--color-text); }

/* 5. Brand statement */
.hp4-statement {
  padding: 100px clamp(24px, 8vw, 120px);
  text-align: center;
  border-top: 1px solid var(--color-border-light);
}

.hp4-statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== Homepage 5 — Interactive Gallery ========== */
.page-hp5 { --hp5-dark: #000; --hp5-light: #ececea; }

/* Force nav white on dark background — scoped to top bar only, not mobile dropdown */
.page-hp5 .nav { background: var(--hp5-dark); }
.page-hp5 .nav > .nav__inner > .nav__left .nav__link,
.page-hp5 .nav > .nav__inner > .nav__left .nav__search,
.page-hp5 .nav > .nav__inner > .nav__right > .nav__actions .nav__cart-label,
.page-hp5 .nav > .nav__inner > .nav__right > .nav__actions .nav__cart-count,
.page-hp5 .nav > .nav__inner > .nav__right > .nav__actions .lang-link,
.page-hp5 .nav > .nav__inner > .nav__right > .nav__actions .lang-sep,
.page-hp5 .nav > .nav__inner > .nav__right > .nav__info-mega .nav__link { color: var(--hp5-light); }
.page-hp5 .nav .nav__toggle svg { stroke: var(--hp5-light); }
.page-hp5 .nav .nav__logo-img { filter: invert(1); }
.page-hp5 .nav--transparent::after { display: none; }
.page-hp5 .nav--scrolled { background: var(--hp5-dark); border-bottom-color: rgba(255,255,255,0.1); }
/* Mobile dropdown keeps its normal light background and dark text */
.page-hp5 .nav__mobile-menu--open { background: var(--color-bg); }
.page-hp5 .nav__mobile-menu .nav__mobile-link,
.page-hp5 .nav__mobile-menu .nav__mobile-sublink { color: var(--color-text-secondary); }
.page-hp5 .nav__mobile-menu .nav__mobile-link:hover,
.page-hp5 .nav__mobile-menu .nav__mobile-sublink:hover { color: var(--color-text); }
.page-hp5 .nav__mobile-menu .lang-link { color: var(--color-text-secondary); }
.page-hp5 .nav__mobile-menu .lang-link.active { color: var(--color-text); }
.page-hp5 .nav__mobile-menu .lang-sep { color: var(--color-border); }
.page-hp5 .nav__mobile-menu .nav__mobile-toggle::after { color: var(--color-text-tertiary); }

/* 1. Dark topbar */
.hp5-topbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--hp5-dark);
  padding: 60px 24px 80px;
  margin-top: calc(-1 * var(--nav-height));
  padding-top: calc(var(--nav-height) + 60px);
}

.hp5-topbar__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--hp5-light);
}

.hp5-topbar__sub {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.4);
  max-width: 420px;
  line-height: 1.7;
}

.hp5-topbar__btn {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hp5-light);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 40px;
  margin-top: 4px;
  transition: all 0.3s ease;
}

.hp5-topbar__logo {
  width: clamp(180px, 40vw, 300px);
  height: clamp(180px, 40vw, 300px);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

.hp5-topbar__btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

/* 2. Scroll-reveal products */
.hp5-reveal {
  padding: 80px clamp(20px, 5vw, 80px) 80px;
  background: var(--hp5-dark);
}

.hp5-reveal__heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  color: var(--hp5-light);
}

.hp5-reveal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
}

@media (min-width: 768px) {
  .hp5-reveal__grid { grid-template-columns: repeat(4, 1fr); }
}

.hp5-reveal__card {
  text-decoration: none;
  color: var(--hp5-light);
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}

.hp5-reveal__card:nth-child(2) { transition-delay: 0.1s; }
.hp5-reveal__card:nth-child(3) { transition-delay: 0.2s; }
.hp5-reveal__card:nth-child(4) { transition-delay: 0.3s; }
.hp5-reveal__card:nth-child(5) { transition-delay: 0.05s; }
.hp5-reveal__card:nth-child(6) { transition-delay: 0.15s; }
.hp5-reveal__card:nth-child(7) { transition-delay: 0.25s; }
.hp5-reveal__card:nth-child(8) { transition-delay: 0.35s; }

.hp5-reveal__card--visible {
  opacity: 1;
  transform: translateY(0);
}

.hp5-reveal__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-card);
  margin-bottom: 12px;
}

.hp5-reveal__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hp5-reveal__card:hover .hp5-reveal__img-wrap img {
  transform: scale(1.05);
}

.hp5-reveal__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp5-reveal__name {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp5-light);
}

.hp5-reveal__price {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}

/* 3. Zoom lens featured product */
.hp5-zoom-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 40px 0 80px;
}

@media (min-width: 768px) {
  .hp5-zoom-section {
    grid-template-columns: 3fr 2fr;
    padding: 0;
    min-height: 80vh;
  }
}

.hp5-zoom__img-col {
  position: relative;
  padding: 0 clamp(20px, 5vw, 80px);
}

@media (min-width: 768px) {
  .hp5-zoom__img-col { padding: 60px; }
}

.hp5-zoom__container {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.hp5-zoom__img {
  width: 100%;
  height: auto;
  display: block;
}

.hp5-zoom__lens {
  display: none;
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.2);
  pointer-events: none;
  z-index: 10;
  background-repeat: no-repeat;
}

.hp5-zoom__hint {
  display: block;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-top: 16px;
}
.hp5-zoom__hint--mobile { display: none; }
@media (hover: none) and (pointer: coarse) {
  .hp5-zoom__hint--desktop { display: none; }
  .hp5-zoom__hint--mobile { display: block; }
}

.hp5-zoom__info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(24px, 5vw, 80px);
  gap: 16px;
}

.hp5-zoom__collection {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.hp5-zoom__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 200;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.hp5-zoom__price {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.hp5-zoom__cta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 12px;
  transition: color 0.2s;
}

.hp5-zoom__cta:hover { color: var(--color-text); }

/* 4. Magnetic cursor grid */
.hp5-magnetic {
  padding: 80px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--color-border-light);
}

.hp5-magnetic__heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}

.hp5-magnetic__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

@media (min-width: 768px) {
  .hp5-magnetic__grid { grid-template-columns: repeat(3, 1fr); }
}

.hp5-magnetic__card {
  text-decoration: none;
  color: inherit;
}

.hp5-magnetic__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-card);
  margin-bottom: 10px;
}

.hp5-magnetic__img-inner {
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp5-magnetic__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp5-magnetic__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hp5-magnetic__col {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.hp5-magnetic__name {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp5-magnetic__price {
  font-size: 0.65rem;
  color: var(--color-text-tertiary);
}

/* 5. Ken Burns cinematic band */
.hp5-ken-burns {
  position: relative;
  height: 50vh;
  overflow: hidden;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .hp5-ken-burns { height: 70vh; }
}

.hp5-ken-burns__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-origin: center center;
}

.hp5-ken-burns__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(0,0,0,0.35);
  text-align: center;
  padding: 24px;
}

.hp5-ken-burns__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  color: #fff;
  max-width: 600px;
}

.hp5-ken-burns__link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 36px;
  transition: all 0.3s ease;
}

.hp5-ken-burns__link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ========== Homepage 6 — SVG Sphere Logo ========== */
.page-hp6 { --hp6-dark: #000; --hp6-light: #ececea; }

/* Nav overrides — same as HP5 dark theme */
.page-hp6 .nav { background: var(--hp6-dark); }
.page-hp6 .nav > .nav__inner > .nav__left .nav__link,
.page-hp6 .nav > .nav__inner > .nav__left .nav__search,
.page-hp6 .nav > .nav__inner > .nav__right > .nav__actions .nav__cart-label,
.page-hp6 .nav > .nav__inner > .nav__right > .nav__actions .nav__cart-count,
.page-hp6 .nav > .nav__inner > .nav__right > .nav__actions .lang-link,
.page-hp6 .nav > .nav__inner > .nav__right > .nav__actions .lang-sep,
.page-hp6 .nav > .nav__inner > .nav__right > .nav__info-mega .nav__link { color: var(--hp6-light); }
.page-hp6 .nav .nav__toggle svg { stroke: var(--hp6-light); }
.page-hp6 .nav--transparent::after { display: none; }
.page-hp6 .nav--scrolled { background: var(--hp6-dark); border-bottom-color: rgba(255,255,255,0.1); }
.page-hp6 .nav__mobile-menu--open { background: var(--color-bg); }
.page-hp6 .nav__mobile-menu .nav__mobile-link,
.page-hp6 .nav__mobile-menu .nav__mobile-sublink { color: var(--color-text-secondary); }
.page-hp6 .nav__mobile-menu .lang-link { color: var(--color-text-secondary); }
.page-hp6 .nav__mobile-menu .lang-link.active { color: var(--color-text); }
.page-hp6 .nav__mobile-menu .lang-sep { color: var(--color-border); }

/* Hero */
.hp6-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: var(--hp6-dark);
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  margin-top: calc(-1 * var(--nav-height));
  min-height: 100vh;
  min-height: 100svh;
  justify-content: center;
}

.hp6-hero__logo {
  width: clamp(200px, 40vw, 320px);
  height: clamp(200px, 40vw, 320px);
}

.hp6-sphere { width: 100%; height: 100%; }

.hp6-gore {
  stroke: #c8c0b8;
  stroke-width: 0.8;
  fill: none;
  transition: stroke 0.3s;
}

.hp6-sphere__outline {
  stroke: rgba(200, 192, 184, 0.2);
}

.hp6-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 100;
  letter-spacing: 0.15em;
  color: var(--hp6-light);
  text-transform: lowercase;
}

.hp6-hero__sub {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.35);
  max-width: 400px;
  line-height: 1.7;
}

.hp6-hero__btn {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hp6-light);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 40px;
  transition: all 0.3s ease;
}

.hp6-hero__btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

/* Products grid */
.hp6-products {
  padding: 80px clamp(20px, 5vw, 80px);
}

.hp6-products__heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}

.hp6-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

@media (min-width: 768px) {
  .hp6-products__grid { grid-template-columns: repeat(4, 1fr); }
}

.hp6-products__card {
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}

.hp6-products__card:nth-child(2) { transition-delay: 0.08s; }
.hp6-products__card:nth-child(3) { transition-delay: 0.16s; }
.hp6-products__card:nth-child(4) { transition-delay: 0.24s; }
.hp6-products__card:nth-child(5) { transition-delay: 0.04s; }
.hp6-products__card:nth-child(6) { transition-delay: 0.12s; }
.hp6-products__card:nth-child(7) { transition-delay: 0.2s; }
.hp6-products__card:nth-child(8) { transition-delay: 0.28s; }

.hp6-products__card--visible {
  opacity: 1;
  transform: translateY(0);
}

.hp6-products__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-card);
  margin-bottom: 10px;
}

.hp6-products__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hp6-products__card:hover .hp6-products__img img {
  transform: scale(1.04);
}

.hp6-products__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hp6-products__col {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.hp6-products__name {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp6-products__price {
  font-size: 0.65rem;
  color: var(--color-text-tertiary);
}

/* Feature spotlight */
.hp6-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .hp6-feature {
    grid-template-columns: 3fr 2fr;
    min-height: 70vh;
  }
}

.hp6-feature__img-link {
  display: block;
  overflow: hidden;
}

.hp6-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 50vh;
  transition: transform 0.6s ease;
}

.hp6-feature__img-link:hover .hp6-feature__img {
  transform: scale(1.03);
}

.hp6-feature__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(24px, 5vw, 80px);
  gap: 16px;
}

.hp6-feature__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 200;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.hp6-feature__price {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.hp6-feature__cta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 8px;
  transition: color 0.2s;
}

.hp6-feature__cta:hover { color: var(--color-text); }

/* CTA band */
.hp6-cta {
  padding: 80px 24px;
  text-align: center;
  background: var(--hp6-dark);
}

.hp6-cta__link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hp6-light);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 48px;
  transition: all 0.3s ease;
}

.hp6-cta__link:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

/* ========== Homepage 7 — Textured Sphere ========== */
.page-hp7 { --hp7-dark: #000; --hp7-light: #ececea; }

.page-hp7 .nav { background: var(--hp7-dark); }
.page-hp7 .nav > .nav__inner > .nav__left .nav__link,
.page-hp7 .nav > .nav__inner > .nav__left .nav__search,
.page-hp7 .nav > .nav__inner > .nav__right > .nav__actions .nav__cart-label,
.page-hp7 .nav > .nav__inner > .nav__right > .nav__actions .nav__cart-count,
.page-hp7 .nav > .nav__inner > .nav__right > .nav__actions .lang-link,
.page-hp7 .nav > .nav__inner > .nav__right > .nav__actions .lang-sep,
.page-hp7 .nav > .nav__inner > .nav__right > .nav__info-mega .nav__link { color: var(--hp7-light); }
.page-hp7 .nav .nav__toggle svg { stroke: var(--hp7-light); }
.page-hp7 .nav .nav__logo-img { filter: invert(1); }
.page-hp7 .nav--transparent::after { display: none; }
.page-hp7 .nav--scrolled { background: var(--hp7-dark); border-bottom-color: rgba(255,255,255,0.1); }
.page-hp7 .nav__mobile-menu--open { background: var(--color-bg); }
.page-hp7 .nav__mobile-menu .nav__mobile-link,
.page-hp7 .nav__mobile-menu .nav__mobile-sublink { color: var(--color-text-secondary); }
.page-hp7 .nav__mobile-menu .lang-link { color: var(--color-text-secondary); }
.page-hp7 .nav__mobile-menu .lang-link.active { color: var(--color-text); }

.hp7-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  background: var(--hp7-dark);
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  margin-top: calc(-1 * var(--nav-height));
  min-height: 100vh;
  min-height: 100svh;
  justify-content: center;
}

.hp7-hero__pair {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .hp7-hero__pair { flex-direction: row; gap: 60px; }
}

.hp7-hero__version {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hp7-hero__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.hp7-hero__logo-geo,
.hp7-hero__logo {
  width: clamp(180px, 35vw, 280px);
  height: clamp(180px, 35vw, 280px);
}

.hp7-hero__version--full {
  margin-top: 20px;
}

.hp7-hero__video {
  width: clamp(180px, 35vw, 280px);
  height: clamp(180px, 35vw, 280px);
  border-radius: 50%;
  overflow: hidden;
}

.hp7-hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp7-hero__iframe-wrap {
  width: clamp(300px, 60vw, 500px);
  height: clamp(300px, 60vw, 500px);
  border-radius: 8px;
  overflow: hidden;
}

.hp7-hero__iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #050505;
}

.hp7-hero__logo-v5,
.hp7-hero__logo-v6 {
  width: clamp(200px, 35vw, 350px);
  height: clamp(200px, 35vw, 350px);
}

.hp7-hero__logo-v3,
.hp7-hero__logo-v4 {
  width: clamp(180px, 35vw, 280px);
  height: clamp(180px, 35vw, 280px);
}

.hp7-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 100;
  letter-spacing: 0.15em;
  color: var(--hp7-light);
  text-transform: lowercase;
}

.hp7-hero__sub {
  font-family: var(--font-editorial);
  font-style: normal;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.35);
  max-width: 400px;
  line-height: 1.7;
}

.hp7-hero__btn {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hp7-light);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 40px;
  transition: all 0.3s ease;
}

.hp7-hero__btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

.hp7-products {
  padding: 80px clamp(20px, 5vw, 80px);
}

.hp7-products__heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}

.hp7-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

@media (min-width: 768px) {
  .hp7-products__grid { grid-template-columns: repeat(4, 1fr); }
}

.hp7-products__card {
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}

.hp7-products__card:nth-child(2) { transition-delay: 0.08s; }
.hp7-products__card:nth-child(3) { transition-delay: 0.16s; }
.hp7-products__card:nth-child(4) { transition-delay: 0.24s; }
.hp7-products__card:nth-child(5) { transition-delay: 0.04s; }
.hp7-products__card:nth-child(6) { transition-delay: 0.12s; }
.hp7-products__card:nth-child(7) { transition-delay: 0.2s; }
.hp7-products__card:nth-child(8) { transition-delay: 0.28s; }

.hp7-products__card--visible { opacity: 1; transform: translateY(0); }

.hp7-products__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-card);
  margin-bottom: 10px;
}

.hp7-products__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hp7-products__card:hover .hp7-products__img img { transform: scale(1.04); }

.hp7-products__info { display: flex; flex-direction: column; gap: 3px; }

.hp7-products__col {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.hp7-products__name {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp7-products__price {
  font-size: 0.65rem;
  color: var(--color-text-tertiary);
}

.hp7-feature {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .hp7-feature { grid-template-columns: 3fr 2fr; min-height: 70vh; }
}

.hp7-feature__img-link { display: block; overflow: hidden; }

.hp7-feature__img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 50vh; transition: transform 0.6s ease;
}

.hp7-feature__img-link:hover .hp7-feature__img { transform: scale(1.03); }

.hp7-feature__info {
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px clamp(24px, 5vw, 80px); gap: 16px;
}

.hp7-feature__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 200; letter-spacing: 0.03em; line-height: 1.15;
}

.hp7-feature__price { font-size: 1rem; color: var(--color-text-secondary); }

.hp7-feature__cta {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-text-secondary); margin-top: 8px; transition: color 0.2s;
}

.hp7-feature__cta:hover { color: var(--color-text); }

.hp7-cta {
  padding: 80px 24px; text-align: center; background: var(--hp7-dark);
}

.hp7-cta__link {
  font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--hp7-light);
  border: 1px solid rgba(255,255,255,0.2); padding: 14px 48px;
  transition: all 0.3s ease;
}

.hp7-cta__link:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4);
}

/* ========== ENA Collection Template ========== */
.page-ena { background: var(--color-bg); }

/* hide default footer margin so toolbar sits at true bottom */
.page-ena .footer { margin-bottom: 48px; }

/* --- Collection title --- */
.ena-header {
  text-align: center;
  padding: 28px 20px 0;
}

.ena-header__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* --- Category filters bar --- */
.ena-filters {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  padding: 0 20px;
}

.ena-filters__scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 0;
}

.ena-filters__scroll::-webkit-scrollbar { display: none; }

.ena-filters__pill {
  flex-shrink: 0;
  padding: 5px 16px;
  font-family: var(--font-body, sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--color-text-secondary);
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ena-filters__pill:hover { color: var(--color-text); }

.ena-filters__pill--active {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* --- Product grid (model view — default) ---
   Two columns, photos scale proportionally with column width.
   Photos are NOT cropped — object-fit: contain ensures whole image visible.
   Container uses width-relative sizing so it adapts to any window size
   (full screen, split screen, etc). */

.ena-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ena-card {
  display: block;
  overflow: hidden;
}

.ena-card__image-wrap {
  /* Height proportional to column width (each col = 50vw).
     Typical model photo is ~3:4, so height ≈ width * 1.33 ≈ 66vw.
     Cap at viewport minus all UI: nav(64) + header(48) + filters(44)
     + info(72) + toolbar(48) = 276px */
  height: min(66vw, calc(100vh - 280px));
  height: min(66vw, calc(100svh - 280px));
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ena-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.5s ease;
}

.ena-card:hover .ena-card__image {
  transform: scale(1.03);
}

.ena-card__info {
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  text-align: center;
}

.ena-card__collection {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 3px;
}

.ena-card__name {
  font-family: var(--font-body, sans-serif);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: 3px;
  text-transform: lowercase;
}

.ena-card__price {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
}

.ena-card__stock {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-top: 4px;
}

/* --- Item view --- */
.ena-grid--item-view {
  gap: 24px;
  padding: 24px 20px 60px;
}

.ena-grid--item-view .ena-card__image-wrap {
  background: #f5f5f3;
  height: auto;
  aspect-ratio: 1 / 1;
}

.ena-grid--item-view .ena-card__image {
  object-fit: contain;
  object-position: center center;
  padding: 8%;
}

.ena-grid--item-view .ena-card__info {
  height: auto;
  padding: 12px 12px 20px;
}

/* --- Sticky toolbar (always visible at bottom) --- */
.ena-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 20px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.ena-toolbar__filter {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body, sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--color-text);
  padding: 0;
  text-transform: lowercase;
}

.ena-toolbar__view {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text-secondary);
}

.ena-toolbar__label { margin-right: 4px; }

.ena-toolbar__mode {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body, sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--color-text-tertiary);
  padding: 0;
  text-transform: lowercase;
  transition: color 0.2s ease;
}

.ena-toolbar__mode:hover { color: var(--color-text); }

.ena-toolbar__mode--active {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ena-toolbar__sep {
  color: var(--color-text-tertiary);
  margin: 0 2px;
}

/* --- Desktop --- */
@media (min-width: 768px) {
  .ena-filters { padding: 0 40px; }

  .ena-filters__scroll {
    justify-content: center;
    gap: 8px;
  }

  .ena-grid--item-view {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px 40px 60px;
  }
}

@media (min-width: 1025px) {
  .ena-grid--item-view {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 60px 60px;
  }

  .ena-toolbar { padding: 0 40px; }
}

/* ============================================================
   2026-04-28 Step 8 Round B — page-dahl section-driven overrides

   The noir-grid template now emits generic block/hero + asymmetric-mosaic +
   block/two-column-l + product-index sections instead of the bespoke
   .dahl-hero markup. These overrides re-style the new macro output to match
   the legacy dahl-hero immersive-bg-with-bottom-left-overlay look.

   Selectors target the page-dahl body class so other pages using the same
   block/hero macro are unaffected.
   ============================================================ */

.page-dahl .lookbook-hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 0;
}
.page-dahl .lookbook-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  aspect-ratio: auto;
}
.page-dahl .lookbook-hero__image img,
.page-dahl .lookbook-hero__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(30%);
}
.page-dahl .lookbook-hero__overlay {
  position: relative;
  z-index: 1;
  inset: auto;
  display: block;
  padding: 4rem;
  color: #fff;
  max-width: 600px;
  background: none;
  text-align: left;
}
.page-dahl .lookbook-hero__eyebrow {
  display: block;
  font-size: 0.7rem !important;
  letter-spacing: 0.35em !important;
  text-transform: uppercase !important;
  opacity: 0.5;
  margin-bottom: 1.5rem !important;
  color: #fff !important;
}
.page-dahl .lookbook-hero__title {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  line-height: 0.85;
  margin: 0;
  color: #fff;
}
.page-dahl .lookbook-hero__phonetic {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 1.5rem 0 0;
  color: #fff;
}
.page-dahl .lookbook-hero__intro {
  color: rgba(255,255,255,0.6);
}
