:root {
  --ink-strong: #0f0f0f;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #dbdbdb;
  --panel: #fafafa;
  --panel-strong: #ffffff;
  --bg: #f4f4f2;
  --chip-bg: #f0f0ee;
  --chip-ink: #444;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 5rem 0 2.4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink-strong);
  line-height: 1.06;
}

h1 {
  max-width: 18ch;
  font-size: clamp(1.95rem, 4.7vw, 3.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
}

.lede {
  max-width: 64ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
  line-height: 1.58;
}

.hero-chips {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: var(--chip-bg);
  color: var(--chip-ink);
  font-size: 0.77rem;
}

.catalog-block {
  margin-top: 1.1rem;
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.section-top p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 0.85rem;
}

.product-card {
  display: grid;
  gap: 0.75rem;
  border-radius: 0.62rem;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.8rem;
  box-shadow: none;
}

.media-square {
  --native-side: 420px;
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  width: min(var(--native-side), 100%);
  aspect-ratio: 1 / 1;
  background: #0b0b0b;
  border: 1px solid #232323;
  position: relative;
}

.product-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  transform-origin: var(--focus-x, 50%) var(--focus-y, 50%);
  transform: scale(var(--trim-zoom, 1));
  filter: saturate(1.08) contrast(1.03) brightness(1.03);
  transition: transform 360ms ease, filter 260ms ease;
}

.product-card:hover .product-video {
  filter: saturate(1.1) contrast(1.04) brightness(1.04);
}

.product-meta {
  display: grid;
  gap: 0.45rem;
}

.product-title {
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.product-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.86rem;
}

.product-donation {
  margin: 0;
  font-size: 0.77rem;
  color: #353535;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-cta {
  width: fit-content;
  text-decoration: none;
  color: #111;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid #111;
  padding-bottom: 0.08rem;
}

.product-cta:hover {
  color: #000;
}

.studio-block {
  margin: 1.5rem 0 0;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel-strong);
  padding: clamp(1rem, 2.7vw, 1.5rem);
}

.studio-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.studio-note {
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 0.75rem 0.85rem;
  background: #fbfbfb;
}

.studio-note h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.studio-note p {
  margin: 0.45rem 0 0;
  color: #4b4b4b;
  font-size: 0.84rem;
  line-height: 1.45;
}

.story-block {
  margin: 1rem 0 3.4rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel-strong);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: none;
}

.story-block p {
  margin: 0.75rem 0 0;
  line-height: 1.55;
  color: #474747;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 4.2rem;
  }

  .section-top {
    align-items: start;
    flex-direction: column;
  }

  .product-card {
    padding: 0.8rem;
  }
}
