/* ========================================================================
   MISCHIEF ? Premium Fashion Store
   Stylesheet Utama
   Struktur:
   1. Reset & Base
   2. Design Tokens (CSS Variables)
   3. Typography & Utility
   4. Buttons
   5. Preloader
   6. Top Bar
   7. Header & Navigation
   8. Mobile Menu
   9. Search Overlay
   10. Promo Banner
   11. Hero
   12. Section Head (reusable pattern)
   13. Select Fit
   14. New Arrival (filter + product card)
   15. Trending Collection
   16. Lookbook
   17. About Brand
   18. Featured Products Carousel
   19. Fashion Gallery
   20. News
   21. Newsletter
   22. Footer
   23. Back To Top
   24. Quick View Modal
   25. Lightbox
   26. Toast
   27. Scroll Reveal Animations
   ======================================================================== */

/* ==================== 1. RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + var(--header-h) + 12px);
}

body, h1, h2, h3, h4, p, ul, figure {
  margin: 0;
}

ul { padding: 0; list-style: none; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button { cursor: pointer; }

/* ==================== 2. DESIGN TOKENS ==================== */
:root {
  --black: #000000;
  --white: #ffffff;

  --ink-05: rgba(0,0,0,0.05);
  --ink-08: rgba(0,0,0,0.08);
  --ink-12: rgba(0,0,0,0.12);
  --ink-40: rgba(0,0,0,0.40);
  --ink-55: rgba(0,0,0,0.55);
  --ink-65: rgba(0,0,0,0.65);
  --ink-75: rgba(0,0,0,0.75);

  --snow-70: rgba(255,255,255,0.70);
  --snow-85: rgba(255,255,255,0.85);

  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-s: 0;
  --radius-m: 0;
  --radius-l: 0;

  --shadow-soft: 0 10px 40px rgba(0,0,0,0.06);
  --shadow-med: 0 20px 60px rgba(0,0,0,0.10);

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.3s;
  --dur-med: 0.45s;
  --dur-slow: 0.7s;

  --header-h: 64px;
  --topbar-h: 40px;
  --container-w: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* ==================== 3. TYPOGRAPHY & UTILITY ==================== */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.container-inner { padding: 0 40px; }

section { position: relative; }

.reveal-up, .reveal-image, .reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal-up.is-visible, .reveal-image.is-visible, .reveal-fade.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.reveal-image {
  transform: translateY(20px) scale(1.03);
}
.reveal-image.is-visible {
  transform: translateY(0) scale(1);
}
.reveal-fade {
  transform: translateY(14px);
}
.reveal-fade.is-visible {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-image, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

/* ==================== 4. BUTTONS ==================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-s);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease);
  z-index: 0;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn span,
.btn .icon {
  position: relative;
  z-index: 1;
}
.btn .icon { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn--solid-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn--solid-dark::before { background: var(--white); }
.btn--solid-dark:hover { color: var(--black); }

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn--outline-dark::before { background: var(--black); }
.btn--outline-dark:hover { color: var(--white); border-color: var(--black); }

.btn--solid-light {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn--solid-light::before { background: var(--black); }
.btn--solid-light:hover { color: var(--white); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--snow-70);
}
.btn--outline-light::before { background: var(--white); }
.btn--outline-light:hover { color: var(--black); border-color: var(--white); }

.hero__actions .btn { min-width: 178px; justify-content: center; }

.btn__ripple {
  position: absolute !important;
  border-radius: 0;
  background: currentColor;
  opacity: 0.25;
  transform: scale(0);
  animation: rippleAnim 0.65s var(--ease-out);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: difference;
}
@keyframes rippleAnim {
  to { transform: scale(2.6); opacity: 0; }
}

/* ==================== 5. PRELOADER ==================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo {
  height: 34px;
  width: auto;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
.preloader__bar {
  width: 180px;
  height: 2px;
  background: var(--ink-08);
  overflow: hidden;
  border-radius: 0;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--black);
  animation: preloaderBar 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes preloaderBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ==================== 6. TOP BAR ==================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 501;
  height: var(--topbar-h);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-heading);
}
.topbar__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar__right { justify-self: end; }
.topbar__sep {
  opacity: 0.45;
  font-weight: 400;
  user-select: none;
  line-height: 1;
}
.topbar__left a, .topbar__right a {
  opacity: 0.8;
  transition: opacity var(--dur-fast) var(--ease);
}
.topbar__left a:hover, .topbar__right a:hover { opacity: 1; }
.topbar__lang {
  opacity: 0.8;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.topbar__center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__arrow {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 1;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
  cursor: pointer;
}
.topbar__arrow:hover { opacity: 0.75; transform: scale(1.08); }
.topbar__arrow .icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.topbar__message {
  position: relative;
  height: 16px;
  width: 260px;
  max-width: 320px;
  overflow: hidden;
  text-align: center;
  flex-shrink: 0;
}
.topbar__message span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.topbar__message span.is-active { opacity: 1; transform: translateY(0); }
.topbar__message span a {
  text-decoration: underline;
  text-underline-offset: 2px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .topbar__left, .topbar__right { display: none; }
  .topbar__inner { grid-template-columns: 1fr; justify-items: center; }
}
@media (max-width: 480px) {
  .topbar__center { gap: 8px; }
  .topbar__arrow { width: 24px; height: 24px; }
  .topbar__arrow .icon { width: 16px; height: 16px; }
  .topbar__message { width: 200px; max-width: 200px; }
  .topbar__message span { font-size: 10px; gap: 6px; }
  .topbar__message span a { display: none; }
}

/* ==================== 7. HEADER & NAVIGATION ==================== */
.header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 0 var(--ink-08);
  transition: box-shadow var(--dur-med) var(--ease);
}
.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header__inner {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.header__logo img {
  height: 22px;
  width: auto;
}

.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  justify-content: center;
}
.nav__link {
  position: relative;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
  opacity: 1;
  transition: opacity var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}
.header__icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  border-radius: 0;
  transition: background var(--dur-fast) var(--ease);
}
.header__icon-btn:hover { background: var(--ink-05); }

.header__badge {
  position: absolute;
  top: 3px; right: 3px;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  border-radius: 0;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast) var(--ease);
}
.header__badge.is-empty { opacity: 0; transform: scale(0); }
.header__badge.bump { animation: badgeBump 0.4s var(--ease); }
@keyframes badgeBump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

@media (max-width: 1180px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .header__logo { justify-self: center; }
}
@media (max-width: 760px) {
  .hamburger { display: none; }
  .header__inner { grid-template-columns: 1fr auto; gap: 16px; }
  .header__logo { justify-self: start; }
  #cartBtn { display: none; }
  .header:has(.header-search.is-open) .header__inner {
    grid-template-columns: 1fr;
  }
  .header:has(.header-search.is-open) .header__actions {
    justify-self: stretch;
    width: 100%;
  }
  .header:has(.header-search.is-open) .header-search {
    flex: 1;
    min-width: 0;
    width: 100%;
  }
  .header:has(.header-search.is-open) .header-search__field {
    width: 100%;
    max-width: none;
  }
}

/* ==================== 8. MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #ececec;
  color: var(--black);
  z-index: 800;
  padding: 20px 0 max(100px, calc(28px + env(safe-area-inset-bottom)));
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 799;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-shrink: 0;
  padding-left: 24px;
  padding-right: 24px;
}
.mobile-menu__top.container-fluid {
  padding-left: 24px;
  padding-right: 24px;
}
.mobile-menu__top .header__logo img {
  filter: none;
  height: 22px;
}
.mobile-menu__top .hamburger--close {
  color: var(--black);
}

.mobile-menu__nav {
  flex: 0 1 auto;
  overflow-y: auto;
  padding: 4px 0 8px;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu__nav ul {
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
.mobile-menu__nav li {
  opacity: 1;
  transform: none;
  transition: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu.is-open .mobile-menu__nav li {
  opacity: 1;
  transform: none;
}
.mobile-menu__nav a {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--black);
  transition: opacity var(--dur-fast) var(--ease);
}
.mobile-menu__nav a:hover {
  opacity: 0.55;
  padding-left: 0;
}

.mobile-menu__social {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin: 28px 24px 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.mobile-menu__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 0;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.mobile-menu__social a:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

@media (max-width: 480px) {
  .mobile-menu__nav ul {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .mobile-menu__nav a {
    font-size: 17px;
    padding: 14px 0;
  }
}

/* ==================== 9. HEADER SEARCH + PANEL ==================== */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
}
.header-search__field {
  display: none;
  align-items: center;
  gap: 10px;
  width: min(320px, 42vw);
  border-bottom: 1px solid var(--black);
  padding: 4px 0 6px;
}
.header-search.is-open .header__icon-btn { display: none; }
.header-search.is-open .header-search__field { display: flex; }
.header-search__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink-55);
}
.header-search__field input {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  background: transparent;
  padding: 4px 0;
}
.header-search__field input::placeholder { color: var(--ink-40); }
.header-search__close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
  transition: opacity var(--dur-fast) var(--ease);
}
.header-search__close:hover { opacity: 0.55; }
.header-search__close .icon { width: 14px; height: 14px; }

.search-backdrop {
  position: fixed;
  left: 0; right: 0;
  top: calc(var(--topbar-h) + var(--header-h));
  bottom: 0;
  background: rgba(0,0,0,0.28);
  z-index: 480;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
}
.search-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  position: fixed;
  left: 0; right: 0;
  top: calc(var(--topbar-h) + var(--header-h));
  z-index: 490;
  background: var(--white);
  border-bottom: 1px solid var(--ink-08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
  max-height: min(70vh, 520px);
  overflow-y: auto;
}
.search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-panel__inner {
  padding-top: 28px;
  padding-bottom: 32px;
}
.search-panel__discover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 40px;
  align-items: start;
}
.search-panel__popular {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.search-panel__side-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
  white-space: nowrap;
  padding-top: 4px;
}
.search-panel__products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.search-panel__product {
  display: block;
  color: inherit;
  transition: opacity var(--dur-fast) var(--ease);
}
.search-panel__product:hover { opacity: 0.7; }
.search-panel__product-media {
  aspect-ratio: 3 / 4;
  background: #f3f3f3;
  overflow: hidden;
  margin-bottom: 10px;
}
.search-panel__product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.search-panel__product-name {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-panel__trending h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.search-panel__trending ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-panel__trending li { margin-bottom: 10px; }
.search-panel__trending a {
  font-size: 14px;
  font-weight: 500;
  transition: opacity var(--dur-fast) var(--ease);
}
.search-panel__trending a:hover { opacity: 0.55; }
.search-panel__trending strong { font-weight: 700; }

.search-panel__results {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.search-panel__empty {
  grid-column: 1 / -1;
  color: var(--ink-40);
  font-size: 14px;
  padding: 8px 0;
}

@media (max-width: 900px) {
  .header:has(.header-search.is-open) .header__logo {
    display: none;
  }
  .search-panel {
    max-height: min(82vh, 640px);
  }
  .search-panel__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .search-panel__discover { grid-template-columns: 1fr; gap: 28px; }
  .search-panel__popular { grid-template-columns: 1fr; }
  .search-panel__side-label {
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 18px;
    padding-top: 0;
  }
  .search-panel__products,
  .search-panel__results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search-panel__products .search-panel__product:nth-child(n + 3),
  .search-panel__results .search-panel__product:nth-child(n + 3) {
    display: none;
  }
  .header-search:not(.is-open) .header-search__field,
  .header-search__field { width: min(220px, 48vw); }
}
@media (max-width: 900px) and (min-width: 761px) {
  .header:has(.header-search.is-open) .header__inner {
    grid-template-columns: auto 1fr;
  }
  .header:has(.header-search.is-open) .header-search__field {
    width: min(100%, 62vw);
    max-width: none;
  }
}
@media (max-width: 760px) {
  .header:has(.header-search.is-open) .header__inner {
    grid-template-columns: 1fr;
  }
  .header:has(.header-search.is-open) .header__actions {
    display: flex;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }
  .header:has(.header-search.is-open) .header-search {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: none;
  }
  .header:has(.header-search.is-open) .header-search__field {
    display: flex;
    width: 100% !important;
    max-width: none !important;
    flex: 1 1 auto;
  }
}
@media (max-width: 560px) {
  .header-search:not(.is-open) .header-search__field,
  .header-search__field { width: min(170px, 46vw); }
  .header:has(.header-search.is-open) .header-search__field {
    width: 100% !important;
    max-width: none !important;
  }
  .search-panel__products,
  .search-panel__results { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

/* ==================== 10. PROMO BANNER ==================== */
.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 270px;
  margin: 0 0 20px;
  padding: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.promo-banner__media {
  position: absolute;
  inset: 0;
}
.promo-banner__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
}
.promo-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 0;
}
.promo-banner__eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 6px;
}
.promo-banner__title {
  margin: 0 0 8px;
}
.promo-banner__title span {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.3vw, 16px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.25;
}
.promo-banner__title span + span { margin-top: 2px; }
.promo-banner__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.promo-banner__links a {
  position: relative;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: opacity var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.promo-banner__links a:hover { opacity: 0.7; border-color: var(--white); }
.promo-banner__terms {
  display: inline-block;
  font-size: 9px;
  opacity: 0.65;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--dur-fast) var(--ease);
}
.promo-banner__terms:hover { opacity: 1; }

@media (max-width: 640px) {
  .promo-banner__links { gap: 8px 12px; }
  .promo-banner__title span { font-size: 11px; }
}

/* ==================== 11. HERO ==================== */
.hero {
  position: relative;
  height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.4s var(--ease), transform 7s linear;
  will-change: transform;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 64px;
  text-align: center;
  will-change: opacity, transform;
}
.hero__eyebrow {
  font-family: var(--font-heading);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0.95;
}
.hero__title {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero__title span { display: block; }
.hero__subtitle {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 16px;
  color: var(--snow-85);
  font-weight: 400;
}
.hero__link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
  transition: opacity var(--dur-fast) var(--ease);
}
.hero__link:hover { opacity: 0.7; }
.hero__content.is-switching .hero__eyebrow,
.hero__content.is-switching .hero__title,
.hero__content.is-switching .hero__subtitle,
.hero__content.is-switching .hero__link {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.55);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
  cursor: pointer;
}
.hero__nav:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.hero__nav .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.hero__nav--prev { left: 28px; }
.hero__nav--next { right: 28px; }

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.hero__dots button {
  width: 8px; height: 8px;
  border-radius: 0;
  border: 1px solid var(--white);
  background: transparent;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.hero__dots button.is-active { background: var(--white); transform: scale(1.25); }

@media (max-width: 900px) {
  .hero__content { padding-bottom: 56px; max-width: 480px; }
  .hero__nav { width: 40px; height: 40px; }
  .hero__nav .icon { width: 18px; height: 18px; }
  .hero__nav--prev { left: 16px; }
  .hero__nav--next { right: 16px; }
}

@media (max-width: 640px) {
  .hero { height: 560px; }
  .hero__content { padding-bottom: 48px; }
  .hero__title { font-size: 26px; }
  .hero__subtitle { font-size: 13px; }
  .hero__nav { width: 36px; height: 36px; }
  .hero__dots { bottom: 20px; }
}

/* ==================== 12. SECTION HEAD ==================== */
section { padding: 130px 0; }
.hero + section, .about, .featured-products, .newsletter { padding-top: 130px; }
.about { padding: 0; }
.newsletter { padding: 110px 0; }
.gallery { padding: 130px 0; }

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head--center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .carousel-nav {
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
}
.section-head--center .section-head__desc {
  margin-left: auto;
  margin-right: auto;
}
.section-head--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.section-head--split > div { max-width: 480px; }

.section-head__eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-55);
  margin-bottom: 16px;
}
.section-head__title,
.select-fit__title,
.about__content h2,
.newsletter h2 {
  font-size: 32px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.section-head__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-65);
  max-width: 420px;
}

/* ==================== 13. SELECT FIT ==================== */
.select-fit,
.hero + .select-fit {
  padding: 32px 0 28px;
}
.select-fit__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}
.select-fit__title {
  font-family: var(--font-heading);
  white-space: nowrap;
}
.select-fit__scale {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
  white-space: nowrap;
}
.select-fit__line {
  display: block;
  width: clamp(48px, 12vw, 160px);
  height: 1px;
  background: var(--ink-12);
  flex-shrink: 1;
}

.select-fit__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 24px 16px;
}
.select-fit__item {
  display: block;
  text-align: center;
  color: var(--black);
  transition: opacity var(--dur-fast) var(--ease);
}
.select-fit__item:hover { opacity: 0.72; }
.select-fit__media {
  position: relative;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  background: transparent;
  margin-bottom: 14px;
}
.select-fit__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.6s var(--ease-out);
}
.select-fit__item:hover .select-fit__media img { transform: scale(1.04); }
.select-fit__item h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .select-fit__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 14px; }
}
@media (max-width: 900px) {
  .select-fit,
  .hero + .select-fit { padding: 28px 0 24px; }
  .select-fit__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 14px; }
  .select-fit__head { gap: 12px; margin-bottom: 20px; }
  .select-fit__line { width: clamp(24px, 8vw, 80px); }
}
@media (max-width: 600px) {
  .select-fit__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .select-fit__title { font-size: 22px; letter-spacing: 0.04em; }
  .select-fit__scale { font-size: 10px; }
  .select-fit__item h3 { font-size: 11.5px; }
}

/* ==================== 14. NEW ARRIVAL ==================== */
.new-arrival {
  padding-top: 48px;
  padding-bottom: 48px;
}
.new-arrival .section-head { margin-bottom: 36px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 16px;
}
@media (max-width: 1180px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; } }

.product-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-card.is-hidden { display: none; }

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  aspect-ratio: 3 / 4;
  width: 100%;
  background: #f3f3f3;
  margin-bottom: 14px;
}
.product-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.6s var(--ease), transform 0.7s var(--ease-out);
}
.product-card__media img.img-second { opacity: 0; }
.product-card:hover .product-card__media img.img-main { opacity: 0; transform: scale(1.04); }
.product-card:hover .product-card__media img.img-second { opacity: 1; transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0;
  z-index: 2;
}
.product-card__badge--sale {
  background: #e11d1d;
  color: var(--white);
  border: 1px solid #e11d1d;
}

.product-card__wishlist {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-fast) var(--ease);
}
.product-card__wishlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease);
  z-index: 0;
}
.product-card__wishlist:hover { color: var(--white); }
.product-card__wishlist:hover::before { transform: scaleX(1); transform-origin: left; }
.product-card__wishlist .icon {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  transition: transform 0.3s var(--ease);
}
.product-card__wishlist.is-active .icon { fill: currentColor; }
.product-card__wishlist:hover .icon { transform: scale(1.1); }

.product-card__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  gap: 8px;
  padding: 14px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease);
  z-index: 2;
}
.product-card:hover .product-card__overlay { transform: translateY(0); opacity: 1; }

.product-card__quickview {
  flex: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius-s);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-fast) var(--ease);
}
.product-card__quickview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease);
  z-index: 0;
}
.product-card__quickview:hover { color: var(--black); }
.product-card__quickview:hover::before { transform: scaleX(1); transform-origin: left; }
.product-card__quickview span { position: relative; z-index: 1; }

.product-card__info {
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.product-card__category {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: opacity var(--dur-fast) var(--ease);
}
.product-card__name a { color: inherit; }
.new-arrival .product-card__name {
  font-size: 13px;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
}
.new-arrival .product-card__category { font-size: 10.5px; }
.new-arrival .product-card__price { font-size: 13px; }
.product-card__price { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.product-card__price del {
  color: var(--black);
  font-weight: 500;
  font-size: 13.5px;
}
.product-card__price-sale {
  color: #e11d1d;
}
.product-card__view {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 10px 12px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur-fast) var(--ease);
}
.product-card__view::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease);
  z-index: 0;
}
.product-card__view:hover { color: var(--white); }
.product-card__view:hover::before { transform: scaleX(1); transform-origin: left; }
.product-card__view span { position: relative; z-index: 1; }

/* ==================== 14b. CAMPAIGN ==================== */
.campaign {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #f4f4f4;
}
.campaign__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.campaign__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-m);
  aspect-ratio: 1 / 1;
  background: #f3f3f3;
}
.campaign__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s var(--ease-out);
}
.campaign__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
  opacity: 0.55;
  transition: opacity var(--dur-med) var(--ease);
  z-index: 0;
}
.campaign__card:hover img { transform: scale(1.08); }
.campaign__card:hover::after { opacity: 0.8; }
.campaign__caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 24px;
  color: var(--white);
  z-index: 1;
}
.campaign__caption span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}
.campaign__caption h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  transform: translateY(10px);
  opacity: 0.92;
  transition: transform var(--dur-med) var(--ease-out);
}
.campaign__card:hover .campaign__caption h3 {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  .campaign { padding-top: 40px; padding-bottom: 40px; }
  .campaign__grid { gap: 14px; }
}
@media (max-width: 760px) {
  .campaign { padding-top: 32px; padding-bottom: 32px; }
  .campaign .container-fluid {
    padding-right: 0;
  }
  .campaign__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 16px;
  }
  .campaign__grid::-webkit-scrollbar { display: none; }
  .campaign__card {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    max-width: none;
    scroll-snap-align: start;
  }
  .campaign__caption h3 { font-size: 18px; }
}

/* ==================== 15. BEST SELLER ==================== */
.best-seller {
  padding-top: 48px;
  padding-bottom: 48px;
}
.best-seller .section-head { margin-bottom: 36px; }
.best-seller .product-card__name {
  font-size: 13px;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
}
.best-seller .product-card__category { font-size: 10.5px; }
.best-seller .product-card__price { font-size: 13px; }

/* ==================== 15b. FEATURED DROP ==================== */
.featured-drop {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 40px);
  background: #ececec;
  color: #111;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
}
.featured-drop__media {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  overflow: hidden;
  background: #ececec;
  padding: 0;
}
.featured-drop__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.featured-drop__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 0;
  background: #ececec;
  min-width: 0;
}
.featured-drop__intro {
  min-width: 0;
}
.featured-drop__eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.featured-drop__title {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #111;
}
.featured-drop__desc {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.62);
  max-width: 42ch;
}
.featured-drop__cta {
  width: fit-content;
}
.featured-drop__slider {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  container-type: inline-size;
  container-name: featured-slider;
}
.featured-drop__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 0 6px;
  min-width: 0;
}
.featured-drop__track::-webkit-scrollbar { display: none; }
.featured-drop__track .product-card {
  flex: 0 0 calc((100% - 14px) / 2);
  width: calc((100% - 14px) / 2);
  max-width: none;
  scroll-snap-align: start;
  background: transparent;
}
.featured-drop__track .product-card__media {
  background: #e4e4e4;
}
.featured-drop__track .product-card__name {
  font-size: 13px;
  min-height: calc(1.35em * 2);
}
.featured-drop__track .product-card__category { font-size: 10.5px; }
.featured-drop__track .product-card__price { font-size: 13px; }
.featured-drop__nav {
  position: absolute;
  /* Center vertically on product image (aspect-ratio 3/4, card = half track) */
  top: calc((((100cqw - 14px) / 2) * 4 / 3) / 2);
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink-12);
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.featured-drop__nav--prev { left: 8px; }
.featured-drop__nav--next { right: 8px; }
.featured-drop__nav .icon { width: 15px; height: 15px; }
.featured-drop__nav:hover:not(:disabled) {
  border-color: #000;
  background: #000;
  color: #fff;
}
.featured-drop__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .featured-drop {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
    margin: 0;
  }
  .featured-drop__media {
    order: 1;
    width: 100%;
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }
  .featured-drop__panel {
    order: 2;
    padding: 0;
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .featured-drop__nav {
    width: 30px;
    height: 30px;
    top: calc((((100cqw - 10px) / 2) * 4 / 3) / 2);
  }
  .featured-drop__nav--prev { left: 4px; }
  .featured-drop__nav--next { right: 4px; }
  .featured-drop__track { gap: 10px; }
  .featured-drop__track .product-card {
    flex: 0 0 calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
  }
}

/* ==================== 16. LOOKBOOK ==================== */
.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.lookbook__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  display: block;
}
.lookbook__item--tall { grid-row: span 2; }
.lookbook__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.lookbook__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
  opacity: 0.55;
  transition: opacity var(--dur-med) var(--ease);
}
.lookbook__item:hover img { transform: scale(1.08); }
.lookbook__item:hover::after { opacity: 0.8; }

.lookbook__caption {
  position: absolute;
  left: 24px; bottom: 22px; right: 24px;
  color: var(--white);
  z-index: 1;
}
.lookbook__caption span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}
.lookbook__caption h3 {
  font-size: 21px;
  transform: translateY(10px);
  opacity: 0.92;
  transition: transform var(--dur-med) var(--ease-out);
}
.lookbook__item:hover .lookbook__caption h3 { transform: translateY(0); opacity: 1; }

@media (max-width: 860px) {
  .lookbook__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
}
@media (max-width: 560px) {
  .lookbook__grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .lookbook__item--tall { grid-row: span 1; }
}

/* ==================== 17. ABOUT BRAND ==================== */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 780px;
}
.about__visual { position: relative; overflow: hidden; }
.about__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px;
  max-width: 620px;
}
.about__content h2 { margin: 8px 0 24px; }
.about__content p { font-size: 15.5px; line-height: 1.85; color: var(--ink-65); margin-bottom: 18px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 28px 0 36px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-08);
}
.stat__number { font-family: var(--font-heading); font-size: 34px; font-weight: 800; }
.stat__plus { font-family: var(--font-heading); font-size: 22px; font-weight: 800; }
.stat p { font-size: 12.5px; color: var(--ink-55); margin-top: 6px; line-height: 1.4; }

@media (max-width: 980px) {
  .about__grid { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .about__visual { aspect-ratio: 16/10; }
  .about__content { padding: 64px 32px; max-width: none; }
  .about__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ==================== 18. FEATURED PRODUCTS CAROUSEL ==================== */
.carousel-nav { display: flex; gap: 10px; }
.carousel-nav__btn {
  width: 48px; height: 48px;
  border: 1px solid var(--ink-12);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.carousel-nav__btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.carousel { overflow: hidden; margin-top: 56px; }
.carousel__track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 32px 20px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track .product-card {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
}
@media (max-width: 600px) {
  .carousel__track .product-card { width: 240px; }
}

/* ==================== 19. FASHION GALLERY ==================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-m);
  aspect-ratio: 1/1;
}
.gallery__item:nth-child(3n+2) { aspect-ratio: 3/4; }
.gallery__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.gallery__item::before {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.5);
  color: var(--white);
  font-size: 34px;
  font-weight: 300;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover::before { opacity: 1; transform: translate(-50%,-50%) scale(1); }

@media (max-width: 900px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery__grid { grid-template-columns: 1fr; } }

/* ==================== 20. NEWS ==================== */
.news {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #fafafa;
}
.news .section-head { margin-bottom: 36px; }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news__card { display: flex; flex-direction: column; }
.news__image {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-m);
  aspect-ratio: 4/3;
  margin-bottom: 24px;
}
.news__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.news__card:hover .news__image img { transform: scale(1.08); }
.news__date {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 10px;
}
.news__body h3 { font-size: 20px; margin-bottom: 12px; }
.news__body h3 a { transition: opacity var(--dur-fast) var(--ease); }
.news__body h3 a:hover { opacity: 0.6; }
.news__body p { font-size: 14.5px; line-height: 1.75; color: var(--ink-65); margin-bottom: 18px; }
.news__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}
.news__link .icon { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.news__link:hover .icon { transform: translateX(4px); }

@media (max-width: 900px) {
  .news .container-fluid {
    padding-right: 0;
  }
  .news__grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 16px;
  }
  .news__grid::-webkit-scrollbar { display: none; }
  .news__card {
    flex: 0 0 min(82vw, 320px);
    width: min(82vw, 320px);
    max-width: none;
    scroll-snap-align: start;
  }
  .news__body h3 { font-size: 18px; }
  .news__body p { font-size: 14px; }
}

/* ==================== 20b. INSTAGRAM FEED ==================== */
.instagram-feed {
  padding-top: 48px;
  padding-bottom: 48px;
}
.instagram-feed .section-head { margin-bottom: 36px; }
.instagram-feed__handle {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-55);
  transition: color var(--dur-fast) var(--ease);
}
.instagram-feed__handle:hover { color: var(--black); }
.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.instagram-feed__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f3f3f3;
}
.instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.instagram-feed__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.instagram-feed__overlay .icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}
.instagram-feed__item:hover img { transform: scale(1.06); }
.instagram-feed__item:hover .instagram-feed__overlay { opacity: 1; }

@media (max-width: 900px) {
  .instagram-feed__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
}
@media (max-width: 560px) {
  .instagram-feed__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}

/* ==================== 21. NEWSLETTER ==================== */
.newsletter {
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 110px 0;
}
.newsletter__media {
  position: absolute;
  inset: 0;
}
.newsletter__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsletter__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.82) 100%);
}
.newsletter__content {
  position: relative;
  z-index: 1;
}
.newsletter__eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.newsletter h2 { margin-bottom: 18px; color: var(--white); }
.newsletter__desc {
  max-width: 480px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.65);
  font-size: 15.5px;
  line-height: 1.75;
}
.newsletter__form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 16px;
}
.newsletter__form input {
  flex: 1;
  color: var(--white);
  font-size: 15px;
  padding: 8px 4px;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter__msg {
  margin-top: 18px;
  font-size: 13.5px;
  min-height: 18px;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.newsletter__msg.is-visible { opacity: 1; }
.newsletter__msg.is-error { color: #ff8a8a; }

@media (max-width: 560px) {
  .newsletter__form { flex-direction: column; align-items: stretch; border-bottom: none; }
  .newsletter__form input { border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 14px; }
  .newsletter__form .btn { justify-content: center; }
}

/* ==================== 22. FOOTER ==================== */
.footer { background: var(--white); padding-top: 56px; border-top: 1px solid var(--ink-08); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.3fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__col--fit ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 0;
}
.footer__col--brand .footer__logo img { height: 24px; margin-bottom: 16px; }
.footer__col--brand p { font-size: 14.5px; line-height: 1.75; color: var(--ink-65); max-width: 320px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid var(--ink-12);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.footer__social a:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.footer__toggle {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  margin: 0 0 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  cursor: default;
}
.footer__toggle-icon {
  display: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 14.5px;
  color: var(--ink-65);
  transition: color var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
}
.footer__col ul a:hover { color: var(--black); padding-left: 4px; }

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-65);
  font-size: 14.5px;
  line-height: 1.6;
}
.footer__contact .icon { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--black); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--ink-08);
  font-size: 13px;
  color: var(--ink-55);
  flex-wrap: wrap;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--black); }

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px 28px; }
  .footer__col--brand { grid-column: span 3; }
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .footer__col--brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 0; }
  .footer__col--brand { grid-column: span 1; margin-bottom: 28px; }
  .footer__col:not(.footer__col--brand) {
    border-bottom: 1px solid var(--ink-08);
  }
  .footer__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 16px 0;
    cursor: pointer;
  }
  .footer__toggle-icon { display: block; }
  .footer__col.is-open .footer__toggle-icon { transform: rotate(180deg); }
  .footer__col:not(.footer__col--brand) > ul {
    display: none;
    padding: 0 0 16px;
  }
  .footer__col.is-open > ul { display: block; }
  .footer__col--fit.is-open > ul { display: grid; }
  .footer__bottom { flex-direction: column; align-items: flex-start; margin-top: 8px; }
}

/* ==================== 23. BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 0;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast);
  box-shadow: var(--shadow-med);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top .icon {
  width: 20px;
  height: 20px;
  color: var(--white);
  stroke: currentColor;
  stroke-width: 2;
}

/* ==================== 23b. MOBILE BOTTOM NAV ==================== */
.bottom-nav {
  display: none;
}

@media (max-width: 760px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    left: 50%;
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 850;
    width: min(92vw, 420px);
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 7px 8px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  }
  .bottom-nav__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  .bottom-nav__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    padding: 11px;
    border-radius: 999px;
    transition: background 0.25s var(--ease), padding 0.25s var(--ease), gap 0.25s var(--ease);
  }
  .bottom-nav__item .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .bottom-nav__label {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: max-width 0.28s var(--ease), opacity 0.2s var(--ease);
  }
  .bottom-nav__badge {
    position: absolute;
    top: 2px;
    right: 6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .bottom-nav__badge.is-empty { display: none; }
  .bottom-nav__item.is-active {
    flex: 1.55 1 0;
  }
  .bottom-nav__item.is-active .bottom-nav__pill {
    background: #2c2c2c;
    gap: 8px;
    padding: 10px 14px;
  }
  .bottom-nav__item.is-active .bottom-nav__label {
    max-width: 90px;
    opacity: 1;
  }
  .bottom-nav__item.is-active .bottom-nav__badge {
    top: 0;
    right: 0;
  }
  body {
    padding-bottom: 88px;
  }
  .back-to-top {
    display: none !important;
  }
}

/* ==================== 24. QUICK VIEW MODAL ==================== */
.quickview {
  position: fixed;
  inset: 0;
  z-index: 950;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.quickview.is-open { visibility: visible; opacity: 1; }
.quickview__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.quickview__panel {
  position: relative;
  background: var(--white);
  width: min(920px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: var(--radius-l);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  transform: translateY(30px) scale(0.98);
  transition: transform var(--dur-med) var(--ease-out);
}
.quickview.is-open .quickview__panel { transform: translateY(0) scale(1); }

.quickview__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 0;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.quickview__close:hover { background: var(--black); color: var(--white); }

.quickview__media {
  display: flex;
  flex-direction: column;
  background: var(--black);
  min-height: 0;
  padding: 0;
  gap: 0;
  overflow: hidden;
}
.quickview__main {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  max-height: min(68vh, 640px);
  background: var(--white);
  overflow: hidden;
}
.quickview__main img {
  width: 100%;
  height: 100%;
  max-height: min(68vh, 640px);
  object-fit: contain;
  object-position: center;
  display: block;
}
.quickview__gallery-wrap {
  position: relative;
  flex-shrink: 0;
  background: var(--white);
  border-top: 1px solid var(--ink-08);
}
.quickview__gallery {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.quickview__gallery::-webkit-scrollbar { display: none; }
.quickview__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--ink-12);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  padding: 0;
  background: var(--white);
  opacity: 0.55;
  transition: opacity var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.quickview__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
}
.quickview__thumb:hover { opacity: 0.85; }
.quickview__thumb.is-active {
  opacity: 1;
  border-color: var(--black);
}
.quickview__gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border: 0;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease);
}
.quickview__gallery-nav[hidden] { display: none; }
.quickview__gallery-nav .icon { width: 14px; height: 14px; }
.quickview__gallery-nav--prev { left: 4px; }
.quickview__gallery-nav--next { right: 4px; }
.quickview__gallery-wrap.is-scrollable .quickview__gallery {
  padding-left: 36px;
  padding-right: 36px;
}

.quickview__info { padding: 48px 44px; display: flex; flex-direction: column; }
.quickview__category { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-55); }
.quickview__info h3 { font-size: 26px; margin: 10px 0 14px; text-align: left; text-transform: none; }
.quickview__price { font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.quickview__price del {
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
}
.quickview__price-sale {
  color: #e11d1d;
  margin-left: 8px;
}
.quickview__desc { font-size: 14.5px; line-height: 1.75; color: var(--ink-65); margin-bottom: 28px; }

.quickview__sizes p, .quickview__qty p {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.quickview__sizes[hidden],
#qvVariantsWrap[hidden],
#qvColorsWrap[hidden],
#qvSizesWrap[hidden] {
  display: none !important;
}
.quickview__size-list { display: flex; gap: 10px; margin-bottom: 18px; }
.quickview__size-list button {
  width: 46px; height: 46px;
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-s);
  font-weight: 600;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.quickview__size-list button:hover { border-color: var(--black); }
.quickview__size-list button.is-active { background: var(--black); color: var(--white); border-color: var(--black); }

.quickview__purchase {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 0;
}
.quickview__qty { margin-bottom: 0; flex-shrink: 0; }
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-s);
  padding: 11px 18px;
  height: 48px;
  box-sizing: border-box;
}
.qty-stepper button { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--black); }
.qty-stepper .icon { width: 20px; height: 20px; stroke-width: 2.4; }
.qty-stepper span { min-width: 20px; text-align: center; font-weight: 700; font-size: 15px; }

.quickview__purchase .btn--solid-dark {
  flex: 1 1 auto;
  justify-content: center;
  align-self: flex-end;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}
.quickview__wishlist {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  gap: 10px;
  box-sizing: border-box;
}
.quickview__wishlist.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.quickview__wishlist.is-active .icon { fill: var(--white); }

@media (max-width: 760px) {
  .quickview__panel { grid-template-columns: 1fr; }
  .quickview__main {
    min-height: 240px;
    max-height: 52vh;
  }
  .quickview__main img { max-height: 52vh; }
  .quickview__thumb { flex-basis: 56px; width: 56px; height: 56px; }
  .quickview__info { padding: 32px 24px; }
  .quickview__purchase { flex-wrap: wrap; }
  .quickview__purchase .btn--solid-dark {
    width: 100%;
    flex: 1 1 100%;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
  }
}

/* ==================== 25. LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 970;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 88vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius-s);
  transform: scale(0.92);
  transition: transform var(--dur-med) var(--ease-out);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 0;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__close { top: 28px; right: 28px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}

/* ==================== 26. TOAST ==================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 20px);
  background: var(--black);
  color: var(--white);
  padding: 16px 26px;
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-med);
  white-space: nowrap;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

@media (max-width: 480px) {
  .toast { left: 20px; right: 20px; transform: translateY(20px); white-space: normal; text-align: center; justify-content: center; }
  .toast.is-visible { transform: translateY(0); }
}

/* ==================== RESPONSIVE ? GLOBAL FINE TUNING ==================== */
@media (max-width: 1180px) {
  section, .gallery { padding: 96px 0; }
  .select-fit,
  .hero + .select-fit { padding: 28px 0 24px; }
  .new-arrival,
  .best-seller,
  .news,
  .instagram-feed { padding-top: 40px; padding-bottom: 40px; }
  .newsletter { padding: 90px 0; }
}
@media (max-width: 760px) {
  :root { --header-h: 58px; }
  section, .gallery { padding: 72px 0; }
  .select-fit,
  .hero + .select-fit { padding: 24px 0 20px; }
  .new-arrival,
  .best-seller,
  .news,
  .instagram-feed { padding-top: 32px; padding-bottom: 32px; }
  .newsletter { padding: 64px 0; }
  .container { padding: 0 22px; }
  .container-fluid { padding: 0 22px; }
  .container-inner { padding: 0 22px; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .section-head { margin-bottom: 42px; }
}

/* ==================== SIDE CART ==================== */
.side-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 960;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
}
.side-cart-backdrop.is-open { opacity: 1; visibility: visible; }

.side-cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(760px, 100%);
  z-index: 970;
  display: flex;
  flex-direction: row;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  background: var(--white);
}
.side-cart.is-open { transform: translateX(0); }

.side-cart__suggest {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink-08);
  background: var(--white);
  min-height: 0;
}
.side-cart__suggest-header {
  padding: 22px 20px;
  border-bottom: 1px solid var(--ink-08);
}
.side-cart__suggest-header h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}
.side-cart__suggest-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.side-cart__suggest-item {
  display: block;
  color: inherit;
  text-decoration: none;
}
.side-cart__suggest-item:hover .side-cart__suggest-name { opacity: 0.65; }
.side-cart__suggest-media {
  background: #f3f3f3;
  overflow: hidden;
  margin-bottom: 10px;
}
.side-cart__suggest-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.side-cart__suggest-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}
.side-cart__suggest-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
.side-cart__suggest-price del {
  color: var(--ink-55);
  font-weight: 500;
  font-size: 12px;
}
.side-cart__suggest-price-sale { color: #e11d1d; }

.side-cart__panel {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.side-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--ink-08);
}
.side-cart__header h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}
.side-cart__close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-cart__close:hover { opacity: 0.6; }
.side-cart__empty {
  padding: 40px 24px;
  color: var(--ink-55);
  font-size: 14px;
  margin: 0;
}
.side-cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.side-cart__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--ink-08);
}
.side-cart__thumb {
  display: block;
  background: #f3f3f3;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.side-cart__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center top;
}
.side-cart__name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}
.side-cart__name:hover { opacity: 0.65; }
.side-cart__variant {
  font-size: 12px;
  color: var(--ink-55);
  margin: 0 0 10px;
}
.side-cart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.side-cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-12);
}
.side-cart__qty button {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.side-cart__qty button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.side-cart__stock {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--ink-55);
}
.side-cart__qty span {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.side-cart__price {
  font-size: 13px;
  font-weight: 700;
}
.side-cart__remove {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-55);
  text-decoration: underline;
}
.side-cart__remove:hover { color: var(--black); }
.side-cart__footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--ink-08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-cart__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 14px;
}
.side-cart__subtotal strong { font-size: 16px; }
.side-cart__footer .btn {
  width: 100%;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .side-cart { width: 100%; }
  .side-cart__suggest { display: none; }
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.page-product .pdp { min-height: 60vh; }
.pdp {
  padding: 32px 0 80px;
}
.pdp > .container-fluid {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
}
.pdp__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin: 0 0 24px;
  padding: 0;
}
.pdp__breadcrumb a:hover { color: var(--black); }
.pdp__breadcrumb-sep { opacity: 0.35; }
.pdp__back {
  font-weight: 700;
  color: var(--black);
  margin-right: 4px;
}
.pdp__layout {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 16px 10px;
  align-items: start;
  margin: 0 0 56px;
}
.pdp__gallery-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 110px;
}
.pdp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: calc((128px * 5) + (12px * 4));
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 0;
  scrollbar-width: none;
}
.pdp__thumbs::-webkit-scrollbar { display: none; }
.pdp__gallery-nav.is-scrollable .pdp__thumbs {
  max-height: calc((128px * 5) + (12px * 4));
}
.pdp__thumb {
  padding: 0;
  border: 1px solid var(--ink-12);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
}
.pdp__thumb.is-active {
  border-color: var(--black);
  border-width: 2px;
}
.pdp__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}
.pdp__thumbs-arrow {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border: none;
  padding: 0;
  cursor: pointer;
}
.pdp__thumbs-arrow .icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.pdp__thumbs-arrow:hover { background: rgba(0, 0, 0, 0.75); }
.pdp__thumbs-arrow--prev { top: 0; }
.pdp__thumbs-arrow--next { bottom: 0; }
.pdp__thumbs-arrow[hidden] { display: none !important; }
.pdp__main {
  background: transparent;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  padding: 0;
}
.pdp__main img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: transparent;
}
.pdp__info {
  padding-top: 0;
  padding-left: 44px;
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 16px);
}
.pdp__info h1 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0 0 12px;
  text-align: left;
}
.pdp__price {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdp__price del {
  color: var(--black);
  font-weight: 500;
  font-size: 15px;
}
.pdp__price-sale { color: #e11d1d; }
.pdp__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-65);
  margin: 0 0 24px;
}
.pdp__stock {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: -8px 0 20px;
}
.pdp__stock.is-instock { color: #2d5016; }
.pdp__stock.is-low { color: #b45309; }
.pdp__stock.is-out { color: #b42318; }
.pdp__stock.is-pending { color: var(--ink-65); font-weight: 500; }
.pdp__purchase .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.pdp__qty button:disabled,
.quickview__qty button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.pdp__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.pdp__label[hidden],
.pdp__colors[hidden],
.pdp__sizes[hidden],
.pdp__size-guide-tip[hidden],
#pdpVariants[hidden] {
  display: none !important;
}
.pdp__size-guide-tip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin: 0 0 14px;
  border: 1px solid var(--ink-12);
  background: var(--white);
}
.pdp__size-guide-tip::after {
  content: '';
  position: absolute;
  left: 18px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  background: var(--white);
  transform: rotate(45deg);
}
.pdp__size-guide-tip .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--black);
}
.pdp__size-guide-tip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-65);
}
.pdp__size-guide-tip button {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: var(--black);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.pdp__size-guide-tip button:hover { opacity: 0.65; }

/* Size Guide Modal */
.size-guide {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
}
.size-guide.is-open {
  opacity: 1;
  visibility: visible;
}
.size-guide__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.size-guide__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(86vh, 820px);
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  transform: translateY(12px);
  transition: transform var(--dur-med) var(--ease);
}
.size-guide.is-open .size-guide__panel { transform: translateY(0); }
.size-guide__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 8px;
}
.size-guide__header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}
.size-guide__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.size-guide__close:hover { opacity: 0.6; }
.size-guide__subtitle {
  margin: 0;
  padding: 0 24px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.size-guide__body {
  overflow: auto;
  padding: 0 24px 28px;
}
.size-guide__image {
  width: 100%;
  display: block;
  background: #f7f7f7;
}
.size-guide__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ink-08);
}
.size-guide__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: center;
}
.size-guide__table th,
.size-guide__table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ink-08);
  white-space: nowrap;
}
.size-guide__table th {
  background: #f3f3f3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}
.size-guide__table tbody tr:nth-child(even) { background: #fafafa; }
.size-guide__table tbody tr:last-child td { border-bottom: none; }
.size-guide__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--ink-55);
  line-height: 1.5;
}
.pdp__colors {
  display: flex;
  gap: 10px;
  margin: 0 0 20px;
}
.pdp__attribute-groups,
.quickview__attribute-groups {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.pdp__variant-group .pdp__label {
  display: block;
  margin-bottom: 8px;
}
.quickview__attribute-groups .quickview__sizes {
  margin-bottom: 0;
}
.pdp__swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ink-12);
  box-shadow: inset 0 0 0 2px var(--white);
  padding: 0;
}
.pdp__swatch.is-active {
  outline: 1px solid var(--black);
  outline-offset: 2px;
}
.pdp__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}
.pdp__size {
  min-width: 44px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--ink-12);
  font-weight: 600;
  font-size: 13px;
}
.pdp__size.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.pdp__size:hover { border-color: var(--black); }
.pdp__purchase {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 10px;
}
.pdp__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-12);
  height: 48px;
  padding: 0 14px;
  gap: 16px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.pdp__qty button {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.pdp__qty .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}
.pdp__qty span { min-width: 20px; text-align: center; font-weight: 700; font-size: 15px; }
.pdp__purchase .btn {
  flex: 1 1 auto;
  justify-content: center;
  align-self: center;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}
.pdp__wishlist {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-12);
  background: #fff;
  color: var(--black);
  cursor: pointer;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.pdp__wishlist .icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.7;
}
.pdp__wishlist.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.pdp__wishlist.is-active .icon { fill: currentColor; }
.pdp__wishlist:hover {
  border-color: var(--black);
}
.pdp__perks {
  list-style: none;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--ink-08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pdp__perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-65);
}
.pdp__perks .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--black);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.pdp__perks strong {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp__details {
  margin: 0 0 48px;
  padding: 40px 0 0;
  border-top: 1px solid var(--ink-08);
  color: #000;
}
.pdp__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--ink-08);
}
.pdp__tab {
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0 0 14px;
  margin: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-55);
  cursor: pointer;
}
.pdp__tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-fast) var(--ease-out);
}
.pdp__tab:hover { color: var(--black); }
.pdp__tab.is-active { color: #000; }
.pdp__tab.is-active::after { transform: scaleX(1); }
.pdp__tab-panels {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.pdp__tab-panel[hidden] { display: none; }
.pdp__tab-panel p {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.75;
  color: #000;
}
.pdp__details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pdp__details li {
  position: relative;
  padding: 0 0 8px 14px;
  font-size: 20px;
  line-height: 1.55;
  color: #000;
  text-transform: lowercase;
}
.pdp__details li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 5px; height: 1px;
  background: #000;
}
.pdp__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp__meta > div {
  display: flex;
  gap: 10px;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
}
.pdp__meta dt {
  font-weight: 600;
  min-width: 52px;
}
.pdp__meta dt::after { content: ':'; }
.pdp__meta dd { margin: 0; }
.pdp__related {
  margin: 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--ink-08);
}
.pdp__related .section-head {
  margin: 0 0 28px;
}
.pdp__related .section-title {
  font-size: clamp(18px, 2vw, 24px);
  margin: 0;
}
.pdp__related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 14px;
}

@media (max-width: 980px) {
  .pdp { padding: 28px 0 64px; }
  .pdp__layout {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px 20px;
    margin-bottom: 40px;
  }
  .pdp__gallery-nav { width: 96px; }
  .pdp__thumb { width: 96px; height: 112px; }
  .pdp__gallery-nav.is-scrollable .pdp__thumbs,
  .pdp__thumbs {
    max-height: calc((112px * 5) + (12px * 4));
  }
  .pdp__info {
    grid-column: 1 / -1;
    position: static;
  }
  .pdp__main img {
    max-height: none;
    width: 100%;
  }
  .pdp__details {
    margin-bottom: 36px;
    padding-top: 28px;
  }
  .pdp__tabs { gap: 8px 18px; }
  .pdp__tab { font-size: 12px; }
  .pdp__related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .page-product .pdp,
  .pdp {
    padding: 16px 0 28px;
  }
  .pdp > .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pdp__breadcrumb {
    margin-bottom: 14px;
    gap: 4px 8px;
    font-size: 11px;
  }
  .pdp__breadcrumb #pdpCrumbName {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
  }
  .pdp__layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }
  .pdp__main {
    order: 1;
    width: 100%;
    min-height: 0;
    padding: 0;
    background: #f5f5f5;
  }
  .pdp__main img {
    width: 100%;
    height: auto;
    max-height: min(70vh, 520px);
    object-fit: contain;
    object-position: center top;
  }
  .pdp__gallery-nav {
    order: 2;
    position: relative;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .pdp__thumbs {
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pdp__gallery-nav.is-scrollable .pdp__thumbs {
    max-height: none;
  }
  .pdp__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 88px;
    scroll-snap-align: start;
  }
  .pdp__thumbs-arrow {
    position: static;
    width: 32px;
    height: 72px;
    flex-shrink: 0;
    background: #111;
  }
  .pdp__thumbs-arrow--prev .icon { transform: rotate(-90deg); }
  .pdp__thumbs-arrow--next .icon { transform: rotate(-90deg); }
  .pdp__info {
    order: 3;
    width: 100%;
    padding-left: 0;
    position: static;
    grid-column: auto;
  }
  .pdp__info h1 {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .pdp__price { margin-bottom: 12px; font-size: 18px; }
  .pdp__desc {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.55;
  }
  .pdp__size-guide-tip {
    margin-bottom: 16px;
  }
  .pdp__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
  }
  .pdp__size {
    min-width: 44px;
    height: 44px;
  }
  .pdp__purchase {
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }
  .pdp__qty {
    flex: 0 0 auto;
    padding: 0 10px;
    gap: 10px;
  }
  .pdp__purchase .btn {
    flex: 1 1 auto;
    min-width: 0;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
  }
  .pdp__purchase .btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .pdp__wishlist {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }
  .pdp__related {
    padding-top: 24px;
  }
  .pdp__related .section-head { margin-bottom: 16px; }
  .pdp__related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 10px; }
  .pdp__related-grid .product-card:nth-child(n + 5) {
    display: none;
  }
  .page-product .footer {
    padding-top: 28px;
  }
  .quickview__purchase .btn--solid-dark {
    width: 100%;
    flex: 1 1 100%;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
  }
}

/* ========================================================================
   SHOP / PLP
   ======================================================================== */
.shop {
  padding: 0 0 80px;
}
.shop__banner {
  position: relative;
  min-height: clamp(260px, 32vw, 380px);
  height: auto;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
  color: #fff;
  margin: 0 0 32px;
  isolation: isolate;
}
.shop__banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.shop__banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.shop__banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.28) 52%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.42) 50%, rgba(0,0,0,0.78) 100%);
}
.shop__banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(40px, 5.5vw, 64px);
}
.shop__banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.shop__banner-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.shop__banner-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}
.shop__banner-text {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 44ch;
}

.shop__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin: 0 0 18px;
}
.shop__breadcrumb a { color: inherit; }
.shop__breadcrumb a:hover { color: var(--black); }
.shop__breadcrumb-sep { opacity: 0.5; }

.shop__header {
  text-align: center;
  margin: 0 0 28px;
}
.shop__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
}

.shop__select-fit {
  padding: 8px 0 32px;
  border-bottom: 1px solid var(--ink-08);
  margin-bottom: 24px;
}
.shop__fit-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 24px 16px;
}
.shop__fit-item {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
  display: block;
  width: 100%;
  max-width: none;
}
.shop__fit-item .select-fit__media {
  margin-bottom: 12px;
}
.shop__fit-item.is-active .select-fit__media {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}
.shop__fit-item.is-active h3 { font-weight: 700; }
.shop__fit-item h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop__toolbar {
  display: flex;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-08);
}
.shop__filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ink-12);
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.shop__filter-toggle .icon { width: 16px; height: 16px; }
.shop__sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #000;
  min-width: 0;
  flex: 1 1 auto;
}
.shop__sort label {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.shop__sort select {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ink-12);
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 13px;
  min-width: 0;
  max-width: 100%;
  width: min(220px, 100%);
}
.shop__count {
  margin: 0 0 0 auto;
  font-size: 13px;
  color: var(--ink-55);
}

.shop__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px 40px;
  align-items: start;
}

.shop__filters {
  position: sticky;
  top: calc(var(--header-h, 72px) + 16px);
}
.shop__filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
}
.shop__filters-head h2 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shop__filters-close {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #000;
}
.shop__filters-close .icon { width: 18px; height: 18px; }
.shop__filter-group {
  padding: 0 0 22px;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--ink-08);
}
.shop__filter-group h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
}
.shop__filter-sublabel {
  margin: -4px 0 10px;
  font-size: 12px;
  color: var(--ink-55);
}
.shop__filter-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #000;
  cursor: pointer;
}
.shop__check input {
  width: 16px;
  height: 16px;
  accent-color: #000;
}
.shop__size-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.shop__size-btn {
  height: 36px;
  border: 1px solid var(--ink-12);
  background: #fff;
  color: #000;
  font-size: 12.5px;
  cursor: pointer;
}
.shop__size-btn.is-active,
.shop__size-btn:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}
.shop__clear-filters {
  width: 100%;
  margin-top: 4px;
}
.shop__filters-backdrop {
  display: none;
}

.shop__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 16px;
}
.shop__empty {
  margin: 40px 0;
  text-align: center;
  font-size: 15px;
  color: var(--ink-55);
}

.shop__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--ink-08);
}
.shop__page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ink-12);
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.shop__page-btn:hover:not(:disabled) {
  border-color: #000;
}
.shop__page-btn.is-active {
  background: #000;
  border-color: #000;
  color: #fff;
}
.shop__page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.shop__page-btn--nav {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.shop__page-ellipsis {
  width: 28px;
  text-align: center;
  color: var(--ink-55);
}

@media (max-width: 1180px) {
  .shop__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .shop__layout { grid-template-columns: 1fr; }
  .shop__filter-toggle { display: inline-flex; }
  .shop__fit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 14px; }
  .shop__filters {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 88vw);
    z-index: 1200;
    background: #fff;
    padding: 20px 18px 28px;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    box-shadow: 8px 0 32px rgba(0,0,0,0.12);
  }
  .shop__filters.is-open { transform: translateX(0); }
  .shop__filters-close { display: inline-flex; align-items: center; justify-content: center; }
  .shop__filters-backdrop:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(0,0,0,0.4);
  }
  .shop__count { margin-left: 0; width: 100%; }
}
@media (max-width: 760px) {
  .shop { padding: 0 0 64px; }
  .shop__banner {
    min-height: 220px;
    margin-bottom: 24px;
    align-items: flex-end;
  }
  .shop__banner-content {
    text-align: left;
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .shop__banner-text {
    margin-left: 0;
    margin-right: 0;
    max-width: 36ch;
  }
  .shop__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
  .shop__fit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 12px; }
  .shop__title { font-size: 26px; }
  .shop__toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    align-items: end;
  }
  .shop__filter-toggle {
    width: 100%;
    justify-content: center;
    height: 42px;
    font-size: 12px;
  }
  .shop__sort {
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .shop__sort label {
    font-size: 11px;
  }
  .shop__sort select {
    width: 100%;
    max-width: none;
    font-size: 12px;
    padding: 0 10px;
  }
  .shop__count {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    width: 100%;
  }
  .shop__grid .product-card__category {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .shop__grid .product-card__name,
  .shop__grid .product-card__name a {
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 600;
    min-height: calc(1.35em * 2);
    margin-bottom: 6px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .shop__grid .product-card__price {
    font-size: 12.5px;
    margin-bottom: 10px;
    gap: 6px;
  }
  .shop__grid .product-card__price del {
    font-size: 11px;
  }
  .shop__grid .product-card__view {
    font-size: 10px;
    padding: 9px 6px;
    letter-spacing: 0.06em;
  }
}

/* ========================================================================
   RESPONSIVE SAFETY - overflow / collision fixes (all pages)
   ======================================================================== */
html {
  overflow-x: hidden;
}
img, video, iframe {
  max-width: 100%;
}
.product-card,
.product-card__info,
.product-card__name,
.pdp__info,
.shop__results,
.featured-drop__panel,
.featured-drop__slider,
.side-cart__item,
.search-panel__inner {
  min-width: 0;
}
.product-card__name,
.product-card__name a {
  overflow-wrap: break-word;
  word-break: normal;
}
.pdp__info h1,
.shop__title,
.featured-drop__title {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .featured-drop {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .side-cart__suggest { width: 260px; }
  .pdp__layout {
    grid-template-columns: 96px minmax(0, 1.15fr) minmax(0, 0.95fr);
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  .side-cart__suggest { width: 260px; }
  .pdp__layout {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .side-cart__suggest { display: none; }
  .side-cart { width: min(420px, 100%); }
  .promo-banner__links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .shop__toolbar {
    gap: 12px 16px;
  }
  .shop__count {
    margin-left: 0;
    width: 100%;
    order: 3;
  }
}

@media (max-width: 760px) {
  .container,
  .container-fluid,
  .container-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .btn {
    padding: 14px 20px;
    letter-spacing: 0.08em;
  }
  .pdp__tabs {
    gap: 6px 14px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pdp__tabs::-webkit-scrollbar { display: none; }
  .pdp__tab {
    flex: 0 0 auto;
    font-size: 11.5px;
    white-space: nowrap;
  }
  .pdp__tab-panel p,
  .pdp__details li,
  .pdp__meta > div {
    font-size: 16px;
  }
  .pdp__qty {
    padding: 0 10px;
    gap: 10px;
  }
  .pdp__purchase .btn span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .shop__banner {
    min-height: 220px;
    height: auto;
  }
  .shop__banner-text { display: block; }
  .shop__fit-item h3 { font-size: 10.5px; }
  .featured-drop__desc {
    font-size: 14px;
  }
  .product-card__view {
    font-size: 10px;
    padding: 9px 8px;
  }
  .header-search:not(.is-open) .header-search__field,
  .header-search__field {
    max-width: min(70vw, 280px);
  }
  .header-search.is-open .header-search__field {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container,
  .container-fluid,
  .container-inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .product-grid,
  .shop__grid,
  .pdp__related-grid {
    gap: 18px 10px;
  }
  .shop__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop__fit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop__fit-item h3 { font-size: 10.5px; }
  .shop__pagination {
    gap: 6px;
  }
  .shop__page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }
  .featured-drop__track .product-card {
    flex: 0 0 calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
  }
  .pdp__sizes {
    gap: 8px;
  }
  .pdp__size {
    min-width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .quickview {
    padding: 12px;
  }
  .quickview__info {
    padding: 24px 18px;
  }
  .footer__legal {
    flex-direction: column;
    gap: 10px;
  }
  .back-to-top {
    display: none !important;
  }
}
/* ==========================================================================
   PAGE TEMPLATES ??? polished mockup pages only (home/shop/pdp untouched)
   ========================================================================== */

/* ---- Shell & rhythm ---- */
.page-shell {
  padding-bottom: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0,0,0,0.035), transparent 60%),
    radial-gradient(900px 500px at 100% 20%, rgba(0,0,0,0.03), transparent 55%),
    #fff;
}
.page-shell__body { padding-top: clamp(28px, 4vw, 48px); }
.page-shell__count,
.page-shell__intro {
  margin: 0 0 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-55);
}

.page-empty {
  text-align: center;
  padding: clamp(72px, 12vw, 120px) 16px;
  border: 1px dashed var(--ink-12);
  background:
    linear-gradient(135deg, rgba(0,0,0,0.02), transparent 40%),
    #fafafa;
}
.page-empty[hidden] {
  display: none !important;
}
.page-empty p {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-empty__sub {
  margin: 0 0 24px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--ink-55) !important;
}

/* ---- Banners ---- */
.page-banner {
  position: relative;
  min-height: clamp(320px, 44vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  isolation: isolate;
}
.page-banner--sm {
  min-height: clamp(240px, 30vw, 360px);
  align-items: flex-end;
}
.page-banner--sm:not(:has(.page-banner__media)) {
  background:
    linear-gradient(115deg, rgba(8,10,14,0.92) 0%, rgba(18,22,30,0.78) 45%, rgba(8,8,8,0.88) 100%),
    url("../images/ui/hero-1.jpg") center/cover;
}
.page-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: pageBannerDrift 18s var(--ease) alternate infinite;
}
@keyframes pageBannerDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 48%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.82) 100%);
}
.page-banner--sm:not(:has(.page-banner__media))::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.45) 100%);
  z-index: 0;
}
.page-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(44px, 6vw, 72px);
}
.page-banner__inner--overlay {
  padding-bottom: clamp(48px, 6.5vw, 80px);
}
.page-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}
.page-banner__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.page-banner__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(36px, 6.5vw, 72px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}
.page-banner__text,
.page-banner__text--dark {
  margin: 18px 0 0;
  max-width: 42ch;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.page-banner--sm .page-banner__title {
  font-size: clamp(30px, 5.2vw, 48px);
  max-width: 20ch;
  letter-spacing: 0.05em;
}
.page-banner--sm .page-banner__text {
  margin-top: 14px;
  max-width: 44ch;
}

/* ---- Sections ---- */
.page-section {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0;
}
.page-section--tight { padding-top: clamp(28px, 4vw, 48px); }
.page-section--muted {
  background:
    linear-gradient(180deg, #f3f3f3 0%, #f7f7f7 40%, #f1f1f1 100%);
  border-block: 1px solid var(--ink-08);
}
.page-section__head {
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 720px;
}
.page-section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: none;
}
.page-section__title {
  margin: 0;
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}
.page-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.page-intro {
  max-width: 680px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.page-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.page-intro p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-65);
}
.page-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap var(--dur-fast) var(--ease);
}
.page-link:hover { gap: 12px; }
.page-link .icon { width: 14px; height: 14px; }
.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.page-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.page-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-75);
  border-bottom: 1px solid var(--ink-08);
}
.page-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--black);
}
.page-list--compact li { font-size: 13px; padding: 8px 0 8px 18px; }
.page-list--compact li::before { top: 15px; }

/* ---- Stats ---- */
.page-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
  overflow: hidden;
}
.page-stat {
  padding: clamp(22px, 3vw, 32px) 18px;
  background: #fff;
  text-align: left;
  transition: background var(--dur-fast) var(--ease);
}
.page-stat:hover { background: #f7f7f7; }
.page-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-stat span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* ---- Steps ---- */
.page-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.page-step {
  position: relative;
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid var(--ink-12);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast) var(--ease);
}
.page-step::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.page-step:hover {
  transform: translateY(-4px);
  border-color: var(--black);
}
.page-step:hover::after { transform: scaleX(1); }
.page-step span {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ink-40);
}
.page-step h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-65);
}

/* ---- FAQ ---- */
.page-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  border-top: 1px solid var(--ink-12);
}
.page-faq__item {
  border: 0;
  border-bottom: 1px solid var(--ink-12);
  background: transparent;
  padding: 0;
}
.page-faq__item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 20px 40px 20px 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color var(--dur-fast) var(--ease);
}
.page-faq__item summary::-webkit-details-marker { display: none; }
.page-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-55);
}
.page-faq__item[open] summary::after { content: '???'; color: var(--black); }
.page-faq__item p {
  margin: 0 0 20px;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-65);
}

/* ---- CTA band ---- */
.page-cta-band {
  position: relative;
  margin-top: 0;
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    linear-gradient(115deg, rgba(0,0,0,0.88) 0%, rgba(12,14,18,0.72) 50%, rgba(0,0,0,0.85) 100%),
    url("../images/ui/campaign-2.jpg") center/cover;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent 0 14px,
    rgba(255,255,255,0.015) 14px 15px
  );
  pointer-events: none;
  z-index: 0;
}
.page-cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.page-cta-band .page-kicker { color: rgba(255,255,255,0.55); }
.page-cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}
.page-cta-band p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}
.page-cta-band .btn--solid-dark,
.page-cta-band .btn--solid-light {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.page-cta-band .btn--solid-dark::before,
.page-cta-band .btn--solid-light::before { background: #111; }
.page-cta-band .btn--solid-dark:hover,
.page-cta-band .btn--solid-light:hover { color: #fff; }
.page-cta-band .btn--outline-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.page-cta-band .btn--outline-dark::before { background: #fff; }
.page-cta-band .btn--outline-dark:hover { color: #111; border-color: #fff; }

/* ---- Chips ---- */
.page-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.page-chips a,
.page-chips span {
  padding: 11px 16px;
  border: 1px solid var(--ink-12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.page-chips a:hover {
  border-color: var(--black);
  background: #fff;
}
.page-chips .is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ---- Split ---- */
.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.page-split--reverse .page-split__media { order: 2; }
.page-split__media {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}
.page-split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.page-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.page-split:hover .page-split__media img { transform: scale(1.04); }
.page-split__body h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.page-split__body > p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-65);
}

/* ---- Quote ---- */
.page-quote {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.88)),
    url("../images/ui/hero-1.jpg") center/cover;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-quote blockquote { margin: 0 auto; max-width: 780px; }
.page-quote p {
  margin: 0 0 20px;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.page-quote cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- Toolbar / wishlist ---- */
.page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-12);
}
.page-toolbar .page-shell__count { margin: 0; }
.page-toolbar__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---- Auth ---- */
.auth {
  max-width: 440px;
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--ink-12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}
.auth__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--ink-12);
}
.auth__tab {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.auth__tab.is-active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.auth__form {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.auth__form.is-active { display: flex; }
.auth__hint {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--ink-55);
  line-height: 1.5;
}
.auth__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.auth__row a { text-decoration: underline; text-underline-offset: 3px; }
.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 440px);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
.auth-layout__visual {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 520px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.14);
}
.auth-layout__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.auth-layout:hover .auth-layout__visual img { transform: scale(1.05); }
.auth-layout__copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82));
}
.auth-layout__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
}
.auth-layout__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.auth-layout__copy .page-kicker { color: rgba(255,255,255,0.5); }
.check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-65);
  line-height: 1.45;
}
.check input { margin-top: 2px; accent-color: #111; }
.check a { text-decoration: underline; text-underline-offset: 2px; }

/* ---- Forms ---- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-65);
}
.field input,
.field select,
.field textarea {
  appearance: none;
  width: 100%;
  border: 1px solid var(--ink-12);
  background: #fafafa;
  color: var(--black);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 15px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--black);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.field input[type="file"] {
  padding: 12px;
  font-size: 13px;
  background: #fff;
}
.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--ink-12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.form-card__title {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-card__title:first-child { margin-top: 0; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.info-panel {
  padding: 28px 24px;
  background: #111;
  color: #fff;
}
.info-panel h2 {
  margin: 0 0 20px;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.info-panel p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}
.info-panel strong {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.info-panel .page-link { color: #fff; }
.info-stack { display: flex; flex-direction: column; gap: 14px; }
.info-stack .info-panel + .info-panel,
.info-stack .store-map {
  /* second panels stay light for variety */
}
.info-stack .info-panel:nth-child(2) {
  background: #f7f7f7;
  color: var(--black);
  border: 1px solid var(--ink-12);
}
.info-stack .info-panel:nth-child(2) p { color: var(--ink-65); }
.info-stack .info-panel:nth-child(2) strong { color: var(--ink-55); }
.info-stack .info-panel:nth-child(2) .page-link { color: var(--black); }

.bank-card {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.info-stack .info-panel:first-child .bank-card:last-of-type { border-bottom: 0; }
.bank-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff !important;
}
.bank-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* ---- Benefits / tiers ---- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 8px;
}
.benefit-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefit-card {
  position: relative;
  padding: 28px 22px 26px;
  border: 1px solid var(--ink-12);
  background:
    linear-gradient(160deg, #fff 0%, #fafafa 100%);
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--black);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.benefit-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-65);
}
.benefit-card .page-link { margin-top: 16px; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tier-card {
  padding: 32px 26px;
  border: 1px solid var(--ink-12);
  background: #fff;
  transition: transform var(--dur-med) var(--ease-out);
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card--featured {
  border-color: var(--black);
  background:
    linear-gradient(165deg, #111 0%, #1a1a1a 55%, #0d0d0d 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(0,0,0,0.22);
  transform: translateY(-8px);
}
.tier-card--featured:hover { transform: translateY(-12px); }
.tier-card--featured .page-list li {
  color: rgba(255,255,255,0.78);
  border-bottom-color: rgba(255,255,255,0.12);
}
.tier-card--featured .page-list li::before { background: #fff; }
.tier-card__label {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.tier-card--featured .tier-card__label { color: rgba(255,255,255,0.5); }
.tier-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier-card__price {
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--ink-65);
}
.tier-card--featured .tier-card__price { color: rgba(255,255,255,0.65); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quote-grid blockquote {
  margin: 0;
  padding: 28px 24px;
  border: 1px solid var(--ink-12);
  background: #fff;
  transition: border-color var(--dur-fast) var(--ease);
}
.quote-grid blockquote:hover { border-color: var(--black); }
.quote-grid p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
}
.quote-grid cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* ---- Lookbook ---- */
.lookbook-page__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.lookbook-page__item {
  position: relative;
  grid-column: span 4;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
  color: #fff;
}
.lookbook-page__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}
.lookbook-page__item--wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}
.lookbook-page__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease);
  filter: saturate(0.92) contrast(1.04);
}
.lookbook-page__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.72) 100%);
  opacity: 0.85;
  transition: opacity var(--dur-med) var(--ease);
}
.lookbook-page__item:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.06);
}
.lookbook-page__item:hover::after { opacity: 1; }
.lookbook-page__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.lookbook-page__cap em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.lookbook-page__cap strong {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.cat-strip__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111;
  color: #fff;
}
.cat-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.cat-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
}
.cat-strip__item:hover img { transform: scale(1.06); }
.cat-strip__item span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 18px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---- News / article ---- */
.news-page__grid { margin: 0; }
.news-page__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.news-featured__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}
.news-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.news-featured:hover .news-featured__media img { transform: scale(1.04); }
.news-featured__body h2 {
  margin: 10px 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.news-featured__body p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-65);
}
.page-news .news__card,
.page-news-detail .news__card {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-08);
}

.article__hero {
  height: clamp(300px, 48vw, 560px);
  overflow: hidden;
  background: #111;
}
.article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: pageBannerDrift 20s var(--ease) alternate infinite;
}
.article__body {
  max-width: 720px;
  margin: 0 auto;
  padding-top: clamp(36px, 5vw, 64px);
}
.article__date {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.article__title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-12);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.article__h2 {
  margin: 36px 0 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article__pull {
  margin: 36px 0;
  padding: 28px 8px;
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}
.article__spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0 28px;
}
.article__spread img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #111;
}
.article__body > p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-75);
}
.article__body .btn { margin: 12px 0 8px; }
.article__back {
  margin-top: 28px !important;
  padding-top: 18px;
  border-top: 1px solid var(--ink-12);
}
.article__back a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Prose / legal ---- */
.prose { max-width: 720px; }
.prose__lead {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.45;
  color: var(--black);
  margin: 0 0 28px;
  font-weight: 500;
}
.prose p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-75);
}
.prose--legal { max-width: 680px; }
.prose--legal h2 {
  margin: 36px 0 12px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.prose .btn { margin-top: 12px; }
.prose--legal code {
  font-size: 12px;
  padding: 2px 6px;
  background: var(--ink-05);
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border: 1px solid var(--ink-12);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
}
.legal-toc a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-55);
  transition: color var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
}
.legal-toc a:hover {
  color: var(--black);
  padding-left: 4px;
}

/* ---- Stores / checkout ---- */
.store-list { display: flex; flex-direction: column; gap: 12px; }
.store-card {
  padding: 24px 22px;
  border: 1px solid var(--ink-12);
  background: #fff;
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-med) var(--ease-out);
}
.store-card:hover {
  border-color: var(--black);
  transform: translateX(4px);
}
.store-card--featured {
  border-color: var(--black);
  background:
    linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: #fff;
}
.store-card--featured p,
.store-card--featured .page-list li {
  color: rgba(255,255,255,0.72);
  border-bottom-color: rgba(255,255,255,0.12);
}
.store-card--featured .page-list li::before { background: #fff; }
.store-card__tag {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.store-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.store-card p {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-65);
}
.store-map {
  min-height: 420px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--ink-55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.04), transparent 40%),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px) 0 0 / 32px 32px,
    #e6e6e6;
  border: 1px solid var(--ink-12);
}
.store-map::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #111;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0,0,0,0.08);
}
.store-map span { position: relative; z-index: 1; margin-top: 56px; }
.store-map--sm { min-height: 220px; }

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
/* Live Woo checkout: never use the legacy 2-col .checkout grid */
form.checkout.woocommerce-checkout,
form.checkout.mischief-checkout,
.mischief-checkout.checkout {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  max-width: none !important;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.checkout .form-card { max-width: none; }
.checkout__summary {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 16px);
  padding: 26px 24px;
  border: 1px solid var(--ink-12);
  background: #111;
  color: #fff;
}
.checkout__summary h2 {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.checkout-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  background: #333;
}
.checkout-item__name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.checkout-item__detail {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.checkout-item__price {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.checkout__empty {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.checkout__empty a { color: #fff; text-decoration: underline; }
.checkout__totals {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout__totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.checkout__grand {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 15px !important;
  font-weight: 700;
  color: #fff !important;
}
.checkout__trust {
  margin: 18px 0 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.checkout__trust p {
  margin: 0 0 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.checkout__summary .page-link { color: #fff; }

/* ---- Timeline ---- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--black);
}
.timeline__item {
  position: relative;
  padding: 28px 22px 8px;
  background: transparent;
}
.timeline__item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 22px;
  width: 9px;
  height: 9px;
  background: #111;
  border-radius: 50%;
}
.timeline__item > span {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ink-55);
}
.timeline__item h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.timeline__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-65);
}

a.header__icon-btn {
  text-decoration: none;
  color: inherit;
}

/* ---- Motion entrance (CSS-only, scoped) ---- */
.page-shell .page-section,
.page-shell .page-cta-band,
.page-shell .page-quote {
  animation: pageFadeUp 0.7s var(--ease-out) both;
}
.page-shell .page-section:nth-of-type(2) { animation-delay: 0.05s; }
.page-shell .page-section:nth-of-type(3) { animation-delay: 0.1s; }
.page-shell .page-section:nth-of-type(4) { animation-delay: 0.14s; }
@keyframes pageFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .page-banner__media img,
  .article__hero img,
  .page-shell .page-section,
  .page-shell .page-cta-band,
  .page-shell .page-quote {
    animation: none !important;
  }
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .split-layout,
  .checkout,
  .page-stats,
  .page-steps,
  .timeline,
  .tier-grid,
  .quote-grid,
  .cat-strip,
  .news-featured,
  .page-split,
  .legal-layout,
  .news-page__grid--3,
  .benefit-grid,
  .benefit-grid--3,
  .auth-layout {
    grid-template-columns: 1fr 1fr;
  }
  .auth-layout { grid-template-columns: 1fr; }
  .auth { max-width: none; }
  .auth-layout__visual { min-height: 320px; aspect-ratio: 16 / 10; }
  .page-split--reverse .page-split__media { order: 0; }
  .checkout__summary { position: static; order: -1; }
  .legal-toc { position: static; }
  .lookbook-page__item,
  .lookbook-page__item--wide { grid-column: span 6; }
  .lookbook-page__item--tall {
    grid-row: span 1;
    aspect-ratio: 4 / 5;
  }
  .tier-card--featured { transform: none; }
  .tier-card--featured:hover { transform: translateY(-4px); }
  .store-map { min-height: 280px; }
}

@media (max-width: 760px) {
  .page-shell { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  .page-banner { min-height: 280px; }
  .page-banner--sm { min-height: 220px; }
  .page-banner__inner,
  .page-banner__inner--overlay {
    padding-top: 44px;
    padding-bottom: 40px;
  }
  .page-banner__eyebrow { margin-bottom: 12px; }
  .page-banner__title { max-width: none; }
  .page-banner__text,
  .page-banner--sm .page-banner__text { max-width: 34ch; }
  .page-stats,
  .page-steps,
  .timeline,
  .tier-grid,
  .quote-grid,
  .cat-strip,
  .news-featured,
  .news-page__grid--3,
  .benefit-grid,
  .benefit-grid--3,
  .field-row,
  .article__spread,
  .split-layout,
  .checkout,
  .page-split,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .lookbook-page__grid { gap: 8px; }
  .lookbook-page__item,
  .lookbook-page__item--wide { grid-column: span 12; }
  .page-cta-band__inner { align-items: flex-start; }
  .page-toolbar__actions .btn { padding: 12px 16px; }
  .article__hero { height: 240px; }
  .form-card,
  .auth { max-width: none; }
  .timeline {
    border-top: 0;
    gap: 0;
  }
  .timeline__item {
    padding-left: 28px;
    border-left: 1px solid var(--ink-12);
  }
  .timeline__item::before {
    left: -5px;
    top: 32px;
  }
}

/* ==========================================================================
   ABOUT PAGE ? creative / interactive (scoped to .page-about only)
   ========================================================================== */
.page-about .page-shell {
  background: #f5f5f5;
  color: #111;
  padding: 0;
  margin: 0;
}
.page-about .page-shell .page-kicker { color: rgba(0,0,0,0.45); }
.page-about .page-shell .page-section__title { color: #111; }
.page-about .page-link { color: #111; }
.page-about .page-link .icon { stroke: currentColor; }

/* Hero */
.about-hero {
  position: relative;
  height: 700px;
  min-height: 700px;
  max-height: 700px;
  margin: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
}
.about-hero__stage {
  position: relative;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
}
.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: none;
  transition: none;
}
.about-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(50,50,50,0.5) 0%, rgba(70,70,70,0.22) 48%, rgba(40,40,40,0.38) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(30,30,30,0.5) 100%);
  pointer-events: none;
}
.about-hero__spot {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(520px 520px at var(--spot-x, 70%) var(--spot-y, 40%), rgba(255,255,255,0.14), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  transition: opacity 0.4s var(--ease);
}
.about-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.about-hero__float {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
  animation: aboutFloat 6s ease-in-out infinite;
}
.about-hero__float--1 { top: 18%; right: 8%; animation-delay: 0s; }
.about-hero__float--2 { top: 42%; left: 6%; animation-delay: 1.2s; }
.about-hero__float--3 { bottom: 28%; right: 16%; animation-delay: 2s; }
@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.about-hero__content {
  position: relative;
  z-index: 5;
  padding-bottom: 56px;
  padding-top: 64px;
  max-width: 920px;
}
.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.about-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.about-hero__title {
  margin: 0 0 18px;
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.about-hero__title > span { display: block; }
.about-hero__title-swap {
  display: inline-block;
  min-width: 8ch;
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.about-hero__title-swap.is-swap {
  opacity: 0;
  transform: translateY(12px);
}
.about-hero__text {
  margin: 0 0 28px;
  max-width: 38ch;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-hero__scroll {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  animation: aboutScrollPulse 2s ease-in-out infinite;
}
.about-hero__scroll .icon { width: 16px; height: 16px; }
@keyframes aboutScrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Marquee */
.about-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(0,0,0,0.08);
  background: #dcdcdc;
  padding: 16px 0;
}
.about-marquee__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: aboutMarquee 28s linear infinite;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  white-space: nowrap;
}
.about-marquee:hover .about-marquee__track { animation-play-state: paused; }
@keyframes aboutMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Manifesto */
.about-manifesto {
  padding: clamp(64px, 10vw, 120px) 0;
  background: #fff;
}
.about-manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.about-manifesto__side h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: #111;
}
.about-manifesto__side p {
  margin: 0 0 18px;
  color: rgba(0,0,0,0.55);
  line-height: 1.65;
}
.about-manifesto__copy {
  margin: 0;
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(0,0,0,0.28);
}
.about-manifesto__copy [data-word] {
  color: rgba(0,0,0,0.28);
  cursor: default;
  transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease);
}
.about-manifesto__copy [data-word]:hover,
.about-manifesto__copy [data-word].is-lit {
  color: #111;
  text-shadow: none;
}

/* Stats */
.about-stats {
  padding: clamp(56px, 8vw, 96px) 0;
  margin: 0;
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(0,0,0,0.05), transparent 60%),
    radial-gradient(600px 240px at 90% 100%, rgba(0,0,0,0.04), transparent 55%),
    #e6e6e6;
}
.about-stats__head {
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 520px;
}
.about-stats__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #111;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}
.about-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 28px 26px 30px;
  background:
    linear-gradient(165deg, #ffffff 0%, #f7f7f7 100%);
  color: #111;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease),
    border-color 0.3s var(--ease),
    background 0.35s var(--ease);
}
.about-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 55%, rgba(0,0,0,0.03));
  pointer-events: none;
}
.about-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 22px 50px rgba(0,0,0,0.1);
}
.about-stat__index {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(0,0,0,0.35);
}
.about-stat__value {
  position: relative;
  z-index: 1;
  margin: 28px 0 14px;
}
.about-stat__value strong {
  display: block;
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  background: linear-gradient(180deg, #111 30%, #444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-stat__label {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
}
.about-stat__meta {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.45);
}
.about-stat__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.about-stat:hover .about-stat__bar {
  transform: scaleX(1);
}

.about-stat--accent {
  background:
    linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 55%, #111 100%);
  color: #fff;
  border-color: #111;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.about-stat--accent::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), transparent 50%);
}
.about-stat--accent .about-stat__index { color: rgba(255,255,255,0.4); }
.about-stat--accent .about-stat__value strong {
  background: linear-gradient(180deg, #fff 20%, #bdbdbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-stat--accent .about-stat__label { color: #fff; }
.about-stat--accent .about-stat__meta { color: rgba(255,255,255,0.5); }
.about-stat--accent .about-stat__bar { background: #fff; }
.about-stat--accent:hover {
  border-color: #111;
  box-shadow: 0 26px 55px rgba(0,0,0,0.28);
}

/* Chapters ? premium bento pillars */
.about-chapters {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0;
  margin: 0;
  background:
    radial-gradient(800px 320px at 80% 0%, rgba(0,0,0,0.03), transparent 55%),
    #f4f4f4;
}
.about-chapters__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.about-chapters__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #111;
}
.about-chapters__intro {
  margin: 0;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.5);
}
.about-chapters__bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, 28vw);
  gap: 12px;
}
.about-pillar {
  position: relative;
  display: block;
  overflow: hidden;
  grid-column: span 3;
  background: #d0d0d0;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease);
}
.about-pillar--hero {
  grid-column: span 6;
  grid-row: span 2;
}
.about-pillar--wide {
  grid-column: span 6;
}
.about-pillar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.9s var(--ease-out);
  filter: none;
}
.about-pillar__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.72) 100%);
  transition: background 0.4s var(--ease);
}
.about-pillar__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-pillar__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
}
.about-pillar h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
}
.about-pillar p {
  margin: 0;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}
.about-pillar--hero p {
  font-size: 14px;
  max-width: 42ch;
}
.about-pillar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.3s var(--ease);
}
.about-pillar__cta .icon {
  width: 14px;
  height: 14px;
}
.about-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.16);
}
.about-pillar:hover img {
  transform: scale(1.06);
}
.about-pillar:hover .about-pillar__overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.78) 100%);
}
.about-pillar:hover .about-pillar__cta {
  gap: 12px;
}

/* Values ? expanding photo strips */
.about-values {
  padding: clamp(56px, 8vw, 96px) 0 0;
  margin: 0;
  background: #e0e0e0;
}
.about-values__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.about-values__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #111;
}
.about-values__lead {
  margin: 0;
  max-width: 32ch;
  color: rgba(0,0,0,0.5);
  font-size: 14px;
  line-height: 1.65;
}
.about-values__strips {
  display: flex;
  height: clamp(480px, 62vw, 640px);
  gap: 3px;
  background: #e0e0e0;
}
.about-vstrip {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: #c8c8c8;
  color: #fff;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
  transition: flex 0.65s var(--ease-out);
}
.about-vstrip.is-active {
  flex: 3.2 1 0;
}
.about-vstrip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: brightness(0.88);
  transition: transform 0.9s var(--ease-out), filter 0.55s var(--ease);
}
.about-vstrip.is-active img {
  transform: scale(1);
  filter: none;
}
.about-vstrip__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.78) 100%);
  transition: opacity 0.45s var(--ease);
}
.about-vstrip.is-active .about-vstrip__veil {
  background:
    linear-gradient(105deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 42%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.7) 100%);
}
.about-vstrip__num {
  position: absolute;
  top: 22px;
  left: 18px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.7;
}
.about-vstrip__label {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  writing-mode: vertical-rl;
  transform: translateX(-50%) rotate(180deg);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s var(--ease), transform 0.45s var(--ease);
}
.about-vstrip.is-active .about-vstrip__label {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) rotate(180deg) translateY(12px);
}
.about-vstrip__body {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 40px);
  right: clamp(22px, 8vw, 80px);
  bottom: clamp(24px, 4vw, 40px);
  max-width: 42ch;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s var(--ease) 0.08s, transform 0.5s var(--ease-out) 0.08s;
  pointer-events: none;
}
.about-vstrip.is-active .about-vstrip__body {
  opacity: 1;
  transform: translateY(0);
}
.about-vstrip__body strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.about-vstrip__body em {
  display: block;
  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

/* Process ? cinematic atelier stage */
.about-process {
  padding: clamp(56px, 8vw, 100px) 0;
  margin: 0;
  background:
    radial-gradient(900px 360px at 70% 20%, rgba(0,0,0,0.035), transparent 60%),
    #f3f3f3;
}
.about-process__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.about-process__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #111;
}
.about-process__lead {
  margin: 0;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.5);
}
.about-process__canvas {
  position: relative;
  min-height: clamp(520px, 68vw, 680px);
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 28px 64px rgba(0,0,0,0.14);
}
.about-process__visual {
  position: absolute;
  inset: 0;
}
.about-process__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s var(--ease), transform 1.1s var(--ease-out);
}
.about-process__visual img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.about-process__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 42%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 28%, rgba(0,0,0,0.55) 100%);
}
.about-process__watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  font-size: clamp(120px, 22vw, 260px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.1);
  pointer-events: none;
  user-select: none;
  transition: opacity 0.4s var(--ease);
}
.about-process__progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  height: 3px;
  background: rgba(255,255,255,0.12);
}
.about-process__progress-bar {
  display: block;
  height: 100%;
  width: var(--p, 25%);
  background: #fff;
  transition: width 0.55s var(--ease-out);
}
.about-process__rail {
  position: absolute;
  z-index: 6;
  left: clamp(18px, 3vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-process__rail::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(255,255,255,0.22);
}
.about-process__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s var(--ease);
}
.about-process__step:hover,
.about-process__step.is-active {
  color: #fff;
}
.about-process__dot {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.35s var(--ease-out);
}
.about-process__step.is-active .about-process__dot {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
  transform: scale(1.08);
}
.about-process__step-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.about-process__step-label i {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.55;
}
.about-process__step-label strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-process__card {
  position: absolute;
  z-index: 6;
  left: clamp(120px, 18vw, 220px);
  bottom: clamp(22px, 4vw, 40px);
  right: clamp(22px, 4vw, 48px);
  max-width: 420px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255,255,255,0.94);
  color: #111;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}
.about-process__counter {
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.about-process__counter em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.about-process__panel h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #111;
}
.about-process__panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.58);
}
.about-process__controls {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.about-process__ctrl {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.about-process__ctrl:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.about-process__ctrl .icon {
  width: 16px;
  height: 16px;
}

/* Reel */
.about-reel {
  padding: clamp(48px, 7vw, 80px) 0 clamp(28px, 4vw, 40px);
  background: #e6e6e6;
  overflow: hidden;
}
.about-reel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.about-reel__hint {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.about-reel__viewport {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 0 18px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.25) transparent;
  scroll-snap-type: x mandatory;
}
.about-reel__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.about-reel__viewport::-webkit-scrollbar { height: 4px; }
.about-reel__viewport::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.25); }
.about-reel__card {
  position: relative;
  flex: 0 0 min(58vw, 280px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d0d0d0;
  color: #fff;
  scroll-snap-align: start;
}
.about-reel__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  filter: saturate(0.92);
}
.about-reel__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.5));
}
.about-reel__card:hover img { transform: scale(1.06); }
.about-reel__card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Timeline ? editorial brand journey */
.about-timeline {
  padding: clamp(56px, 8vw, 100px) 0;
  margin: 0;
  background:
    radial-gradient(900px 340px at 15% 0%, rgba(0,0,0,0.045), transparent 55%),
    #e4e4e4;
}
.about-timeline__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.about-timeline__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #111;
}
.about-timeline__lead {
  margin: 0;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.5);
}
.about-timeline__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
  padding-top: 8px;
}
.about-timeline__line {
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: calc(8px + 7px);
  height: 1px;
  background: rgba(0,0,0,0.12);
  pointer-events: none;
  z-index: 0;
}
.about-timeline__line i {
  display: block;
  height: 100%;
  width: var(--p, 25%);
  background: #111;
  transition: width 0.55s var(--ease-out);
}
.about-timeline__year {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: rgba(0,0,0,0.35);
  transition: color 0.3s var(--ease);
}
.about-timeline__year:hover,
.about-timeline__year.is-active {
  color: #111;
}
.about-timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.25);
  background: #e4e4e4;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.35s var(--ease-out);
}
.about-timeline__year.is-active .about-timeline__dot {
  background: #111;
  border-color: #111;
  box-shadow: 0 0 0 5px rgba(0,0,0,0.08);
  transform: scale(1.1);
}
.about-timeline__year strong {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}
.about-timeline__year em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.about-timeline__canvas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  min-height: clamp(480px, 58vw, 620px);
  overflow: hidden;
  background: #d8d8d8;
  box-shadow: 0 24px 56px rgba(0,0,0,0.1);
}
.about-timeline__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-timeline__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.65s var(--ease), transform 1.05s var(--ease-out);
}
.about-timeline__media img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.about-timeline__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(236,236,236,0.97) 0%, rgba(236,236,236,0.88) 34%, rgba(236,236,236,0.18) 62%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18) 100%);
}
.about-timeline__display {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 4vw, 48px);
  font-size: clamp(96px, 16vw, 180px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(0,0,0,0.08);
  user-select: none;
  pointer-events: none;
}
.about-timeline__story {
  position: relative;
  z-index: 4;
  align-self: end;
  justify-self: end;
  width: min(100%, 420px);
  margin: clamp(20px, 3vw, 36px);
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
  color: #111;
}
.about-timeline__index {
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.about-timeline__index em {
  font-style: normal;
  font-weight: 600;
}
.about-timeline__panel span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
}
.about-timeline__panel h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #111;
}
.about-timeline__panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.58);
}
.about-timeline__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.about-timeline__controls {
  display: flex;
  gap: 8px;
}
.about-timeline__ctrl {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.about-timeline__ctrl:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.about-timeline__ctrl .icon {
  width: 16px;
  height: 16px;
}
.about-timeline__story .page-link {
  color: #111;
}

/* Mosaic */
.about-mosaic {
  padding: clamp(48px, 7vw, 80px) 0;
  background: #e8e8e8;
}
.about-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, 22vw);
  gap: 10px;
}
.about-mosaic__item {
  position: relative;
  overflow: hidden;
  background: #d0d0d0;
  color: #fff;
}
.about-mosaic__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}
.about-mosaic__item--wide { grid-column: span 2; }
.about-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s var(--ease);
  filter: brightness(0.92);
}
.about-mosaic__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.45));
}
.about-mosaic__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.92);
}
.about-mosaic__item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-mosaic__item em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
}
.about-mosaic__item strong {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Quote stack */
.about-quote-stack {
  padding: clamp(64px, 9vw, 110px) 0;
  background: #f2f2f2;
  text-align: center;
  color: #111;
}
.about-quote-stack__inner {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.about-quote-stack__nav {
  appearance: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.about-quote-stack__nav:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}
.about-quote-stack__nav .icon { width: 18px; height: 18px; }
.about-quote-stack__viewport {
  position: relative;
  min-height: 160px;
}
.about-quote-stack__viewport blockquote {
  margin: 0;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.about-quote-stack__viewport blockquote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.about-quote-stack__viewport p {
  margin: 0 0 16px;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.35;
  font-weight: 500;
  color: #111;
}
.about-quote-stack__viewport cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.about-quote-stack__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.about-quote-stack__dots button {
  appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
}
.about-quote-stack__dots button.is-active { background: #222; }

/* CTA */
.about-cta {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.82), rgba(0,0,0,0.7)),
    url("../images/ui/about-hero.jpg") center/cover;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: #fff;
}
.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.about-cta .page-kicker { color: rgba(255,255,255,0.55) !important; }
.about-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  color: #fff;
}
.about-cta p {
  margin: 0;
  max-width: 40ch;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.about-cta .btn--solid-light {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.about-cta .btn--solid-light::before { background: #111; }
.about-cta .btn--solid-light:hover { color: #fff; }
.about-cta .btn--outline-light {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.about-cta .btn--outline-light::before { background: #fff; }
.about-cta .btn--outline-light:hover { color: #111; border-color: #fff; }

/* keep default site footer on about page */

@media (max-width: 980px) {
  .about-manifesto__grid {
    grid-template-columns: 1fr;
  }
  .about-timeline__canvas {
    grid-template-columns: 1fr;
    min-height: 560px;
  }
  .about-timeline__display {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: clamp(88px, 22vw, 140px);
    padding: 24px;
  }
  .about-timeline__story {
    justify-self: stretch;
    width: auto;
    max-width: none;
    margin: auto 16px 16px;
  }
  .about-timeline__shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.15) 40%, rgba(236,236,236,0.92) 100%);
  }
  .about-process__canvas {
    min-height: 600px;
  }
  .about-process__card {
    left: clamp(18px, 4vw, 28px);
    max-width: none;
  }
  .about-process__rail {
    top: auto;
    bottom: auto;
    left: clamp(18px, 4vw, 28px);
    right: clamp(18px, 4vw, 28px);
    transform: none;
    top: 28px;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }
  .about-process__rail::before {
    left: 18px;
    right: 18px;
    top: 21px;
    bottom: auto;
    height: 1px;
    width: auto;
  }
  .about-process__step {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
    flex: 1;
  }
  .about-process__step-label {
    align-items: center;
    text-align: center;
  }
  .about-process__step-label strong {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .about-process__watermark {
    font-size: clamp(100px, 28vw, 180px);
    top: 42%;
  }
  .about-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-chapters__bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(240px, 36vw);
  }
  .about-pillar,
  .about-pillar--hero,
  .about-pillar--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .about-values__strips {
    height: clamp(420px, 70vw, 560px);
  }
  .about-pillar--hero {
    grid-column: span 2;
    min-height: 320px;
  }
  .about-mosaic__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(160px, 28vw);
  }
  .about-mosaic__item--lg {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }
  .about-hero__float--3 { display: none; }
}

@media (max-width: 760px) {
  .about-hero {
    height: 520px;
    min-height: 520px;
    max-height: 520px;
    margin: 0;
    padding: 0;
  }
  .about-hero__float { display: none; }
  .about-stats__grid { grid-template-columns: 1fr; }
  .about-chapters__bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .about-pillar,
  .about-pillar--hero,
  .about-pillar--wide {
    grid-column: span 1;
  }
  .about-pillar--hero { min-height: 320px; }
  .about-chapters__head {
    align-items: flex-start;
  }
  .about-values__head {
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .about-values__strips {
    flex-direction: column;
    height: auto;
    gap: 3px;
  }
  .about-vstrip {
    flex: none !important;
    height: 160px;
    transition: height 0.55s var(--ease-out);
  }
  .about-vstrip.is-active {
    height: 320px;
  }
  .about-vstrip__label {
    writing-mode: horizontal-tb;
    left: 18px;
    bottom: 20px;
    transform: none;
    letter-spacing: 0.14em;
  }
  .about-vstrip.is-active .about-vstrip__label {
    opacity: 0;
    transform: translateY(8px);
  }
  .about-vstrip__body strong {
    font-size: 28px;
  }
  .about-process__head {
    align-items: flex-start;
  }
  .about-process__canvas {
    min-height: 560px;
  }
  .about-process__step-label i {
    display: none;
  }
  .about-process__card {
    padding: 18px;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .about-process__panel h3 {
    font-size: 20px;
  }
  .about-timeline__head {
    align-items: flex-start;
  }
  .about-timeline__year em {
    display: none;
  }
  .about-timeline__year strong {
    font-size: 15px;
  }
  .about-timeline__canvas {
    min-height: 520px;
  }
  .about-timeline__story {
    margin: auto 12px 12px;
    padding: 18px;
  }
  .about-cta__inner { align-items: flex-start; }
  .page-about .page-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-marquee__track,
  .about-hero__float,
  .about-hero__scroll {
    animation: none !important;
  }
}

/* ==========================================================================
   CONTACT PAGE — editorial atelier (scoped to .page-contact only)
   ========================================================================== */
.page-contact .page-shell {
  background: #f3f3f3;
  color: #111;
  padding: 0;
  margin: 0;
  /* Cancel body offset so hero sits flush under fixed header (no white strip) */
  margin-top: calc(0px - var(--topbar-h) - var(--header-h));
}
.page-contact .page-shell .page-kicker { color: rgba(0,0,0,0.45); }
.page-contact .page-link { color: #111; }
.page-contact .page-link .icon { stroke: currentColor; }

/* Hero */
.contact-hero {
  position: relative;
  /* 450px visible below fixed chrome */
  height: calc(450px + var(--topbar-h) + var(--header-h));
  min-height: calc(450px + var(--topbar-h) + var(--header-h));
  max-height: calc(450px + var(--topbar-h) + var(--header-h));
  margin: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.contact-hero__stage {
  position: relative;
  height: 100%;
  margin: 0;
  padding: calc(var(--topbar-h) + var(--header-h)) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: contactHeroZoom 14s ease-out forwards;
}
@keyframes contactHeroZoom {
  to { transform: scale(1); }
}
.contact-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(18,18,18,0.62) 0%, rgba(30,30,30,0.28) 52%, rgba(12,12,12,0.45) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.55) 100%);
}
.contact-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.contact-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.contact-hero__brand {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}
.contact-hero__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.contact-hero__text {
  margin: 0 auto 18px;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.contact-hero__scroll {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4vw, 48px);
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: contactScrollPulse 2.4s ease-in-out infinite;
}
.contact-hero__scroll .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
@keyframes contactScrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Reach cards — 4 columns */
.contact-reach {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
  margin: 0;
  background: #fff;
}
.contact-reach__head {
  max-width: 560px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}
.contact-reach__head h2 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.contact-reach__head > p:last-child {
  margin: 0 auto;
  color: rgba(0,0,0,0.55);
  font-size: 15px;
  line-height: 1.55;
  max-width: 420px;
}
.contact-reach__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.contact-reach__grid > li {
  min-width: 0;
  height: 100%;
}
.contact-reach__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  height: 100%;
  min-height: 220px;
  padding: 24px 22px;
  background: #f3f3f3;
  color: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
a.contact-reach__card:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}
.contact-reach__card--static { cursor: default; }
.contact-reach__index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.35);
}
a.contact-reach__card:hover .contact-reach__index {
  color: rgba(255,255,255,0.45);
}
.contact-reach__label {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-reach__value {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  word-break: break-word;
}
.contact-reach__meta {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  line-height: 1.4;
}
a.contact-reach__card:hover .contact-reach__meta {
  color: rgba(255,255,255,0.55);
}
.contact-reach__arrow {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  opacity: 0.45;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
a.contact-reach__card:hover .contact-reach__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* Write desk */
.contact-desk {
  padding: clamp(56px, 8vw, 100px) 0;
  background: #ececec;
}
.contact-desk__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-desk__form-wrap h2,
.contact-desk__aside h3 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.contact-desk__aside h3 { font-size: clamp(22px, 2.6vw, 28px); }
.contact-desk__intro {
  margin: 0 0 28px;
  color: rgba(0,0,0,0.55);
  font-size: 15px;
  max-width: 380px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-field > span,
.contact-field__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  background: transparent;
  border-radius: 0;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 0.25s var(--ease);
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-bottom-color: #111;
  outline: none;
}
.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-topic {
  appearance: none;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.16);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.65);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contact-topic:hover {
  border-color: #111;
  color: #111;
}
.contact-topic.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}
.contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 8px;
}
.contact-form__hint {
  margin: 0;
  font-size: 12px;
  color: rgba(0,0,0,0.4);
}
.contact-desk__aside {
  background: #fff;
  overflow: hidden;
}
.contact-aside__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.contact-aside__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.contact-desk__aside:hover .contact-aside__media img {
  transform: scale(1.04);
}
.contact-aside__body {
  padding: clamp(22px, 3vw, 32px);
}
.contact-aside__body > p {
  margin: 0 0 18px;
  color: rgba(0,0,0,0.62);
  font-size: 14px;
  line-height: 1.55;
}
.contact-aside__meta {
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}
.contact-aside__meta div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  font-size: 13px;
}
.contact-aside__meta dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.contact-aside__meta dd { margin: 0; font-weight: 600; }
.contact-aside__map {
  position: relative;
  width: 100%;
  height: 250px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #e8e8e8;
}
.contact-aside__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ */
.contact-faq {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #fff;
}
.contact-faq__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.contact-faq__head h2 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.contact-faq__head > p:last-child {
  margin: 0;
  color: rgba(0,0,0,0.55);
  font-size: 15px;
  max-width: 280px;
}
.contact-faq__item {
  border-top: 1px solid rgba(0,0,0,0.14);
}
.contact-faq__item:last-child { border-bottom: 1px solid rgba(0,0,0,0.14); }
.contact-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
}
.contact-faq__item summary::-webkit-details-marker { display: none; }
.contact-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: rgba(0,0,0,0.45);
}
.contact-faq__item[open] summary::after { content: '–'; }
.contact-faq__item p {
  margin: 0 0 20px;
  max-width: 520px;
  color: rgba(0,0,0,0.58);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA */
.contact-cta {
  background: #111;
  color: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
}
.contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.contact-cta .page-kicker { color: rgba(255,255,255,0.5) !important; }
.contact-cta h2 {
  margin: 8px 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.contact-cta p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}
.contact-cta .btn--solid-light {
  border-color: #fff;
  background: #fff;
  color: #111;
}
.contact-cta .btn--solid-light::before { background: #111; }
.contact-cta .btn--solid-light:hover { color: #fff; }

@media (max-width: 980px) {
  .contact-reach__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-desk__layout,
  .contact-faq__layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .contact-hero {
    height: calc(450px + var(--topbar-h) + var(--header-h));
    min-height: calc(450px + var(--topbar-h) + var(--header-h));
    max-height: calc(450px + var(--topbar-h) + var(--header-h));
  }
  .contact-hero__brand {
    font-size: 28px;
    letter-spacing: 0.04em;
  }
  .contact-hero__title { font-size: 12px; }
  .contact-hero__text { font-size: 13px; }
  .contact-reach__grid {
    grid-template-columns: 1fr;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-cta__inner {
    align-items: flex-start;
  }
  .page-contact .page-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero__media img,
  .contact-hero__scroll {
    animation: none !important;
  }
  .contact-hero__media img { transform: none; }
}

/* ==========================================================================
   STORE LOCATOR — editorial / premium (scoped to .page-stores)
   ========================================================================== */
/* overflow-x:hidden on html breaks position:sticky — clip keeps sticky working */
html:has(body.page-stores) {
  overflow-x: clip;
}
.page-stores .page-shell {
  background: #f3f3f3;
  color: #111;
  padding: 0;
  margin: 0;
  margin-top: calc(0px - var(--topbar-h) - var(--header-h));
  overflow: visible;
}
.page-stores .page-shell .page-kicker { color: rgba(0,0,0,0.45); }
.page-stores .page-link { color: #111; }
.page-stores .page-link .icon { stroke: currentColor; }

.stores-hero {
  position: relative;
  height: calc(450px + var(--topbar-h) + var(--header-h));
  min-height: calc(450px + var(--topbar-h) + var(--header-h));
  max-height: calc(450px + var(--topbar-h) + var(--header-h));
  margin: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.stores-hero__stage {
  position: relative;
  height: 100%;
  margin: 0;
  padding: calc(var(--topbar-h) + var(--header-h)) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stores-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stores-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: storesHeroZoom 14s ease-out forwards;
}
@keyframes storesHeroZoom {
  to { transform: scale(1); }
}
.stores-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(18,18,18,0.58) 0%, rgba(30,30,30,0.28) 52%, rgba(12,12,12,0.48) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.55) 100%);
}
.stores-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.stores-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.stores-hero__brand {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}
.stores-hero__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.stores-hero__text {
  margin: 0 auto 18px;
  max-width: 400px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.stores-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.stores-hero__scroll {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4vw, 48px);
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: storesScrollPulse 2.4s ease-in-out infinite;
}
.stores-hero__scroll .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
@keyframes storesScrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

.stores-finder {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #fff;
}
.stores-finder__head {
  max-width: 560px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}
.stores-finder__head h2 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.stores-finder__head > p:last-child {
  margin: 0 auto;
  max-width: 400px;
  color: rgba(0,0,0,0.55);
  font-size: 15px;
  line-height: 1.55;
}
.stores-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.stores-filter {
  appearance: none;
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.16);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.stores-filter:hover {
  border-color: #111;
  color: #111;
}
.stores-filter.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}
.stores-finder__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.stores-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stores-item {
  position: relative;
  padding: 22px 22px 20px;
  background: #f3f3f3;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.stores-item:hover {
  transform: translateY(-2px);
}
.stores-item.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.stores-item.is-hidden { display: none; }
.stores-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.stores-item__index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.35);
}
.stores-item.is-active .stores-item__index { color: rgba(255,255,255,0.45); }
.stores-item__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.stores-item.is-active .stores-item__tag { color: rgba(255,255,255,0.55); }
.stores-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.stores-item__addr,
.stores-item__meta {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0,0,0,0.58);
}
.stores-item.is-active .stores-item__addr,
.stores-item.is-active .stores-item__meta { color: rgba(255,255,255,0.68); }
.stores-item__perks {
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.stores-item__perks li {
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  padding-left: 14px;
  position: relative;
}
.stores-item__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 1px;
  background: currentColor;
}
.stores-item.is-active .stores-item__perks li { color: rgba(255,255,255,0.65); }
.stores-item__dir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
}
.stores-item__dir .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.stores-map {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 16px);
}
.stores-map__frame {
  position: relative;
  width: 100%;
  height: min(560px, 70vh);
  overflow: hidden;
  background: #e8e8e8;
}
.stores-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.stores-map__caption {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.45);
}

.stores-services {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #ececec;
}
.stores-services__head {
  max-width: 520px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}
.stores-services__head h2 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.stores-services__head > p:last-child {
  margin: 0 auto;
  color: rgba(0,0,0,0.55);
  font-size: 15px;
}
.stores-services__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stores-service {
  min-height: 200px;
  padding: 28px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stores-service__index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.35);
}
.stores-service h3 {
  margin: 0;
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
}
.stores-service p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.55);
}

.stores-tips {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #fff;
  overflow: visible;
}
.stores-tips .container-fluid {
  overflow: visible;
}
.stores-tips__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  overflow: visible;
}
.stores-tips__col {
  position: relative;
  min-width: 0;
}
.stores-tips__sticky {
  position: relative;
  width: 100%;
}
.stores-tips__sticky.is-fixed {
  position: fixed;
  z-index: 5;
}
.stores-tips__sticky.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.stores-tips__sticky h2 {
  margin: 8px 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.stores-tips__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.stores-tips__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  font-size: 15px;
  line-height: 1.45;
}
.stores-tips__list span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.35);
}
.stores-tips__media {
  overflow: hidden;
  min-height: 110vh;
  background: #e8e8e8;
}
.stores-tips__media img {
  width: 100%;
  height: 100%;
  min-height: 110vh;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.stores-tips__media:hover img { transform: scale(1.03); }

.stores-cta {
  background: #111;
  color: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
}
.stores-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.stores-cta .page-kicker { color: rgba(255,255,255,0.5) !important; }
.stores-cta h2 {
  margin: 8px 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stores-cta p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}
.stores-cta .btn--solid-light {
  border-color: #fff;
  background: #fff;
  color: #111;
}
.stores-cta .btn--solid-light::before { background: #111; }
.stores-cta .btn--solid-light:hover { color: #fff; }

@media (max-width: 980px) {
  .stores-finder__layout,
  .stores-tips__layout {
    grid-template-columns: 1fr;
  }
  .stores-map { position: static; }
  .stores-map__frame { height: 360px; }
  .stores-tips__sticky {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
  }
  .stores-tips__media,
  .stores-tips__media img {
    min-height: 420px;
  }
  .stores-services__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .stores-hero__brand { font-size: 28px; letter-spacing: 0.04em; }
  .stores-hero__title { font-size: 12px; }
  .stores-hero__text { font-size: 13px; }
  .stores-cta__inner { align-items: flex-start; }
  .page-stores .page-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .stores-hero__media img,
  .stores-hero__scroll {
    animation: none !important;
  }
  .stores-hero__media img { transform: none; }
}

/* ==========================================================================
   LOOKBOOK INDEX — staggered editorial masonry (scoped to .page-lookbook)
   ========================================================================== */
.page-lookbook .page-shell {
  background: #fff;
  color: #111;
  padding: 0;
  margin: 0;
  margin-top: calc(0px - var(--topbar-h) - var(--header-h));
}

.lb-hero {
  position: relative;
  height: calc(450px + var(--topbar-h) + var(--header-h));
  min-height: calc(450px + var(--topbar-h) + var(--header-h));
  max-height: calc(450px + var(--topbar-h) + var(--header-h));
  margin: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.lb-hero__stage {
  position: relative;
  height: 100%;
  margin: 0;
  padding: calc(var(--topbar-h) + var(--header-h)) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lb-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.08);
  animation: lbHeroZoom 16s ease-out forwards;
}
@keyframes lbHeroZoom {
  to { transform: scale(1); }
}
.lb-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(10,10,10,0.72) 0%, rgba(18,18,18,0.28) 48%, rgba(8,8,8,0.52) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.58) 100%);
}
.lb-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.lb-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.lb-hero__brand {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}
.lb-hero__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.lb-hero__text {
  margin: 0 auto 16px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.lb-hero__meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.lb-hero__meta span + span::before {
  content: "·";
  margin-right: 18px;
  color: rgba(255,255,255,0.4);
}
.lb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lb-hero__scroll {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}
.lb-hero__scroll .icon { width: 14px; height: 14px; stroke: currentColor; }
.lb-hero__scroll:hover { color: #fff; }

.lb-feed {
  padding: clamp(36px, 5vw, 56px) 0 clamp(48px, 6vw, 80px);
  background: #fff;
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 12px);
}

.lb-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 0 0 clamp(36px, 5vw, 64px);
}
.lb-filter {
  appearance: none;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.lb-filter:hover,
.lb-filter.is-active {
  background: #111;
  color: #fff;
}

.lb-featured {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.lb-featured__head {
  margin-bottom: clamp(24px, 3vw, 36px);
}
.lb-featured__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
}
.lb-featured__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.lb-featured__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.lb-featured__grid .lb-card__media {
  aspect-ratio: 16 / 9;
}

.lb-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 40px) clamp(14px, 1.5vw, 20px);
}
.lb-pool { display: none; }

.lb-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.lb-card.is-visible { opacity: 1; transform: translateY(0); }
.lb-card.is-hidden { display: none !important; }

.lb-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ececea;
}
.lb-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.lb-card:hover .lb-card__media img { transform: scale(1.04); }

.lb-card__body {
  padding-top: 14px;
  text-align: center;
}
.lb-card__kicker {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.lb-card__title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.lb-card__title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.lb-card__title a:hover { opacity: 0.5; }
.lb-card__cat {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
}

.lb-feed__empty {
  margin: 48px 0 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-55);
}

.lb-pager {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 24px;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 8px;
}
.lb-pager__progress {
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: rgba(0,0,0,0.12);
}
.lb-pager__progress span {
  display: block;
  height: 100%;
  width: 28%;
  background: #111;
  transition: width 0.35s var(--ease);
}
.lb-pager__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.lb-pager__btn {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #111;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.lb-pager__btn:hover:not(:disabled) { opacity: 0.55; }
.lb-pager__btn.is-active {
  background: #111;
  color: #fff;
}
.lb-pager__btn:disabled { opacity: 0.28; cursor: default; }
.lb-pager__ellipsis {
  width: 22px;
  text-align: center;
  color: var(--ink-55);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .lb-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .page-lookbook .lb-feed > .container-fluid {
    padding-left: 22px;
    padding-right: 22px;
  }
  .lb-filters { gap: 8px; margin-bottom: 32px; }
  .lb-filter { padding: 9px 16px; font-size: 10px; }
  .lb-featured__grid { grid-template-columns: 1fr; }
  .lb-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
  .lb-pager { flex-wrap: wrap; }
  .page-lookbook .page-shell { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
}
@media (prefers-reduced-motion: reduce) {
  .lb-card { transition: none !important; transform: none !important; opacity: 1 !important; }
  .lb-card__media img { transition: none; }
  .lb-hero__media img { animation: none !important; transform: none; }
}

/* ==========================================================================
   LOOKBOOK DETAIL — editorial campaign (scoped to .page-lookbook-detail)
   ========================================================================== */
.page-lookbook-detail .page-shell {
  background: #fafafa;
  color: #111;
  padding: 0;
  margin: 0;
  margin-top: calc(0px - var(--topbar-h) - var(--header-h));
}

/* Kill global `section { padding: 130px 0 }` on this page */
.page-lookbook-detail section,
.page-lookbook-detail .ld-hero,
.page-lookbook-detail .ld-intro,
.page-lookbook-detail .ld-looks,
.page-lookbook-detail .ld-products,
.page-lookbook-detail .ld-related {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

.ld-progress {
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  z-index: 600;
  height: 2px;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}
body.admin-bar .ld-progress {
  top: calc(var(--wp-admin--admin-bar--height, 32px) + var(--topbar-h) + var(--header-h));
}
.ld-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #111;
  transition: width 0.08s linear;
}

/* —— Hero: cinematic dark —— */
.ld-hero {
  position: relative;
  height: calc(78vh + var(--topbar-h) + var(--header-h));
  min-height: calc(560px + var(--topbar-h) + var(--header-h));
  max-height: calc(900px + var(--topbar-h) + var(--header-h));
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
}
.ld-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ld-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.04);
}
.ld-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.28) 46%, rgba(8,8,8,0.45) 100%),
    linear-gradient(180deg, rgba(8,8,8,0.35) 0%, transparent 38%, rgba(8,8,8,0.82) 100%);
}
.ld-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ld-hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding-top: calc(var(--topbar-h) + var(--header-h) + 28px);
  padding-bottom: 36px;
  box-sizing: border-box;
}
.ld-hero__inner {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: end;
}
.ld-hero__back {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ld-hero__back:hover { color: #fff; }
.ld-hero__back .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.ld-hero__copy {
  align-self: end;
  max-width: min(520px, 100%);
  padding-bottom: 8px;
}
.ld-hero__kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.ld-hero__title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 7.2vw, 84px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
}
.ld-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ld-hero__meta span + span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  vertical-align: middle;
  transform: translateY(-1px);
}
.ld-hero__scroll {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}
.ld-hero__scroll:hover { color: #fff; }
.ld-hero__scroll .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transform: rotate(90deg);
}

/* —— Intro: editorial note —— */
.ld-intro {
  padding: clamp(56px, 8vw, 104px) 0 !important;
  background: #fff;
}
.ld-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  max-width: 980px;
}
.ld-intro__label {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
}
.ld-intro__lead {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #111;
}
.ld-intro__body {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,0.58);
}
.ld-intro__body > *:first-child { margin-top: 0; }
.ld-intro__body > *:last-child { margin-bottom: 0; }
.ld-intro__body p { margin: 0 0 1em; }

/* —— Looks: full-width 4-column carousel —— */
.ld-looks {
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 88px) !important;
  background: #fff;
  overflow: hidden;
}
.ld-looks__top {
  margin-bottom: clamp(28px, 4vw, 48px);
}
.ld-looks__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.ld-looks__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.ld-looks-carousel {
  position: relative;
  width: 100%;
  container-type: inline-size;
  container-name: ld-looks-carousel;
}
.ld-looks-carousel__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  min-width: 0;
}
.ld-looks-carousel__track::-webkit-scrollbar { display: none; }
.ld-looks-carousel__item {
  flex: 0 0 calc((100% - 30px) / 4);
  width: calc((100% - 30px) / 4);
  scroll-snap-align: start;
  min-width: 0;
}
.ld-looks-carousel__media {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ececea;
}
.ld-looks-carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.ld-looks-carousel__media:hover img {
  transform: scale(1.04);
}
.ld-looks-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.ld-looks-carousel__nav .icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.ld-looks-carousel__nav--prev { left: 16px; }
.ld-looks-carousel__nav--next { right: 16px; }
.ld-looks-carousel__nav:hover:not(:disabled) {
  border-color: #111;
  background: #111;
  color: #fff;
}
.ld-looks-carousel__nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

/* —— Related products —— */
.ld-products {
  padding: clamp(48px, 7vw, 88px) 0 !important;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.ld-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.ld-products__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.ld-products__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.ld-products__note {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,0.5);
}
.ld-products__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.22);
  padding-bottom: 4px;
  transition: border-color 0.2s ease, gap 0.25s ease;
}
.ld-products__all:hover {
  border-color: #111;
  gap: 14px;
}
.ld-products__all .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.ld-products__grid {
  margin: 0;
}

/* —— Related campaigns —— */
.ld-related {
  padding: clamp(56px, 8vw, 96px) 0 !important;
  background: #111;
  color: #fff;
}
.ld-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.ld-related__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.ld-related__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.ld-related__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ld-related__all:hover { color: #fff; }
.ld-related__all .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.ld-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.ld-related__card {
  display: block;
  color: #fff;
  text-decoration: none;
}
.ld-related__media {
  display: block;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 16px;
}
.ld-related__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  opacity: 0.92;
}
.ld-related__card:hover .ld-related__media img {
  transform: scale(1.04);
  opacity: 1;
}
.ld-related__meta {
  display: grid;
  gap: 8px;
}
.ld-related__meta em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.ld-related__meta strong {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .ld-intro__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ld-looks-carousel__item {
    flex: 0 0 calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
  }
  .ld-looks-carousel__nav {
    width: 38px;
    height: 38px;
  }
  .ld-looks-carousel__nav--prev { left: 10px; }
  .ld-looks-carousel__nav--next { right: 10px; }
  .ld-related__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .ld-products__head,
  .ld-related__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .ld-hero {
    height: calc(70vh + var(--topbar-h) + var(--header-h));
    min-height: calc(460px + var(--topbar-h) + var(--header-h));
  }
  .ld-hero__content {
    padding-top: calc(var(--topbar-h) + var(--header-h) + 20px);
    padding-bottom: 28px;
  }
  .ld-hero__copy { max-width: none; }
  .ld-hero__title { font-size: clamp(34px, 11vw, 48px); }
  .ld-hero__scroll { display: none; }
  .ld-hero__meta span + span::before { margin-right: 16px; }
  .ld-looks-carousel__item {
    flex: 0 0 calc((100% - 10px) / 1.15);
    width: calc((100% - 10px) / 1.15);
  }
  .ld-looks-carousel__nav { display: none; }
  .page-lookbook-detail .page-shell {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ld-looks-carousel__media img,
  .ld-related__media img {
    transition: none;
  }
  .ld-looks-carousel__media:hover img,
  .ld-related__card:hover .ld-related__media img {
    transform: none;
  }
}


/* ==========================================================================

   NEWS PAGE — editorial journal (scoped to .page-news only)

   ========================================================================== */

.page-news .page-shell {

  background: #f3f3f3;

  color: #111;

  padding: 0;

  margin: 0;

  margin-top: calc(0px - var(--topbar-h) - var(--header-h));

}

.page-news .page-shell .page-kicker { color: rgba(0,0,0,0.45); }



.ns-hero {

  position: relative;

  height: calc(450px + var(--topbar-h) + var(--header-h));

  min-height: calc(450px + var(--topbar-h) + var(--header-h));

  max-height: calc(450px + var(--topbar-h) + var(--header-h));

  margin: 0;

  padding: 0;

  color: #fff;

  overflow: hidden;

  background: #111;

}

.ns-hero__stage {

  position: relative;

  height: 100%;

  margin: 0;

  padding: calc(var(--topbar-h) + var(--header-h)) 0 0;

  display: flex;

  align-items: center;

  justify-content: center;

}

.ns-hero__media {

  position: absolute;

  inset: 0;

  z-index: 0;

}

.ns-hero__media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 40%;

  transform: scale(1.06);

  animation: nsHeroZoom 14s ease-out forwards;

}

@keyframes nsHeroZoom {

  to { transform: scale(1); }

}

.ns-hero__veil {

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:

    linear-gradient(115deg, rgba(12,12,12,0.68) 0%, rgba(20,20,20,0.3) 50%, rgba(8,8,8,0.5) 100%),

    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.55) 100%);

}

.ns-hero__grain {

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  opacity: 0.045;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

}

.ns-hero__content {

  position: relative;

  z-index: 3;

  width: 100%;

  max-width: 640px;

  margin: 0 auto;

  padding: 0 32px;

  text-align: center;

}

.ns-hero__brand {

  margin: 0 0 6px;

  font-family: var(--font-heading);

  font-size: clamp(28px, 5vw, 48px);

  font-weight: 800;

  letter-spacing: 0.06em;

  line-height: 0.95;

  text-transform: uppercase;

}

.ns-hero__title {

  margin: 0 0 10px;

  font-family: var(--font-heading);

  font-size: clamp(12px, 1.4vw, 15px);

  font-weight: 600;

  letter-spacing: 0.28em;

  text-transform: uppercase;

  color: rgba(255,255,255,0.78);

}

.ns-hero__text {

  margin: 0 auto 18px;

  max-width: 380px;

  font-size: 14px;

  line-height: 1.5;

  color: rgba(255,255,255,0.82);

}

.ns-hero__actions {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 10px;

}

.ns-hero__scroll {

  position: absolute;

  z-index: 4;

  right: clamp(20px, 4vw, 48px);

  bottom: 20px;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: rgba(255,255,255,0.8);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.22em;

  text-transform: uppercase;

  background: none;

  border: 0;

  padding: 0;

  cursor: pointer;

  animation: nsScrollPulse 2.4s ease-in-out infinite;

}

.ns-hero__scroll .icon {

  width: 14px;

  height: 14px;

  stroke: currentColor;

  fill: none;

  stroke-width: 1.6;

}

@keyframes nsScrollPulse {

  0%, 100% { transform: translateY(0); opacity: 0.7; }

  50% { transform: translateY(6px); opacity: 1; }

}



/* Feed */

.ns-feed {

  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);

  background: #fff;

}

.ns-feed__head {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 24px;

  flex-wrap: wrap;

  margin-bottom: clamp(28px, 4vw, 40px);

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(0,0,0,0.08);

}

.ns-feed__head h2 {

  margin: 8px 0 0;

  font-family: var(--font-heading);

  font-size: clamp(28px, 4vw, 44px);

  font-weight: 800;

  letter-spacing: -0.02em;

  line-height: 1.05;

}

.ns-filters {

  display: flex;

  flex-wrap: wrap;

  gap: 4px 20px;

}

.ns-filter {

  padding: 8px 0;

  border: 0;

  background: none;

  color: rgba(0,0,0,0.4);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  cursor: pointer;

  position: relative;

  transition: color 0.25s ease;

}

.ns-filter::after {

  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: 4px;

  height: 1px;

  background: #111;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.3s ease;

}

.ns-filter:hover { color: #111; }

.ns-filter.is-active { color: #111; }

.ns-filter.is-active::after { transform: scaleX(1); }

.ns-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px 40px;
  align-items: start;
}
.ns-layout__main { min-width: 0; }

.ns-featured {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ns-featured.is-hidden { display: none; }
.ns-featured__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ececea;
  min-height: 280px;
}
.ns-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 10;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.ns-featured:hover .ns-featured__media img { transform: scale(1.04); }
.ns-featured__flag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: #111;
  color: #fff;
  padding: 7px 12px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ns-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.ns-featured__cat {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
}
.ns-featured__body h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-transform: uppercase;
}
.ns-featured__body h2 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.ns-featured__body h2 a:hover { opacity: 0.55; }
.ns-featured__body > p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,0.55);
}
.ns-featured__by {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ns-featured__by img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  background: #ececea;
}
.ns-featured__by span { display: flex; flex-direction: column; gap: 2px; }
.ns-featured__by strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ns-featured__by em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
}

.ns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 22px;
}
.ns-list .ns-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
}
.ns-card__badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  background: #fff;
  color: #111;
  padding: 6px 10px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ns-list .ns-card__body time {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

.ns-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.ns-widget {
  padding: 22px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}
.ns-widget h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ns-widget--brand { text-align: center; }
.ns-widget__photo {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  overflow: hidden;
  background: #ececea;
}
.ns-widget__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ns-widget__photo--logo img { object-fit: contain; padding: 12px; }
.ns-widget__kicker {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.ns-widget--brand h3 { margin-bottom: 8px; }
.ns-widget--brand > p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,0.55);
}
.ns-widget--brand .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  font-size: 11px;
}

.ns-widget__stories { list-style: none; margin: 0; padding: 0; }
.ns-widget__stories li + li { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.06); }
.ns-widget__stories a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.ns-widget__stories img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: #ececea;
}
.ns-widget__stories strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.ns-widget__stories time {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.ns-widget__stories a:hover strong { opacity: 0.55; }

.ns-widget__cats { list-style: none; margin: 0; padding: 0; }
.ns-widget__cats li + li { border-top: 1px solid rgba(0,0,0,0.06); }
.ns-widget__cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ns-widget__cats em {
  font-style: normal;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.ns-widget__cats a:hover { opacity: 0.55; }

.ns-widget__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ns-widget__tags a {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  transition: background 0.2s ease, color 0.2s ease;
}
.ns-widget__tags a:hover { background: #111; color: #fff; }

.ns-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: clamp(20px, 3vw, 28px) clamp(14px, 2vw, 22px);

}

.ns-card {

  display: flex;

  flex-direction: column;

  min-width: 0;

}

.ns-card.is-hidden { display: none; }

.ns-card__media {

  display: block;

  overflow: hidden;

  background: #1a1a1a;

  aspect-ratio: 4 / 5;

  margin-bottom: 14px;

}

.ns-card__media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);

}

.ns-card:hover .ns-card__media img { transform: scale(1.05); }

.ns-card__meta {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 10px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: rgba(0,0,0,0.4);

}

.ns-card__meta em {

  font-style: normal;

  color: #111;

}

.ns-card__body h3 {

  margin: 0 0 8px;

  font-family: var(--font-heading);

  font-size: clamp(15px, 1.35vw, 18px);

  font-weight: 800;

  letter-spacing: -0.015em;

  line-height: 1.2;

}

.ns-card__body h3 a {

  color: inherit;

  text-decoration: none;

  transition: opacity 0.25s ease;

}

.ns-card__body h3 a:hover { opacity: 0.55; }

.ns-card__body > p {

  margin: 0 0 12px;

  font-size: 13px;

  line-height: 1.55;

  color: rgba(0,0,0,0.55);

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;

}

.ns-card__link {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #111;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  text-decoration: none;

  transition: opacity 0.25s ease;

}

.ns-card__link .icon {

  width: 14px;

  height: 14px;

  stroke: currentColor;

  fill: none;

  stroke-width: 1.6;

  transition: transform 0.25s ease;

}

.ns-card__link:hover { opacity: 0.55; }

.ns-card__link:hover .icon { transform: translateX(4px); }



.ns-empty {

  margin: 48px 0 0;

  text-align: center;

  color: rgba(0,0,0,0.45);

  font-size: 14px;

}



/* CTA */

.ns-cta {

  background: #111;

  color: #fff;

  padding: clamp(48px, 7vw, 80px) 0;

}

.ns-cta__inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 28px;

  flex-wrap: wrap;

}

.ns-cta .page-kicker { color: rgba(255,255,255,0.5) !important; }

.ns-cta h2 {

  margin: 8px 0 10px;

  font-family: var(--font-heading);

  font-size: clamp(26px, 3.5vw, 40px);

  font-weight: 800;

  letter-spacing: -0.02em;

}

.ns-cta p {

  margin: 0;

  max-width: 420px;

  color: rgba(255,255,255,0.65);

  font-size: 15px;

}

.ns-cta__actions {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

}

.ns-cta .btn--solid-light {

  border-color: #fff;

  background: #fff;

  color: #111;

}

.ns-cta .btn--solid-light::before { background: #111; }

.ns-cta .btn--solid-light:hover { color: #fff; }



@media (max-width: 1100px) {
  .ns-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 36px 24px; }
  .ns-featured { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 980px) {
  .ns-layout { grid-template-columns: 1fr; }
  .ns-side { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .ns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
}
@media (max-width: 700px) {
  .ns-hero__brand { font-size: 28px; letter-spacing: 0.04em; }
  .ns-hero__title { font-size: 12px; }
  .ns-hero__text { font-size: 13px; }
  .ns-feed__head { align-items: flex-start; flex-direction: column; }
  .ns-featured { grid-template-columns: 1fr; margin-bottom: 28px; padding-bottom: 28px; }
  .ns-list,
  .ns-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ns-side { grid-template-columns: 1fr; }
  .ns-cta__inner { align-items: flex-start; }
  .page-news .page-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {

  .ns-hero__media img,

  .ns-hero__scroll {

    animation: none !important;

  }

  .ns-hero__media img,

  .ns-card__media img { transform: none; }

}

/* ==========================================================================
   NEWS DETAIL — editorial article (scoped to .page-news-detail only)
   ========================================================================== */
.page-news-detail .page-shell {
  background: #f3f3f3;
  color: #111;
  padding: 0;
  margin: 0;
  margin-top: calc(0px - var(--topbar-h) - var(--header-h));
}
.page-news-detail .page-shell .page-kicker { color: rgba(0,0,0,0.45); }

.nd-hero {
  position: relative;
  height: calc(520px + var(--topbar-h) + var(--header-h));
  min-height: calc(520px + var(--topbar-h) + var(--header-h));
  margin: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.nd-hero__stage {
  position: relative;
  height: 100%;
  margin: 0;
  padding: calc(var(--topbar-h) + var(--header-h)) 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.nd-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nd-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: ndHeroZoom 16s ease-out forwards;
}
@keyframes ndHeroZoom {
  to { transform: scale(1); }
}
.nd-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.78) 100%);
}
.nd-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nd-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px 56px;
  text-align: center;
}
.nd-hero__brand {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nd-hero__kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.nd-hero__title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.nd-hero__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.nd-hero__scroll {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4vw, 48px);
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  animation: ndScrollPulse 2.4s ease-in-out infinite;
}
.nd-hero__scroll .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
@keyframes ndScrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

.nd-article {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  background: #fff;
}
.nd-article__lead {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.nd-article__lead p {
  margin: 0 0 20px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
  color: rgba(0,0,0,0.72);
  font-weight: 450;
}
.nd-article__lead p:last-child { margin-bottom: 0; }

.nd-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 clamp(40px, 6vw, 72px);
}
.nd-spread__item {
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 5;
}
.nd-spread__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.nd-spread__item:hover img { transform: scale(1.04); }

.nd-article__body {
  max-width: 680px;
  margin: 0 auto;
}
.nd-article__body h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.nd-article__body > p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,0,0,0.65);
}
.nd-article__body blockquote {
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-align: center;
}
.nd-article__body blockquote p {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111;
}
.nd-article__body blockquote cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.nd-list {
  list-style: none;
  margin: 8px 0 32px;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.nd-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 15px;
  font-weight: 500;
}
.nd-list li span {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.35);
}
.nd-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.nd-back {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.nd-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.nd-back a:hover { opacity: 0.5; }
.nd-back .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.nd-related {
  padding: clamp(48px, 7vw, 80px) 0;
  background: #f3f3f3;
}
.nd-related__head {
  margin-bottom: clamp(24px, 4vw, 36px);
}
.nd-related__head h2 {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nd-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 24px) clamp(12px, 1.8vw, 20px);
}
.nd-card {
  min-width: 0;
}
.nd-card__media {
  display: block;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 5;
  margin-bottom: 12px;
}
.nd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.nd-card:hover .nd-card__media img { transform: scale(1.05); }
.nd-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.nd-card__meta em {
  font-style: normal;
  color: #111;
}
.nd-card__body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.nd-card__body h3 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.nd-card__body h3 a:hover { opacity: 0.55; }

@media (max-width: 980px) {
  .nd-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nd-spread {
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .nd-hero {
    height: calc(460px + var(--topbar-h) + var(--header-h));
    min-height: calc(460px + var(--topbar-h) + var(--header-h));
  }
  .nd-hero__content {
    padding: 0 20px 48px;
    text-align: left;
  }
  .nd-hero__meta { justify-content: flex-start; }
  .nd-hero__title { font-size: 26px; }
  .nd-spread {
    grid-template-columns: 1fr;
  }
  .nd-spread__item { aspect-ratio: 16 / 10; }
  .nd-related__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-news-detail .page-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .nd-hero__media img,
  .nd-hero__scroll {
    animation: none !important;
  }
  .nd-hero__media img,
  .nd-spread__item img,
  .nd-card__media img { transform: none; }
}

/* ==========================================================================
   CONFIRM PAYMENT — editorial desk (scoped to .page-confirm only)
   ========================================================================== */
.page-confirm .page-shell {
  background: #f3f3f3;
  color: #111;
  padding: 0;
  margin: 0;
  margin-top: calc(0px - var(--topbar-h) - var(--header-h));
}
.page-confirm .page-shell .page-kicker { color: rgba(0,0,0,0.45); }
.page-confirm .page-link { color: #111; }
.page-confirm .page-link .icon { stroke: currentColor; }

.cp-hero {
  position: relative;
  height: calc(450px + var(--topbar-h) + var(--header-h));
  min-height: calc(450px + var(--topbar-h) + var(--header-h));
  max-height: calc(450px + var(--topbar-h) + var(--header-h));
  margin: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.cp-hero__stage {
  position: relative;
  height: 100%;
  margin: 0;
  padding: calc(var(--topbar-h) + var(--header-h)) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-hero__media { position: absolute; inset: 0; z-index: 0; }
.cp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: cpHeroZoom 14s ease-out forwards;
}
@keyframes cpHeroZoom { to { transform: scale(1); } }
.cp-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(12,12,12,0.7) 0%, rgba(20,20,20,0.32) 52%, rgba(8,8,8,0.55) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.55) 100%);
}
.cp-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cp-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.cp-hero__brand {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}
.cp-hero__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.cp-hero__text {
  margin: 0 auto 18px;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.cp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.cp-hero__scroll {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4vw, 48px);
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  animation: cpScrollPulse 2.4s ease-in-out infinite;
}
.cp-hero__scroll .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
@keyframes cpScrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

.cp-steps {
  padding: clamp(48px, 7vw, 80px) 0;
  background: #fff;
}
.cp-steps__head {
  max-width: 560px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}
.cp-steps__head h2 {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cp-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.cp-steps__list li {
  padding: 28px 24px;
  background: #f3f3f3;
  min-height: 180px;
}
.cp-steps__list span {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(0,0,0,0.35);
}
.cp-steps__list h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cp-steps__list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.55);
}

.cp-desk {
  padding: clamp(56px, 8vw, 100px) 0;
  background: #ececec;
}
.cp-desk__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.cp-desk__form-wrap h2,
.cp-aside__block h3 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cp-aside__block h3 { font-size: clamp(22px, 2.6vw, 28px); }
.cp-desk__intro {
  margin: 0 0 28px;
  color: rgba(0,0,0,0.55);
  font-size: 15px;
  max-width: 380px;
}
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cp-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.cp-field input,
.cp-field select,
.cp-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease;
}
.cp-field textarea { resize: vertical; min-height: 96px; }
.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  border-color: #111;
}
.cp-field input[type="file"] {
  padding: 12px;
  background: #f7f7f7;
}
.cp-form__hint {
  margin: 0;
  font-size: 12px;
  color: rgba(0,0,0,0.45);
}

.cp-aside {
  display: grid;
  gap: 16px;
}
.cp-aside__block {
  padding: 28px 24px;
  background: #fff;
}
.cp-aside__note {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.55);
}
.cp-banks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cp-banks li {
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: grid;
  gap: 4px;
}
.cp-banks li:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.cp-banks strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cp-banks span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.cp-banks em {
  font-style: normal;
  font-size: 12px;
  color: rgba(0,0,0,0.45);
}
.cp-help {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.cp-help li {
  display: grid;
  gap: 4px;
}
.cp-help span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.cp-help a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.cp-help a:hover { opacity: 0.55; }

.cp-faq {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #fff;
}
.cp-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.cp-faq__intro h2 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cp-faq__intro p:last-child {
  margin: 0;
  max-width: 320px;
  color: rgba(0,0,0,0.55);
  font-size: 15px;
  line-height: 1.55;
}
.cp-faq__list { display: grid; gap: 0; }
.cp-faq__item {
  border-top: 1px solid rgba(0,0,0,0.1);
}
.cp-faq__item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.cp-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cp-faq__item summary::-webkit-details-marker { display: none; }
.cp-faq__item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: rgba(0,0,0,0.35);
  line-height: 1;
}
.cp-faq__item[open] summary::after { content: "–"; }
.cp-faq__item p {
  margin: 0 0 22px;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.55);
}

@media (max-width: 980px) {
  .cp-steps__list,
  .cp-desk__layout,
  .cp-faq__layout,
  .cp-form__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .cp-hero__brand { font-size: 28px; letter-spacing: 0.04em; }
  .cp-hero__title { font-size: 12px; }
  .cp-hero__text { font-size: 13px; }
  .page-confirm .page-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .cp-hero__media img,
  .cp-hero__scroll { animation: none !important; }
  .cp-hero__media img { transform: none; }
}


/* ==========================================================================
   MEMBERSHIP — gold member program (scoped to .page-membership)
   Data aligned with official Mischief membership benefits & FAQ
   ========================================================================== */
.page-membership {
  --mb-bg: #141414;
  --mb-bg-2: #1a1a1a;
  --mb-gold: #c5a059;
  --mb-gold-soft: rgba(197, 160, 89, 0.72);
  --mb-gold-dim: rgba(197, 160, 89, 0.35);
  --mb-serif: "Cormorant Garamond", Georgia, serif;
}
.page-membership .page-shell {
  background: var(--mb-bg);
  color: var(--mb-gold);
  padding: 0;
  margin: 0;
  margin-top: calc(0px - var(--topbar-h) - var(--header-h));
}
.page-membership .footer {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.mb-hero {
  position: relative;
  padding: calc(var(--topbar-h) + var(--header-h) + 48px) 0 clamp(56px, 8vw, 88px);
  overflow: hidden;
  background: var(--mb-bg);
  text-align: center;
}
.mb-hero__pattern,
.mb-benefits__pattern,
.mb-faq__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: radial-gradient(circle at 20% 20%, var(--mb-gold) 0.6px, transparent 1px),
    radial-gradient(circle at 80% 40%, var(--mb-gold) 0.5px, transparent 1px),
    radial-gradient(circle at 40% 70%, var(--mb-gold) 0.55px, transparent 1px);
  background-size: 72px 72px, 96px 96px, 84px 84px;
}
.mb-hero__inner {
  position: relative;
  z-index: 1;
}
.mb-hero__brand {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mb-gold-soft);
}
.mb-hero__title,
.mb-section-title {
  margin: 0 0 14px;
  font-family: var(--mb-serif);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mb-gold);
  line-height: 1;
}
.mb-hero__text {
  margin: 0 auto 36px;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--mb-gold-soft);
}
.mb-hero__card {
  display: flex;
  justify-content: center;
  margin: 0 auto 32px;
  perspective: 900px;
}
.mb-gold-card {
  width: min(100%, 420px);
  aspect-ratio: 1.68 / 1;
  padding: 28px 30px;
  border: 1px solid var(--mb-gold-dim);
  background:
    linear-gradient(145deg, rgba(197,160,89,0.12) 0%, transparent 42%, rgba(197,160,89,0.08) 100%),
    #0d0d0d;
  color: var(--mb-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotateY(-8deg) rotateX(4deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  animation: mbCardIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes mbCardIn {
  from { opacity: 0; transform: rotateY(-8deg) rotateX(4deg) translateY(24px); }
  to { opacity: 1; transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
}
.mb-gold-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.mb-gold-card__logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.mb-gold-card__mark {
  width: 40px;
  height: 40px;
  color: var(--mb-gold);
  opacity: 0.85;
}
.mb-gold-card__bottom span {
  font-family: var(--mb-serif);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mb-btn-gold {
  border-color: var(--mb-gold) !important;
  background: var(--mb-gold) !important;
  color: #111 !important;
}
.mb-btn-gold::before { background: #111 !important; }
.mb-btn-gold:hover { color: var(--mb-gold) !important; }
.mb-btn-ghost {
  border-color: var(--mb-gold-dim) !important;
  background: transparent !important;
  color: var(--mb-gold) !important;
}
.mb-btn-ghost::before { background: var(--mb-gold) !important; }
.mb-btn-ghost:hover { color: #111 !important; }

.mb-benefits,
.mb-join,
.mb-faq,
.mb-cta {
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 12px);
}
.mb-benefits {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--mb-bg-2);
  overflow: hidden;
}
.mb-benefits .container-fluid,
.mb-faq .container-fluid { position: relative; z-index: 1; }
.mb-section-title {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
  font-size: clamp(36px, 6vw, 56px);
}
.mb-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  max-width: 920px;
  margin: 0 auto;
}
.mb-benefit {
  text-align: center;
  padding: 8px 12px;
}
.mb-benefit__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: var(--mb-gold);
}
.mb-benefit__icon svg {
  width: 100%;
  height: 100%;
}
.mb-benefit h3 {
  margin: 0 0 12px;
  font-family: var(--mb-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mb-gold);
}
.mb-benefit p {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--mb-gold-soft);
}
.mb-benefit p:last-child { margin-bottom: 0; }

.mb-join {
  padding: clamp(56px, 8vw, 88px) 0;
  background: #0f0f0f;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  text-align: center;
}
.mb-join__inner { max-width: 640px; margin: 0 auto; }
.mb-join__kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mb-gold-soft);
}
.mb-join h2 {
  margin: 0 0 14px;
  font-family: var(--mb-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--mb-gold);
}
.mb-join p {
  margin: 0 auto 28px;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--mb-gold-soft);
}

.mb-faq {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--mb-bg);
  overflow: hidden;
}
.mb-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 40px);
}
.mb-faq__col {
  display: grid;
  gap: 28px;
  align-content: start;
}
.mb-faq__item h3 {
  margin: 0 0 10px;
  font-family: var(--mb-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--mb-gold);
}
.mb-faq__item p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--mb-gold-soft);
}
.mb-faq__item p:last-child { margin-bottom: 0; }
.mb-faq__item strong { color: var(--mb-gold); font-weight: 600; }

.mb-cta {
  padding: clamp(48px, 7vw, 72px) 0;
  background: var(--mb-bg-2);
  border-top: 1px solid rgba(197, 160, 89, 0.12);
}
.mb-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mb-cta h2 {
  margin: 8px 0 8px;
  font-family: var(--mb-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--mb-gold);
}
.mb-cta p {
  margin: 0;
  color: var(--mb-gold-soft);
  font-size: 14px;
}

@media (max-width: 980px) {
  .mb-benefits__grid,
  .mb-faq__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .mb-gold-card { transform: none; }
  @keyframes mbCardIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (max-width: 700px) {
  .mb-hero { padding-top: calc(var(--topbar-h) + var(--header-h) + 36px); }
  .mb-cta__inner { align-items: flex-start; }
  .page-membership .page-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .mb-gold-card { animation: none; }
}

/* ==========================================================================
   LOGIN / REGISTER — editorial auth desk (scoped to .page-login only)
   ========================================================================== */
.page-login .page-shell {
  background: #f3f3f3;
  color: #111;
  padding: 0;
  margin: 0;
  margin-top: calc(0px - var(--topbar-h) - var(--header-h));
}
.page-login .page-shell .page-kicker { color: rgba(0,0,0,0.45); }
.page-login .page-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
}
.page-login .page-link .icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.lg-hero {
  position: relative;
  height: calc(450px + var(--topbar-h) + var(--header-h));
  min-height: calc(450px + var(--topbar-h) + var(--header-h));
  max-height: calc(450px + var(--topbar-h) + var(--header-h));
  margin: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.lg-hero__stage {
  position: relative;
  height: 100%;
  margin: 0;
  padding: calc(var(--topbar-h) + var(--header-h)) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lg-hero__media { position: absolute; inset: 0; z-index: 0; }
.lg-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: lgHeroZoom 14s ease-out forwards;
}
@keyframes lgHeroZoom { to { transform: scale(1); } }
.lg-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(12,12,12,0.72) 0%, rgba(20,20,20,0.34) 52%, rgba(8,8,8,0.58) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.55) 100%);
}
.lg-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.lg-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.lg-hero__brand {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}
.lg-hero__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.lg-hero__text {
  margin: 0 auto 18px;
  max-width: 400px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.lg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lg-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  animation: lgScrollPulse 2.4s ease-in-out infinite;
}
.lg-hero__scroll .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
@keyframes lgScrollPulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

.lg-desk {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #f3f3f3;
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 12px);
}
.lg-desk__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}
.lg-desk__intro h2 {
  margin: 8px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.lg-desk__lead {
  margin: 0 0 28px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.55);
}
.lg-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.lg-notes li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.lg-notes strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lg-notes span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,0.55);
}

.lg-auth {
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}
.lg-auth__notice:empty { display: none; }
.lg-auth__notice { margin: 0 0 16px; }
.page-login .lg-auth .auth__tabs {
  margin-bottom: 28px;
}
.page-login .lg-auth .auth__form {
  gap: 18px;
}
.page-login .lg-auth .auth__form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.lg-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}
.lg-field input {
  appearance: none;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fafafa;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #111;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lg-field input:focus {
  outline: none;
  border-color: #111;
  background: #fff;
}
.lg-field input::placeholder { color: rgba(0,0,0,0.35); }

.lg-faq {
  padding: clamp(56px, 8vw, 88px) 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 12px);
}
.lg-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.lg-faq__intro h2 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.lg-faq__intro p:last-child {
  margin: 0;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,0.55);
}
.lg-faq__list {
  border-top: 1px solid rgba(0,0,0,0.12);
}
.lg-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.lg-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.lg-faq__item summary::-webkit-details-marker { display: none; }
.lg-faq__item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: rgba(0,0,0,0.35);
  line-height: 1;
}
.lg-faq__item[open] summary::after { content: "–"; }
.lg-faq__item p {
  margin: 0 0 22px;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.55);
}

.lg-cta {
  padding: clamp(48px, 7vw, 72px) 0;
  background: #111;
  color: #fff;
}
.lg-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lg-cta .page-kicker { color: rgba(255,255,255,0.45); }
.lg-cta h2 {
  margin: 8px 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.lg-cta p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.lg-cta .btn--solid-dark {
  border-color: #fff !important;
  background: #fff !important;
  color: #111 !important;
}
.lg-cta .btn--solid-dark::before { background: #111 !important; }
.lg-cta .btn--solid-dark:hover { color: #fff !important; }

@media (max-width: 980px) {
  .lg-desk__layout,
  .lg-faq__layout {
    grid-template-columns: 1fr;
  }
  .lg-auth { max-width: 480px; }
}
@media (max-width: 700px) {
  .lg-hero__brand { font-size: 28px; letter-spacing: 0.04em; }
  .lg-hero__title { font-size: 12px; }
  .lg-hero__text { font-size: 13px; }
  .lg-cta__inner { align-items: flex-start; }
  .page-login .page-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .lg-hero__media img,
  .lg-hero__scroll { animation: none !important; }
  .lg-hero__media img { transform: none; }
}

/* ==========================================================================
   MOBILE POLISH — max-width only (desktop untouched)
   Aligns redesigned pages with bottom-nav @760, heroes, forms, lookbook UI
   ========================================================================== */

@media (max-width: 760px) {
  /* Bottom-nav clearance for page-scoped shells that reset padding: 0 */
  .page-contact .page-shell,
  .page-stores .page-shell,
  .page-news .page-shell,
  .page-news-detail .page-shell,
  .page-confirm .page-shell,
  .page-membership .page-shell,
  .page-login .page-shell,
  .page-lookbook .page-shell,
  .page-lookbook-detail .page-shell {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  /* Editorial heroes — shorter on phone; desktop heights unchanged */
  .contact-hero,
  .stores-hero,
  .ns-hero,
  .cp-hero,
  .lg-hero,
  .lb-hero {
    height: calc(360px + var(--topbar-h) + var(--header-h));
    min-height: calc(360px + var(--topbar-h) + var(--header-h));
    max-height: calc(360px + var(--topbar-h) + var(--header-h));
  }
  .nd-hero {
    height: calc(400px + var(--topbar-h) + var(--header-h));
    min-height: calc(400px + var(--topbar-h) + var(--header-h));
    max-height: calc(400px + var(--topbar-h) + var(--header-h));
  }
  .about-hero {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
  }

  /* Avoid double horizontal padding on hero content + container-fluid */
  .contact-hero__content,
  .stores-hero__content,
  .ns-hero__content,
  .cp-hero__content,
  .lg-hero__content,
  .nd-hero__content,
  .lb-hero__content {
    padding-left: 0;
    padding-right: 0;
  }

  /* Hero CTA groups wrap cleanly */
  .contact-hero__actions,
  .stores-hero__actions,
  .ns-hero__actions,
  .cp-hero__actions,
  .lg-hero__actions,
  .lb-hero__actions,
  .hero__actions {
    gap: 8px;
    width: 100%;
  }
  .contact-hero__actions .btn,
  .stores-hero__actions .btn,
  .ns-hero__actions .btn,
  .cp-hero__actions .btn,
  .lg-hero__actions .btn,
  .lb-hero__actions .btn,
  .hero__actions .btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    padding-left: 14px;
    padding-right: 14px;
    white-space: normal;
  }

  /* CTA bands — full-width friendly buttons */
  .contact-cta .btn,
  .stores-cta .btn,
  .ns-cta .btn,
  .mb-cta .btn,
  .lb-cta .btn,
  .lg-cta .btn,
  .page-cta-band .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
  .mb-cta__inner,
  .ns-cta__inner,
  .lb-cta__inner,
  .stores-cta__inner,
  .contact-cta__inner,
  .lg-cta__inner {
    align-items: flex-start;
  }

  /* About process / timeline comfort */
  .about-process__step-label strong {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .about-process__canvas {
    min-height: 480px;
  }
  .about-timeline__display {
    font-size: clamp(64px, 18vw, 100px);
  }

  /* Membership card */
  .mb-gold-card {
    width: min(100%, 360px);
    padding: 22px 20px;
  }
  .mb-hero__text {
    padding: 0 4px;
  }

  /* Auth panel full width */
  .lg-auth {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 700px) {
  /* Contact polish */
  .contact-reach__card {
    min-height: 0;
    padding: 20px 18px;
  }
  .contact-aside__map {
    height: 220px;
  }
  .contact-faq__item summary {
    padding-right: 36px;
    font-size: 15px;
    line-height: 1.35;
  }
  .contact-field input,
  .contact-field textarea {
    font-size: 16px;
  }

  /* Stores */
  .stores-map__frame {
    height: 280px;
  }
  .stores-item {
    padding: 18px;
  }
  .stores-filters {
    gap: 6px;
  }
  .stores-filter {
    padding: 9px 12px;
    font-size: 11px;
  }
  .stores-tips__media,
  .stores-tips__media img {
    min-height: 360px;
  }

  /* News */
  .ns-filters {
    gap: 4px 12px;
  }
  .ns-filter {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .ns-card__title {
    font-size: 16px;
  }

  /* News detail */
  .nd-article__body blockquote p {
    font-size: 20px;
  }
  .nd-hero__title {
    font-size: 24px;
    line-height: 1.15;
  }

  /* Confirm payment */
  .cp-field input,
  .cp-field select,
  .cp-field textarea {
    font-size: 16px;
  }
  .cp-aside__block {
    padding: 20px 18px;
  }

  /* Login / register — prevent iOS input zoom */
  .lg-field input {
    font-size: 16px;
  }
  .lg-auth {
    padding: 20px 16px;
  }
  .lg-desk__intro h2,
  .lg-faq__intro h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  /* Membership */
  .mb-hero__title,
  .mb-section-title {
    font-size: clamp(36px, 12vw, 48px);
    letter-spacing: 0.06em;
  }
  .mb-benefit {
    padding: 4px 0;
  }
  .mb-benefit h3 {
    font-size: 20px;
  }
  .mb-faq__item h3 {
    font-size: 17px;
  }
  .mb-hero__actions {
    width: 100%;
    padding: 0 4px;
  }
  .mb-hero__actions .btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    justify-content: center;
    white-space: normal;
  }


  /* Shared banners / legal / wishlist leftovers */
  .page-banner__inner,
  .page-banner__inner--overlay {
    padding-top: 44px;
    padding-bottom: 40px;
  }
  .page-banner__title {
    font-size: clamp(30px, 8vw, 42px);
  }
  .shop__banner-content {
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .legal-layout,
  .checkout,
  .page-split {
    gap: 28px;
  }
  .page-empty {
    padding: 40px 16px;
  }

  /* Home section heads */
  .section-head {
    margin-bottom: 36px;
  }
  .section-head__title {
    font-size: clamp(24px, 7vw, 32px);
  }

  /* Prevent horizontal bleed */
  .page-shell,
  .page-shell p,
  .page-shell h1,
  .page-shell h2,
  .page-shell h3,
  .page-shell li {
    overflow-wrap: break-word;
  }
  .page-shell img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    height: 520px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
  .hero__content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-process__step-label {
    display: none;
  }
  .contact-hero__actions,
  .stores-hero__actions,
  .ns-hero__actions,
  .cp-hero__actions,
  .lg-hero__actions,
  .mb-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-hero__actions .btn,
  .stores-hero__actions .btn,
  .ns-hero__actions .btn,
  .cp-hero__actions .btn,
  .lg-hero__actions .btn,
  .mb-hero__actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }
  .topbar__message {
    width: min(72vw, 220px);
    max-width: min(72vw, 220px);
  }
  .mb-join h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
}

@media (max-height: 700px) and (max-width: 760px) {
  .contact-hero,
  .stores-hero,
  .ns-hero,
  .cp-hero,
  .lg-hero {
    height: calc(320px + var(--topbar-h) + var(--header-h));
    min-height: calc(320px + var(--topbar-h) + var(--header-h));
    max-height: calc(320px + var(--topbar-h) + var(--header-h));
  }
  .about-hero {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
  }
  .contact-hero__scroll,
  .stores-hero__scroll,
  .ns-hero__scroll,
  .cp-hero__scroll,
  .lg-hero__scroll,
  .nd-hero__scroll {
    display: none;
  }
}
