:root {
  --black: #050505;
  --ink: #101010;
  --soft-black: #1a1a1a;
  --white: #ffffff;
  --off-white: #f5f4f1;
  --warm: #eceae5;
  --line: #d8d6d0;
  --muted: #6f6d67;
  --red: #d51f27;
  --blue: #1746a2;
  --green: #2f7b3b;
  --max-width: 1440px;
  --header-height: 78px;
  --announcement-height: 31px;
  --ease: cubic-bezier(.2,.75,.25,1);
  --shadow: 0 24px 70px rgba(0,0,0,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; }
::selection { background: var(--red); color: white; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-width { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.eyebrow {
  display: block;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  font-weight: 800;
  text-transform: uppercase;
}
.section-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red);
}
.display-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(45px, 7.2vw, 120px);
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
  font-weight: 900;
}
.editorial-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 94px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
}
.section-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.section-copy { max-width: 660px; color: var(--muted); line-height: 1.7; font-size: 16px; }

.announcement {
  height: var(--announcement-height);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 120;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-inline: 14px;
  text-align: center;
}
.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 24px;
  padding-inline: 28px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}
body.home-route .site-header:not(.is-scrolled) {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  right: 0;
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,.58), rgba(0,0,0,0));
  border-color: transparent;
  backdrop-filter: none;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark { width: 37px; height: 37px; object-fit: contain; }
.brand-mark-light { display: none; }
body.home-route .site-header:not(.is-scrolled) .brand-mark-dark { display: none; }
body.home-route .site-header:not(.is-scrolled) .brand-mark-light { display: block; }
.brand-type { display: flex; flex-direction: column; line-height: .88; }
.brand-type strong { font-size: 15px; letter-spacing: -.02em; }
.brand-type small { margin-top: 5px; font-size: 8px; letter-spacing: .23em; font-weight: 800; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.desktop-nav a {
  position: relative;
  padding: 28px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 21px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .25s ease, left .25s ease;
}
.desktop-nav a:hover::after { width: 100%; left: 0; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 4px; }
.icon-button {
  width: 42px; height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
}
.icon-button svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-button span { font-size: 29px; line-height: 1; font-weight: 300; }
.cart-button { position: relative; }
.cart-count {
  position: absolute;
  right: 1px; top: 1px;
  min-width: 17px; height: 17px;
  display: grid; place-items: center;
  border-radius: 20px;
  padding: 0 4px;
  background: var(--red);
  color: white;
  font-size: 9px !important;
  font-weight: 900 !important;
}
.mobile-menu-button { display: none; }

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 150;
  width: min(88vw, 430px);
  padding: max(24px, env(safe-area-inset-top)) 28px 32px;
  color: white;
  background: var(--black);
  transform: translateX(-102%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 42px; }
.mobile-menu-top strong { font-size: 12px; letter-spacing: .2em; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(31px, 9vw, 52px);
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.page-scrim {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0,0,0,.52);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.page-scrim.is-open { opacity: 1; visibility: visible; }

#app { min-height: 70vh; outline: none; }
.loading-screen { min-height: 72vh; display: grid; place-items: center; align-content: center; gap: 18px; }
.loading-screen img { width: 70px; animation: pulseMark 1.3s ease-in-out infinite alternate; }
.loading-screen p { margin: 0; font-size: 10px; letter-spacing: .18em; font-weight: 800; }
@keyframes pulseMark { from { transform: scale(.92); opacity: .45; } to { transform: scale(1); opacity: 1; } }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--announcement-height));
  overflow: hidden;
  color: white;
  background: #060606;
}
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-media::after {
  content: "";
  background:
    linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.35) 100%),
    linear-gradient(to right, rgba(0,0,0,.35), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-height) + 100px);
  padding-bottom: clamp(50px, 7vw, 100px);
}
.hero-logo-lockup { display: flex; align-items: flex-end; gap: clamp(16px, 2vw, 30px); margin-bottom: 26px; }
.hero-logo-lockup img { width: clamp(64px, 7vw, 110px); filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }
.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(55px, 9.6vw, 155px);
  line-height: .78;
  letter-spacing: -.03em;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-top: 32px; }
.hero-copy { max-width: 540px; margin: 0; color: rgba(255,255,255,.8); line-height: 1.55; font-size: 15px; }
.hero-cta { display: flex; gap: 10px; flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  opacity: .65;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: var(--black); border-color: white; }
.button-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,.65); }
.button-outline { background: transparent; color: var(--ink); }
.button-red { background: var(--red); border-color: var(--red); }
.button-full { width: 100%; }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 900;
  text-transform: uppercase;
}

/* Home sections */
.home-section { padding-block: clamp(76px, 9vw, 145px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-head-copy { max-width: 760px; }
.section-head .section-copy { margin: 20px 0 0; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.category-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: var(--off-white);
}
.category-card img { width: 100%; height: 100%; object-fit: contain; padding: 35px; transition: transform .7s var(--ease); }
.category-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.category-card-content { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 26px; color: white; }
.category-card-content span { display: block; margin-bottom: 8px; font-size: 10px; letter-spacing: .15em; font-weight: 900; }
.category-card-content h3 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(33px, 3vw, 52px); font-weight: 900; line-height: .9; text-transform: uppercase; }
.category-card:hover img { transform: scale(1.055); }

.collection-marquee {
  overflow: hidden;
  padding: 22px 0;
  background: var(--black);
  color: white;
  border-block: 1px solid var(--black);
}
.collection-marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.collection-marquee span { padding: 0 25px; font-family: Impact, sans-serif; font-size: 34px; letter-spacing: .01em; white-space: nowrap; text-transform: uppercase; }
.collection-marquee b { color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 38px 14px; }
.product-card { min-width: 0; }
.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--off-white);
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .55s var(--ease); }
.product-card:hover .product-image-wrap img { transform: scale(1.045); }
.product-badge {
  position: absolute;
  z-index: 2;
  left: 12px; top: 12px;
  padding: 7px 9px;
  background: var(--black);
  color: white;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.product-badge.red { background: var(--red); }
.quick-add {
  position: absolute;
  z-index: 3;
  left: 12px; right: 12px; bottom: 12px;
  min-height: 45px;
  border: 0;
  background: rgba(5,5,5,.94);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateY(calc(100% + 15px));
  transition: transform .3s var(--ease);
}
.product-card:hover .quick-add { transform: translateY(0); }
.product-info { padding-top: 14px; }
.product-meta-line { display: flex; justify-content: space-between; gap: 14px; }
.product-name { margin: 0; font-size: 13px; line-height: 1.3; font-weight: 700; }
.product-price { flex-shrink: 0; font-size: 13px; font-weight: 800; }
.product-collection { margin: 6px 0 0; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.product-swatches { display: flex; gap: 6px; margin-top: 10px; }
.product-swatch { width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(0,0,0,.22); background: var(--swatch, #111); }

.drop-section { position: relative; overflow: hidden; min-height: 720px; display: grid; align-items: end; background: var(--black); color: white; }
.drop-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.drop-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.15) 75%), linear-gradient(to top, rgba(0,0,0,.7), transparent 60%); }
.drop-content { position: relative; z-index: 2; padding-block: 80px; }
.drop-content .section-title { max-width: 850px; font-size: clamp(60px, 8vw, 130px); }
.drop-content p { max-width: 510px; color: rgba(255,255,255,.75); line-height: 1.65; }

.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px, 8vw, 130px); align-items: center; }
.story-media { position: relative; min-height: 700px; background: var(--off-white); overflow: hidden; }
.story-media img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.story-media::after { content: "562"; position: absolute; right: -18px; bottom: -40px; font-family: Impact, sans-serif; font-size: clamp(160px, 20vw, 330px); line-height: 1; color: rgba(255,255,255,.24); }
.story-copy .editorial-title { margin-bottom: 30px; }
.story-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 38px; }
.story-point { padding-top: 15px; border-top: 1px solid var(--line); }
.story-point strong { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.story-point p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.lifestyle-grid { display: grid; grid-template-columns: 1fr .75fr 1fr; gap: 12px; }
.lifestyle-tile { position: relative; overflow: hidden; background: var(--off-white); min-height: 650px; }
.lifestyle-tile:nth-child(2) { margin-top: 90px; min-height: 570px; }
.lifestyle-tile img, .lifestyle-tile video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .7s var(--ease); }
.lifestyle-tile:hover img, .lifestyle-tile:hover video { transform: scale(1.035); }
.lifestyle-tile-label { position: absolute; z-index: 2; left: 18px; bottom: 18px; padding: 9px 11px; background: white; font-size: 9px; letter-spacing: .13em; font-weight: 900; text-transform: uppercase; }

.video-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.video-card { position: relative; aspect-ratio: 9/14; overflow: hidden; background: #111; }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-sound {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
  display: grid; place-items: center; background: rgba(0,0,0,.35); color: white;
}

.newsletter-section { background: var(--red); color: white; }
.newsletter-inner { min-height: 520px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.newsletter-inner .editorial-title { max-width: 760px; }
.newsletter-box p { line-height: 1.6; color: rgba(255,255,255,.78); }
.newsletter-main-form { display: flex; border-bottom: 2px solid white; margin-top: 28px; }
.newsletter-main-form input { flex: 1; min-width: 0; border: 0; background: transparent; color: white; padding: 17px 0; outline: 0; font-size: 13px; letter-spacing: .08em; }
.newsletter-main-form input::placeholder { color: rgba(255,255,255,.7); }
.newsletter-main-form button { width: 58px; border: 0; background: transparent; color: white; font-size: 27px; }

/* Shop / collections */
.page-hero { padding: clamp(90px, 10vw, 155px) 0 56px; background: var(--off-white); border-bottom: 1px solid var(--line); }
.page-hero .display-title { max-width: 1100px; }
.page-hero p { max-width: 650px; margin: 24px 0 0; color: var(--muted); line-height: 1.65; }
.shop-layout { padding-block: 46px 110px; }
.shop-toolbar { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; padding-bottom: 25px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.shop-results-count { font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-pill { border: 1px solid var(--line); background: white; padding: 10px 14px; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.filter-pill.is-active { background: var(--black); border-color: var(--black); color: white; }
.sort-select { height: 39px; border: 1px solid var(--line); background: white; padding: 0 34px 0 12px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.empty-state { padding: 100px 20px; text-align: center; border: 1px solid var(--line); }
.empty-state h2 { font-family: Impact, sans-serif; font-size: 45px; text-transform: uppercase; margin: 0 0 12px; }
.empty-state p { color: var(--muted); }

.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-block: 55px 120px; }
.collection-card { min-height: 520px; position: relative; overflow: hidden; background: var(--off-white); }
.collection-card img { width: 100%; height: 100%; object-fit: contain; padding: 34px; transition: transform .6s var(--ease); }
.collection-card:hover img { transform: scale(1.045); }
.collection-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.collection-card-copy { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 24px; color: white; }
.collection-card-copy span { font-size: 9px; letter-spacing: .14em; font-weight: 800; }
.collection-card-copy h2 { margin: 8px 0 0; font-family: Impact, sans-serif; font-size: 42px; line-height: .93; text-transform: uppercase; }

/* Product page */
.product-page { padding: 38px 0 120px; }
.breadcrumbs { display: flex; gap: 7px; align-items: center; padding: 18px 0; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--ink); }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(390px, .8fr); gap: clamp(35px, 6vw, 100px); align-items: start; }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-gallery-item { position: relative; min-height: 650px; background: var(--off-white); overflow: hidden; cursor: zoom-in; }
.product-gallery-item:first-child { grid-column: 1 / -1; min-height: 810px; }
.product-gallery-item img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; padding: 28px; }
.product-gallery-item.detail img { transform: scale(1.45); transform-origin: center 38%; }
.product-panel { position: sticky; top: calc(var(--header-height) + 30px); padding-top: 24px; }
.product-panel .eyebrow { color: var(--muted); margin-bottom: 12px; }
.product-panel h1 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(46px, 5.5vw, 75px); line-height: .9; letter-spacing: -.02em; text-transform: uppercase; }
.product-panel .product-page-price { margin: 22px 0 24px; font-size: 19px; font-weight: 800; }
.product-panel .description { margin: 0 0 30px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.option-group { margin: 25px 0; }
.option-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.option-head strong { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.option-head span { color: var(--muted); font-size: 10px; }
.option-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.option-button { min-width: 48px; min-height: 42px; border: 1px solid var(--line); background: white; padding: 0 13px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.option-button.is-selected { color: white; background: var(--black); border-color: var(--black); }
.color-option { display: inline-flex; align-items: center; gap: 8px; }
.color-option::before { content: ""; width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0,0,0,.2); background: var(--swatch, #111); }
.quantity-control { width: 132px; height: 46px; display: grid; grid-template-columns: 42px 1fr 42px; border: 1px solid var(--line); }
.quantity-control button { border: 0; background: white; font-size: 19px; }
.quantity-control input { width: 100%; border: 0; text-align: center; outline: 0; font-weight: 800; }
.product-actions { display: grid; gap: 9px; margin-top: 25px; }
.bundle-callout { padding: 15px; border: 1px solid var(--red); color: var(--red); font-size: 11px; font-weight: 800; line-height: 1.5; text-align: center; text-transform: uppercase; }
.product-accordions { margin-top: 28px; border-top: 1px solid var(--line); }
.accordion { border-bottom: 1px solid var(--line); }
.accordion button { width: 100%; display: flex; justify-content: space-between; padding: 19px 0; border: 0; background: white; font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.accordion-content { display: none; padding: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.accordion.is-open .accordion-content { display: block; }
.secure-row { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 19px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.related-section { margin-top: 100px; }

/* Cart */
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 180;
  width: min(100%, 520px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: white;
  transform: translateX(102%);
  transition: transform .45s var(--ease);
  box-shadow: var(--shadow);
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-header { min-height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.drawer-header strong { display: block; margin-top: 7px; font-size: 12px; }
.drawer-body { overflow-y: auto; padding: 0 24px; }
.cart-empty { min-height: 100%; display: grid; place-items: center; align-content: center; text-align: center; gap: 12px; }
.cart-empty img { width: 70px; opacity: .16; }
.cart-empty h3 { font-family: Impact, sans-serif; font-size: 38px; text-transform: uppercase; margin: 0; }
.cart-empty p { color: var(--muted); margin: 0 0 12px; }
.cart-line { display: grid; grid-template-columns: 110px 1fr auto; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-line-image { width: 110px; height: 135px; background: var(--off-white); }
.cart-line-image img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-line h4 { margin: 3px 0 8px; font-size: 13px; line-height: 1.35; }
.cart-line-meta { color: var(--muted); font-size: 10px; line-height: 1.6; }
.cart-line-bottom { display: flex; align-items: center; gap: 15px; margin-top: 12px; }
.cart-line .quantity-control { width: 108px; height: 35px; grid-template-columns: 34px 1fr 34px; }
.cart-remove { border: 0; background: transparent; padding: 0; color: var(--muted); font-size: 9px; text-decoration: underline; text-transform: uppercase; }
.cart-line-price { font-size: 12px; font-weight: 800; }
.drawer-footer { border-top: 1px solid var(--line); padding: 20px 24px max(23px, env(safe-area-inset-bottom)); }
.cart-summary-row { display: flex; justify-content: space-between; gap: 20px; margin: 8px 0; font-size: 12px; }
.cart-summary-row.discount { color: var(--red); }
.cart-summary-row.total { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--line); font-size: 16px; font-weight: 900; }
.drawer-note { color: var(--muted); font-size: 10px; line-height: 1.5; text-align: center; }

/* Checkout */
.checkout-page { padding: 50px 0 110px; background: var(--off-white); }
.checkout-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 35px; }
.checkout-header h1 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(48px, 6vw, 82px); text-transform: uppercase; }
.checkout-layout { display: grid; grid-template-columns: 1fr minmax(380px, .68fr); gap: 30px; align-items: start; }
.checkout-card { background: white; border: 1px solid var(--line); padding: 30px; }
.checkout-card + .checkout-card { margin-top: 16px; }
.checkout-card h2 { margin: 0 0 23px; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  padding: 14px;
  outline: 0;
  border-radius: 0;
  font-size: 13px;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--ink); }
.form-field textarea { min-height: 100px; resize: vertical; }
.checkout-summary { position: sticky; top: calc(var(--header-height) + 22px); }
.checkout-line { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.checkout-line img { width: 72px; height: 86px; object-fit: contain; background: var(--off-white); padding: 6px; }
.checkout-line h4 { margin: 0 0 6px; font-size: 11px; }
.checkout-line p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.5; }
.checkout-line strong { font-size: 11px; }
.discount-form { display: flex; margin: 20px 0; }
.discount-form input { flex: 1; min-width: 0; border: 1px solid var(--line); padding: 13px; outline: 0; text-transform: uppercase; }
.discount-form button { border: 0; background: var(--black); color: white; padding: 0 18px; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.checkout-payments { display: grid; gap: 10px; margin-top: 18px; }
.payment-status { min-height: 18px; color: var(--red); font-size: 11px; line-height: 1.5; }
.config-warning { padding: 14px; background: #fff3cd; border: 1px solid #f1d77a; color: #6e5700; font-size: 11px; line-height: 1.55; margin-bottom: 14px; }
.checkout-secure { margin-top: 14px; color: var(--muted); font-size: 9px; text-align: center; line-height: 1.5; }

/* Informational pages */
.content-page { padding-block: 70px 120px; }
.content-narrow { width: min(calc(100% - 48px), 860px); margin-inline: auto; }
.content-page h1 { font-family: Impact, sans-serif; font-size: clamp(55px, 8vw, 110px); line-height: .9; text-transform: uppercase; margin: 0 0 40px; }
.content-page h2 { margin: 42px 0 14px; font-size: 18px; text-transform: uppercase; letter-spacing: .06em; }
.content-page p, .content-page li { color: var(--muted); line-height: 1.8; }
.about-hero { min-height: 78vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--black); color: white; }
.about-hero-media { position: relative; min-height: 650px; overflow: hidden; }
.about-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 8vw, 120px); }
.about-hero-copy p { max-width: 520px; color: rgba(255,255,255,.72); line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 50px; }
.value-card { min-height: 260px; padding: 30px; background: white; }
.value-card span { color: var(--red); font-family: Impact, sans-serif; font-size: 46px; }
.value-card h3 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.value-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: white; text-align: left; font-size: 14px; font-weight: 800; }
.faq-answer { display: none; padding: 0 0 25px; color: var(--muted); line-height: 1.75; }
.faq-item.is-open .faq-answer { display: block; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.contact-details h2 { margin-top: 0; }
.contact-details p { color: var(--muted); }
.contact-form { display: grid; gap: 14px; }
.order-lookup-card { max-width: 650px; padding: 34px; border: 1px solid var(--line); background: var(--off-white); }
.order-result { margin-top: 24px; }
.order-status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
.order-status-card { padding: 18px; background: white; border: 1px solid var(--line); }
.order-status-card span { display: block; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.order-status-card strong { display: block; margin-top: 8px; font-size: 15px; text-transform: capitalize; }

.thank-you { min-height: 70vh; display: grid; place-items: center; padding: 70px 24px; text-align: center; }
.thank-you-mark { width: 90px; margin: 0 auto 28px; }
.thank-you h1 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(65px, 10vw, 140px); line-height: .85; text-transform: uppercase; }
.thank-you p { max-width: 620px; color: var(--muted); line-height: 1.65; }
.order-confirmation-box { width: min(100%, 620px); margin: 26px auto; padding: 25px; border: 1px solid var(--line); text-align: left; }

/* Search / lightbox / toast */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(0,0,0,.64);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-panel { background: white; width: 100%; min-height: 360px; max-height: 82vh; overflow-y: auto; padding: 24px 28px 40px; transform: translateY(-30px); transition: transform .35s var(--ease); }
.search-overlay.is-open .search-panel { transform: translateY(0); }
.search-head { display: flex; align-items: center; border-bottom: 1px solid var(--ink); }
.search-head input { flex: 1; border: 0; outline: 0; padding: 18px 0; font-family: Impact, sans-serif; font-size: clamp(29px, 4vw, 55px); text-transform: uppercase; }
.search-results { width: min(100%, 1200px); margin: 26px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.search-result { display: grid; grid-template-columns: 90px 1fr; gap: 13px; align-items: center; padding: 10px; background: var(--off-white); }
.search-result img { width: 90px; height: 100px; object-fit: contain; }
.search-result h3 { margin: 0 0 6px; font-size: 12px; }
.search-result span { color: var(--muted); font-size: 10px; }
.lightbox { position: fixed; inset: 0; z-index: 240; display: grid; place-items: center; padding: 50px; background: rgba(0,0,0,.94); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; right: 18px; top: 13px; width: 45px; height: 45px; border: 0; background: transparent; color: white; font-size: 34px; }
.toast-region { position: fixed; right: 18px; bottom: 18px; z-index: 300; display: grid; gap: 8px; }
.toast { min-width: 280px; max-width: 410px; padding: 15px 17px; background: var(--black); color: white; box-shadow: var(--shadow); font-size: 12px; line-height: 1.5; animation: toastIn .35s var(--ease); }
.toast.error { background: var(--red); }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }

.site-footer { background: var(--black); color: white; padding-top: 75px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; padding-bottom: 65px; }
.footer-brand-lockup { display: flex; align-items: center; gap: 13px; }
.footer-brand-lockup img { width: 50px; }
.footer-brand-lockup div { display: flex; flex-direction: column; }
.footer-brand-lockup strong { font-size: 20px; }
.footer-brand-lockup span { margin-top: 4px; font-size: 9px; letter-spacing: .22em; font-weight: 800; }
.footer-brand > p { max-width: 380px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.75; }
.footer-grid h3 { margin: 0 0 19px; font-size: 10px; letter-spacing: .16em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { margin: 7px 0; color: rgba(255,255,255,.68); font-size: 12px; }
.footer-grid a:hover { color: white; }
.footer-grid p { color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.6; }
.footer-newsletter { width: 100%; display: flex; border-bottom: 1px solid rgba(255,255,255,.55); }
.footer-newsletter input { flex: 1; min-width: 0; padding: 13px 0; border: 0; outline: 0; background: transparent; color: white; font-size: 10px; letter-spacing: .08em; }
.footer-newsletter button { width: 40px; border: 0; background: transparent; color: white; font-size: 22px; }
.newsletter-message { min-height: 18px; margin: 8px 0 0 !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 18px; }

/* Responsive */
@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-grid; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: minmax(0, 1fr) 390px; gap: 35px; }
  .product-gallery-item { min-height: 500px; }
  .product-gallery-item:first-child { min-height: 680px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .page-width { width: min(calc(100% - 32px), var(--max-width)); }
  .site-header { padding-inline: 15px; }
  .brand-type { display: none; }
  .header-actions { gap: 0; }
  .header-actions > .icon-button { width: 39px; }
  .hero { min-height: 92svh; }
  .hero-media video { object-position: center; }
  .hero-content { padding-top: 140px; padding-bottom: 45px; }
  .hero-logo-lockup { display: block; }
  .hero-logo-lockup img { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(58px, 16vw, 110px); line-height: .81; }
  .hero-bottom { display: block; }
  .hero-cta { margin-top: 24px; flex-wrap: wrap; }
  .hero-scroll { display: none; }
  .section-head { display: block; }
  .section-head > .text-link { margin-top: 24px; }
  .story-grid, .newsletter-inner, .about-hero, .contact-layout { grid-template-columns: 1fr; }
  .story-media { min-height: 560px; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-tile { min-height: 520px; }
  .lifestyle-tile:nth-child(2) { margin-top: 0; }
  .lifestyle-tile:nth-child(3) { grid-column: 1 / -1; min-height: 650px; }
  .video-strip { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { min-height: 630px; gap: 20px; padding-block: 70px; }
  .shop-toolbar { grid-template-columns: 1fr auto; }
  .filter-pills { grid-column: 1 / -1; order: 3; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-panel { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 35px; }
  .search-results { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .announcement { font-size: 8px; letter-spacing: .1em; }
  .brand-mark { width: 34px; height: 34px; }
  .header-actions > a.icon-button { display: none; }
  .hero h1 { font-size: clamp(55px, 19vw, 86px); }
  .hero-copy { font-size: 13px; max-width: 88%; }
  .hero-cta { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-cta .button { padding-inline: 15px; }
  .home-section { padding-block: 76px; }
  .section-title { font-size: 49px; }
  .editorial-title { font-size: 50px; }
  .category-grid, .product-grid, .collections-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .category-card { min-height: 390px; }
  .category-card img { padding: 18px; }
  .category-card-content { left: 15px; right: 15px; bottom: 15px; }
  .category-card-content h3 { font-size: 32px; }
  .product-grid { gap: 28px 8px; background: transparent; }
  .product-image-wrap { aspect-ratio: 4/5; }
  .product-image-wrap img { padding: 8px; }
  .quick-add { display: none; }
  .product-name, .product-price { font-size: 11px; }
  .product-collection { font-size: 8px; }
  .drop-section { min-height: 650px; }
  .drop-content .section-title { font-size: 61px; }
  .story-grid { gap: 40px; }
  .story-media { min-height: 500px; }
  .story-points { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-tile, .lifestyle-tile:nth-child(2), .lifestyle-tile:nth-child(3) { min-height: 510px; grid-column: auto; }
  .video-strip { gap: 4px; }
  .newsletter-inner { min-height: 570px; }
  .page-hero { padding-top: 75px; }
  .page-hero .display-title { font-size: 55px; }
  .shop-toolbar { display: flex; flex-wrap: wrap; }
  .shop-results-count { width: 100%; }
  .filter-pills { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-pill { flex-shrink: 0; }
  .sort-select { margin-left: auto; }
  .collection-card { min-height: 390px; }
  .collection-card img { padding: 16px; }
  .collection-card-copy { left: 15px; right: 15px; bottom: 15px; }
  .collection-card-copy h2 { font-size: 31px; }
  .product-page { padding-top: 16px; }
  .product-gallery { display: block; }
  .product-gallery-item, .product-gallery-item:first-child { min-height: 500px; margin-bottom: 8px; }
  .product-gallery-item.detail { display: none; }
  .product-panel h1 { font-size: 49px; }
  .checkout-page { padding-top: 30px; }
  .checkout-card { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .checkout-header { display: block; }
  .checkout-header .text-link { margin-top: 15px; }
  .about-hero-media { min-height: 540px; }
  .about-hero-copy { padding: 55px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { gap: 40px; }
  .order-lookup-card { padding: 22px; }
  .order-status-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; line-height: 1.6; }
  .footer-bottom div { margin-top: 10px; flex-wrap: wrap; }
  .search-panel { padding-inline: 15px; }
  .search-results { grid-template-columns: 1fr; }
  .search-result { grid-template-columns: 75px 1fr; }
  .search-result img { width: 75px; height: 85px; }
  .lightbox { padding: 20px; }
  .toast-region { left: 12px; right: 12px; bottom: 12px; }
  .toast { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}


/* ===== Long Beach Street Legends V2 visual upgrade ===== */
.hero-v2 .hero-city-code{position:absolute;right:-.03em;bottom:-.18em;z-index:1;font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif;font-size:clamp(210px,32vw,620px);line-height:.8;color:transparent;-webkit-text-stroke:1px rgba(255,255,255,.18);letter-spacing:-.08em;pointer-events:none}
.hero-v2 .hero-content{z-index:3}.hero-v2 .hero-media video{filter:saturate(.82) contrast(1.08)}
.hero-rail{position:absolute;z-index:4;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;gap:20px;padding:12px 24px;border-top:1px solid rgba(255,255,255,.32);background:rgba(0,0,0,.35);backdrop-filter:blur(10px);font-size:9px;font-weight:900;letter-spacing:.22em}.hero-rail i{width:4px;height:4px;border-radius:50%;background:#d51f27}
.city-intro{position:relative;min-height:760px;background:#0b1114;color:#fff;overflow:hidden}.city-intro-art{position:absolute;inset:0}.city-intro-art img{width:100%;height:100%;object-fit:cover;opacity:.86}.city-intro-art:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,8,10,.92) 0%,rgba(4,8,10,.42) 48%,rgba(4,8,10,.1) 100%),linear-gradient(0deg,rgba(4,8,10,.82),transparent 55%)}
.city-intro-copy{position:relative;z-index:2;min-height:760px;display:grid;grid-template-columns:1.25fr .75fr;align-items:end;gap:80px;padding-block:110px}.city-intro-copy .display-title{font-size:clamp(72px,11vw,180px)}.city-intro-copy>div:last-child{max-width:480px;padding-bottom:18px;font-size:18px;line-height:1.7}.city-intro-copy .text-link{display:inline-block;margin-top:26px}
.essentials-v2{padding-top:130px}.category-grid-v2{gap:16px}.category-grid-v2 .category-card{min-height:620px;background:#efede8}.category-grid-v2 .category-card img{transform:scale(.82);object-fit:contain;transition:transform .7s var(--ease)}.category-grid-v2 .category-card:hover img{transform:scale(.91)}.category-index{position:absolute;top:22px;left:22px;z-index:2;font-size:10px;font-weight:900;letter-spacing:.16em}.category-grid-v2 .category-card-content{background:linear-gradient(transparent,rgba(0,0,0,.86));padding-top:110px}.category-grid-v2 .category-card-content b{display:block;margin-top:18px;font-size:9px;letter-spacing:.15em}
.collection-marquee-bold{background:#d51f27;color:#fff;border:0}.collection-marquee-bold .collection-marquee-track span{font-size:clamp(28px,4.5vw,68px)}
.editorial-collections{display:grid;grid-template-columns:1.2fr .8fr;grid-template-rows:repeat(2,minmax(390px,1fr));gap:16px;padding-bottom:130px}.editorial-collection-card{position:relative;overflow:hidden;background:#e8e5df;min-height:390px}.editorial-collection-card:first-child{grid-row:1/3}.editorial-collection-card img{width:100%;height:100%;object-fit:contain;padding:48px;transition:transform .65s var(--ease)}.editorial-collection-card:hover img{transform:scale(1.05)}.editorial-collection-copy{position:absolute;left:0;right:0;bottom:0;padding:110px 30px 30px;background:linear-gradient(transparent,rgba(0,0,0,.92));color:#fff}.editorial-collection-copy span{font-size:9px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.editorial-collection-copy h3{margin:10px 0 6px;font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif;font-size:clamp(37px,4.2vw,72px);line-height:.9}.editorial-collection-copy p{margin:0 0 16px;max-width:410px}.editorial-collection-copy b{font-size:9px;letter-spacing:.15em}.editorial-number{position:absolute;z-index:3;top:25px;left:25px;font-size:10px;font-weight:900;letter-spacing:.15em}
.cinema-drop{min-height:880px;display:grid;grid-template-columns:1.15fr .85fr;background:#050505;color:#fff}.cinema-video{position:relative;overflow:hidden}.cinema-video:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent 65%,#050505)}.cinema-video video{width:100%;height:100%;object-fit:cover}.cinema-copy{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:80px clamp(40px,7vw,120px)}.cinema-copy>img{width:78px;margin-bottom:42px}.cinema-copy h2{margin:0 0 28px;font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif;font-size:clamp(74px,8.7vw,150px);line-height:.8;letter-spacing:-.035em}.cinema-copy>p:not(.section-kicker){max-width:520px;line-height:1.7;color:#bdbdbd;margin-bottom:34px}
.lookbook-collage{display:grid;grid-template-columns:1fr 1fr .8fr;grid-template-rows:320px 360px;gap:14px}.lookbook-image{position:relative;margin:0;overflow:hidden;background:#eee}.lookbook-image img{width:100%;height:100%;object-fit:cover}.lookbook-image figcaption{position:absolute;left:18px;bottom:16px;color:#fff;font-size:9px;font-weight:900;letter-spacing:.16em;text-shadow:0 1px 12px #000}.lookbook-a{grid-row:1/3}.lookbook-b{grid-column:2/4}.lookbook-type{display:flex;flex-direction:column;justify-content:flex-end;padding:30px;background:#d51f27;color:#fff}.lookbook-type span{font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif;font-size:clamp(80px,12vw,190px);line-height:.7;opacity:.24}.lookbook-type strong{font-size:13px;letter-spacing:.15em;margin-top:28px}.lookbook-type p{max-width:250px;line-height:1.5}.video-strip-v2 .video-card{min-height:600px}.video-card-label{position:absolute;left:18px;bottom:18px;z-index:2;color:#fff;font-size:9px;font-weight:900;letter-spacing:.18em}
.hat-feature{display:grid;grid-template-columns:.78fr 1.22fr;background:#101010;color:#fff}.hat-feature-copy{padding:100px clamp(35px,6vw,100px);display:flex;flex-direction:column;justify-content:center;align-items:flex-start}.hat-feature-copy>p:not(.section-kicker){color:#b9b9b9;line-height:1.65;max-width:420px}.price-stamp{display:grid;margin:24px 0 34px;border:1px solid rgba(255,255,255,.25)}.price-stamp span,.price-stamp strong{padding:12px 17px;font-size:11px;letter-spacing:.14em}.price-stamp strong{background:#d51f27}.hat-feature-grid{display:grid;grid-template-columns:repeat(3,1fr);background:#e8e5df}.hat-feature-grid a{position:relative;min-height:350px;padding:24px;border:1px solid rgba(0,0,0,.1);color:#111;overflow:hidden}.hat-feature-grid img{width:100%;height:85%;object-fit:contain;transition:transform .5s var(--ease)}.hat-feature-grid a:hover img{transform:scale(1.07)}.hat-feature-grid span{font-size:9px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.brand-manifesto{position:relative;min-height:700px;color:#fff;background:#080808;overflow:hidden}.brand-manifesto-bg{position:absolute;inset:0;background:url('assets/images/long-beach-harbor-heritage.svg') center/cover;filter:grayscale(1);opacity:.26}.brand-manifesto:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.25),rgba(0,0,0,.82))}.brand-manifesto-inner{position:relative;z-index:2;min-height:700px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}.brand-manifesto-inner>img{width:94px}.brand-manifesto-inner>p{font-size:10px;font-weight:900;letter-spacing:.24em;margin:24px 0}.brand-manifesto-inner h2{margin:0;max-width:1200px;font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif;font-size:clamp(55px,8vw,130px);line-height:.86}.brand-manifesto-inner>div{display:flex;gap:34px;margin-top:42px;font-size:9px;font-weight:900;letter-spacing:.18em}
.product-image-wrap{background:linear-gradient(145deg,#f5f3ef,#e9e5de)}.product-image-wrap img{object-fit:contain;padding:22px}.product-card:hover .product-image-wrap img{transform:scale(1.035)}
@media(max-width:900px){.hero-rail{justify-content:flex-start;overflow:hidden;white-space:nowrap}.city-intro,.city-intro-copy{min-height:680px}.city-intro-copy{grid-template-columns:1fr;align-content:end;gap:26px;padding-block:80px}.city-intro-copy .display-title{font-size:clamp(70px,20vw,130px)}.category-grid-v2 .category-card{min-height:460px}.editorial-collections{grid-template-columns:1fr;grid-template-rows:auto;padding-bottom:80px}.editorial-collection-card:first-child{grid-row:auto}.editorial-collection-card{min-height:520px}.cinema-drop{grid-template-columns:1fr;min-height:auto}.cinema-video{height:72vh}.cinema-video:after{background:linear-gradient(0deg,#050505,transparent 35%)}.cinema-copy{padding:50px 24px 80px}.lookbook-collage{grid-template-columns:1fr 1fr;grid-template-rows:420px 300px 340px}.lookbook-a{grid-row:1/3}.lookbook-b{grid-column:2}.lookbook-c{grid-column:1/3}.lookbook-type{grid-column:1/3}.hat-feature{grid-template-columns:1fr}.hat-feature-grid a{min-height:280px}.brand-manifesto-inner>div{flex-direction:column;gap:12px}.video-strip-v2 .video-card{min-height:520px}}
@media(max-width:620px){.city-intro-art img{object-position:57% center}.city-intro-copy{padding-inline:20px}.category-grid-v2{grid-template-columns:1fr 1fr}.category-grid-v2 .category-card{min-height:390px}.category-grid-v2 .category-card-content h3{font-size:38px}.editorial-collection-card{min-height:470px}.lookbook-collage{display:block}.lookbook-image,.lookbook-type{min-height:420px;margin-bottom:10px}.lookbook-type{min-height:300px}.hat-feature-grid{grid-template-columns:1fr 1fr}.hat-feature-grid a{min-height:235px;padding:14px}.brand-manifesto{min-height:620px}.brand-manifesto-inner{min-height:620px}.brand-manifesto-inner h2{font-size:54px}.hero-city-code{display:none}}

/* ===== July 2026 content and media refinement ===== */
.collection-marquee-track { animation-duration: 58s; }
.hero-v2 .hero-media video { filter: saturate(.92) contrast(1.06) brightness(.98); image-rendering: auto; }
.hero-v2 .hero-media::after { background: linear-gradient(to top,rgba(0,0,0,.76),rgba(0,0,0,.08) 58%,rgba(0,0,0,.28)),linear-gradient(to right,rgba(0,0,0,.68),rgba(0,0,0,.14) 58%,rgba(0,0,0,.08)); }

.city-intro { min-height: 780px; background: #0a0a0a; }
.city-intro-art { left: auto; right: 0; width: 58%; padding: 52px; display: grid; place-items: center; background: #f2efe8; }
.city-intro-art img { width: 100%; height: 100%; object-fit: contain; opacity: 1; }
.city-intro-art::after { content: none; }
.city-intro-copy { min-height: 780px; grid-template-columns: .95fr .62fr; align-items: center; padding-right: 48%; }
.city-intro-copy > div:last-child { color: rgba(255,255,255,.76); }

.video-strip-v2 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.video-strip-v2 .video-card { min-height: 520px; }
.video-card::after { content: ""; position: absolute; inset: 55% 0 0; pointer-events: none; background: linear-gradient(transparent,rgba(0,0,0,.55)); }
.video-card-label,.video-sound { z-index: 3; }

.brand-manifesto { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; background: #f2efe8; color: #0b0b0b; }
.brand-manifesto::after { content: none; }
.brand-manifesto-art { min-height: 760px; display: grid; place-items: center; padding: clamp(28px,4vw,70px); background: #f2efe8; overflow: hidden; }
.brand-manifesto-art img { width: 100%; height: 100%; object-fit: contain; }
.brand-manifesto-inner { min-height: 760px; align-items: flex-start; text-align: left; padding: 80px clamp(30px,6vw,100px); background: #d51f27; color: #fff; }
.brand-manifesto-inner > img { width: 82px; filter: brightness(0) invert(1); }
.brand-manifesto-inner h2 { font-size: clamp(58px,6.4vw,112px); }
.brand-manifesto-inner > div { flex-wrap: wrap; }

.social-band { background: #050505; color: #fff; padding: 64px 0; }
.social-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.social-band h2 { margin: 6px 0 0; font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: clamp(48px,6vw,94px); line-height: .9; letter-spacing: -.02em; }
.social-band-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.footer-social-links { display: grid; gap: 2px; margin-top: 20px; }
.footer-social-links a { margin: 3px 0; overflow-wrap: anywhere; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; background: #f2efe8; }
.about-story-art { min-height: 680px; padding: clamp(30px,5vw,80px); display: grid; place-items: center; }
.about-story-art img { width: 100%; height: 100%; object-fit: contain; }
.about-story-copy { min-height: 680px; display: flex; flex-direction: column; justify-content: center; padding: clamp(55px,8vw,130px); background: #0b0b0b; color: #fff; }
.about-story-copy .section-title { margin-bottom: 28px; }
.about-story-copy > p:not(.section-kicker) { max-width: 620px; color: rgba(255,255,255,.72); line-height: 1.8; font-size: 16px; }

@media (max-width: 1050px) {
  .city-intro-art { width: 54%; padding: 28px; }
  .city-intro-copy { padding-right: 46%; grid-template-columns: 1fr; align-content: center; gap: 25px; }
  .video-strip-v2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .brand-manifesto { grid-template-columns: 1fr; }
  .brand-manifesto-art,.brand-manifesto-inner { min-height: 620px; }
  .about-story { grid-template-columns: 1fr; }
  .about-story-art,.about-story-copy { min-height: 560px; }
}
@media (max-width: 700px) {
  .city-intro { display: flex; flex-direction: column; }
  .city-intro-art { position: relative; width: 100%; height: 52vh; min-height: 420px; padding: 20px; }
  .city-intro-copy { min-height: auto; padding: 60px 20px 76px; grid-template-columns: 1fr; }
  .city-intro-copy .display-title { font-size: clamp(58px,18vw,102px); }
  .video-strip-v2 .video-card { min-height: 470px; }
  .brand-manifesto-art { min-height: 480px; padding: 18px; }
  .brand-manifesto-inner { min-height: 560px; padding: 65px 24px; }
  .brand-manifesto-inner h2 { font-size: 53px; }
  .social-band-inner { align-items: flex-start; flex-direction: column; }
  .social-band-actions { justify-content: flex-start; width: 100%; }
  .social-band-actions .button { width: 100%; }
  .about-story-art { min-height: 440px; padding: 20px; }
  .about-story-copy { min-height: auto; padding: 70px 24px; }
}


/* ===== V3 surgical fixes: preserve the approved look ===== */
/* Keep the original black/red premium design while preventing the heritage
   copy from sitting behind or on top of the Long Beach artwork. */
@media (min-width: 1051px) {
  .city-intro {
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    min-height: 780px;
    background: #0a0a0a;
  }
  .city-intro-art {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 780px;
    padding: clamp(30px, 3.2vw, 54px);
    display: grid;
    place-items: center;
    background: #f2efe8;
  }
  .city-intro-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
  }
  .city-intro-art::after { content: none; }
  .city-intro-copy.page-width {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 780px;
    margin: 0;
    padding: clamp(70px, 7vw, 112px) clamp(34px, 5vw, 82px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 34px;
  }
  .city-intro-copy > div { width: 100%; max-width: 540px; }
  .city-intro-copy .display-title {
    margin: 0;
    font-size: clamp(72px, 7.1vw, 122px);
    line-height: .82;
    letter-spacing: -.035em;
  }
  .city-intro-copy > div:last-child {
    max-width: 510px;
    padding: 0;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.72;
  }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .city-intro {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .city-intro-art {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(68vw, 650px);
    min-height: 500px;
    padding: clamp(24px, 5vw, 54px);
  }
  .city-intro-copy.page-width {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 76px clamp(28px, 7vw, 76px) 88px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .city-intro-copy > div:last-child { max-width: 650px; padding: 0; }
}

@media (max-width: 700px) {
  .city-intro-art img { object-position: center; }
  .city-intro-copy > div:last-child { padding: 0; }
}

/* ===== V3 spacing + full-art correction (July 2026) =====
   Keep the approved V3 layout. Only correct the two crowded headlines and
   make the complete Long Beach heritage artwork visible on desktop. */
.hero-v2 h1 {
  font-size: clamp(55px, 9.1vw, 148px);
  line-height: .88;
  letter-spacing: -.025em;
}
.hero-v2 h1 span + span { margin-top: .055em; }

@media (min-width: 1051px) {
  .city-intro {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    min-height: 0;
    align-items: stretch;
  }
  .city-intro-art {
    height: auto;
    min-height: 780px;
    aspect-ratio: 1 / 1;
    padding: clamp(24px, 2.8vw, 46px);
  }
  .city-intro-art img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .city-intro-copy.page-width {
    min-height: 0;
    height: 100%;
    padding: clamp(72px, 6.4vw, 106px) clamp(36px, 4.7vw, 76px);
    gap: 38px;
  }
  .city-intro-copy .display-title {
    font-size: clamp(68px, 6.75vw, 116px);
    line-height: .94;
    letter-spacing: -.025em;
  }
  .city-intro-copy .display-title br { line-height: 1; }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .hero-v2 h1 { line-height: .9; }
  .city-intro-copy .display-title { line-height: .94; }
  .city-intro-art img { width: 100%; height: 100%; object-fit: contain; }
}

@media (max-width: 700px) {
  .hero-v2 h1 { line-height: .9; }
  .hero-v2 h1 span + span { margin-top: .07em; }
  .city-intro-copy .display-title { line-height: .94; }
  .city-intro-art img { width: 100%; height: 100%; object-fit: contain; }
}

/* ===== V3 video clarity + cinema headline correction =====
   Preserve the approved V3 look while keeping the featured film closer to
   its native resolution and giving every intended headline line room. */
@media (min-width: 901px) {
  .cinema-drop {
    min-height: 760px;
    grid-template-columns: minmax(0, 1.08fr) minmax(500px, .92fr);
    align-items: stretch;
  }
  .cinema-video {
    display: grid;
    place-items: center;
    padding: clamp(38px, 4.6vw, 76px);
    background:
      radial-gradient(circle at 50% 42%, rgba(255,255,255,.055), transparent 48%),
      #050505;
  }
  .cinema-video::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 76%, #050505 100%);
  }
  .cinema-video video {
    position: relative;
    z-index: 1;
    width: min(100%, 860px);
    height: auto;
    max-height: 570px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    background: #111;
    box-shadow: 0 32px 90px rgba(0,0,0,.52);
  }
  .cinema-copy {
    padding: 72px clamp(40px, 5vw, 86px);
  }
  .cinema-copy > img {
    width: 70px;
    margin-bottom: 30px;
  }
  .cinema-copy .section-kicker {
    margin-bottom: 10px;
  }
  .cinema-copy .cinema-heading {
    width: 100%;
    max-width: 690px;
    margin: 0 0 30px;
    font-size: clamp(58px, 5.25vw, 92px);
    line-height: .91;
    letter-spacing: -.025em;
  }
  .cinema-copy .cinema-heading span {
    display: block;
    white-space: nowrap;
  }
  .cinema-copy .cinema-heading span + span {
    margin-top: .055em;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .cinema-video {
    height: auto;
    min-height: 500px;
    display: grid;
    place-items: center;
    padding: 42px;
  }
  .cinema-video video {
    width: min(100%, 760px);
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .cinema-copy .cinema-heading {
    font-size: clamp(56px, 10.5vw, 84px);
    line-height: .92;
  }
  .cinema-copy .cinema-heading span { display: block; }
}

@media (max-width: 620px) {
  .cinema-video {
    height: auto;
    min-height: 330px;
    display: grid;
    place-items: center;
    padding: 20px;
  }
  .cinema-video video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .cinema-copy .cinema-heading {
    font-size: clamp(47px, 14vw, 66px);
    line-height: .93;
    letter-spacing: -.02em;
  }
  .cinema-copy .cinema-heading span {
    display: block;
    white-space: normal;
  }
  .cinema-copy .cinema-heading span + span { margin-top: .05em; }
}

/* ===== V3 hero video framing fix =====
   Keep the approved hero design, but stop stretching the campaign video
   across the entire desktop viewport. The original film now displays in a
   smaller native 16:9 frame so it remains much cleaner and sharper. */
@media (min-width: 901px) {
  .hero-v2 {
    min-height: min(860px, calc(100svh - var(--announcement-height)));
    background:
      radial-gradient(circle at 82% 45%, rgba(54, 28, 18, .28), transparent 34%),
      linear-gradient(118deg, #050505 0%, #090909 55%, #12100f 100%);
  }

  .hero-v2 .hero-media {
    inset: clamp(116px, 14vh, 150px) clamp(34px, 4.2vw, 78px) 82px auto;
    width: min(42vw, 690px);
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
  }

  .hero-v2 .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.96) contrast(1.04) brightness(.96);
  }

  .hero-v2 .hero-media::after {
    background:
      linear-gradient(to top, rgba(0,0,0,.32), transparent 42%),
      linear-gradient(to right, rgba(0,0,0,.16), transparent 38%);
  }

  .hero-v2 .hero-content {
    width: min(calc(100% - 48px), var(--max-width));
    padding-right: min(45vw, 735px);
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 88px;
  }

  .hero-v2 h1 {
    max-width: 720px;
    font-size: clamp(64px, 7.2vw, 118px);
    line-height: .84;
  }

  .hero-v2 .hero-bottom {
    display: block;
    max-width: 610px;
    margin-top: 28px;
  }

  .hero-v2 .hero-cta {
    margin-top: 24px;
    flex-wrap: wrap;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-v2 .hero-media {
    width: 43vw;
    right: 28px;
  }
  .hero-v2 .hero-content {
    padding-right: 45vw;
  }
  .hero-v2 h1 {
    font-size: clamp(58px, 6.7vw, 82px);
  }
  .hero-v2 .hero-logo-lockup img {
    width: 68px;
  }
  .hero-v2 .hero-copy {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  /* Phones and smaller tablets match the portrait source much better, so the
     existing full-bleed treatment remains there. */
  .hero-v2 .hero-media {
    inset: 0;
    width: auto;
    height: auto;
    aspect-ratio: auto;
    border: 0;
    box-shadow: none;
  }
}

/* ===== Community, custom work and mobile storefront refinements ===== */
.custom-work-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  background: #050505;
  color: #fff;
}
.custom-work-media {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 8px;
  padding: clamp(18px, 3vw, 48px);
  background: #111;
  overflow: hidden;
}
.custom-work-media figure {
  position: relative;
  min-height: 670px;
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.custom-work-media figure:nth-child(2) { margin-top: 82px; min-height: 570px; }
.custom-work-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.custom-work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 7vw, 118px) clamp(34px, 6vw, 96px);
}
.custom-work-copy .display-title { margin-bottom: 32px; font-size: clamp(64px, 6.4vw, 112px); }
.custom-work-copy > p:not(.section-kicker) { max-width: 640px; color: rgba(255,255,255,.72); line-height: 1.75; font-size: 16px; }
.custom-service-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.custom-service-list span { padding: 10px 12px; border: 1px solid rgba(255,255,255,.34); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.custom-work-note { margin-bottom: 30px; font-size: 13px !important; }

.community-section { overflow: hidden; }
.community-grid { columns: 4 270px; column-gap: 12px; }
.community-card { position: relative; break-inside: avoid; margin: 0 0 12px; overflow: hidden; background: var(--off-white); }
.community-card img { display: block; width: 100%; height: auto; transition: transform .65s var(--ease); }
.community-card:hover img { transform: scale(1.025); }
.community-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(0,0,0,.82);
  color: white;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .13em;
}

.social-proof-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  min-height: 680px;
  background: var(--red);
  color: white;
}
.social-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 7vw, 118px) clamp(34px, 6vw, 100px);
}
.social-proof-copy .display-title { margin: 0 0 28px; font-size: clamp(62px, 6.5vw, 112px); }
.social-proof-copy > p:not(.section-kicker) { max-width: 560px; color: rgba(255,255,255,.8); line-height: 1.7; }
.social-proof-copy .text-link { margin-top: 24px; }
.social-proof-media { display: grid; place-items: center; padding: clamp(28px, 5vw, 82px); background: #07090d; }
.social-proof-media img { display: block; width: min(100%, 720px); max-height: 570px; object-fit: contain; box-shadow: 0 34px 90px rgba(0,0,0,.38); }

@media (max-width: 980px) {
  .custom-work-section, .social-proof-section { grid-template-columns: 1fr; }
  .custom-work-media { min-height: 650px; }
  .custom-work-copy { min-height: 600px; }
  .social-proof-media { min-height: 580px; }
}

@media (max-width: 620px) {
  /* Keep the desktop storefront unchanged while giving phone shoppers larger,
     clearer product mockups and a swipeable product gallery. */
  .product-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-image-wrap { aspect-ratio: 1 / 1; }
  .product-image-wrap img { padding: 6px; }
  .product-info { padding-inline: 4px; }
  .product-name, .product-price { font-size: 13px; }
  .product-collection { font-size: 9px; }

  .product-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-gallery::-webkit-scrollbar { display: none; }
  .product-gallery-item,
  .product-gallery-item:first-child,
  .product-gallery-item.detail {
    display: block;
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin: 0;
    scroll-snap-align: start;
  }
  .product-gallery-item img { padding: 4px; }
  .product-gallery-item.detail img { transform: none; }

  .hero-v2 .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
  }

  .custom-work-section { min-height: auto; }
  .custom-work-media { min-height: 0; grid-template-columns: 1fr 1fr; padding: 8px; gap: 6px; }
  .custom-work-media figure,
  .custom-work-media figure:nth-child(2) { min-height: 430px; margin: 0; }
  .custom-work-copy { min-height: auto; padding: 72px 22px 82px; }
  .custom-work-copy .display-title { font-size: 58px; }
  .custom-work-copy > p:not(.section-kicker) { font-size: 14px; }
  .custom-service-list { gap: 6px; }

  .community-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .community-grid::-webkit-scrollbar { display: none; }
  .community-card { flex: 0 0 82vw; margin: 0; scroll-snap-align: center; }
  .community-card img { width: 100%; max-height: 74vh; object-fit: contain; background: #eeeae3; }

  .social-proof-section { min-height: auto; }
  .social-proof-copy { padding: 72px 22px 64px; }
  .social-proof-copy .display-title { font-size: 58px; }
  .social-proof-media { min-height: 0; padding: 28px 18px 58px; }
  .social-proof-media img { width: 100%; max-height: none; }
}

/* Legends 562 embroidered collection */
.product-bundle{margin:5px 0 0;color:var(--red);font-size:9px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.size-note{margin:-4px 0 18px;padding:0 4px;color:#666;font-size:11px;line-height:1.5}.product-gallery-item img{background:transparent}.product-card .product-image-wrap img{background:transparent}
