﻿:root {
  --background: #070707;
  --background-soft: #11100f;
  --surface: rgba(17, 16, 15, 0.88);
  --surface-strong: rgba(24, 22, 20, 0.96);
  --text: #f2eadc;
  --muted: #a99f90;
  --line: rgba(242, 234, 220, 0.09);
  --line-strong: rgba(242, 234, 220, 0.18);
  --accent: #dfb27e;
  --accent-strong: #c67b3a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --container: min(1120px, calc(100vw - clamp(1rem, 4vw, 2rem)));
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(198, 123, 58, 0.14), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(80, 110, 122, 0.12), transparent 24%),
    linear-gradient(180deg, #040404 0%, #090909 52%, #050505 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 82%);
  pointer-events: none;
  z-index: -2;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: 10rem;
  left: -12rem;
  background: rgba(198, 123, 58, 0.18);
}

.page-glow-right {
  top: 28rem;
  right: -10rem;
  background: rgba(80, 110, 122, 0.15);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.2rem 0;
}

.section-border {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 6, 6, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.header-bar,
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.35rem;
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a,
.menu-button,
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a,
.eyebrow,
.section-note,
.contact-links,
.contact-copy p,
.contact-form label,
.shop-copy p,
.cart-empty,
.cart-meta,
.category-description,
.site-footer {
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.menu-button {
  display: none;
  padding: 0.65rem 1rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  padding-top: 5rem;
}

.hero-layout,
.shop-layout,
.podcast-layout,
.contact-layout,
.collection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 1.8rem;
  align-items: start;
}

.hero-copy {
  max-width: 38rem;
}

.hero-copy h1,
.section-heading h2,
.motion-copy h2,
.contact-copy h2,
.category-stage-head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.2rem);
}

.section-heading h2,
.motion-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.category-stage-head h3 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

.hero-text,
.section-note,
.motion-copy p,
.contact-copy p,
.category-description {
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.hero-tags span,
.shop-meta-row span,
.process-card span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #f0cf9f 100%);
  color: #130d08;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.button-full {
  width: 100%;
}

.hero-cinema {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  justify-self: end;
  width: min(100%, 27rem);
}

.hero-cinema-track {
  display: grid;
  gap: 0.95rem;
}

.hero-cinema-track-offset {
  padding-top: 3rem;
}

.hero-video-card,
.hero-art-card,
.category-stage,
.art-card,
.process-card,
.shop-card,
.cart-panel,
.contact-form,
.modal-dialog {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-video-card,
.hero-art-card {
  overflow: hidden;
}

.hero-video-card {
  aspect-ratio: 9 / 16;
}

.hero-video-card-small {
  aspect-ratio: 4 / 5;
}

.hero-art-card {
  aspect-ratio: 4 / 5;
}

.hero-art-card-top {
  transform: translateX(-1.2rem);
}

.hero-video-card video,
.hero-art-card img,
.art-card img,
.process-card video,
.shop-card img,
.cart-thumb,
.modal-dialog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.4rem;
}

.category-rail {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.85rem;
}

.category-button {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  width: 100%;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.category-button:hover,
.category-button:focus-visible,
.category-button.is-active {
  transform: translateX(4px);
  border-color: rgba(223, 178, 126, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.category-index {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--accent);
}

.category-copy strong,
.category-copy small {
  display: block;
}

.category-copy strong {
  font-size: 1.05rem;
}

.category-copy small {
  margin-top: 0.2rem;
  color: var(--muted);
}

.category-stage {
  position: relative;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 18% 10%, rgba(198, 123, 58, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.category-stage::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.category-stage[data-category="grafito"] {
  background:
    radial-gradient(circle at 18% 10%, rgba(130, 92, 68, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.category-stage[data-category="sketches"] {
  background:
    radial-gradient(circle at 18% 10%, rgba(91, 128, 145, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.category-stage-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 1.35rem;
}

.category-panel {
  min-height: 18rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.category-stage.is-switching .category-panel {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(8px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.art-card {
  grid-column: span 3;
  width: 100%;
  padding: 0;
  overflow: hidden;
  appearance: none;
  cursor: pointer;
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease;
  animation: riseIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i) * 45ms);
}

.art-card.wide {
  grid-column: span 6;
}

.art-card img {
  aspect-ratio: 1 / 1;
  transition: transform 700ms ease, filter 700ms ease;
}

.art-card.wide img {
  aspect-ratio: 16 / 10;
}

.art-card.tall img {
  aspect-ratio: 4 / 5;
}

.art-card:hover,
.art-card:focus-visible,
.process-card:hover,
.process-card:focus-visible,
.shop-card:hover,
.shop-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(223, 178, 126, 0.45);
}

.art-card:hover img,
.art-card:focus-visible img,
.process-card:hover video,
.process-card:focus-visible video,
.shop-card:hover img,
.shop-card:focus-within img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

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

.process-card {
  overflow: hidden;
  background: var(--surface);
  animation: riseIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i) * 70ms);
}

.process-card video {
  aspect-ratio: 9 / 16;
  transition: transform 700ms ease, filter 700ms ease;
}

.process-card small {
  color: var(--muted);
}

.process-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem 1rem;
}

.motion-section {
  position: relative;
  overflow: hidden;
}

.motion-wall {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
  opacity: 0.3;
}

.motion-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.46), rgba(7, 7, 7, 0.84));
}

.motion-wall video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.motion-copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding: 6rem 0;
}

.shop-layout {
  grid-template-columns: minmax(0, 1fr) 290px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shop-card {
  overflow: hidden;
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease;
}

.shop-card img {
  aspect-ratio: 1 / 1;
  transition: transform 700ms ease, filter 700ms ease;
}

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

.shop-copy p {
  margin: 0;
  font-size: 0.92rem;
}

.shop-meta-row,
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shop-meta-row strong,
.cart-summary strong {
  color: var(--text);
}

.cart-panel {
  position: sticky;
  top: 6rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(24, 22, 20, 0.98), rgba(16, 15, 14, 0.92));
}

.cart-items {
  display: grid;
  gap: 0.8rem;
  min-height: 6rem;
  margin-bottom: 1rem;
}

.cart-empty {
  margin: 0;
}

.cart-row {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-thumb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
}

.cart-meta strong,
.cart-meta small {
  display: block;
}

.cart-meta strong {
  font-size: 0.95rem;
  color: var(--text);
}

.cart-meta small {
  font-size: 0.84rem;
}

.cart-row button {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(18, 17, 16, 0.9);
}

.contact-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.9rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #887d70;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  position: relative;
  display: grid;
  grid-template-columns: 3.35rem minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  min-height: 6.6rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at top left, rgba(223, 178, 126, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(20, 18, 16, 0.96), rgba(12, 11, 10, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-position 320ms ease;
}

.social-card::before,
.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.social-card::before {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.08) 34%, transparent 46%);
  transform: translateX(-110%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.social-card::after {
  inset: auto -14% -45% auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 178, 126, 0.16), transparent 72%);
  filter: blur(10px);
  opacity: 0.8;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(223, 178, 126, 0.36);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
}

.social-card:hover::before,
.social-card:focus-visible::before {
  transform: translateX(115%);
}

.social-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.35rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(242, 234, 220, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition:
    transform 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease;
}

.social-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.social-card:hover .social-icon,
.social-card:focus-visible .social-icon {
  transform: rotate(-6deg) scale(1.08);
  color: #14100b;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #f0cf9f 100%);
}

.social-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.22rem;
}

.social-copy strong,
.social-copy small {
  display: block;
}

.social-copy strong {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.15;
}

.social-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-status {
  min-height: 1.4rem;
  margin: -0.15rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.form-status.is-success {
  color: #d8c89a;
}

.form-status.is-error {
  color: #d79682;
}

.form-status.is-pending {
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 50;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  width: min(880px, 100%);
  padding: 0.75rem;
  transform: translateY(16px) scale(0.98);
  transition: transform 220ms ease;
}

.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-dialog img {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.modal-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  padding: 0.55rem 0.85rem;
  background: rgba(10, 10, 10, 0.88);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.site-footer {
  padding: 0 0 2rem;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .reveal,
  .art-card,
  .process-card,
  .button,
  .shop-card,
  .modal-dialog {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 980px) {
  .hero-layout,
  .shop-layout,
  .podcast-layout,
  .contact-layout,
  .collection-layout {
    grid-template-columns: 1fr;
  }

  .hero-cinema {
    justify-self: start;
  }

  .category-rail,
  .cart-panel {
    position: static;
  }
}

.podcast-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 1.9rem;
  align-items: center;
}

.podcast-copy {
  display: grid;
  gap: 1.35rem;
}

.podcast-callout {
  display: grid;
  gap: 1rem;
  width: min(30rem, 100%);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(223, 178, 126, 0.16);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(223, 178, 126, 0.12), transparent 38%),
    rgba(14, 14, 13, 0.82);
}

.podcast-intro {
  margin: 0;
  color: var(--text);
}

.podcast-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 10%, rgba(223, 178, 126, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(24, 22, 20, 0.98), rgba(16, 15, 14, 0.92));
}

.podcast-card::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.podcast-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 10px);
  aspect-ratio: 9 / 16;
  background: #090909;
}

.podcast-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.05), rgba(7, 7, 7, 0.36)),
    radial-gradient(circle at center, rgba(223, 178, 126, 0.06), transparent 54%);
  pointer-events: none;
}

.podcast-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.podcast-meta p {
  margin: 0;
}

@media (max-width: 760px) {
  .podcast-layout {
    gap: 1.6rem;
  }

  .podcast-card {
    max-width: 24rem;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.5rem 0;
  }

  .header-bar,
  .footer-bar {
    display: grid;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    width: 100%;
    padding-bottom: 1rem;
  }

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

  .hero-copy h1,
  .section-heading h2,
  .motion-copy h2,
  .contact-copy h2,
  .category-stage-head h3 {
    font-size: clamp(2.1rem, 9vw, 3.7rem);
  }

  .hero-cinema,
  .process-grid,
  .shop-grid,
  .motion-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-stage-head {
    grid-template-columns: 1fr;
  }

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

  .art-card,
  .art-card.wide,
  .art-card.tall {
    grid-column: span 3;
  }

  .art-card img,
  .art-card.wide img,
  .art-card.tall img,
  .shop-card img {
    aspect-ratio: 1 / 1;
  }

  .motion-wall video:last-child {
    display: none;
  }
}


.collection-layout {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 2.6rem;
}

.collection-control {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.collection-hint {
  max-width: 16rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.radial-menu-shell {
  --menu-rotation: 0deg;
  --orbit-radius: 8.25rem;
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 22rem);
  aspect-ratio: 1;
  margin: 0.2rem 0 0.25rem;
}

.radial-menu-shell::before,
.radial-menu-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.radial-menu-shell::before {
  background: radial-gradient(circle, rgba(223, 178, 126, 0.12), rgba(17, 16, 15, 0) 62%);
  filter: blur(20px);
}

.radial-menu-shell::after {
  inset: 1.25rem;
  border: 1px dashed rgba(242, 234, 220, 0.14);
  animation: orbitSpin 24s linear infinite;
}

.radial-menu {
  position: relative;
  width: 100%;
  height: 100%;
  animation: orbitFloat 8s ease-in-out infinite;
}

.radial-menu-shell.is-spinning .radial-menu {
  filter: saturate(1.08);
}

.radial-node {
  --node-scale: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8.4rem;
  min-height: 3.4rem;
  display: grid;
  place-items: center;
  padding: 0.9rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(17, 16, 15, 0.92);
  color: var(--text);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--angle) + var(--menu-rotation)))
    translateY(calc(var(--orbit-radius) * -1))
    rotate(calc((var(--angle) + var(--menu-rotation)) * -1))
    scale(var(--node-scale));
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease;
}

.radial-node span {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.radial-node:hover,
.radial-node:focus-visible {
  border-color: rgba(223, 178, 126, 0.4);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.radial-node.is-active {
  --node-scale: 1.1;
  background: linear-gradient(135deg, var(--accent) 0%, #f0cf9f 100%);
  color: #150f09;
  border-color: transparent;
  box-shadow:
    0 0 0 10px rgba(223, 178, 126, 0.08),
    0 22px 48px rgba(198, 123, 58, 0.24);
}

.radial-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10.75rem;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.3rem;
  padding: 1.35rem;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 28% 18%, rgba(223, 178, 126, 0.18), rgba(19, 18, 16, 0.97));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    var(--shadow);
  transform: translate(-50%, -50%);
}

.radial-core strong,
.radial-core small {
  display: block;
}

.radial-core strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  line-height: 0.92;
}

.radial-core small {
  max-width: 7rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.radial-menu-shell[data-active="grafito"] .radial-core {
  background: radial-gradient(circle at 28% 18%, rgba(145, 103, 74, 0.24), rgba(19, 18, 16, 0.97));
}

.radial-menu-shell[data-active="sketches"] .radial-core {
  background: radial-gradient(circle at 28% 18%, rgba(88, 126, 143, 0.24), rgba(19, 18, 16, 0.97));
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .collection-control {
    position: static;
  }
}

@media (max-width: 760px) {
  .collection-layout {
    grid-template-columns: 1fr;
  }

  .collection-control {
    justify-items: center;
    text-align: center;
  }

  .collection-control.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .collection-hint {
    max-width: 22rem;
  }

  .radial-menu-shell {
    width: min(100%, 18rem);
    --orbit-radius: 6.6rem;
  }

  .radial-node {
    width: 6.7rem;
    min-height: 2.85rem;
    padding: 0.7rem 0.5rem;
  }

  .radial-node span {
    font-size: 0.82rem;
  }

  .radial-core {
    width: 8.7rem;
    padding: 1rem;
  }

  .radial-core strong {
    font-size: 1.8rem;
  }
}


.radial-menu-shell {
  width: min(100%, 24rem);
  --orbit-radius: 9.15rem;
}

.radial-menu-shell::after {
  inset: 0.75rem;
}

.radial-node {
  z-index: 2;
  width: 10.25rem;
  min-height: 4.8rem;
  padding: 1.2rem 1rem;
}

.radial-node span {
  pointer-events: none;
}

.radial-core {
  width: 9.4rem;
  padding: 1.05rem;
  pointer-events: none;
  z-index: 1;
}

.radial-core strong {
  font-size: 1.95rem;
}

.medium-transition {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  z-index: 70;
}

.medium-transition.is-active {
  opacity: 1;
}

.medium-transition video,
.medium-transition-scrim {
  position: absolute;
  inset: 0;
}

.medium-transition video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02) brightness(0.52);
}

.medium-transition-scrim {
  background:
    radial-gradient(circle at center, rgba(223, 178, 126, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.72), rgba(6, 6, 6, 0.84));
}

.medium-transition-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 360ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.medium-transition.is-active .medium-transition-copy {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.medium-transition-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

@media (max-width: 760px) {
  .radial-menu-shell {
    width: min(100%, 19rem);
    --orbit-radius: 7rem;
  }

  .radial-node {
    width: 7.8rem;
    min-height: 3.9rem;
    padding: 0.9rem 0.7rem;
  }

  .radial-core {
    width: 7.95rem;
  }

  .radial-core strong {
    font-size: 1.6rem;
  }
}

.category-stage-head {
  grid-template-columns: 1fr;
}

.radial-menu-shell::before,
.radial-menu-shell::after {
  pointer-events: none;
}

.radial-menu {
  isolation: isolate;
}

.radial-node {
  justify-items: center;
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.category-description[hidden],
.radial-core small[hidden] {
  display: none;
}

.modal-dialog {
  width: min(440px, 92vw);
  padding: 0.55rem;
}

.modal-dialog img {
  aspect-ratio: auto;
  max-height: 68vh;
  object-fit: contain;
  background: #080808;
}

.modal-close {
  top: 0.9rem;
  right: 0.9rem;
}

body.radial-transition-active {
  overflow: hidden;
}

.collection-layout,
.collection-control,
.category-stage {
  overflow-anchor: none;
}

.collection-control.is-transitioning {
  z-index: 5;
}

.radial-menu-shell.is-cloaked {
  visibility: hidden;
}

.radial-transition-layer {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 45;
  transition: opacity 220ms ease;
}

.radial-transition-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(223, 178, 126, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.42));
  opacity: 0;
  transition: opacity 260ms ease;
}

.radial-transition-layer.is-active {
  opacity: 1;
}

.radial-transition-layer.is-active::before {
  opacity: 1;
}

.radial-transition-shell {
  position: fixed;
  margin: 0;
  pointer-events: none;
  transform: translateZ(0) scale(1);
  transform-origin: center;
  transition:
    left 420ms cubic-bezier(0.22, 1, 0.36, 1),
    top 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
  filter: drop-shadow(0 22px 64px rgba(0, 0, 0, 0.24));
}

.radial-transition-shell.is-centered {
  transform: translateZ(0) scale(1.06);
  filter: drop-shadow(0 34px 96px rgba(0, 0, 0, 0.42));
}

.radial-transition-shell .radial-menu {
  animation-duration: 6.2s;
}

.radial-transition-shell.is-spinning .radial-menu {
  filter: saturate(1.14) brightness(1.04);
}

@media (max-width: 760px) {
  .radial-transition-shell.is-centered {
    transform: translateZ(0) scale(1.03);
  }
}

.series-section {
  position: relative;
  overflow: hidden;
}

.series-section::before,
.series-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.series-section::before {
  inset: 10% auto auto -10%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(223, 178, 126, 0.12), transparent 72%);
  filter: blur(22px);
}

.series-section::after {
  right: -8%;
  bottom: -10%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(124, 107, 74, 0.12), transparent 72%);
  filter: blur(30px);
}

.series-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: start;
}

.series-copy {
  position: sticky;
  top: 5.4rem;
  display: grid;
  gap: 0.9rem;
}

.series-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 4.2vw, 3.65rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.series-lead,
.series-summary {
  margin: 0;
}

.series-lead {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.72;
}

.series-summary {
  color: var(--muted);
  line-height: 1.72;
}

.series-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  color: #dfb27e;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.series-link::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
}

.series-nav {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.series-node {
  position: relative;
  display: grid;
  gap: 0.22rem;
  padding: 0.82rem 0.95rem 0.82rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(12, 12, 11, 0.76);
  color: var(--muted);
  text-align: left;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.series-node::before {
  content: "";
  position: absolute;
  left: 0.86rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(223, 178, 126, 0.8), rgba(223, 178, 126, 0.08));
  opacity: 0.42;
}

.series-node span,
.series-node small {
  display: block;
}

.series-node span {
  color: #d9bc94;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.series-node strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 0.94;
  color: var(--text);
}

.series-node small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.series-node:hover,
.series-node:focus-visible {
  border-color: rgba(223, 178, 126, 0.26);
  transform: translateX(6px);
}

.series-node.is-active {
  border-color: rgba(223, 178, 126, 0.34);
  background: linear-gradient(135deg, rgba(223, 178, 126, 0.12), rgba(14, 14, 13, 0.92));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  transform: translateX(10px);
}

.series-story {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 14%, rgba(223, 178, 126, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.series-story::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.series-story::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 10%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(223, 178, 126, 0.14), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.series-visual {
  position: relative;
  min-height: clamp(20rem, 48vw, 33rem);
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.7));
}

.series-visual::before,
.series-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.series-visual::before {
  inset: 10% 16%;
  border: 1px solid rgba(223, 178, 126, 0.18);
  border-radius: 50%;
  transform: rotate(-6deg);
  opacity: 0.6;
}

.series-visual::after {
  inset: 8% 12%;
  background:
    linear-gradient(90deg, transparent 18%, rgba(223, 178, 126, 0.16) 18.15%, transparent 18.3%, transparent 81.7%, rgba(223, 178, 126, 0.14) 81.85%, transparent 82%),
    linear-gradient(180deg, transparent 14%, rgba(223, 178, 126, 0.08) 14.15%, transparent 14.3%, transparent 49%, rgba(223, 178, 126, 0.12) 49.15%, transparent 49.3%, transparent 84%, rgba(223, 178, 126, 0.08) 84.15%, transparent 84.3%);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.series-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(12.5rem, 28vw, 21rem);
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.65rem;
  overflow: hidden;
  background: #090909;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 440ms ease,
    filter 520ms ease,
    box-shadow 520ms ease;
}

.series-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.series-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.08) 58%, rgba(8, 8, 8, 0.44) 100%);
}

.series-frame.is-active {
  z-index: 3;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.series-frame.is-active img {
  transform: scale(1.02);
}

.series-frame.is-prev {
  z-index: 2;
  opacity: 0.68;
  transform: translate(calc(-50% - min(15rem, 20vw)), calc(-50% - 0.55rem)) rotate(-7deg) scale(0.76);
  filter: saturate(0.9) brightness(0.85);
}

.series-frame.is-next {
  z-index: 2;
  opacity: 0.68;
  transform: translate(calc(-50% + min(15rem, 20vw)), calc(-50% + 0.55rem)) rotate(7deg) scale(0.76);
  filter: saturate(0.9) brightness(0.85);
}

.series-frame.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.66);
}

.series-detail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  width: min(25rem, 100%);
  margin-left: auto;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(223, 178, 126, 0.18);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.72));
  backdrop-filter: blur(14px);
}

.series-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.series-reference {
  margin: 0;
  color: #dbc6a3;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
}

.series-detail h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.series-detail p {
  margin: 0;
}

.series-detail.is-refreshing {
  animation: seriesNoteIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes seriesNoteIn {
  from {
    opacity: 0.2;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.series-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.series-control {
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.series-control:not(:disabled):hover,
.series-control:not(:disabled):focus-visible {
  transform: translateY(-1px);
  border-color: rgba(223, 178, 126, 0.28);
}

.series-control:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .series-layout {
    grid-template-columns: 1fr;
  }

  .series-copy {
    position: static;
  }

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

@media (max-width: 760px) {
  .series-nav {
    grid-template-columns: 1fr;
  }

  .series-visual {
    min-height: 24rem;
    touch-action: pan-y pinch-zoom;
  }

  .series-frame {
    width: min(64vw, 16rem);
  }

  .series-frame.is-prev {
    transform: translate(calc(-50% - 7rem), calc(-50% - 0.35rem)) rotate(-6deg) scale(0.7);
  }

  .series-frame.is-next {
    transform: translate(calc(-50% + 7rem), calc(-50% + 0.35rem)) rotate(6deg) scale(0.7);
  }

  .series-detail {
    width: 100%;
    margin-left: 0;
  }

  .series-detail-head {
    display: grid;
  }

  .series-reference {
    text-align: left;
  }

  .series-controls {
    justify-content: space-between;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 5rem;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-layout,
  .podcast-layout,
  .contact-layout,
  .collection-layout,
  .series-layout {
    gap: 1.5rem;
  }

  .hero-copy,
  .motion-copy,
  .section-heading {
    max-width: none;
  }

  .hero-cinema {
    width: min(100%, 24rem);
    margin-inline: auto;
    justify-self: center;
  }

  .category-stage {
    padding: 1.1rem;
  }

  .category-stage::before {
    inset: 0.75rem;
  }

  .series-copy {
    gap: 0.75rem;
  }

  .series-story {
    padding: 0.9rem;
  }

  .podcast-callout {
    width: 100%;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 5.25rem;
  }

  body::before {
    background-size: 60px 60px;
  }

  .container {
    width: min(100%, calc(100vw - 1rem));
  }

  .section {
    padding: 2.9rem 0;
  }

  .header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.85rem;
    min-height: auto;
    padding: 0.75rem 0;
  }

  .brand {
    font-size: 0.94rem;
    letter-spacing: 0.24em;
  }

  .menu-button {
    padding: 0.58rem 0.9rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    gap: 0.2rem;
    padding: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: rgba(12, 12, 12, 0.94);
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.04);
  }

  .site-nav a::after {
    bottom: 0.4rem;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-layout,
  .collection-layout,
  .podcast-layout,
  .contact-layout,
  .series-layout {
    gap: 1.25rem;
  }

  #collection .section-heading {
    margin-bottom: 0.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
    line-height: 0.95;
  }

  .section-heading h2,
  .motion-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .category-stage-head h3 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .series-copy h2 {
    font-size: clamp(2.05rem, 12vw, 3.25rem);
  }

  .hero-text,
  .motion-copy p,
  .contact-copy p,
  .series-lead,
  .series-summary,
  .podcast-intro {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-tags {
    gap: 0.45rem;
  }

  .hero-tags span {
    min-height: 1.8rem;
    padding: 0.18rem 0.62rem;
    font-size: 0.76rem;
  }

  .hero-cinema {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.1rem 0.2rem 0.4rem 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  .hero-cinema::-webkit-scrollbar {
    display: none;
  }

  .hero-cinema-track {
    display: flex;
    gap: 0.8rem;
    flex: 0 0 auto;
    padding-right: 0.15rem;
  }

  .hero-cinema-track-offset {
    padding-top: 0;
  }

  .hero-art-card-top {
    transform: none;
  }

  .hero-video-card,
  .hero-video-card-small,
  .hero-art-card {
    width: min(74vw, 14.25rem);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .hero-video-card,
  .hero-video-card-small {
    aspect-ratio: 4 / 5;
  }

  .hero-cinema-track:first-child .hero-art-card {
    margin-top: 1.25rem;
  }

  .hero-cinema-track:last-child .hero-video-card-small {
    display: none;
  }

  .collection-control {
    width: 100%;
    gap: 0.45rem;
  }

  .radial-menu-shell {
    width: min(100%, 16.75rem);
    --orbit-radius: 6rem;
    margin-top: 0.1rem;
    margin-inline: auto;
  }

  .radial-menu-shell::after {
    inset: 0.6rem;
  }

  .radial-node {
    width: 6.35rem;
    min-height: 3.45rem;
    padding: 0.75rem 0.5rem;
  }

  .radial-node span {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .radial-core {
    width: 7.15rem;
    padding: 0.85rem;
  }

  .radial-core strong {
    font-size: 1.5rem;
  }

  .radial-core .eyebrow {
    font-size: 0.68rem;
  }

  .category-stage {
    padding: 0.9rem;
    overflow: hidden;
  }

  .category-stage-head {
    gap: 0.45rem;
    margin-bottom: 0.8rem;
  }

  .category-panel {
    min-height: 0;
    overflow: hidden;
  }

  .category-panel .category-grid {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.05rem 0 0.45rem;
    margin: 0;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  .category-panel .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-panel .art-card,
  .category-panel .art-card.tall,
  .category-panel .art-card.wide {
    grid-column: auto;
    flex: 0 0 min(68vw, 15rem);
    width: min(68vw, 15rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .category-panel .art-card img,
  .category-panel .art-card.tall img,
  .category-panel .art-card.wide img {
    aspect-ratio: 1 / 1.1;
  }

  .category-panel .art-card.wide {
    flex-basis: min(82vw, 18rem);
    width: min(82vw, 18rem);
  }

  .category-panel .process-grid {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.05rem 0 0.45rem;
    margin: 0;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  .category-panel .process-grid::-webkit-scrollbar {
    display: none;
  }

  .category-panel .process-card {
    flex: 0 0 min(62vw, 13.5rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .process-card figcaption {
    padding: 0.75rem 0.8rem 0.85rem;
  }

  .series-nav {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(11rem, 78%);
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .series-nav::-webkit-scrollbar {
    display: none;
  }

  .series-node {
    min-height: 100%;
    padding: 0.78rem 0.92rem 0.8rem 1.18rem;
    scroll-snap-align: start;
  }

  .series-node strong {
    font-size: 1.18rem;
  }

  .series-node small {
    font-size: 0.72rem;
  }

  .series-node:hover,
  .series-node:focus-visible,
  .series-node.is-active {
    transform: none;
  }

  .series-story {
    gap: 0.85rem;
    padding: 0.8rem;
  }

  .series-story::before {
    inset: 0.7rem;
  }

  .series-visual {
    min-height: 19.5rem;
  }

  .series-frame {
    width: min(60vw, 13.5rem);
    border-radius: 1.3rem;
  }

  .series-frame.is-prev {
    opacity: 0.42;
    transform: translate(calc(-50% - 4.9rem), calc(-50% - 0.25rem)) rotate(-5deg) scale(0.62);
  }

  .series-frame.is-next {
    opacity: 0.42;
    transform: translate(calc(-50% + 4.9rem), calc(-50% + 0.25rem)) rotate(5deg) scale(0.62);
  }

  .series-detail {
    padding: 0.9rem 0.95rem;
  }

  .series-detail h3 {
    font-size: clamp(1.6rem, 9vw, 2.4rem);
  }

  .series-controls {
    gap: 0.6rem;
  }

  .series-control {
    flex: 1;
    min-height: 2.65rem;
    padding: 0.7rem 0.9rem;
  }

  .motion-copy {
    padding: 4.25rem 0;
  }

  .motion-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .motion-wall video {
    border-radius: 20px;
  }

  .podcast-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.3rem;
  }

  .podcast-copy {
    order: 1;
  }

  .podcast-callout {
    padding: 1rem 1.05rem;
    border-radius: 1.15rem;
  }

  .podcast-card {
    order: 2;
    max-width: 19rem;
    width: 100%;
    margin: 0 auto;
    padding: 0.8rem;
  }

  .podcast-meta {
    margin-top: 0.75rem;
  }

  .contact-links {
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .social-card {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    min-height: 0;
    padding: 0.95rem;
    justify-items: start;
  }

  .social-icon {
    width: 3rem;
  }

  .social-copy strong {
    font-size: 0.96rem;
  }

  .social-copy small {
    font-size: 0.72rem;
  }

  .contact-form {
    gap: 0.9rem;
    padding: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.82rem 0.9rem;
  }

  .modal {
    padding: 0.75rem;
  }

  .modal-dialog {
    width: min(360px, 100%);
    padding: 0.45rem;
  }

  .modal-dialog img {
    max-height: 75vh;
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 5.6rem;
  }

  .container {
    width: min(100%, calc(100vw - 0.85rem));
  }

  .section {
    padding: 2.5rem 0;
  }

  .brand {
    letter-spacing: 0.2em;
  }

  .site-nav a,
  .menu-button,
  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 12.5vw, 2.7rem);
  }

  .section-heading h2,
  .motion-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 10.5vw, 2.5rem);
  }

  .category-stage-head h3 {
    font-size: clamp(1.6rem, 8.6vw, 2.1rem);
  }

  .hero-cinema {
    width: 100%;
  }

  .hero-video-card,
  .hero-video-card-small,
  .hero-art-card {
    width: min(76vw, 12.8rem);
  }

  .hero-cinema-track:first-child .hero-art-card {
    margin-top: 0.95rem;
  }

  .radial-menu-shell {
    width: min(100%, 15.4rem);
    --orbit-radius: 5.45rem;
  }

  .radial-node {
    width: 5.7rem;
    min-height: 3.1rem;
  }

  .radial-node span {
    font-size: 0.74rem;
  }

  .radial-core {
    width: 6.3rem;
  }

  .radial-core strong {
    font-size: 1.28rem;
  }

  .category-stage {
    padding: 0.85rem;
  }

  #collection .section-heading {
    margin-bottom: 0.75rem;
  }

  .category-stage-head {
    margin-bottom: 0.68rem;
  }

  .category-panel .art-card,
  .category-panel .art-card.tall {
    flex-basis: min(72vw, 12.8rem);
    width: min(72vw, 12.8rem);
  }

  .category-panel .art-card.wide {
    flex-basis: min(88vw, 15.8rem);
    width: min(88vw, 15.8rem);
  }

  .category-panel .process-card {
    flex-basis: min(68vw, 12rem);
  }

  .series-nav {
    grid-auto-columns: minmax(10rem, 86%);
  }

  .series-visual {
    min-height: 17.5rem;
    touch-action: pan-y pinch-zoom;
  }

  .series-frame {
    width: min(64vw, 12.1rem);
  }

  .series-frame.is-prev {
    opacity: 0.32;
    transform: translate(calc(-50% - 3.8rem), calc(-50% - 0.15rem)) rotate(-4deg) scale(0.56);
  }

  .series-frame.is-next {
    opacity: 0.32;
    transform: translate(calc(-50% + 3.8rem), calc(-50% + 0.15rem)) rotate(4deg) scale(0.56);
  }

  .series-reference {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .series-detail p {
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .series-controls {
    flex-direction: column;
  }

  .series-control {
    width: 100%;
  }

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

  .podcast-card {
    max-width: 16.5rem;
  }
}

