:root {
  --ink: #111111;
  --ink-soft: #2b2b2b;
  --cream: #f4efe4;
  --sand: #dbc8a3;
  --butter: #f2c14e;
  --rust: #dc6b45;
  --sea: #136f63;
  --sea-deep: #0d4942;
  --foam: #fbf8f1;
  --line: rgba(17, 17, 17, 0.1);
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: #090604;
}

body::before {
  content: "";
  position: fixed;
  inset: -12%;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(88, 13, 8, 0.94), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(184, 86, 0, 0.58), transparent 28%),
    radial-gradient(circle at 28% 86%, rgba(218, 142, 0, 0.74), transparent 32%),
    radial-gradient(circle at 78% 78%, rgba(107, 94, 0, 0.55), transparent 24%),
    linear-gradient(140deg, #040202 0%, #220402 18%, #5d1700 42%, #b06200 76%, #171100 100%);
  background-size: 140% 140%;
  filter: saturate(1.08) blur(1px);
  transform-origin: center;
  animation: body-gradient-shift 20s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.86'/%3E%3C/svg%3E"),
    radial-gradient(circle at 24% 18%, rgba(255, 174, 74, 0.16), transparent 18%),
    radial-gradient(circle at 72% 76%, rgba(255, 204, 87, 0.11), transparent 20%);
  background-size: 220px 220px, auto, auto;
  background-repeat: repeat, no-repeat, no-repeat;
  mix-blend-mode: soft-light;
  opacity: 0.52;
  animation:
    body-gradient-glow 12s ease-in-out infinite alternate,
    body-grain-shift 0.6s steps(2) infinite;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

.shell {
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.announcement-bar,
.storyband {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  color: var(--foam);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-track,
.storyband-track {
  display: inline-flex;
  gap: 2.25rem;
  min-width: max-content;
  padding: 0.85rem 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  animation: marquee 22s linear infinite;
}

.storyband {
  background: var(--butter);
  color: var(--ink);
  transform: rotate(-1deg);
  margin-top: 1rem;
}

.storyband-track {
  animation-duration: 18s;
}

.site-header {
  position: fixed;
  inset: 2.75rem 0 auto;
  z-index: 20;
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: var(--foam);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    top 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 239, 228, 0.94);
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.12);
}

.site-header.is-open {
  background: rgba(244, 239, 228, 0.96);
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 4.75rem;
  height: 3.35rem;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  filter: invert(1);
  transition: filter 180ms ease, transform 180ms ease;
}

.brand-text {
  display: grid;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 0.78;
  letter-spacing: 0.04em;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  filter: none;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  padding: 9rem 0 3rem;
}

.hero-shell {
  position: relative;
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.2rem;
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(242, 193, 78, 0.16), transparent 28%),
    linear-gradient(145deg, #111516 0%, #121517 45%, #1d2927 100%);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  width: 100%;
  height: clamp(18rem, 42vw, 28rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.75rem;
  overflow: clip;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.hero-video,
.hero-overlay,
.hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(125deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0) 50%, rgba(17, 17, 17, 0.42)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.36));
}

.hero-noise {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 4px 4px, 4px 4px;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--foam);
  width: 100%;
  min-height: 0;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(5rem, 8vw, 7rem);
  display: grid;
  align-content: end;
}

.eyebrow,
.section-kicker,
.note-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.lookbook-copy h2,
.amazon-panel h2,
.footer-brand h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.94;
}

.hero-headline-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  margin-top: 0.8rem;
}

.hero h1 {
  width: 12ch;
  max-width: 100%;
  flex: 0 0 12ch;
  margin: 0;
  font-size: clamp(2.85rem, 5.6vw, 4.5rem);
  line-height: 0.96;
}

.hero-manifesto {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  margin-top: 2.55rem;
  padding-inline: clamp(0.5rem, 1.5vw, 1rem);
  text-align: center;
  color: rgba(251, 248, 241, 0.92);
}

.hero-manifesto-line {
  overflow: hidden;
  width: min(100%, 58rem);
  min-height: 2rem;
  padding-inline: clamp(0.9rem, 2.4vw, 2.25rem);
  text-align: center;
}

.hero-manifesto-line span {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.62;
  will-change: transform;
}

.manifesto-line-a span {
  animation: manifesto-sway-a 16s ease-in-out infinite;
}

.manifesto-line-b span {
  animation: manifesto-sway-b 12s ease-in-out infinite;
}

.manifesto-line-c span {
  animation: manifesto-sway-c 18s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: 0;
  align-items: center;
  justify-content: flex-start;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.8rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.button::before {
  opacity: 0;
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0.35) 14%,
    transparent 42%
  );
  transition: opacity 180ms ease;
}

.button::after {
  inset: -25%;
  opacity: 0;
  background: linear-gradient(
    112deg,
    transparent 35%,
    rgba(255, 255, 255, 0.62) 48%,
    transparent 62%
  );
  transform: translateX(-135%) rotate(9deg);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
}

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

.button:hover::before,
.button:focus-visible::before,
.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(135%) rotate(9deg);
}

.button-primary {
  background: var(--butter);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(242, 193, 78, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--foam);
  background: rgba(255, 255, 255, 0.06);
}

.hero-actions-inline {
  justify-self: start;
  align-self: center;
  margin-left: clamp(0.5rem, 1vw, 1rem);
}

.microcopy code {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
}

.product-copy h3,
.collection-card h3,
.note-card h3 {
  font-size: 1.2rem;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.featured-heading {
  justify-items: center;
  text-align: center;
}

.featured-strip-box {
  width: min(100%, 40rem);
  height: clamp(4rem, 8vw, 5.6rem);
  border-radius: 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #111;
  box-shadow: 0 20px 55px rgba(17, 17, 17, 0.14);
}

.featured-strip-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.section-heading h2,
.story-copy h2,
.lookbook-copy h2,
.amazon-panel h2,
.footer-brand h2 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
}

.section-heading p:last-child,
.story-copy p,
.lookbook-copy p,
.amazon-panel p,
.product-copy p,
.collection-card p,
.note-card p {
  line-height: 1.7;
  color: var(--ink-soft);
}

.featured {
  position: relative;
  margin-top: -4rem;
  padding: 2rem;
  background: rgba(251, 248, 241, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.product-grid,
.collection-grid,
.lookbook-notes {
  display: grid;
  gap: 1.2rem;
}

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

.product-card,
.collection-card,
.note-card,
.story-panel,
.amazon-panel {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.72);
}

.product-card {
  overflow: clip;
  background: var(--foam);
}

.product-art {
  min-height: 16rem;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 80%, white) 0, transparent 32%),
    linear-gradient(135deg, var(--accent), var(--accent-alt));
}

.product-art span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  background: rgba(244, 239, 228, 0.84);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.product-copy {
  display: grid;
  gap: 0.7rem;
  padding: 1.25rem;
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.product-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(17, 17, 17, 0.65);
}

.product-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.product-link {
  display: inline-flex;
  margin-top: 0.35rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid currentColor;
}

.story-panel {
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(19, 111, 99, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.story-copy {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.text-link {
  width: fit-content;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 2px solid currentColor;
}

.story-collage {
  position: relative;
  min-height: 29rem;
}

.collage-card {
  position: absolute;
  display: grid;
  align-content: end;
  gap: 0.6rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  overflow: clip;
}

.collage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px);
  background-size: 12px 12px;
}

.collage-card span,
.collage-card strong {
  position: relative;
  z-index: 1;
}

.collage-card span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.collage-card-a {
  inset: 0 auto auto 0;
  width: 62%;
  height: 54%;
  background: linear-gradient(160deg, var(--sea), #69b8ab);
  color: var(--foam);
  transform: rotate(-5deg);
}

.collage-card-b {
  inset: auto 0 0 auto;
  width: 56%;
  height: 58%;
  background: linear-gradient(160deg, var(--rust), #f0ac7a);
  color: var(--ink);
  transform: rotate(6deg);
}

.collage-card-c {
  inset: 20% 12% auto auto;
  width: 46%;
  height: 36%;
  background: linear-gradient(160deg, var(--sand), #f9e8bf);
  color: var(--ink);
}

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

.collection-card {
  position: relative;
  overflow: clip;
  padding: 1.25rem;
  min-height: 18rem;
  display: grid;
  align-content: end;
  gap: 0.65rem;
  background:
    linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.5)),
    linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: var(--foam);
  box-shadow: var(--shadow);
}

.collection-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(251, 248, 241, 0.24);
}

.lookbook {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.04)),
    var(--sand);
}

.lookbook-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.lookbook-copy,
.note-card {
  padding: 1.5rem;
}

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

.note-card {
  background: rgba(251, 248, 241, 0.82);
}

.amazon-panel {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.amazon-actions {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.site-footer {
  padding: 0 0 3rem;
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.footer-meta {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.66);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes body-gradient-shift {
  0% {
    transform: translate3d(0, 0, 0) scale(1.05);
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
  }

  100% {
    transform: translate3d(-2%, 1.5%, 0) scale(1.12);
    background-position: 10% 8%, 90% 14%, 14% 88%, 82% 72%, 50% 50%;
  }
}

@keyframes body-gradient-glow {
  0% {
    opacity: 0.4;
    background-position: 0 0, 0% 0%, 100% 100%;
  }

  100% {
    opacity: 0.62;
    background-position: 14px 18px, 6% 4%, 94% 92%;
  }
}

@keyframes body-grain-shift {
  0% {
    background-position: 0 0, 0% 0%, 100% 100%;
  }

  33% {
    background-position: -35px 20px, 2% 1%, 98% 98%;
  }

  66% {
    background-position: 18px -22px, 1% 3%, 97% 94%;
  }

  100% {
    background-position: -12px 10px, 4% 2%, 96% 96%;
  }
}

@keyframes manifesto-sway-a {
  0%,
  100% {
    transform: translateX(0.1rem);
  }

  50% {
    transform: translateX(2rem);
  }
}

@keyframes manifesto-sway-b {
  0%,
  100% {
    transform: translateX(0.35rem);
  }

  50% {
    transform: translateX(-1.6rem);
  }
}

@keyframes manifesto-sway-c {
  0%,
  100% {
    transform: translateX(-0.2rem);
  }

  50% {
    transform: translateX(1.5rem);
  }
}

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

  .hero-stage {
    min-height: 0;
    display: grid;
    gap: 1rem;
  }

  .hero-media {
    width: 100%;
    height: clamp(12rem, 56vw, 18rem);
  }

  .story-panel,
  .lookbook-layout,
  .amazon-panel {
    grid-template-columns: 1fr;
  }

  .lookbook-notes {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: 100%;
    min-height: 0;
    padding: 1rem 0 0.5rem;
  }


  .hero {
    padding-bottom: 2rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 2.75rem 0 auto;
    border-radius: 1.4rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav a {
    padding: 0.2rem 0;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero {
    padding-top: 10rem;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .hero-stage {
    padding: 1rem;
    border-radius: 1.6rem;
  }

  .hero-media {
    width: 100%;
    height: clamp(11rem, 64vw, 14rem);
    border-radius: 1.2rem;
  }

  .hero-content {
    padding: 0.5rem 0 0;
  }

  .hero-headline-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.15rem;
  }

  .hero h1 {
    width: 100%;
    flex: 0 0 auto;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions-inline {
    justify-self: start;
  }

  .hero-manifesto {
    gap: 1rem;
    margin-top: 2rem;
    padding-inline: 0;
  }

  .hero-manifesto-line {
    width: 100%;
    min-height: 1.8rem;
    padding-inline: 0.85rem;
  }

  .hero-manifesto-line span {
    font-size: clamp(1rem, 3.9vw, 1.12rem);
    line-height: 1.58;
  }

  .featured {
    margin-top: -2rem;
    padding: 1.2rem;
  }

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

  .story-panel,
  .amazon-panel {
    padding: 1.2rem;
  }

  .story-copy,
  .lookbook-copy,
  .note-card {
    padding: 0;
  }

  .story-collage {
    min-height: 24rem;
  }
}

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

  .announcement-track,
  .storyband-track {
    animation: none;
  }

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

  .button,
  .site-header {
    transition: none;
  }
}
