:root {
  --ink: #080808;
  --red: #d71920;
  --paper: #f6f6f3;
  --white: #fff;
  --muted: #747474;
  --line: rgba(8, 8, 8, .14);
  --font-head: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-body: "DM Sans", sans-serif;
}

* {
  border-radius: 0;
}

html {
  background: var(--paper);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: none;
}

.announcement {
  height: 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 8px;
  letter-spacing: .18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 66px;
  padding: 0 clamp(18px, 3vw, 48px);
  background: rgba(246, 246, 243, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.footer-brand {
  font-size: 13px;
  line-height: 10px;
}

.brand {
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header nav {
  gap: 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.header-actions {
  gap: 12px;
}

.favorite-trigger,
.cart-trigger,
.icon-button {
  min-width: 38px;
  min-height: 38px;
}

.cart-count,
.favorite-count {
  background: var(--red);
  color: var(--white);
}

.hero {
  height: min(720px, calc(100vh - 94px));
  min-height: 610px;
  background: #ededeb;
  color: var(--ink);
}

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(246, 246, 243, .98) 0%, rgba(246, 246, 243, .8) 31%, rgba(246, 246, 243, 0) 58%);
}

.hero-copy {
  left: clamp(24px, 5.5vw, 88px);
  top: 50%;
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 9px;
  letter-spacing: .2em;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(62px, 7.4vw, 118px);
  line-height: .88;
  letter-spacing: -.08em;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-intro {
  margin: 28px 0;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.55;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-blue:hover {
  background: var(--red);
  color: var(--white);
}

.hero-benefits {
  width: min(100%, 520px);
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 8, 8, .24);
}

.hero-benefits span {
  color: var(--ink);
  font-size: 8px;
  letter-spacing: .13em;
}

.trust-bar {
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-bar article {
  min-height: 76px;
  padding: 20px clamp(16px, 3vw, 42px);
}

.trust-bar strong {
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.trust-bar span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.shop-section {
  padding: 110px clamp(14px, 3.2vw, 52px) 130px;
  background: var(--paper);
}

.section-heading {
  align-items: flex-end;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(58px, 6.5vw, 94px);
  line-height: .9;
  letter-spacing: -.075em;
}

.filter-row {
  gap: 0;
  border: 1px solid var(--line);
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.filter:last-child {
  border-right: 0;
}

.filter.active {
  background: var(--ink);
  color: var(--white);
}

.filter:hover {
  color: var(--red);
}

.filter.active:hover {
  color: var(--white);
}

.shop-toolbar {
  position: static;
  margin: 0 0 20px;
  padding: 14px 0;
  background: transparent;
  border-block: 1px solid var(--line);
  box-shadow: none;
}

.product-search {
  max-width: 360px;
  border-bottom-color: var(--ink);
}

.product-search input {
  background: transparent;
}

.sort-control select {
  min-width: 150px;
  background: transparent;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-visual {
  aspect-ratio: 4 / 5;
  background: #ececea;
}

.card-gallery .variant-media,
.product-visual > .variant-media {
  background-color: #ececea;
}

.product-card:hover .card-media-front,
.product-card:focus-within .card-media-front {
  opacity: 0;
}

.product-card:hover .card-media-back,
.product-card:focus-within .card-media-back {
  opacity: 1;
  transform: scale(1.01);
}

.favorite-button {
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .92);
  border: 0;
}

.favorite-button.active {
  background: var(--ink);
  color: var(--red);
}

.image-toggle {
  top: 58px;
  right: 12px;
  min-width: 38px;
  height: 30px;
  background: rgba(255, 255, 255, .92);
  border: 0;
}

.product-badge {
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
}

.quick-add {
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 44px;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.quick-add:hover {
  background: var(--red);
  color: var(--white);
}

.product-info {
  min-height: 112px;
  padding: 14px 2px 0;
}

.product-info h3 {
  font-size: 13px;
}

.product-info p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-price {
  font-size: 12px;
}

.color-preview {
  margin-top: 10px;
}

.card-detail-button {
  width: 100%;
  min-height: 42px;
  padding: 0 2px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s, border-color .2s;
}

.card-detail-button:hover,
.card-detail-button:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.proof-section {
  min-height: 720px;
  grid-template-columns: 1.15fr .85fr;
  background: var(--ink);
  color: var(--white);
}

.proof-image {
  min-height: 720px;
  background: var(--red);
}

.proof-image img {
  object-fit: cover;
  object-position: center;
}

.proof-copy {
  padding: 80px clamp(34px, 6vw, 90px);
}

.proof-copy .eyebrow {
  color: var(--red);
}

.proof-copy h2 {
  font-size: clamp(52px, 5.2vw, 78px);
  line-height: .9;
  letter-spacing: -.07em;
}

.proof-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255, 255, 255, .7);
}

.proof-copy ul {
  border-color: rgba(255, 255, 255, .18);
}

.proof-copy li {
  border-color: rgba(255, 255, 255, .18);
}

.proof-copy li small {
  color: rgba(255, 255, 255, .6);
}

.proof-copy .button-light {
  background: var(--white);
  color: var(--ink);
}

.proof-copy .button-light:hover {
  background: var(--red);
  color: var(--white);
}

.faq-section {
  max-width: 1380px;
  margin: 0 auto;
  padding: 120px clamp(22px, 6vw, 90px);
  background: var(--paper);
  gap: 9vw;
}

.faq-section h2 {
  font-size: clamp(54px, 5vw, 78px);
}

.faq-list details {
  border-color: var(--line);
}

.faq-list summary {
  padding: 22px 0;
}

.newsletter {
  padding: 90px clamp(22px, 7vw, 100px);
  background: var(--red);
  color: var(--white);
}

.newsletter .eyebrow {
  color: var(--white);
}

.newsletter h2 {
  font-size: clamp(54px, 5.5vw, 82px);
}

footer {
  padding: 62px clamp(22px, 4vw, 62px) 24px;
  background: var(--ink);
}

.footer-links {
  margin-bottom: 60px;
}

.product-modal {
  width: min(1080px, calc(100vw - 48px));
  max-height: min(860px, calc(100vh - 48px));
  background: var(--white);
}

.modal-inner {
  min-height: 0;
  grid-template-columns: 1.08fr .92fr;
}

.modal-image {
  min-height: min(760px, calc(100vh - 48px));
  background: #efefec;
}

.modal-content {
  max-height: min(760px, calc(100vh - 48px));
  padding: 44px;
  overflow-y: auto;
}

.modal-content h2 {
  font-size: 48px;
}

.modal-add {
  position: sticky;
  bottom: 0;
  z-index: 4;
  margin-top: 12px;
  box-shadow: 0 -14px 24px rgba(255, 255, 255, .9);
}

.selection-summary {
  margin-top: 26px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.selection-summary span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.selection-summary strong {
  font-size: 11px;
}

.cart-drawer {
  width: min(430px, 100%);
}

.toast {
  background: var(--red);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 10px;
  }

  .proof-section {
    grid-template-columns: 1fr;
  }

  .proof-image {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .announcement {
    font-size: 7px;
  }

  .site-header {
    height: 62px;
  }

  .brand {
    width: 42px;
    height: 42px;
  }

  .site-header nav {
    top: 62px;
  }

  .header-actions {
    gap: 4px;
  }

  .cart-trigger > span:first-child {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--paper);
  }

  .hero > img {
    position: relative;
    order: 1;
    height: 390px;
    object-position: 66% center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-copy {
    position: relative;
    order: 2;
    inset: auto;
    max-width: none;
    padding: 42px 22px 36px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 74px);
  }

  .hero-intro {
    margin: 20px 0;
  }

  .hero-benefits {
    margin-top: 26px;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar article {
    min-height: 72px;
    padding: 16px 14px;
  }

  .trust-bar article:nth-child(2) {
    border-right: 0;
  }

  .shop-section {
    padding: 76px 10px 90px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 56px;
  }

  .filter-row {
    width: 100%;
    margin-top: 26px;
    overflow-x: auto;
  }

  .filter {
    flex: 1 0 auto;
    padding-inline: 14px;
  }

  .shop-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-search {
    max-width: none;
  }

  .shop-controls {
    width: 100%;
  }

  .product-grid {
    gap: 26px 7px;
  }

  .product-info {
    min-height: 126px;
    padding-inline: 8px;
  }

  .product-info h3 {
    font-size: 11px;
  }

  .quick-add {
    transform: none;
    height: 40px;
    font-size: 8px;
  }

  .card-detail-button {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 8px;
  }

  .proof-image {
    min-height: 420px;
  }

  .proof-copy {
    padding: 64px 22px;
  }

  .proof-copy h2 {
    font-size: 50px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    padding: 82px 22px;
    gap: 48px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    padding: 72px 22px;
  }

  .footer-links {
    margin-top: 48px;
  }

  .product-modal {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    margin: 0;
  }

  .modal-inner {
    display: block;
    height: 100dvh;
    overflow-y: auto;
  }

  .modal-image {
    min-height: min(440px, 54dvh);
  }

  .modal-content {
    max-height: none;
    padding: 34px 22px 60px;
    overflow: visible;
  }

  .modal-content h2 {
    font-size: 46px;
  }

  .size-row {
    flex-wrap: wrap;
  }
}

/* Product-first mobile commerce refinement — 31 July 2026 */
.search-trigger,
.favorite-trigger,
.mobile-shop-dock,
.filter-row,
.shop-toolbar {
  display: none !important;
}

.hero-editorial {
  min-height: auto;
  grid-template-columns: minmax(390px, .72fr) minmax(0, 1.28fr);
}

.hero-editorial-copy,
.hero-editorial-stage {
  min-height: clamp(570px, 72vh, 720px);
}

.hero-editorial-stage {
  background: #e8e7e3;
}

.hero-model-card > img {
  object-fit: cover;
  object-position: center;
  filter: none;
}

.shop-section {
  padding-top: clamp(68px, 7vw, 96px);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading-copy {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(54px, 6vw, 88px);
}

.product-card {
  overflow: hidden;
}

.product-card-link {
  display: block;
  height: 100%;
}

.product-visual {
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #fff;
}

.product-visual .card-gallery,
.product-visual .variant-media {
  background: #fff;
}

.product-visual .variant-media img {
  transform: scale(1.045);
  transition: opacity .25s ease, transform .35s ease;
}

.product-card:hover .product-visual .variant-media img {
  transform: scale(1.085);
}

.product-info {
  min-height: 104px;
  padding: 18px 16px 20px;
  align-items: start;
}

.product-info h3 {
  font-size: 17px;
}

.product-launch-status {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font: 800 8px/1.25 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-info p {
  margin-top: 5px;
  font-size: 8px;
}

.product-price {
  padding-top: 2px;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .header-actions {
    gap: 13px;
  }

  .cart-trigger span:first-child {
    display: none;
  }

  .hero-editorial-copy {
    min-height: 0;
    padding: 42px 22px 36px;
  }

  .hero-editorial-stage {
    min-height: 0;
    aspect-ratio: 1 / .86;
  }

  .hero-model-card > img {
    object-fit: cover;
    object-position: 68% center;
  }

  .brand-strip span {
    min-height: 62px;
  }

  .shop-section {
    padding: 64px 12px 86px;
  }

  .section-heading {
    margin: 0 10px 28px;
  }

  .section-heading-copy > p:last-child {
    max-width: 34ch;
    line-height: 1.55;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .product-card {
    border: 0;
    background: transparent;
  }

  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-visual {
    aspect-ratio: 1 / 1;
  }

  .product-visual .variant-media img {
    transform: scale(1.08);
  }

  .product-info {
    min-height: 86px;
    padding: 15px 4px 0;
  }

  .product-info h3 {
    font-size: 19px;
  }

  .product-launch-status {
    font-size: 9px;
  }

  .product-info p {
    margin-top: 6px;
    font-size: 8px;
  }

  .product-price {
    font-size: 15px;
  }
}

.motion-ready .product-card.site-reveal,
.motion-ready .product-card.site-reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Subtle conversion feedback without fake urgency or continuous motion. */
.motion-ready .site-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.motion-ready .site-reveal.revealed {
  opacity: 1;
  transform: none;
  transition:
    opacity .55s ease var(--reveal-delay, 0ms),
    transform .55s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms);
}

.add-feedback {
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 6px solid var(--white);
  background: var(--red);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-7deg);
  pointer-events: none;
  animation: site-stamp-in .82s cubic-bezier(.2, .9, .2, 1) both;
  box-shadow: 10px 12px 0 rgba(8, 8, 8, .86);
}

.add-feedback strong {
  font: 800 31px var(--font-head);
  letter-spacing: -.06em;
}

.add-feedback span {
  font: 800 8px var(--font-head);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cart-count.pop {
  animation: site-cart-pop .45s ease;
}

@keyframes site-stamp-in {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.55) rotate(-14deg); }
  30% { opacity: 1; transform: translate(-50%, -50%) scale(1.06) rotate(-7deg); }
  72% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-7deg); }
  100% { opacity: 0; transform: translate(-50%, -56%) scale(.96) rotate(-4deg); }
}

@keyframes site-cart-pop {
  50% { transform: scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .site-reveal,
  .motion-ready .site-reveal.revealed {
    opacity: 1;
    transform: none;
  }

  .add-feedback,
  .cart-count.pop {
    animation: none !important;
  }
}

@media (max-width: 390px) {
  .hero > img {
    height: 340px;
  }

  .hero h1 {
    font-size: 53px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-info h3 {
    font-size: 10px;
  }

  .filter {
    padding-inline: 12px;
  }
}

/* Drop 01: youth-first editorial commerce layer. */
.announcement {
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  z-index: 2;
}

.hero h1 {
  max-width: 860px;
}

.hero-intro {
  max-width: 510px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-text-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-text-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.hero-drop-mark {
  position: absolute;
  right: clamp(18px, 3vw, 48px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 2;
  width: 110px;
  height: 110px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--red);
  color: var(--white);
  transform: rotate(4deg);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-drop-mark span {
  font: 800 48px/.8 var(--font-head);
  letter-spacing: -.08em;
}

.hero-drop-mark small {
  margin-top: 10px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.culture-ticker {
  overflow: hidden;
  padding: 16px 0;
  background: var(--red);
  color: var(--white);
}

.culture-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: cultureTicker 24s linear infinite;
  font: 800 12px var(--font-head);
  letter-spacing: .12em;
}

.culture-ticker i {
  font-style: normal;
}

@keyframes cultureTicker {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .culture-ticker-track {
    animation: none;
  }
}

.trust-bar article {
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.trust-bar article:last-child {
  border-right: 0;
}

.trust-bar article > span {
  flex: 0 0 auto;
  margin: 0;
  color: var(--red);
  font: 800 22px/1 var(--font-head);
  letter-spacing: -.08em;
}

.trust-bar article div {
  min-width: 0;
}

.trust-bar article small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.drop-intro {
  padding: 110px clamp(22px, 5vw, 80px);
  display: grid;
  grid-template-columns: .35fr 1.45fr .85fr;
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.drop-number {
  margin: 0;
  color: var(--red);
  font: 800 clamp(44px, 5vw, 76px)/.78 var(--font-head);
  letter-spacing: -.09em;
}

.drop-intro h2 {
  margin: 0;
  font: 800 clamp(48px, 6vw, 92px)/.88 var(--font-head);
  letter-spacing: -.075em;
}

.drop-intro h2 em {
  color: var(--red);
  font-style: normal;
}

.drop-intro-copy p {
  margin: 0;
  color: #474747;
  font-size: 15px;
  line-height: 1.65;
}

.drop-intro-copy .text-link {
  justify-content: space-between;
}

.shop-section {
  scroll-margin-top: 90px;
}

.section-heading h2 {
  text-wrap: balance;
}

.product-card {
  position: relative;
}

.product-card::before {
  content: attr(data-id);
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-price::after {
  content: "indicatie";
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.proof-section {
  scroll-margin-top: 90px;
}

.proof-copy li > span {
  color: var(--red);
  font: 800 20px var(--font-head);
}

.modal-price small {
  margin-left: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shipping-progress .progress i {
  background: repeating-linear-gradient(90deg, var(--red) 0 9px, transparent 9px 14px);
}

.mobile-shop-dock {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }

  .announcement span:first-child,
  .announcement span:nth-child(2) {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    padding-inline: 14px;
  }

  .hero > img {
    height: min(40vh, 330px);
    object-position: 64% center;
  }

  .hero-copy {
    padding: 28px 22px 30px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.4vw, 58px);
  }

  .hero-intro {
    max-width: 37ch;
    margin-block: 16px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button,
  .hero-text-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-text-link {
    padding-inline: 2px;
  }

  .hero-benefits {
    margin-top: 20px;
  }

  .hero-drop-mark {
    top: 26px;
    right: 16px;
    bottom: auto;
    width: 78px;
    height: 78px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .hero-drop-mark span {
    font-size: 34px;
  }

  .hero-drop-mark small {
    margin-top: 6px;
    font-size: 5px;
  }

  .culture-ticker {
    padding-block: 13px;
  }

  .culture-ticker-track {
    gap: 22px;
    font-size: 10px;
  }

  .trust-bar {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .trust-bar article {
    flex: 0 0 76vw;
    min-height: 82px;
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .drop-intro {
    padding: 76px 22px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .drop-number {
    font-size: 48px;
  }

  .drop-intro h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .shop-section {
    padding-inline: 12px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .filter-row {
    margin-inline: -2px;
    padding-bottom: 3px;
    border: 0;
    gap: 7px;
  }

  .filter {
    flex: 0 0 auto;
    border: 1px solid var(--line);
  }

  .product-card::before {
    padding-inline: 8px;
  }

  .product-info {
    min-height: 136px;
  }

  .product-price::after {
    text-align: left;
  }

  .proof-copy .button {
    width: 100%;
    justify-content: space-between;
  }

  footer {
    padding-bottom: 40px;
  }

  .mobile-shop-dock {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 9px;
    z-index: 38;
    height: 58px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(8, 8, 8, .96);
    color: var(--white);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
    backdrop-filter: blur(16px);
  }

  .mobile-shop-dock a,
  .mobile-shop-dock button {
    position: relative;
    min-width: 0;
    height: 48px;
    padding: 5px 3px;
    border: 0;
    background: transparent;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .mobile-shop-dock a > span,
  .mobile-shop-dock button > span {
    font-size: 17px;
    line-height: 1;
  }

  .mobile-shop-dock .cart-count,
  .mobile-shop-dock .favorite-count {
    position: absolute;
    top: 2px;
    right: calc(50% - 23px);
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 7px;
  }

  .cart-drawer {
    padding-bottom: 0;
  }
}

/* Premium conversion homepage — compact, product-first and image-safe. */
.announcement {
  position: relative;
  padding-inline: 18px;
}

.announcement a {
  position: absolute;
  right: 20px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.announcement a:hover {
  color: #ff5b60;
}

.hero {
  height: min(660px, calc(100vh - 94px));
  min-height: 590px;
  isolation: isolate;
  background: #e9e8e5;
}

.hero > img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #e9e8e5;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(233, 232, 229, .96) 0%, rgba(233, 232, 229, .82) 31%, rgba(233, 232, 229, 0) 53%);
}

.hero-copy {
  left: clamp(22px, 4vw, 66px);
  width: min(43vw, 660px);
  max-width: 660px;
  padding: clamp(24px, 3vw, 44px);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(8, 8, 8, .1);
  box-shadow: 0 26px 70px rgba(8, 8, 8, .12);
  backdrop-filter: blur(14px);
}

.hero h1 {
  font-size: clamp(58px, 6.6vw, 102px);
}

.hero-intro {
  max-width: 44ch;
  margin: 22px 0;
  font-size: 14px;
}

.hero-actions {
  gap: 10px;
}

.hero-actions .button {
  min-width: 190px;
  min-height: 58px;
  justify-content: space-between;
}

.hero-text-link {
  min-height: 58px;
  padding-inline: 18px;
  border: 1px solid var(--ink);
  background: var(--white);
  text-decoration: none;
}

.hero-text-link:hover {
  background: var(--red);
  color: var(--white);
}

.hero-benefits {
  margin-top: 24px;
}

.hero-drop-mark {
  bottom: 30px;
}

.trust-bar {
  box-shadow: 0 12px 30px rgba(8, 8, 8, .045);
}

.quick-shop {
  padding: 68px clamp(18px, 3.2vw, 52px) 76px;
  background: var(--ink);
  color: var(--white);
}

.quick-shop-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .6fr);
  gap: 40px;
  align-items: end;
}

.quick-shop-heading h2 {
  margin: 0;
  font: 700 clamp(44px, 5.4vw, 78px)/.9 var(--font-head);
  letter-spacing: -.07em;
}

.quick-shop-heading h2 em {
  color: var(--red);
  font-style: normal;
}

.quick-shop-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.65;
}

.quick-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quick-shop-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #f2f2ef;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s;
}

.quick-shop-card:hover,
.quick-shop-card:focus-visible {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .35);
}

.quick-shop-index {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font: 800 8px var(--font-head);
}

.quick-shop-card-featured .quick-shop-index {
  background: var(--red);
}

.quick-shop-image {
  aspect-ratio: 1 / 1;
  padding: 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8e8e4;
}

.quick-shop-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .35s ease;
}

.quick-shop-card:hover .quick-shop-image img {
  transform: scale(1.025);
}

.quick-shop-copy {
  padding: 17px 18px 19px;
  border-top: 1px solid var(--line);
}

.quick-shop-copy small {
  color: var(--red);
  font: 800 8px var(--font-head);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.quick-shop-copy h3 {
  margin: 8px 0 6px;
  font: 700 19px var(--font-head);
  letter-spacing: -.03em;
}

.quick-shop-copy p {
  margin: 0;
  font-size: 11px;
}

.quick-shop-copy p span {
  color: var(--muted);
  font-size: 7px;
  text-transform: uppercase;
}

.quick-shop-copy b {
  margin-top: 17px;
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font: 800 9px var(--font-head);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.drop-intro {
  padding-block: 72px;
}

.shop-section {
  padding-top: 82px;
}

.product-grid {
  gap: 18px 12px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, .1);
  box-shadow: 0 8px 28px rgba(8, 8, 8, .045);
}

.product-card::before {
  margin: 0;
  padding: 11px 13px;
  background: var(--ink);
  color: var(--white);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(8, 8, 8, .12);
}

.card-gallery .direct-media,
.product-visual > .direct-media,
.cart-thumb .direct-media {
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.product-visual {
  aspect-ratio: 1 / 1.08;
}

.product-info {
  min-height: 120px;
  padding: 17px 14px 13px;
}

.product-info h3 {
  font-size: 16px;
}

.product-price {
  font-size: 14px;
}

.card-detail-button {
  min-height: 48px;
  padding-inline: 14px;
  border-top: 1px solid var(--ink);
  background: var(--white);
  font-size: 9px;
}

.card-detail-button:hover,
.card-detail-button:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.hero-product {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  background: var(--red);
  color: var(--white);
}

.hero-product-image {
  position: relative;
  min-height: 720px;
  padding: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8e8e4;
}

.hero-product-image img {
  width: 100%;
  height: 100%;
  max-height: 660px;
  display: block;
  object-fit: contain;
}

.hero-product-image > span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 11px 14px;
  background: var(--ink);
  color: var(--white);
  font: 800 8px var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-product-copy {
  padding: clamp(62px, 8vw, 120px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hero-product-copy .eyebrow {
  color: var(--white);
}

.hero-product-copy h2 {
  margin: 0;
  font: 700 clamp(58px, 6.2vw, 98px)/.86 var(--font-head);
  letter-spacing: -.08em;
}

.hero-product-copy h2 em {
  color: var(--ink);
  font-style: normal;
}

.hero-product-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  font-size: 15px;
  line-height: 1.7;
}

.hero-product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero-product-options span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .55);
  font: 800 8px var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-product-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-product-actions .button {
  min-width: 210px;
  justify-content: space-between;
}

.hero-product-link {
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font: 800 9px var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero-copy {
    width: min(54vw, 600px);
  }

  .quick-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .announcement {
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .announcement a {
    right: 14px;
    font-size: 6px;
  }

  .hero {
    display: grid;
    height: auto;
    min-height: 0;
    background: var(--paper);
  }

  .hero > img {
    position: relative;
    order: 1;
    height: 300px;
    object-fit: contain;
    object-position: center;
  }

  .hero-copy {
    position: relative;
    order: 2;
    width: auto;
    max-width: none;
    inset: auto;
    margin: -42px 12px 0;
    padding: 24px 20px 24px;
    transform: none;
    background: var(--white);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(43px, 12.4vw, 50px);
  }

  .hero-intro {
    margin-block: 14px;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-actions .button,
  .hero-text-link {
    min-height: 52px;
  }

  .hero-drop-mark {
    top: 24px;
    bottom: auto;
  }

  .quick-shop {
    padding: 58px 12px 64px;
  }

  .quick-shop-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quick-shop-heading h2 {
    font-size: 48px;
  }

  .quick-shop-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .quick-shop-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .quick-shop-image {
    aspect-ratio: 1 / .9;
  }

  .drop-intro {
    padding-block: 58px;
  }

  .shop-section {
    padding-top: 64px;
  }

  .product-card::before {
    padding: 9px 10px;
  }

  .product-visual {
    aspect-ratio: 1 / 1.14;
  }

  .product-info {
    min-height: 128px;
    padding: 13px 10px;
  }

  .product-info h3 {
    font-size: 12px;
  }

  .card-detail-button {
    min-height: 44px;
    padding-inline: 10px;
  }

  .hero-product {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-product-image {
    min-height: 520px;
    padding: 24px;
  }

  .hero-product-image img {
    max-height: 480px;
  }

  .hero-product-copy {
    padding: 68px 22px 74px;
  }

  .hero-product-copy h2 {
    font-size: 58px;
  }

  .hero-product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-product-actions .button,
  .hero-product-link {
    width: 100%;
  }

  .hero-product-link {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* Editorial streetwear concept — deliberately distinct from the still-life homepage. */
.announcement {
  background: var(--red);
}

.announcement a:hover {
  color: var(--ink);
}

.site-header {
  background: rgba(8, 8, 8, .96);
  color: var(--white);
  border-color: rgba(255, 255, 255, .16);
}

.site-header a:hover,
.site-header button:hover {
  color: var(--red);
}

.site-header .icon-button svg,
.site-header .favorite-trigger svg {
  stroke: currentColor;
}

.hero-editorial {
  position: relative;
  min-height: min(760px, calc(100vh - 94px));
  display: grid;
  grid-template-columns: minmax(430px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.hero-editorial-copy {
  position: relative;
  z-index: 2;
  min-height: 690px;
  padding: clamp(52px, 6vw, 96px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--red);
}

.hero-editorial-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border: 46px solid rgba(8, 8, 8, .12);
  transform: rotate(18deg);
}

.hero-editorial-kicker {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 800 9px var(--font-head);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-editorial-kicker span {
  padding: 8px 10px;
  background: var(--ink);
  color: var(--white);
}

.hero-editorial h1 {
  margin: 0;
  color: var(--white);
  font: 700 clamp(68px, 7.1vw, 104px)/.78 var(--font-head);
  letter-spacing: -.095em;
  white-space: nowrap;
}

.hero-editorial h1 em {
  color: var(--ink);
  font-style: normal;
}

.hero-editorial-intro {
  max-width: 47ch;
  margin: 34px 0 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  line-height: 1.65;
}

.hero-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-editorial-primary,
.hero-editorial-secondary {
  min-height: 58px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  border: 1px solid var(--ink);
  font: 800 10px var(--font-head);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-editorial-primary {
  min-width: 210px;
  background: var(--ink);
  color: var(--white);
}

.hero-editorial-secondary {
  background: transparent;
  color: var(--ink);
}

.hero-editorial-primary:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-editorial-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.hero-editorial-meta {
  margin-top: 31px;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(8, 8, 8, .35);
}

.hero-editorial-meta span {
  font: 800 8px var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-editorial-stage {
  position: relative;
  min-width: 0;
  min-height: 690px;
  padding-right: 34px;
  display: block;
  background: var(--white);
}

.hero-model-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  display: block;
  background: var(--white);
}

.hero-model-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.hero-model-card > span,
.hero-mini-product > span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 14px;
  background: rgba(255, 255, 255, .93);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.hero-model-card small,
.hero-mini-product small {
  color: var(--red);
  font: 800 7px var(--font-head);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-model-card strong,
.hero-mini-product strong {
  grid-column: 1;
  font: 700 17px var(--font-head);
}

.hero-model-card b {
  grid-column: 2;
  grid-row: 1 / 3;
  font: 700 12px var(--font-head);
}

.hero-model-card b i {
  display: block;
  color: var(--muted);
  font-size: 6px;
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.hero-product-stack {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.hero-mini-product {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: block;
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.hero-mini-product:last-child {
  border-bottom: 0;
}

.hero-mini-product > img {
  width: 100%;
  height: 100%;
  padding: 22px;
  display: block;
  object-fit: contain;
}

.hero-mini-product > span {
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px 11px;
}

.hero-mini-product strong {
  font-size: 12px;
}

.hero-mini-product b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font: 800 7px var(--font-head);
  text-transform: uppercase;
}

.hero-mini-product-dark {
  background: #171717;
}

.hero-editorial-sticker {
  position: absolute;
  z-index: 4;
  top: 24px;
  left: 24px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  border: 4px solid var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  font: 800 25px var(--font-head);
  letter-spacing: -.06em;
  transform: rotate(-6deg);
}

.hero-editorial-rail {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  margin: 0;
  padding: 18px 0;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  font: 800 7px var(--font-head);
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.brand-strip span {
  min-height: 132px;
  padding: 28px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .2);
  font: 800 clamp(22px, 3vw, 50px)/.94 var(--font-head);
  letter-spacing: -.065em;
  text-align: center;
}

.brand-strip span:nth-child(2) {
  background: var(--red);
}

.brand-strip span:last-child {
  border-right: 0;
}

.trust-bar {
  background: var(--red);
  color: var(--white);
}

.trust-bar article {
  border-color: rgba(255, 255, 255, .28);
}

.trust-bar article > span,
.trust-bar article small {
  color: var(--white);
}

.quick-shop {
  background: #f1f1ed;
  color: var(--ink);
}

.quick-shop-heading > p {
  color: #575752;
}

.quick-shop-card {
  background: var(--white);
  border-color: rgba(8, 8, 8, .15);
}

.quick-shop-card-featured {
  background: var(--red);
  color: var(--white);
}

.quick-shop-card-featured .quick-shop-copy small,
.quick-shop-card-featured .quick-shop-copy p span {
  color: var(--white);
}

.quick-shop-card-featured .quick-shop-copy,
.quick-shop-card-featured .quick-shop-copy b {
  border-color: rgba(255, 255, 255, .35);
}

.drop-intro {
  display: none;
}

.shop-section {
  background: var(--white);
  padding-top: 86px;
}

.section-heading-copy {
  max-width: 720px;
}

.section-heading-copy > p:last-child {
  max-width: 54ch;
  margin: 22px 0 0;
  color: #595954;
  font-size: 14px;
  line-height: 1.65;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 14px;
}

.product-visual {
  aspect-ratio: 1 / 1.08;
  background: var(--white);
}

.product-visual .card-gallery,
.product-visual .variant-media {
  background-color: var(--white);
}

.modal-image,
.cart-thumb,
.related-thumb {
  background-color: var(--white);
}

.modal-image .variant-media,
.cart-thumb .variant-media,
.related-thumb .variant-media {
  background-color: var(--white) !important;
}

.product-info {
  min-height: 106px;
}

@media (max-width: 1080px) {
  .hero-editorial {
    grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
  }

  .hero-editorial-copy {
    padding: 48px 38px;
  }

  .hero-editorial h1 {
    font-size: clamp(76px, 8vw, 112px);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    background: var(--ink);
  }

  .site-header nav {
    background: var(--ink);
    color: var(--white);
  }

  .hero-editorial {
    display: block;
    min-height: 0;
  }

  .hero-editorial-copy {
    min-height: 0;
    padding: 50px 22px 42px;
  }

  .hero-editorial-kicker {
    margin-bottom: 20px;
    font-size: 7px;
  }

  .hero-editorial h1 {
    font-size: clamp(64px, 19vw, 78px);
  }

  .hero-editorial-intro {
    margin-block: 27px 24px;
    font-size: 13px;
  }

  .hero-editorial-actions {
    display: grid;
  }

  .hero-editorial-primary,
  .hero-editorial-secondary {
    width: 100%;
  }

  .hero-editorial-stage {
    min-height: 520px;
    padding: 0;
  }

  .hero-model-card {
    border-right: 0;
    border-bottom: 0;
  }

  .hero-editorial-sticker {
    width: 76px;
    height: 76px;
    font-size: 20px;
  }

  .hero-editorial-rail {
    display: none;
  }

  .brand-strip {
    grid-template-columns: 1fr;
  }

  .brand-strip span {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    font-size: clamp(25px, 9vw, 40px);
  }

  .brand-strip span:last-child {
    border-bottom: 0;
  }

  .trust-bar {
    background: var(--red);
  }

  .quick-shop {
    background: #f1f1ed;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shop-section {
    padding-top: 68px;
  }

  .section-heading-copy > p:last-child {
    margin-top: 16px;
    font-size: 13px;
  }

  .product-visual {
    aspect-ratio: 1 / .84;
  }
}

/* Pre-launch clarity, accessibility and compact mobile collection. */
.announcement strong {
  padding: 5px 8px;
  background: var(--ink);
  color: var(--white);
  font: 800 8px var(--font-head);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-prelaunch-note {
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font: 800 8px var(--font-head);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-prelaunch-note span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--ink);
  border-radius: 50%;
}

.hero-editorial-secondary {
  background: var(--white);
  color: var(--ink);
}

.proof-copy .eyebrow,
.proof-copy li > span {
  color: #ff6670;
}

.site-header nav a,
.brand,
.icon-button,
.favorite-trigger,
.cart-trigger,
.menu-button,
.filter,
.favorite-button,
.image-toggle,
.card-color,
.card-detail-button,
.clear-search {
  min-height: 44px;
}

.brand,
.icon-button,
.favorite-trigger,
.cart-trigger,
.menu-button {
  min-width: 44px;
}

.favorite-button {
  width: 44px;
  height: 44px;
}

.image-toggle {
  min-width: 56px;
  height: 44px;
}

.card-color {
  width: 44px;
  height: 44px;
  padding: 11px;
}

.card-color .swatch {
  width: 16px;
  height: 16px;
}

.clear-search {
  min-width: 44px;
}

.quantity button,
.remove-item,
footer a,
footer button {
  min-height: 44px;
}

.quantity button {
  min-width: 44px;
}

footer a,
footer button {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 760px) {
  .announcement {
    padding-inline: 12px;
    justify-content: space-between;
  }

  .announcement > span {
    display: none;
  }

  .announcement strong {
    padding-block: 4px;
    font-size: 7px;
  }

  .announcement a {
    margin-left: auto;
    font-size: 7px;
  }

  .hero-editorial-copy {
    padding-bottom: 36px;
  }

  .hero-prelaunch-note {
    margin-top: 14px;
    font-size: 7px;
  }

  .shop-section {
    padding-inline: 8px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 8px;
  }

  .product-card::before {
    min-height: 25px;
    margin: 0;
    padding: 8px 7px 0;
    overflow: hidden;
    font-size: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .product-visual {
    aspect-ratio: 1 / 1.16;
  }

  .product-badge {
    top: 7px;
    left: 7px;
    padding: 7px;
    font-size: 6px;
  }

  .favorite-button {
    top: 7px;
    right: 7px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .image-toggle,
  .product-card:has(.product-badge) .image-toggle {
    top: 58px;
    right: 7px;
    min-width: 52px;
    height: 44px;
    padding-inline: 7px;
    font-size: 7px;
  }

  .quick-add {
    left: 7px;
    right: 7px;
    bottom: 7px;
    height: 44px;
    font-size: 7px;
  }

  .product-info {
    min-height: 142px;
    padding: 12px 10px 10px;
  }

  .product-info h3 {
    font-size: 12px;
  }

  .product-info p {
    min-height: 31px;
    font-size: 7px;
    line-height: 1.4;
  }

  .product-price {
    margin-top: 8px;
    font-size: 12px;
  }

  .product-price::after {
    font-size: 6px;
  }

  .color-preview {
    gap: 2px;
    margin-top: 4px;
  }

  .card-color {
    width: 44px;
    height: 44px;
    padding: 13px;
  }

  .card-color .swatch {
    width: 16px;
    height: 16px;
  }

  .card-detail-button {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 7px;
  }

  .mobile-shop-dock a,
  .mobile-shop-dock button {
    width: 100%;
    min-width: 44px;
  }
}

/* Premium calm refinement — 31 July 2026 */
:root {
  --red: #d91f2d;
  --paper: #f5f4f0;
  --soft: #ecebe7;
  --muted: #666661;
  --line: rgba(8, 8, 8, .12);
}

body {
  background: var(--paper);
}

.announcement {
  height: 30px;
  padding-inline: clamp(18px, 3vw, 48px);
  background: var(--ink);
  color: rgba(255, 255, 255, .76);
  letter-spacing: .12em;
}

.announcement strong {
  padding: 0;
  background: transparent;
  color: var(--white);
}

.announcement a {
  color: var(--white);
}

@supports (backdrop-filter: blur(16px)) {
  .site-header {
    background: rgba(245, 244, 240, .94);
  }
}

.site-header {
  height: 70px;
  background: rgba(245, 244, 240, .96);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(8, 8, 8, .03);
}

.site-header nav {
  gap: clamp(22px, 2.4vw, 36px);
}

.site-header nav a {
  position: relative;
  color: var(--ink);
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--red);
  transition: right .2s ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  right: 0;
}

.hero-editorial {
  min-height: min(680px, calc(100vh - 100px));
  grid-template-columns: minmax(440px, .9fr) minmax(0, 1.1fr);
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: var(--line);
}

.hero-editorial-copy {
  min-height: 650px;
  padding: clamp(54px, 6vw, 92px);
  background: var(--paper);
}

.hero-editorial-copy::after,
.hero-editorial-sticker,
.hero-editorial-rail {
  display: none;
}

.hero-editorial-kicker {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 8px;
}

.hero-editorial-kicker span {
  padding: 7px 9px;
  background: transparent;
  color: var(--red);
  border: 1px solid rgba(217, 31, 45, .35);
}

.hero-editorial h1 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(54px, 4.6vw, 70px);
  line-height: .92;
  letter-spacing: -.075em;
  white-space: normal;
}

.hero-editorial h1 em {
  color: var(--red);
}

.hero-editorial-intro {
  max-width: 46ch;
  margin: 28px 0 27px;
  color: #4f4f4b;
  font-size: 15px;
  line-height: 1.7;
}

.hero-editorial-primary {
  min-width: 206px;
  min-height: 54px;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero-editorial-primary:hover,
.hero-editorial-primary:focus-visible {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.hero-prelaunch-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 7px;
}

.hero-prelaunch-note span {
  width: 6px;
  height: 6px;
  background: var(--red);
}

.hero-editorial-stage {
  min-height: 650px;
  padding: 0;
  background: var(--soft);
  border-left: 1px solid var(--line);
}

.hero-model-card {
  background: var(--soft);
}

.hero-model-card > img {
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.88) contrast(.98);
}

.brand-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
  color: var(--ink);
  border-block: 1px solid var(--line);
}

.brand-strip span {
  min-height: 82px;
  padding: 20px;
  border-right-color: var(--line);
  font-size: clamp(18px, 1.75vw, 28px);
  letter-spacing: -.055em;
}

.brand-strip span:nth-child(2) {
  background: transparent;
  color: var(--red);
}

.trust-bar {
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.trust-bar article {
  min-height: 102px;
  padding: 22px clamp(16px, 2.2vw, 34px);
  border-color: var(--line);
}

.trust-bar article > span {
  color: var(--red);
}

.trust-bar article small {
  margin-top: 4px;
  color: var(--muted);
}

.shop-section {
  padding-top: clamp(76px, 8vw, 116px);
  padding-bottom: clamp(88px, 9vw, 132px);
  background: var(--paper);
}

.section-heading {
  align-items: end;
}

.section-heading h2 {
  margin-top: 9px;
  font-size: clamp(48px, 5.4vw, 76px);
  letter-spacing: -.06em;
}

.section-heading-copy > p:last-child {
  margin-top: 17px;
  color: var(--muted);
}

.filter-row {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .52);
}

.filter {
  border-color: var(--line);
  color: #595954;
}

.filter:hover,
.filter:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.filter.active {
  background: var(--ink);
  color: var(--white);
}

.shop-toolbar {
  margin-bottom: 28px;
  border-color: var(--line);
}

.product-search {
  max-width: 390px;
}

.product-grid {
  gap: 18px;
}

.product-card {
  background: var(--white);
  border-color: rgba(8, 8, 8, .1);
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card::before {
  display: none;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 8, 8, .22);
  box-shadow: 0 16px 36px rgba(8, 8, 8, .07);
}

.product-visual {
  aspect-ratio: 1 / 1.12;
  background: #f3f3f0;
}

.product-visual .card-gallery,
.product-visual .variant-media {
  background-color: #f3f3f0;
}

.product-badge {
  padding: 7px 9px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  border: 1px solid rgba(8, 8, 8, .16);
  font-size: 7px;
  backdrop-filter: blur(8px);
}

.favorite-button {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(8, 8, 8, .12);
  backdrop-filter: blur(8px);
}

.image-toggle {
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  border: 1px solid rgba(8, 8, 8, .12);
  backdrop-filter: blur(8px);
}

.quick-add {
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 46px;
  background: rgba(8, 8, 8, .94);
  color: var(--white);
  border: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.product-card:hover .quick-add,
.product-card:focus-within .quick-add {
  opacity: 1;
  transform: none;
}

.quick-add:hover,
.quick-add:focus-visible {
  background: var(--red);
}

.product-info {
  min-height: 128px;
  padding: 18px 16px 14px;
}

.product-info h3 {
  font-size: 15px;
  letter-spacing: -.035em;
}

.product-info p {
  color: var(--muted);
}

.product-price {
  font-size: 14px;
}

.card-detail-button {
  min-height: 50px;
  padding-inline: 16px;
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.card-detail-button:hover,
.card-detail-button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.proof-section {
  min-height: 650px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  background: #101010;
}

.proof-image {
  min-height: 650px;
}

.proof-image img {
  filter: saturate(.88) contrast(.98);
}

.proof-copy {
  padding: clamp(56px, 6vw, 86px);
}

.proof-copy h2 {
  max-width: 560px;
  font-size: clamp(46px, 4.4vw, 66px);
  line-height: .95;
}

.proof-copy > p:not(.eyebrow) {
  margin-block: 25px 30px;
  line-height: 1.7;
}

.proof-copy li {
  padding-block: 18px;
}

.proof-copy .button-light {
  min-width: 214px;
}

.faq-section {
  max-width: 1280px;
  padding-block: clamp(88px, 9vw, 122px);
  background: var(--paper);
}

.faq-section h2 {
  font-size: clamp(44px, 4.5vw, 64px);
  letter-spacing: -.055em;
}

.faq-list summary {
  padding-block: 20px;
}

.newsletter {
  padding-block: clamp(72px, 7vw, 96px);
  background: var(--ink);
  color: var(--white);
}

.newsletter .eyebrow {
  color: #ff747d;
}

.newsletter h2 {
  font-size: clamp(44px, 4.8vw, 68px);
}

.email-field input {
  background: var(--white);
}

.email-field button {
  background: var(--red);
  color: var(--white);
}

.email-field button:hover,
.email-field button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 1080px) {
  .hero-editorial {
    grid-template-columns: minmax(350px, .82fr) minmax(0, 1.18fr);
  }

  .hero-editorial-copy {
    padding: 50px 38px;
  }

  .hero-editorial h1 {
    font-size: clamp(50px, 5.8vw, 62px);
  }
}

@media (max-width: 760px) {
  .announcement {
    padding-inline: 14px;
  }

  .site-header,
  .site-header nav {
    background: rgba(245, 244, 240, .98);
    color: var(--ink);
  }

  .hero-editorial {
    display: block;
  }

  .hero-editorial-copy {
    min-height: 0;
    padding: 44px 22px 38px;
  }

  .hero-editorial-kicker {
    margin-bottom: 21px;
  }

  .hero-editorial h1 {
    max-width: 340px;
    font-size: clamp(43px, 12vw, 50px);
    line-height: .96;
  }

  .hero-editorial-intro {
    margin-block: 23px;
    font-size: 13px;
  }

  .hero-editorial-stage {
    min-height: 470px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-strip span {
    min-height: 74px;
    padding: 10px 7px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    font-size: clamp(12px, 3.7vw, 15px);
    line-height: 1.05;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar article {
    min-height: 96px;
    padding: 18px 14px;
  }

  .shop-section {
    padding: 62px 10px 82px;
  }

  .section-heading h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .product-grid {
    gap: 14px 8px;
  }

  .product-visual {
    aspect-ratio: 1 / 1.18;
  }

  .product-badge {
    top: 7px;
    left: 7px;
  }

  .quick-add {
    left: 7px;
    right: 7px;
    bottom: 7px;
    opacity: 1;
    transform: none;
  }

  .product-info {
    min-height: 136px;
    padding: 12px 10px 10px;
  }

  .card-detail-button {
    min-height: 48px;
    padding-inline: 10px;
  }

  .proof-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .proof-image {
    min-height: 420px;
  }

  .proof-copy {
    padding: 54px 22px 60px;
  }

  .proof-copy h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .faq-section {
    padding: 78px 22px;
  }

  .newsletter {
    padding: 62px 22px;
  }
}

/* Final product-first cascade */
.search-trigger,
.favorite-trigger,
.mobile-shop-dock,
.filter-row,
.shop-toolbar {
  display: none !important;
}

.product-card-link {
  display: block;
  height: 100%;
}

.product-card-link:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.product-visual {
  overflow: hidden;
  background: #fff;
}

.product-visual .card-gallery,
.product-visual .variant-media {
  background-color: #fff;
}

.product-visual .variant-media img {
  transform: scale(1.045);
}

.product-info {
  min-height: 104px;
  padding: 18px 16px 20px;
  align-items: start;
}

.product-info h3 {
  font-size: 17px;
}

.product-info p {
  margin-top: 5px;
  font-size: 8px;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .hero-editorial-stage {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .hero-model-card > img {
    object-fit: cover;
    object-position: center;
  }

  .shop-section {
    padding: 62px 12px 88px;
  }

  .section-heading {
    margin: 0 10px 28px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-card {
    border: 0;
    background: transparent;
  }

  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-visual {
    aspect-ratio: 1 / 1;
  }

  .product-visual .variant-media img {
    transform: scale(1.08);
  }

  .product-info {
    min-height: 82px;
    padding: 15px 4px 0;
  }

  .product-info h3 {
    font-size: 19px;
  }

  .product-price {
    font-size: 15px;
  }
}
