:root {
  --ink: #111;
  --muted: #777;
  --surface: #f4f4f2;
  --line: #dededb;
  --accent: #d63832;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, system-ui, sans-serif;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 744px;
  overflow: hidden;
  color: #fff;
  background: #222;
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.58) 0, rgba(0,0,0,.22) 22%, transparent 48%),
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,.78) 100%);
}

.navbar {
  position: relative;
  z-index: 2;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled .navbar {
  color: #111;
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(17,17,17,.12);
  box-shadow: 0 6px 24px rgba(17,17,17,.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.logo {
  font-size: 17px;
  font-weight: 800;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.brand-mark {
  width: 28px;
  height: 35px;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand-wordmark {
  width: 108px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand-lockup img {
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}
.site-header.scrolled .brand-lockup img {
  filter: none;
}
.header-search {
  width: min(480px, 40vw);
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 44px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(0,0,0,.16);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.header-search:focus-within {
  border-color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.28);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.site-header.scrolled .header-search {
  border-color: #d8d6cf;
  background: #f7f6f2;
}
.site-header.scrolled .header-search:focus-within {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17,17,17,.06);
}
.header-search input {
  min-width: 0;
  padding: 0 15px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}
.header-search input::placeholder { color: rgba(255,255,255,.78); }
.header-search button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 19px;
}
.site-header.scrolled .header-search input,
.site-header.scrolled .header-search button {
  color: #111;
}
.site-header.scrolled .header-search input::placeholder { color: #777; }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.nav-actions button {
  color: inherit;
}
.header-icon-button {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}
.nav-actions a.header-icon-button { display: grid; place-items: center; }
.header-icon-button:hover {
  background: rgba(255,255,255,.14);
}
.site-header.scrolled .header-icon-button:hover {
  background: rgba(17,17,17,.07);
}
.header-icon-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}
.bag-button span {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}
.site-header.scrolled .bag-button span {
  color: #fff;
  background: #111;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 5vw;
  bottom: 74px;
  max-width: 700px;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero-copy > p, .eyebrow {
  margin: 0 0 14px;
  color: inherit;
  font-family: "Instrument Serif", serif;
  font-size: 22px;
}
.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 500;
  line-height: .88;
}
.hero-copy > span { display: block; max-width: 420px; margin-bottom: 28px; line-height: 1.6; }
.hero-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  color: #111;
  background: #fff;
  border-radius: 999px;
  font-weight: 700;
}
.hero-note {
  position: absolute;
  right: 5vw;
  bottom: 78px;
  z-index: 2;
  font-size: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  animation: hero-bounce 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke-width: 1.5; }
.hero-scroll:hover { color: #fff; border-color: rgba(255,255,255,.7); }
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .75; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

.section {
  width: min(1680px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 0;
}

.section-head, .product-meta, .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.section-head h2, .center-head h2, .brand-story-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 500;
  line-height: 1;
}
.section-head p, .center-head p {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.section-head > a { padding-bottom: 5px; border-bottom: 1px solid #111; font-weight: 700; }
.eyebrow { color: #999; }

.arrival-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 0;
  padding-bottom: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #e5e5e2;
}
.arrival-layout::-webkit-scrollbar { height: 7px; }
.arrival-layout::-webkit-scrollbar-track { background: #e5e5e2; border-radius: 999px; }
.arrival-layout::-webkit-scrollbar-thumb { background: #1a1a1a; border-radius: 999px; }

.new-arrivals {
  width: min(1680px, calc(100% - 48px));
  padding-top: 82px;
}

.new-arrivals .section-head h2 {
  font-size: clamp(34px, 3.2vw, 50px);
}
.arrival-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.arrival-filters button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
}
.arrival-filters button.active {
  color: #fff;
  background: #111;
  border-color: #111;
}
.arrival-product {
  flex: 0 0 clamp(230px, 18vw, 285px);
  min-width: 230px;
  scroll-snap-align: start;
}
.arrival-product.is-hidden { display: none; }
.arrival-product > div {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  border-radius: 7px;
  background: var(--surface);
}
.arrival-product-panel {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 34%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px;
  background: transparent;
  border-top: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(101%);
  transition: transform .25s ease;
}
.arrival-product:hover .arrival-product-panel,
.arrival-product:focus-within .arrival-product-panel {
  transform: translateY(0);
}
.arrival-size-options {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}
.arrival-size-options button {
  min-width: 0;
  min-height: 31px;
  padding: 0 2px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #333;
  background: rgba(255,255,255,.66);
  font-size: 10px;
  font-weight: 600;
}
.arrival-size-options button:hover:not(:disabled) { border-color: #111; }
.arrival-size-options button.active {
  color: #fff;
  border-color: #111;
  background: #111;
}
.arrival-size-options button:disabled {
  color: #bbb;
  background: rgba(241,241,239,.52);
  cursor: not-allowed;
  opacity: .65;
  text-decoration: line-through;
}
.arrival-size-options.needs-selection {
  border-radius: 6px;
  box-shadow: 0 0 0 2px rgba(214,56,50,.45);
}
.arrival-product-actions {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 7px;
}
.arrival-product-actions button {
  min-width: 0;
  min-height: 40px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.arrival-detail-button { color: #222; border: 1px solid rgba(17,17,17,.12) !important; background: rgba(255,255,255,.64); }
.arrival-add-button { display: flex; align-items: center; justify-content: center; gap: 6px; color: #fff; background: rgba(17,17,17,.9); }
.arrival-add-button svg { width: 15px; height: 15px; }
.arrival-product-link {
  width: 100%;
  height: 100%;
  display: block;
}
.arrival-product img {
  width: 100%;
  height: 100%;
  padding: clamp(18px, 2vw, 30px);
  object-fit: contain;
  transition: transform .25s ease;
}
.arrival-product:hover img { transform: scale(1.035); }
.arrival-product-info { display: block; color: inherit; }
.arrival-product h3 { margin: 10px 0 3px; font-size: 15px; }
.arrival-product p { margin: 0; color: var(--muted); font-size: 12px; }
.arrival-product strong { display: block; margin-top: 5px; font-size: 14px; }

@media (hover: none) {
  .arrival-product-panel {
    min-height: 36%;
    transform: translateY(0);
  }
}

.center-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.center-head .eyebrow { display: block; }
.products {
  padding-top: 80px;
}
.catalog-filter {
  margin: 0 0 38px;
  padding: 20px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.primary-filters,
.secondary-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.primary-filters::-webkit-scrollbar,
.secondary-filters::-webkit-scrollbar { display: none; }
.primary-filters button,
.secondary-filters button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.primary-filters button.active {
  color: #fff;
  background: #111;
  border-color: #111;
}
.secondary-filters {
  min-height: 0;
  max-height: 0;
  margin-top: 0;
  padding: 0 4px 0;
  overflow: hidden;
  transition: max-height .35s ease, margin-top .35s ease, padding-bottom .35s ease;
}
.secondary-filters:not(:empty) {
  max-height: 160px;
  margin-top: 18px;
  padding-bottom: 4px;
}
.secondary-filters button {
  width: clamp(112px, 10vw, 150px);
  min-height: 142px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  color: #666;
  border-radius: 7px;
  background: #fff;
  font-size: 13px;
}
.secondary-filters button img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  background: var(--surface);
}
.secondary-filters button span {
  width: 100%;
  padding: 10px 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.secondary-filters button.active {
  color: #111;
  border: 2px solid #111;
}

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
.product-grid.group-filtered { display: grid; }
.product-grid.is-default-view { display: none; }
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #e8e8e5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17,17,17,.06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.product-card:hover {
  border-color: #d8d8d4;
  box-shadow: 0 16px 34px rgba(17,17,17,.09);
  transform: translateY(-2px);
}
.product-card.is-hidden { display: none; }
.product-image {
  position: relative;
  aspect-ratio: 6 / 5;
  overflow: hidden;
  border-radius: 7px;
  background: #f4f4f4;
}
.product-image > img {
  width: 100%;
  height: 100%;
  padding: clamp(18px, 2vw, 30px);
  object-fit: contain;
  cursor: pointer;
  transition: transform .25s ease;
}
.product-card:hover .product-image > img { transform: scale(1.025); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.badge.new { color: #111; border: 1px solid rgba(17,17,17,.08); background: rgba(255,255,255,.94); }
.badge.best { color: #fff; background: #111; }
.badge.sale { color: #fff; background: var(--accent); }
.heart {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  cursor: pointer;
  font-size: 22px;
}
.heart.selected { color: #d63832; }
.product-gallery-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #111;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 6px 18px rgba(17,17,17,.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}
.product-gallery-button.previous { left: 12px; transform: translate(-6px, -50%); }
.product-gallery-button.next { right: 12px; transform: translate(6px, -50%); }
.product-gallery-button svg { width: 18px; height: 18px; }
.product-image:hover .product-gallery-button,
.product-image:focus-within .product-gallery-button {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}
.product-gallery-button:hover { background: #fff; }
.product-indicators {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: translateX(-50%);
}
.product-indicators i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(17,17,17,.18);
  transition: width .18s ease, background-color .18s ease;
}
.product-indicators i.active { width: 24px; background: #111; }
.product-swatches {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 4px 0;
}
.product-swatches button {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 0;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 50%;
  background: var(--swatch);
}
.product-swatches button.active { outline: 2px solid #111; outline-offset: 2px; }
.add-button,
.preorder-button {
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: #111;
  font-size: 13px;
  font-weight: 700;
}
.add-button svg,
.preorder-button svg { width: 17px; height: 17px; }
.preorder-button {
  border: 1px solid #111;
  color: #111;
  background: #fff;
}
.preorder-button:hover { color: #fff; background: #111; }
.product-meta {
  min-height: 78px;
  align-items: flex-start;
  padding: 10px 4px 0;
}
.product-meta > div { min-width: 0; }
.product-meta h3 {
  margin: 0 0 6px;
  overflow: hidden;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-meta p {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 4px 7px;
  padding-top: 1px;
  white-space: nowrap;
  font-size: 14px;
}
.product-price-current { color: #111; }
.product-price s { color: #999; font-size: 12px; font-weight: 400; }
.product-size-options {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 12px 4px 0;
  transition: box-shadow .2s ease;
}
.product-size-options button {
  min-width: 0;
  min-height: 34px;
  padding: 0 4px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #333;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
}
.product-size-options button:hover:not(:disabled) { border-color: #111; }
.product-size-options button.active {
  color: #fff;
  border-color: #111;
  background: #111;
}
.product-size-options button:disabled {
  color: #bbb;
  background: #f4f4f2;
  cursor: not-allowed;
  opacity: .65;
  text-decoration: line-through;
}
.product-size-options.needs-selection {
  border-radius: 7px;
  box-shadow: 0 0 0 2px rgba(214,56,50,.45);
}
.product-actions {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 8px;
  margin-top: auto;
  padding: 16px 4px 4px;
}
.detail-button {
  min-width: 0;
  min-height: 46px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #222;
  background: #efefed;
  font-size: 13px;
  font-weight: 700;
}
.detail-button,
.add-button,
.preorder-button { cursor: pointer; }
.detail-button:hover { background: #e4e4e1; }

.grouped-catalog {
  display: grid;
  gap: 64px;
}
.grouped-catalog.is-hidden { display: none; }
.catalog-row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.catalog-row-head h3 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 500;
}
.catalog-row-head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.catalog-row-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 20px;
}
.catalog-row-content {
  display: flex;
  flex-direction: column;
}
.catalog-row-products .product-card:nth-child(n+5) { display: none; }
.catalog-row-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.catalog-row-action button {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  font-weight: 400;
}
.catalog-row-action button:hover {
  color: #fff;
  background: #111;
}
.catalog-row-banner {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center 35%;
  margin-bottom: 24px;
}
.catalog-row-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 52%, rgba(0,0,0,.06) 100%);
}
.catalog-row-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 30px 34px;
  color: #fff;
}
.catalog-row-banner-copy .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
}
.catalog-row-banner-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1;
}
.catalog-row-banner-copy p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.category-preview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.category-preview-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--surface);
}
.category-preview-card > div { padding: 14px; }
.category-preview-card h4 { margin: 0 0 6px; font-size: 15px; }
.category-preview-card p { margin: 0; color: var(--muted); font-size: 12px; }

.categories {
  display: none;
  position: relative;
  padding-top: 80px;
  padding-bottom: 72px;
}
.categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: var(--surface);
  z-index: -1;
}
.strip-wrap {
  position: relative;
  margin-top: 32px;
}
.strip-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: calc(100% - 10px);
  pointer-events: none;
  z-index: 2;
}
.categories .strip-wrap::after {
  background: linear-gradient(to right, transparent, var(--surface));
}
.new-arrivals .strip-wrap::after {
  background: linear-gradient(to right, transparent, #fff);
}
.category-strip {
  display: flex;
  gap: 12px;
  margin-top: 0;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #c5c5c0 transparent;
}
.category-chip {
  flex: 0 0 148px;
  display: block;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
}
.category-chip-img {
  width: 148px;
  height: 124px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .2s;
}
.category-chip:hover .category-chip-img { border-color: #111; }
.category-chip-img img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  transition: transform .25s ease;
}
.category-chip:hover .category-chip-img img { transform: scale(1.07); }
.category-chip-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.category-chip-count {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.news-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.news-image {
  display: block;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 7px;
  background: #f2f2f0;
}
.news-image { aspect-ratio: 4 / 3; }
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.news-card:hover .news-image img { transform: scale(1.06); }
.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 18px;
}
.news-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #888;
  font-size: 11px;
  text-transform: uppercase;
}
.news-meta span { color: #111; }
.news-content h3,
.news-card:not(.news-card-featured) .news-content h3 {
  margin: 14px 0 0;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.18;
}
.news-content h3 a { color: inherit; }
.news-content p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #777;
  font-size: 13px;
  line-height: 1.65;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid #111;
  color: #111;
  font-size: 12px;
}
.news-link svg { width: 14px; height: 14px; }
.news-all {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
.news-all a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}
.news-all a:hover {
  color: #fff;
  background: #111;
}
.news-all svg { width: 15px; height: 15px; }

.news-blog {
  padding-bottom: 72px;
}

.brand-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 96px);
  padding-top: 72px;
  padding-bottom: 72px;
}
.brand-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: var(--surface);
  z-index: -1;
}
.brand-story-photo {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 7px;
  background: #ddd;
}
.brand-story-photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
  pointer-events: none;
}
.brand-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.brand-story-photo:hover img { transform: scale(1.025); }
.brand-story-photo > span {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.brand-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-story-copy h2 {
  max-width: 690px;
  margin: 12px 0 26px;
  line-height: 1.06;
}
.brand-story-text {
  max-width: 680px;
  color: #666;
  font-size: 14px;
  line-height: 1.72;
}
.brand-story-text p { margin: 0 0 13px; }
.brand-milestones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-milestones div {
  min-width: 0;
  padding: 20px 16px 20px 0;
  border-right: 1px solid var(--line);
}
.brand-milestones div + div { padding-left: 16px; }
.brand-milestones div:last-child { border-right: 0; }
.brand-milestones strong {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
}
.brand-milestones span {
  display: block;
  color: #777;
  font-size: 11px;
  line-height: 1.45;
}
.brand-promises {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.brand-promises li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #333;
  font-size: 13px;
}
.brand-promises svg { width: 17px; height: 17px; flex: 0 0 17px; stroke-width: 1.7; }
.brand-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.brand-story-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #111;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.brand-story-actions svg { width: 15px; height: 15px; }
.brand-primary { color: #fff; background: #111; }
.brand-secondary { color: #111; background: transparent; }
.brand-story-actions a:hover svg { transform: translate(2px, -2px); }
.brand-story-actions svg { transition: transform .2s ease; }

.follow-us {
  padding-top: 76px;
  padding-bottom: 84px;
}
.follow-us-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 470px);
  align-items: end;
  gap: 40px;
}
.follow-us-head h2 {
  margin: 7px 0 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}
.follow-us-head > p {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.65;
}
.follow-us-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}
.follow-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 24px;
  color: #111;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.follow-card::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .09;
}
.follow-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #fff;
  background: #111;
}
.follow-icon svg { width: 19px; height: 19px; stroke-width: 1.8; }
.follow-icon strong {
  font-family: Arial, sans-serif;
  font-size: 23px;
  line-height: 1;
}
.follow-card.facebook .follow-icon { background: #1877f2; }
.follow-card.shopee .follow-icon { background: #ee4d2d; }
.follow-card.tiktok .follow-icon { background: #111; }
.follow-card small {
  color: #888;
  font-size: 10px;
  text-transform: uppercase;
}
.follow-card h3 {
  margin: 7px 0 10px;
  font-size: 28px;
  font-weight: 500;
}
.follow-card p {
  max-width: 310px;
  margin: 0;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
}
.follow-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 500;
}
.follow-action svg { width: 15px; height: 15px; transition: transform .2s ease; }
.follow-card:hover { color: #fff; border-color: transparent; }
.follow-card.facebook:hover { background: #1877f2; }
.follow-card.shopee:hover { background: #ee4d2d; }
.follow-card.tiktok:hover { background: #111; }
.follow-card:hover small,
.follow-card:hover p { color: rgba(255,255,255,.78); }
.follow-card:hover .follow-icon {
  color: #111;
  background: #fff;
}
.follow-card:hover .follow-action svg { transform: translate(2px, -2px); }

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services article { display: flex; gap: 16px; padding: 30px 28px; border-right: 1px solid var(--line); }
.services article:last-child { border-right: 0; }
.services b { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #111; }
.services b svg { width: 18px; height: 18px; }
.services h3 { margin: 1px 0 7px; font-size: 15px; }
.services p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.store-contact {
  width: 100%;
  padding: 0;
  color: #111;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.store-contact-inner {
  width: 100%;
  display: grid;
  grid-template-columns: .8fr 1.35fr .85fr;
  margin: 0 auto;
  background: #fff;
}
.hotline-panel,
.store-panel,
.store-map-panel { padding: 52px clamp(28px, 4vw, 68px); }
.hotline-panel {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.store-panel {
  border-right: 1px solid var(--line);
}
.contact-kicker {
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.store-contact h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: 0;
}
.hotline-numbers {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 28px 0 14px;
}
.hotline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.hotline-number {
  display: block;
  font-size: clamp(21px, 2vw, 32px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.hotline-panel p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-size: 12px;
  font-weight: 700;
}
.contact-action svg { width: 16px; height: 16px; }
.store-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.store-panel-head > svg {
  width: 28px;
  height: 28px;
  color: #777;
  stroke-width: 1.5;
}
.store-list { margin-top: 30px; border-top: 1px solid var(--line); }
.store-list article {
  display: grid;
  grid-template-columns: 42px 1fr 38px;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.store-list article > span {
  color: #999;
  font-size: 12px;
}
.store-list h3 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.store-list p { margin: 0 0 6px; color: var(--muted); font-size: 13px; }
.store-list small { color: #999; font-size: 11px; }
.store-list article > a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.store-list article > a:hover { color: #fff; background: #111; }
.store-list article > a svg { width: 17px; height: 17px; }
.store-map-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: 13px minmax(330px, 1fr);
  gap: 10px;
  padding-top: 52px;
  padding-right: clamp(18px, 2vw, 28px);
  padding-left: clamp(18px, 2vw, 28px);
}
.store-map-action {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
  min-height: 13px;
  padding: 0;
  color: #111;
  border-bottom: 1px solid #111;
  font-size: 11px;
  white-space: nowrap;
}
.store-map-action svg {
  width: 14px;
  height: 14px;
}
.store-map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 7px;
  background: var(--surface);
}

.footer { padding: 58px 5vw 20px; overflow: hidden; background: #efefed; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(36px, 7vw, 120px); }
.footer h3 { margin: 0 0 20px; text-transform: uppercase; font-size: 12px; }
.footer a { display: block; margin-bottom: 11px; color: #666; font-size: 13px; }
.footer-intro { max-width: 390px; }
.footer-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px !important;
  transform: translateY(-7px);
}
.footer-logo .brand-mark { width: 49px; height: 61px; }
.footer-logo .brand-wordmark { width: 179px; }
.footer-intro p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.75;
}
.footer-column h4 {
  margin: 28px 0 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.commerce-status {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #d8d8d4;
  color: #666;
  background: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.4;
}
.commerce-status svg { width: 27px; height: 27px; flex: 0 0 27px; stroke-width: 1.5; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-methods span {
  min-width: 54px;
  padding: 9px 10px;
  border: 1px solid #d8d8d4;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}
.footer-bottom { display: block; margin-top: 40px; padding-top: 22px; border-top: 1px solid #ddd; color: #777; font-size: 12px; text-align: center; }

.newsletter {
  width: 100%;
  padding: 80px 5vw;
  background: #111;
  color: #fff;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.newsletter .eyebrow { color: #888; font-style: italic; }
.newsletter h2 { margin: 12px 0 16px; font-size: clamp(32px, 4vw, 52px); font-weight: 500; line-height: 1.05; }
.newsletter p { margin: 0; color: #999; font-size: 14px; line-height: 1.7; }
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  overflow: hidden;
}
.newsletter-form input {
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  margin: 5px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s;
}
.newsletter-form button:hover { background: #e5e5e1; }
.newsletter-success {
  padding: 14px 22px;
  color: #4db97e;
  font-size: 14px;
  font-weight: 500;
}
.newsletter-feedback { margin-top: 12px !important; color: #4db97e !important; font-size: 13px !important; font-weight: 500; }
.newsletter-feedback.is-error { color: #ff9b95 !important; }

@media (max-width: 900px) {
  .hero { min-height: 684px; }
  .navbar { grid-template-columns: auto 1fr auto; gap: 18px; padding: 0 24px; }
  .header-search { width: 100%; }
  .nav-actions { gap: 6px; }
  .header-icon-button { width: 32px; height: 32px; }
  .hero-copy { left: 24px; right: 24px; }
  .hero-note { display: none; }
  .hero-scroll { display: none; }
  .section { width: calc(100% - 32px); padding-top: 80px; }
  .categories { padding-top: 60px; padding-bottom: 52px; }
  .new-arrivals { width: calc(100% - 32px); }
  .arrival-product { flex-basis: clamp(220px, 38vw, 280px); }
  .arrival-layout { gap: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .news-blog { padding-bottom: 56px; }
  .catalog-row-banner { min-height: 190px; border-radius: 8px; }
  .catalog-row-banner-copy { padding: 26px; }
  .catalog-row-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .catalog-row-products .product-card:nth-child(n+4) { display: none; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .services article:nth-child(2) { border-right: 0; }
  .services article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .brand-story { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; padding-bottom: 52px; }
  .brand-story-photo { min-height: 520px; }
  .follow-us-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .follow-card { min-height: 250px; padding: 20px; }
  .store-contact-inner { grid-template-columns: 1fr 1.4fr; }
  .hotline-panel, .store-panel, .store-map-panel { padding: 42px 32px; }
  .store-panel { border-right: 0; }
  .store-map-panel {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    grid-template-rows: 13px minmax(380px, 1fr);
    padding-top: 42px;
  }
  .store-map-panel iframe { min-height: 380px; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .hero { min-height: 628px; }
  .navbar { min-height: 58px; grid-template-columns: auto 1fr auto; gap: 12px; padding: 0 14px; }
  .logo { font-size: 15px; }
  .logo .brand-mark { width: 24px; height: 30px; }
  .logo .brand-wordmark { width: 92px; }
  .header-search { width: 100%; height: 36px; }
  .nav-actions { display: flex; }
  .nav-actions .header-icon-button:not(.bag-button):not(.wishlist-button) { display: none; }
  .hero-copy h1 { font-size: 58px; }
  .hero-copy > span { font-size: 14px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .arrival-filters {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .section { width: calc(100% - 28px); }
  .new-arrivals { width: calc(100% - 28px); padding-top: 64px; }
  .arrival-layout { gap: 10px; margin-right: -14px; padding-right: 14px; }
  .arrival-product { flex-basis: min(72vw, 270px); min-width: min(72vw, 270px); }
  .arrival-product-panel { padding: 11px; }
  .arrival-size-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .arrival-product-actions { grid-template-columns: 1fr; }
  .arrival-product-actions button { min-height: 36px; }
  .product-grid, .news-grid { grid-template-columns: 1fr; }
  .news-blog { padding-bottom: 44px; }
  .grouped-catalog { gap: 48px; }
  .catalog-row-banner { min-height: 170px; }
  .catalog-row-banner-copy { padding: 22px 20px; }
  .catalog-row-banner-copy h3 { font-size: 34px; }
  .catalog-row-banner-copy p { margin-top: 9px; font-size: 12px; }
  .catalog-row-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }
  .product-grid { gap: 24px 10px; }
  .catalog-row-products .product-card:nth-child(n+3) { display: none; }
  .primary-filters,
  .secondary-filters { justify-content: flex-start; }
  .product-size-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-actions { grid-template-columns: 1fr; }
  .brand-story { gap: 34px; padding-top: 44px; padding-bottom: 44px; }
  .brand-story-photo { min-height: 390px; }
  .brand-milestones { grid-template-columns: 1fr; }
  .brand-milestones div,
  .brand-milestones div + div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .brand-milestones div:last-child { border-bottom: 0; }
  .brand-story-actions { display: grid; grid-template-columns: 1fr; }
  .follow-us { padding-top: 58px; padding-bottom: 64px; }
  .follow-us-head { grid-template-columns: 1fr; gap: 16px; }
  .follow-us-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
  .follow-card { min-height: 235px; }
  .services { grid-template-columns: 1fr; }
  .services article { border-right: 0; border-bottom: 1px solid var(--line); }
  .store-contact-inner { grid-template-columns: 1fr; }
  .hotline-panel, .store-panel, .store-map-panel { padding: 36px 24px; }
  .hotline-row { grid-template-columns: minmax(0, 1fr) auto; }
  .hotline-number { font-size: 22px; }
  .hotline-row .contact-action { padding: 9px 12px; }
  .hotline-panel,
  .store-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .store-map-panel { grid-column: auto; border-top: 0; }
  .store-list article { grid-template-columns: 30px 1fr 38px; gap: 10px; }
  .store-map-panel {
    grid-template-rows: 13px minmax(320px, 1fr);
    padding-top: 36px;
  }
  .store-map-panel iframe { min-height: 320px; }
  .footer { padding: 46px 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .newsletter { padding: 60px 24px; }
  .category-chip { flex: 0 0 120px; }
  .category-chip-img { width: 120px; height: 100px; }
}
