:root {
  --black: #0d0d0d;
  --ink: #111111;
  --charcoal: #1a1a1a;
  --trust: #2a2a2a;
  --white: #ffffff;
  --paper: #f7f5f1;
  --muted: #f1eee9;
  --beige: #e6dccf;
  --beige-hover: #d9cdbc;
  --red: #e03a2f;
  --scribble: #e54b38;
  --text: #111111;
  --muted-text: #5c5c5c;
  --border: #e4dfd7;
  --header-bg: #ffffff;
  --announce-h: 36px;
  --nav-h: 92px;
  --max: 1280px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease: 220ms ease;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  font-size: 16px;
  min-height: 100vh;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

p {
  margin: 0;
}

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .wrap {
    width: min(var(--max), calc(100% - 64px));
  }
}

/* ========== ANNOUNCE ========== */
.announce {
  background: var(--black);
  color: var(--white);
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.announce-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 8px 0;
  text-align: center;
}

.announce a:hover,
.announce a:focus-visible {
  color: var(--beige);
}

.announce-brand,
.announce-contact {
  display: none;
}

.announce-contact {
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.announce-contact .dot {
  opacity: 0.45;
}

@media (min-width: 900px) {
  .announce-inner {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
    padding: 0;
  }

  .announce-msg {
    text-align: center;
  }

  .announce-brand,
  .announce-contact {
    display: flex;
  }
}

/* ========== NAV ========== */
.nav {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.nav.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

.nav-inner {
  width: min(var(--max), calc(100% - 24px));
  margin-inline: auto;
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  margin-left: 8px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.icon-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  position: relative;
  transition: color var(--ease), background var(--ease);
}

.icon-btn:hover,
.icon-btn:focus-visible {
  color: var(--red);
}

.icon-btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.badge {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--ink);
  color: var(--white);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  justify-self: center;
  display: flex;
  align-items: center;
  color: var(--ink);
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: min(240px, 48vw);
  display: block;
  object-fit: contain;
}

.brand-footer .brand-logo {
  height: 64px;
  max-width: 280px;
}

@media (min-width: 720px) {
  .brand-logo {
    height: 64px;
    max-width: 280px;
  }

  .brand-footer .brand-logo {
    height: 72px;
    max-width: 320px;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-inner {
    width: min(var(--max), calc(100% - 48px));
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: min(86vh, 820px);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #141414;
}

.hero > .wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero img {
  position: absolute;
  inset: -8%;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.72) 0%,
    rgba(8, 8, 8, 0.28) 48%,
    rgba(8, 8, 8, 0.18) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  max-width: 640px;
  text-align: left;
}

.hero h1 {
  font-size: clamp(36px, 6.4vw, 72px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 .repeat {
  color: var(--red);
  display: block;
}

.hero p {
  margin-top: 18px;
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 420px;
  color: rgba(255, 255, 255, 0.92);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-beige {
  background: var(--beige);
  color: var(--ink);
  margin-top: 28px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.btn-beige:hover,
.btn-beige:focus-visible {
  background: var(--beige-hover);
}

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

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--red);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* ========== TRUST ========== */
.trust {
  background: var(--charcoal);
  color: var(--white);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  padding: 28px 0;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 650;
}

.trust-item span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 900px) {
  .trust-inner {
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 0;
  }
}

/* ========== SECTIONS ========== */
.section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.link-all {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.link-all:hover,
.link-all:focus-visible {
  color: var(--red);
}

/* ========== PRODUCTS ========== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 12px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.product-media {
  position: relative;
  background: #eceae6;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 320ms ease, transform 400ms ease;
}

.product-media .img-back {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-media .img-back,
.product-card:focus-within .product-media .img-back {
  opacity: 1;
}

.product-media.media-dark {
  background: #0d0d0d;
}

.wish {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 2;
}

.wish svg {
  width: 18px;
  height: 18px;
}

.wish.is-on {
  color: var(--red);
}

.wish.is-on svg {
  fill: currentColor;
}

.product-info {
  padding: 12px 2px 0;
}

.product-info h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--ink);
}

.product-info .price {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 18px;
  }
}

/* ========== MID BANNER ========== */
.midband {
  position: relative;
  min-height: 420px;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.midband img {
  position: absolute;
  inset: -8%;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.midband-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.midband-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  margin-left: auto;
  max-width: 520px;
  text-align: left;
}

@media (min-width: 800px) {
  .midband-copy {
    text-align: right;
  }

  .midband-copy .btn-beige {
    margin-left: auto;
  }
}

.midband h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
}

.midband p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
}

/* ========== CATEGORIES ========== */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 46%);
}

.cat-card span {
  position: relative;
  z-index: 1;
  padding: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 14px;
}

@media (min-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* ========== INSTA ========== */
.insta {
  text-align: center;
}

.insta h2 {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insta .lede {
  margin-top: 10px;
  color: var(--muted-text);
}

.insta .handle {
  color: var(--red);
  font-weight: 650;
}

.insta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 32px 0 28px;
}

.insta-grid a {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--muted);
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.insta-grid a:hover img {
  transform: scale(1.05);
}

@media (min-width: 800px) {
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

/* ========== INFO BAR ========== */
.infobar {
  background: var(--beige);
}

.infobar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 12px;
  padding: 28px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-size: 13px;
}

.info-item span {
  display: block;
  font-size: 12px;
  color: #3d3d3d;
}

@media (min-width: 900px) {
  .infobar-inner {
    grid-template-columns: repeat(4, 1fr);
    padding: 26px 0;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--white);
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--muted-text);
  font-size: 14px;
  max-width: 280px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: background var(--ease), color var(--ease);
}

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

.socials svg {
  width: 16px;
  height: 16px;
}

.footer h4 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer li a {
  font-size: 14px;
  color: var(--muted-text);
}

.footer li a:hover,
.footer li a:focus-visible {
  color: var(--ink);
}

.footer-contact p {
  font-size: 14px;
  color: var(--muted-text);
  margin-top: 6px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-text);
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-pill {
  border: 1px solid var(--border);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr 1fr;
    gap: 28px;
  }
}

/* ========== DRAWERS ========== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--white);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 280ms ease;
  display: flex;
  flex-direction: column;
}

.drawer-left {
  left: 0;
  transform: translateX(-100%);
}

.drawer-right {
  right: 0;
}

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

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.drawer-head h3 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drawer-body {
  padding: 20px;
  overflow: auto;
  flex: 1;
}

.drawer-nav {
  display: grid;
  gap: 4px;
}

.drawer-nav a {
  display: block;
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.search-box {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  padding: 0 14px;
  font-size: 16px;
}

.search-box:focus {
  outline: 2px solid var(--ink);
  border-color: var(--ink);
}

.search-results {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.search-hit {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--border);
}

.search-hit img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  background: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cart-line img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  background: var(--muted);
}

.qty {
  display: inline-flex;
  border: 1px solid var(--border);
  margin-top: 8px;
}

.qty button,
.qty span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 14px;
}

.drawer-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 12px;
}

.empty-note {
  color: var(--muted-text);
  font-size: 14px;
}

/* ========== PAGE HERO / INNER ========== */
.page-hero {
  background: var(--paper);
  padding: 48px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero p {
  margin-top: 10px;
  color: var(--muted-text);
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  color: #333;
}

.prose p + p,
.prose ul {
  margin-top: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
  cursor: pointer;
}

.filter-btn.is-on,
.filter-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.pdp {
  display: grid;
  gap: 32px;
  padding: 48px 0 72px;
}

.pdp-media {
  background: #eceae6;
}

.pdp-media > img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  background: #eceae6;
}

.pdp-media.media-dark > img {
  background: #0d0d0d;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
}

.pdp-thumbs button {
  border: 1px solid var(--border);
  background: #eceae6;
  padding: 0;
  min-height: 72px;
}

.pdp-thumbs button.is-on {
  border-color: var(--ink);
}

.pdp-thumbs img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.pdp-info h1 {
  font-size: clamp(26px, 3vw, 36px);
  text-transform: uppercase;
}

.pdp-info .price {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 700;
}

.pdp-info .desc {
  margin-top: 16px;
  color: var(--muted-text);
}

.size-row {
  display: flex;
  gap: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.size-row button {
  min-width: 48px;
  min-height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 650;
}

.size-row button.is-on {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

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

@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.cart-page {
  padding: 48px 0 72px;
}

.cart-table {
  display: grid;
  gap: 16px;
}

.checkout {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-size: 16px;
}

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

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: opacity var(--ease), transform var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.gsap-on .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .hero img,
  .midband img {
    inset: 0;
    height: 100%;
    will-change: auto;
  }

  .product-card:hover .product-media img,
  .cat-card:hover img,
  .insta-grid a:hover img {
    transform: none;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    gap: 0;
    min-height: 76px;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .hero-copy {
    padding: 56px 0;
  }
}
