:root {
  --paper: #f3f1ec;
  --paper-bright: #fffdf8;
  --ink: #11100e;
  --muted: #69645d;
  --line: #cbc7bf;
  --red: #f04a2f;
  --yellow: #f4d534;
  --blue: #356fc8;
  --green: #00cf54;
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Archivo", Arial, sans-serif;
  --shell: 1480px;
  --gutter: 56px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
svg { width: 19px; height: 19px; stroke-width: 1.8; }

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: 112px; }
.skip-link {
  position: fixed;
  z-index: 200;
  left: 12px;
  top: 12px;
  background: var(--paper-bright);
  color: var(--ink);
  padding: 10px 14px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.eyebrow,
.section-number,
.feed-date {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  margin-right: 9px;
  vertical-align: 3px;
  background: var(--red);
}
.light { color: #fff; }
h1, h2, h3, p { letter-spacing: 0; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}
h2 { margin: 14px 0 0; font-size: 6rem; }

.button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: #fff; background: transparent; }
.button-light:hover { color: var(--ink); background: #fff; }
.button-accent { color: #fff; background: var(--red); border-color: var(--red); }
.button-accent:hover { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.text-link:hover { color: var(--red); }

/* Navigation */
.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-inline: var(--gutter);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}
.site-nav.scrolled,
.site-nav.store-nav.scrolled {
  color: var(--ink);
  background: rgba(243,241,236,0.96);
  border-color: var(--line);
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark span,
.footer-mark span,
.hero h1 span,
.store-hero h1 span { color: var(--red); }
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav a {
  padding: 10px 13px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.desktop-nav a:hover { color: var(--yellow); }
.site-nav.scrolled .desktop-nav a:hover { color: var(--red); }
.desktop-nav .nav-store {
  margin-left: 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
}
.desktop-nav .nav-store.active,
.desktop-nav .nav-store:hover { background: var(--red); color: #fff; border-color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-link,
.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}
.icon-link:hover,
.menu-button:hover { background: var(--red); border-color: var(--red); color: #fff; }
.menu-button { display: none; }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: var(--nav-height) 0 auto 0;
  display: none;
  padding: 18px var(--gutter) 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 50px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  height: calc(100svh - 32px);
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background-color: var(--ink);
  background-image: url("assets/images/instagram-custom-frame.jpg");
  background-position: center 34%;
  background-size: cover;
}
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms ease;
}
.hero-video.is-ready { opacity: 1; }
.hero-shade { background: rgba(0,0,0,0.48); }
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 54px;
}
.hero h1 {
  margin: 24px 0 36px;
  max-width: 760px;
  font-size: 10rem;
}
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.hero-bottom > p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
}
.video-toggle {
  position: absolute;
  z-index: 3;
  right: 22px;
  top: 92px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50%;
  cursor: pointer;
}
.video-toggle:hover { background: var(--red); border-color: var(--red); }
.ticker {
  height: 58px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
  animation: ticker 25s linear infinite;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.ticker-track b { color: var(--red); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Statement and headings */
.statement {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: start;
}
.section-number { padding-top: 12px; color: var(--muted); }
.statement-copy {
  max-width: 1080px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}
.section-heading h2 { margin-top: 14px; }
.heading-note {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Work */
.work-section { padding-top: 70px; background: var(--paper-bright); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 56px 22px;
  align-items: start;
}
.work-item { grid-column: span 4; min-width: 0; }
.work-item-feature { grid-column: span 5; grid-row: span 2; }
.work-item:nth-child(2) { grid-column: span 3; margin-top: 100px; }
.work-item:nth-child(3) { grid-column: span 4; }
.work-item:nth-child(4) { grid-column: 6 / span 3; }
.work-item:nth-child(5) { grid-column: span 4; margin-top: 110px; }
.work-item:nth-child(6) { grid-column: 1 / span 4; }
.work-item figure { margin: 0; }
.image-wrap { overflow: hidden; background: #dedbd4; }
.image-wrap.square { aspect-ratio: 1; }
.image-wrap.portrait { aspect-ratio: 4 / 5; }
.image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.22,1,.36,1);
}
.work-item:hover .image-wrap img { transform: scale(1.035); }
.work-item figcaption {
  min-height: 46px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--ink);
  font-size: 0.75rem;
  line-height: 1.3;
  text-transform: uppercase;
}
.work-item figcaption span:last-child { color: var(--muted); text-align: right; }
.work-item-type .image-wrap { border: 1px solid #eee; }

/* Film */
.film-section { color: #fff; background: var(--ink); }
.film-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: center;
}
.film-still { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #262626; }
.film-still img { height: 100%; object-fit: cover; }
.film-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}
.film-play svg { width: 28px; height: 28px; fill: currentColor; }
.film-play:hover { background: var(--red); color: #fff; transform: translate(-50%, -50%) scale(1.06); }
.film-copy h2 { margin: 18px 0 28px; font-size: 5rem; }
.film-copy > p { max-width: 450px; color: #bcb8b2; }
.light-link { color: #fff; margin-top: 16px; }

/* About */
.about-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: start;
}
.about-image { position: relative; aspect-ratio: 4 / 5; }
.about-image img { height: 100%; object-fit: cover; }
.about-image span {
  position: absolute;
  left: -1px;
  bottom: -1px;
  padding: 10px 13px;
  color: #fff;
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.about-copy { padding-top: 18px; }
.about-copy h2 { margin-bottom: 30px; }
.about-copy .lead {
  max-width: 720px;
  margin: 0;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.35;
}
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 32px;
  color: var(--muted);
}
.about-columns p { margin: 0; }
.about-copy blockquote {
  margin: 38px 0 0;
  padding: 24px 0 0 28px;
  border-top: 1px solid var(--ink);
  border-left: 8px solid var(--yellow);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.15;
  text-transform: uppercase;
}

/* History */
.history-section { background: #dedbd4; }
.history-heading { align-items: flex-end; }
.history-list { border-top: 2px solid var(--ink); }
.history-row {
  min-height: 84px;
  display: grid;
  grid-template-columns: 110px 1fr 130px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #a7a39c;
}
.history-row > span { font-family: var(--font-display); font-size: 2rem; color: var(--red); }
.history-row p { margin: 0; font-size: 1rem; }
.history-row small { text-transform: uppercase; text-align: right; }
.press-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: 68px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.press-links a {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 10px;
  padding: 24px;
  background: var(--paper);
}
.press-links a:hover { background: var(--yellow); }
.press-links span { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; text-transform: uppercase; }
.press-links small { align-self: end; color: var(--muted); text-transform: uppercase; }
.press-links svg { grid-column: 2; grid-row: 1; }

/* Commissions */
.commissions-section {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.commissions-image,
.commissions-shade { position: absolute; inset: 0; }
.commissions-image img { height: 100%; object-fit: cover; }
.commissions-shade { background: rgba(0,0,0,0.65); }
.commissions-content { position: relative; z-index: 2; }
.commissions-content h2 { margin: 18px 0 26px; font-size: 7rem; }
.commissions-content > p:not(.eyebrow) { max-width: 590px; margin: 0 0 30px; font-size: 1.1rem; }

/* Footer */
.site-footer { padding: 78px 0 28px; color: #fff; background: var(--ink); border-top: 1px solid #3a3936; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 70px; }
.footer-mark { font-family: var(--font-display); font-size: 9rem; line-height: 0.8; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 80px; }
.footer-links small { display: block; margin-bottom: 14px; color: #88847e; text-transform: uppercase; }
.footer-links a { display: block; padding: 4px 0; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid #3a3936;
  color: #88847e;
  font-size: 0.7rem;
  text-transform: uppercase;
}

/* Film dialog */
.film-dialog {
  width: min(1120px, calc(100% - 36px));
  max-height: calc(100svh - 36px);
  padding: 0;
  color: #fff;
  background: var(--ink);
  border: 1px solid #555;
}
.film-dialog::backdrop { background: rgba(0,0,0,0.9); }
.dialog-bar {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 18px;
  border-bottom: 1px solid #555;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.dialog-bar button { width: 54px; height: 54px; display: grid; place-items: center; padding: 0; color: #fff; background: transparent; border: 0; border-left: 1px solid #555; cursor: pointer; }
.dialog-bar button:hover { background: var(--red); }
.film-dialog video { max-height: calc(100svh - 92px); background: #000; }

/* Store page */
.store-hero {
  position: relative;
  height: calc(88svh - 26px);
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.store-hero > img,
.store-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.store-hero > img { object-fit: cover; object-position: center 36%; }
.store-hero-shade { background: rgba(0,0,0,0.52); }
.store-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 52px;
}
.store-hero h1 { margin: 22px 0 34px; font-size: 9.5rem; }
.store-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.store-hero-bottom p { max-width: 560px; margin: 0; font-size: 1.05rem; }
.store-intro { display: grid; grid-template-columns: 180px 1fr; gap: 80px; }
.store-intro h2 { margin: 0 0 28px; font-size: 4.8rem; }
.store-intro > div p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.2rem; }
.store-intro a { border-bottom: 1px solid currentColor; }
.sale-section { background: var(--paper-bright); }
.sale-heading { margin-bottom: 34px; }
.feed-date { color: var(--muted); }
.sale-feed { min-height: 280px; }
.feed-loading { padding: 70px 0; color: var(--muted); border-top: 1px solid var(--ink); }
.feed-empty {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 38px;
  align-items: center;
  min-height: 250px;
  padding-block: 48px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.feed-empty-mark {
  width: 126px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 8px solid var(--red);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
}
.feed-empty h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 2.4rem; line-height: 1; text-transform: uppercase; }
.feed-empty p { max-width: 590px; margin: 0; color: var(--muted); }
.sale-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 22px; }
.sale-card figure { margin: 0; }
.sale-card .sale-image { position: relative; aspect-ratio: 1; overflow: hidden; background: #ddd; }
.sale-card img { height: 100%; object-fit: cover; transition: transform 500ms ease; }
.sale-card:hover img { transform: scale(1.035); }
.sale-badge { position: absolute; top: 10px; left: 10px; padding: 6px 9px; color: #fff; background: var(--red); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.sale-card figcaption { display: flex; justify-content: space-between; gap: 14px; padding-top: 11px; border-top: 1px solid var(--ink); }
.sale-card strong { font-size: 0.82rem; text-transform: uppercase; }
.sale-card small { color: var(--muted); text-transform: uppercase; }
.recent-section { background: #dedbd4; }
.recent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 20px; }
.recent-image { position: relative; aspect-ratio: 1; overflow: hidden; background: #ccc; }
.recent-image img { height: 100%; object-fit: cover; transition: transform 500ms ease; }
.recent-image span { position: absolute; right: 10px; top: 10px; width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; opacity: 0; transition: opacity 180ms ease; }
.recent-post:hover img { transform: scale(1.035); }
.recent-post:hover .recent-image span { opacity: 1; }
.recent-post > div:last-child { display: flex; justify-content: space-between; gap: 12px; padding-top: 10px; border-top: 1px solid var(--ink); font-size: 0.78rem; text-transform: uppercase; }
.recent-post small { color: var(--muted); }
.store-contact { color: #fff; background: var(--blue); }
.store-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.store-contact h2 { margin-top: 18px; font-size: 6.5rem; }
.store-contact-copy p { max-width: 560px; margin: 0 0 30px; font-size: 1.15rem; }

@media (max-width: 1120px) {
  :root { --gutter: 34px; }
  h2 { font-size: 5rem; }
  .hero h1 { font-size: 8rem; }
  .desktop-nav { display: none; }
  .site-nav { grid-template-columns: 1fr auto; }
  .menu-button { display: grid; }
  .work-grid { gap-block: 42px; }
  .film-layout { gap: 42px; }
  .about-section { gap: 54px; }
  .commissions-content h2 { font-size: 6rem; }
  .footer-mark { font-size: 7rem; }
  .store-hero h1 { font-size: 8rem; }
}

@media (max-width: 820px) {
  :root { --gutter: 24px; --nav-height: 64px; }
  .section { padding-block: 82px; }
  h2 { font-size: 4.2rem; }
  .site-nav { height: var(--nav-height); padding-inline: var(--gutter); }
  .hero { min-height: 620px; }
  .hero-content { padding-top: 100px; padding-bottom: 36px; }
  .hero h1 { margin-bottom: 28px; font-size: 6.6rem; }
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .hero-bottom .button-row { justify-content: flex-start; }
  .video-toggle { top: 78px; right: 16px; }
  .statement { grid-template-columns: 1fr; gap: 26px; }
  .statement-copy { font-size: 3rem; }
  .section-heading { align-items: flex-start; }
  .work-item,
  .work-item-feature,
  .work-item:nth-child(2),
  .work-item:nth-child(3),
  .work-item:nth-child(4),
  .work-item:nth-child(5),
  .work-item:nth-child(6) { grid-column: span 6; margin-top: 0; }
  .film-layout { grid-template-columns: 1fr; }
  .film-copy { max-width: 620px; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { max-width: 600px; }
  .about-columns { gap: 24px; }
  .history-row { grid-template-columns: 84px 1fr 100px; }
  .press-links { grid-template-columns: 1fr; }
  .press-links a { min-height: 120px; }
  .commissions-content h2 { font-size: 5rem; }
  .footer-top { flex-direction: column; }
  .footer-mark { font-size: 6rem; }
  .footer-links { width: 100%; }
  .store-hero { height: calc(90svh - 24px); }
  .store-hero h1 { font-size: 6.8rem; }
  .store-hero-bottom { align-items: flex-start; flex-direction: column; gap: 24px; }
  .store-intro { grid-template-columns: 1fr; gap: 24px; }
  .store-intro h2 { font-size: 4rem; }
  .feed-empty { grid-template-columns: 130px 1fr; }
  .feed-empty .button { grid-column: 2; justify-self: start; }
  .sale-grid,
  .recent-grid { grid-template-columns: repeat(2, 1fr); }
  .store-contact-layout { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 560px) {
  :root { --gutter: 17px; }
  body { font-size: 15px; }
  .section { padding-block: 66px; }
  h2 { font-size: 3.2rem; }
  .wordmark { font-size: 1.35rem; }
  .icon-link,
  .menu-button { width: 38px; height: 38px; }
  .hero { height: calc(100svh - 28px); min-height: 640px; }
  .hero-video { object-position: 54% center; }
  .hero-content { padding-bottom: 26px; }
  .hero h1 { margin: 18px 0 24px; font-size: 4.8rem; }
  .hero-bottom > p { max-width: 430px; font-size: 0.96rem; }
  .button { min-height: 44px; padding-inline: 14px; }
  .video-toggle { width: 40px; height: 40px; }
  .ticker { height: 52px; }
  .ticker-track { gap: 22px; font-size: 1rem; }
  .statement-copy { font-size: 2.25rem; }
  .section-heading { display: block; margin-bottom: 36px; }
  .section-heading .text-link,
  .section-heading .heading-note,
  .section-heading .feed-date { margin-top: 22px; }
  .work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 12px; }
  .work-item,
  .work-item-feature,
  .work-item:nth-child(2),
  .work-item:nth-child(3),
  .work-item:nth-child(4),
  .work-item:nth-child(5),
  .work-item:nth-child(6) { grid-column: span 1; }
  .work-item-feature { grid-column: 1 / -1; }
  .work-item figcaption { display: block; min-height: 64px; font-size: 0.67rem; }
  .work-item figcaption span { display: block; }
  .work-item figcaption span:last-child { margin-top: 4px; text-align: left; }
  .film-play { width: 60px; height: 60px; }
  .film-copy h2 { font-size: 3.8rem; }
  .about-image { aspect-ratio: 4 / 5; }
  .about-copy .lead { font-size: 1.2rem; }
  .about-columns { grid-template-columns: 1fr; }
  .about-copy blockquote { font-size: 1.35rem; }
  .history-heading h2 { font-size: 3.4rem; }
  .history-row { min-height: 96px; grid-template-columns: 64px 1fr; gap: 14px; padding-block: 12px; }
  .history-row > span { font-size: 1.45rem; }
  .history-row small { grid-column: 2; text-align: left; }
  .commissions-section { min-height: 620px; }
  .commissions-content h2 { font-size: 4rem; }
  .commissions-content .button-row { display: grid; }
  .footer-mark { font-size: 4.5rem; }
  .footer-links { gap: 36px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .store-hero { min-height: 630px; }
  .store-hero > img { object-position: 50% center; }
  .store-hero h1 { font-size: 5.2rem; }
  .store-intro h2 { font-size: 3.15rem; }
  .store-intro > div p { font-size: 1.05rem; }
  .feed-empty { grid-template-columns: 1fr; gap: 26px; }
  .feed-empty-mark { width: 100px; border-width: 6px; font-size: 2.4rem; }
  .feed-empty .button { grid-column: 1; }
  .sale-grid,
  .recent-grid { grid-template-columns: 1fr 1fr; gap: 32px 10px; }
  .recent-post > div:last-child { display: block; min-height: 62px; font-size: 0.7rem; }
  .recent-post strong,
  .recent-post small { display: block; }
  .recent-post small { margin-top: 4px; }
  .store-contact h2 { font-size: 4.2rem; }
}

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