@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Google+Sans:wght@400;500;700&display=swap");

:root {
  --bg: #f8f7f2;
  --ink: #080808;
  --muted: #5b5b55;
  --line: rgba(8, 8, 8, 0.18);
  --soft: #eceae2;
  --white: #ffffff;
  --max: 1480px;
  --gutter: 24px;
  --heading: "Bebas Neue", Impact, sans-serif;
  --body: "Google Sans", "Product Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.48;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 247, 242, 0.94);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: block;
  width: 90px;
}

.brand-mark img {
  width: 90px;
  height: auto;
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  border: 0;
  font-family: var(--heading);
  font-size: 0.96rem;
  letter-spacing: 0;
}

.top-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.top-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--heading);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.header-link:hover,
.header-link[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.header-link .button-icon {
  width: 17px;
  height: 17px;
}

.cart-count {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--body);
  font-size: 0.76rem;
  line-height: 1;
}

.icon-button {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

.icon-button .button-icon {
  width: 22px;
  height: 22px;
}

.menu-toggle {
  display: none;
}

.menu-toggle span,
.drawer-close span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.drawer-close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.drawer-close span:first-child {
  transform: rotate(45deg) translate(2px, 2px);
}

.drawer-close span:last-child {
  transform: rotate(-45deg) translate(0, 0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 76vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--ink);
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 760px;
  padding: 72px var(--gutter) 72px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.hero h1,
.page-hero h1,
.section-heading h2,
.section-copy h2,
.pdp-info h1,
.text-page h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero h1 {
  max-width: 740px;
  font-size: 4.8rem;
}

.hero p {
  max-width: 660px;
  margin: 0;
  color: #e8e8df;
  font-size: 1.04rem;
}

.eyebrow {
  margin: 0;
  font-family: var(--heading);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-icon {
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button .button-icon {
  width: 18px;
  height: 18px;
}

.button span,
.header-link span,
.try-chip span,
.filter-toggle span {
  min-width: 0;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

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

.button-outline-light {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

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

.button-outline {
  background: var(--bg);
  color: var(--ink);
}

.hero-media-panel {
  position: relative;
  min-height: 520px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.hero-media-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.18), transparent 34%);
  pointer-events: none;
}

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

.ticker span {
  min-height: 58px;
  padding: 18px var(--gutter);
  border-right: 1px solid var(--line);
  font-family: var(--heading);
  font-size: 1rem;
  text-transform: uppercase;
}

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

.split-band,
.ai-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px var(--gutter);
  gap: 34px;
}

.section-copy {
  max-width: 640px;
}

.section-copy h2,
.section-heading h2,
.page-hero h1 {
  font-size: 3.4rem;
}

.section-copy p,
.page-hero p,
.text-page p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.stats-grid div {
  display: grid;
  align-content: center;
  min-height: 180px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  font-family: var(--heading);
  font-size: 3.2rem;
  line-height: 0.9;
}

.stats-grid span {
  margin-top: 10px;
  color: var(--muted);
}

.category-band,
.section-shell,
.text-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gutter);
}

.section-shell.compact {
  padding-top: 46px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.section-heading a {
  border-bottom: 1px solid var(--line);
  font-family: var(--heading);
  font-size: 1.1rem;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.action-link .button-icon {
  width: 17px;
  height: 17px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.category-tile:last-child {
  border-right: 0;
}

.category-tile:hover {
  background: var(--ink);
  color: var(--white);
}

.category-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid currentColor;
}

.category-icon .button-icon {
  width: 21px;
  height: 21px;
}

.category-tile > span:not(.category-icon) {
  font-family: var(--heading);
  font-size: 3rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.category-tile p {
  margin: 30px 0 0;
  color: currentColor;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 32px);
}

main > .product-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 72px;
}

.product-card {
  min-width: 0;
  background: transparent;
}

.product-card a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.product-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f6f5f0;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.try-chip {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--ink);
  background: var(--white);
  font-family: var(--heading);
  text-transform: uppercase;
}

.try-chip .button-icon {
  width: 15px;
  height: 15px;
}

.product-meta {
  display: grid;
  gap: 12px;
  min-height: 108px;
  padding: 12px 0 0;
}

.product-meta h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.28rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.product-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price-row strong {
  font-family: var(--heading);
  font-size: 1.35rem;
}

.price-row s {
  color: var(--muted);
  font-size: 0.86rem;
}

.ai-band {
  border-top: 1px solid var(--line);
}

.ai-steps {
  display: grid;
  border: 1px solid var(--line);
  background: var(--white);
}

.ai-steps span {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--heading);
  font-size: 1.24rem;
  text-transform: uppercase;
}

.ai-steps span:last-child {
  border-bottom: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, var(--max));
  justify-content: center;
  padding: 76px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.page-hero.light {
  background: var(--bg);
}

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

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.page-hero p {
  overflow-wrap: anywhere;
}

.page-hero p:not(.eyebrow) {
  max-width: min(680px, 100%);
}

.page-hero h1 {
  margin-top: 10px;
  font-size: 3.8rem;
}

.listing-shell {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 42px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px var(--gutter) 72px;
}

.filter-bar {
  position: static;
  z-index: 1;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.filter-toggle {
  display: none;
}

.filter-panel {
  display: grid;
  gap: 22px;
}

.filter-heading,
.filter-toggle,
.filter-toggle > span,
.filter-toggle-meta {
  align-items: center;
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--heading);
  font-size: 1rem;
  text-transform: uppercase;
}

.filter-group,
.filter-controls {
  display: grid;
  gap: 10px;
}

.filter-label {
  color: var(--muted);
  font-family: var(--heading);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.filter-pills {
  display: grid;
  gap: 6px;
}

.filter-controls {
  gap: 14px;
}

.filter-pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--heading);
  text-align: left;
  text-transform: uppercase;
}

.filter-pill.is-active,
.filter-pill:hover {
  background: var(--ink);
  color: var(--white);
}

.filter-control,
.search-box {
  display: grid;
  gap: 6px;
  min-height: 42px;
}

.filter-control span,
.search-box span {
  font-family: var(--heading);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.filter-control select,
.search-box input {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 7px 0;
}

.result-count {
  color: var(--muted);
  font-family: var(--heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.empty-state {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px var(--gutter);
  color: var(--muted);
}

.empty-state.is-visible {
  display: block;
}

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px var(--gutter) 0;
  gap: 34px;
}

.pdp-media {
  border: 0;
  background: var(--white);
}

.pdp-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.pdp-info {
  position: sticky;
  top: 106px;
  align-self: start;
  padding-bottom: 34px;
}

.crumb {
  display: inline-flex;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--heading);
  text-transform: uppercase;
}

.pdp-info h1 {
  font-size: 3.9rem;
}

.pdp-short {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.pdp-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0;
}

.pdp-price strong {
  font-family: var(--heading);
  font-size: 2rem;
}

.pdp-price span {
  border: 1px solid var(--line);
  padding: 5px 8px;
  font-family: var(--heading);
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-family: var(--heading);
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
}

.agent-note {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.agent-note h2 {
  margin: 0 0 8px;
  font-family: var(--heading);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.agent-note p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details,
.text-page p,
.text-page ul {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--heading);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.faq-list p,
.text-page p {
  max-width: 880px;
  padding-bottom: 18px;
}

.tryon-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: end;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 220ms ease;
}

.tryon-drawer.is-open {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.62);
}

.tryon-panel {
  position: relative;
  width: min(560px, 100%);
  height: 100%;
  overflow: auto;
  padding: 72px 20px 20px;
  border-left: 1px solid var(--line);
  background: var(--bg);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.tryon-drawer.is-open .tryon-panel {
  transform: translateX(0);
}

.tryon-panel h2 {
  margin: 8px 0;
  font-family: var(--heading);
  font-size: 3.2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.tryon-panel p {
  color: var(--muted);
}

.tryon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.tryon-grid img,
.upload-box {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background: var(--white);
}

.tryon-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-box {
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.upload-box input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tryon-panel details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.tryon-panel summary {
  cursor: pointer;
  font-family: var(--heading);
  text-transform: uppercase;
}

.text-page {
  min-height: 42vh;
}

.text-page p {
  padding: 22px 0;
  font-size: 1.08rem;
}

.text-page ul,
.text-page ol {
  max-width: 900px;
  margin: 0;
  padding: 18px 0 18px 22px;
}

.text-page li + li {
  margin-top: 8px;
}

.legal-footnote {
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.86rem;
}

.commerce-shell,
.legal-grid,
.help-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px var(--gutter) 78px;
}

.commerce-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 34px;
  align-items: start;
}

.panel,
.form-panel,
.cart-summary,
.checkout-status,
.legal-card,
.help-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px;
}

.panel h2,
.form-panel h2,
.cart-summary h2,
.checkout-status h2,
.legal-card h2,
.help-card h2 {
  margin: 0 0 14px;
  font-family: var(--heading);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.form-stack {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  gap: 5px;
}

.field-row span {
  font-family: var(--heading);
  text-transform: uppercase;
}

.field-row input,
.field-row textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--bg);
  padding: 10px 12px;
}

.field-row textarea {
  min-height: 130px;
  resize: vertical;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.cart-item img {
  width: 96px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--soft);
}

.cart-item h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.cart-item p,
.cart-empty,
.checkout-note {
  color: var(--muted);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.quantity-control button,
.remove-item {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--bg);
  cursor: pointer;
  font-family: var(--heading);
}

.totals {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.totals strong {
  font-family: var(--heading);
  font-size: 1.35rem;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--heading);
  text-transform: uppercase;
}

.legal-grid,
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.text-page .legal-grid,
.text-page .help-grid {
  padding: 0;
}

.legal-card,
.help-card {
  min-height: 180px;
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid currentColor;
}

.card-icon .button-icon {
  width: 21px;
  height: 21px;
}

.legal-card p,
.help-card p,
.panel p,
.form-panel p,
.cart-summary p,
.checkout-status p {
  border-bottom: 0;
  color: var(--muted);
  padding-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 28px var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 88px;
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-family: var(--heading);
  text-transform: uppercase;
}

.site-footer a {
  border-bottom: 2px solid transparent;
}

.site-footer a:hover {
  border-bottom-color: var(--line);
}

.fine-print {
  grid-column: 1 / -1;
  max-width: 760px;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .listing-shell {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
    gap: 20px;
  }

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

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

@media (max-width: 880px) {
  :root {
    --gutter: 16px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 68px;
  }

  .brand-mark,
  .brand-mark img {
    width: 76px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .header-actions {
    justify-self: end;
  }

  .top-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }

  .top-nav.is-open {
    display: flex;
  }

  .top-nav a {
    border-top: 1px solid var(--line);
    padding: 14px 16px;
  }

  .hero,
  .split-band,
  .ai-band,
  .pdp {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 54px var(--gutter) 34px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-media-panel {
    min-height: 360px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .hero-media-panel img {
    object-position: center;
  }

  .ticker,
  .stats-grid,
  .category-grid,
  .tryon-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .ticker span,
  .stats-grid div,
  .category-tile {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-copy h2,
  .section-heading h2,
  .page-hero h1,
  .pdp-info h1 {
    font-size: 3.2rem;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .listing-shell {
    display: block;
    padding-top: 18px;
  }

  .filter-bar {
    margin-bottom: 20px;
    padding: 12px;
    background: var(--soft);
  }

  .filter-toggle {
    display: flex;
    width: 100%;
    min-height: 42px;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--heading);
    text-transform: uppercase;
  }

  .filter-toggle > span,
  .filter-toggle-meta {
    display: inline-flex;
    gap: 8px;
  }

  .filter-toggle .button-icon {
    width: 18px;
    height: 18px;
  }

  .filter-toggle-meta {
    color: var(--muted);
  }

  .filter-bar.is-open .filter-toggle-meta > .button-icon:last-child {
    transform: rotate(180deg);
  }

  .filter-panel {
    display: none;
    padding-top: 14px;
  }

  .filter-bar.is-open .filter-panel {
    display: grid;
  }

  .filter-heading {
    display: none;
  }

  .filter-pills {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex: 0 0 auto;
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .search-box {
    grid-column: 1 / -1;
  }

  .pdp-info {
    position: static;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero h1,
  .page-hero h1,
  .pdp-info h1 {
    font-size: 3rem;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 2.65rem;
  }

  .page-hero p {
    width: min(300px, calc(100vw - (var(--gutter) * 2)));
    max-width: min(300px, calc(100vw - (var(--gutter) * 2)));
  }

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

  .header-link {
    min-height: 38px;
    padding: 7px 9px;
  }

  .account-link {
    display: none;
  }

  .filter-controls {
    grid-template-columns: 1fr;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

  .product-meta {
    min-height: auto;
  }

  .pdp {
    padding-top: 18px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .button {
    width: 100%;
  }

  .commerce-grid,
  .contact-grid,
  .legal-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 82px 1fr;
  }

  .cart-item img {
    width: 82px;
  }

  .quantity-control {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
