:root {
  --black: #050505;
  --panel: #101114;
  --red: #e62243;
  --red-dark: #9e1028;
  --white: #fffafa;
  --soft: #f4e8e6;
  --muted: #b6adb0;
  --line: rgba(255, 250, 250, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --checker-white-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' shape-rendering='crispEdges' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect width='10' height='10' fill='%23fffafa'/%3E%3Crect x='10' y='10' width='10' height='10' fill='%23fffafa'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #050505;
  background-size: 74px 74px, 74px 74px, auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 2px solid var(--red);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 6px;
  background: var(--red);
}

.nav-links {
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(650px, calc(80svh - 18px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 58px) clamp(18px, 4vw, 54px);
  background:
    radial-gradient(circle at 52% 50%, rgba(230, 34, 67, 0.18) 0, rgba(230, 34, 67, 0.1) 14%, rgba(230, 34, 67, 0.04) 26%, rgba(230, 34, 67, 0) 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #050505;
  background-size: auto, 74px 74px, 74px 74px, auto;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(48vw, 640px);
  height: 120px;
  content: "";
  background-color: var(--black);
  background-image: var(--checker-white-pattern);
  background-size: 42px 42px;
  background-repeat: repeat;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.identity-copy h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.35rem, 5.4vw, 5.15rem);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 8px 8px 0 var(--red-dark);
  white-space: nowrap;
  overflow-wrap: break-word;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(31vw, 365px);
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 0;
  background: var(--red);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-photo::before {
  content: none;
}

.hero-photo::after {
  content: none;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain !important;
  object-position: center !important;
}

.hero-actions,
.contact-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 18px;
  border: 2px solid var(--white);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--white);
}

.button.primary {
  background: var(--red);
}

.button.secondary {
  background: var(--black);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  background: var(--red);
}

.signal-strip div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 168px;
  padding: clamp(26px, 4vw, 42px) clamp(18px, 4vw, 54px) clamp(30px, 4vw, 44px);
  border-right: 2px solid var(--black);
  background: var(--black);
}

.signal-strip div:nth-child(2) {
  background: var(--red);
}

.signal-strip strong {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: clamp(1.85rem, 4.8vw, 3.8rem);
  line-height: 1.06;
}

.signal-strip span {
  color: var(--soft);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.identity,
.work-section,
.gallery-section,
.style-section,
.contact {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 54px);
}

.identity {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--soft);
  color: var(--black);
}

.identity-copy h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
}

.identity-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  overflow-wrap: anywhere;
}

.identity-copy p,
.section-heading p,
.contact p,
.style-grid p {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.identity-board {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--black);
  background: var(--black);
  box-shadow: 12px 12px 0 var(--red);
}

.identity-board img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.style-section {
  background: var(--black);
}

.gallery-section {
  position: relative;
  border-top: 2px solid var(--red);
  background: var(--black);
}

.gallery-shell {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  gap: 28px;
}

.gallery-section .section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.gallery-credit--sticky {
  position: sticky;
  top: 82px;
  z-index: 12;
  margin-bottom: 26px;
}

.gallery-credit__main {
  display: grid;
  gap: 12px;
}

.gallery-artist-name {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: rgba(230, 34, 67, 0.08);
  color: var(--white);
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-artist-name span {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1;
}

.gallery-artist-name strong {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.gallery-artist-name:hover,
.gallery-artist-name:focus-visible {
  background: rgba(230, 34, 67, 0.24);
  outline: none;
}

.artist-grid {
  display: grid;
  gap: 22px;
}

.artist-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(230, 34, 67, 0.11), transparent 40%), var(--panel);
  box-shadow: 10px 10px 0 var(--red-dark);
}

.artist-card__meta {
  display: grid;
  gap: 14px;
  align-content: start;
}

.artist-card__name {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: rgba(230, 34, 67, 0.08);
  color: var(--white);
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  cursor: pointer;
}

.artist-card__name span {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1;
}

.artist-card__name strong {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.artist-card__name:hover,
.artist-card__name:focus-visible {
  background: rgba(230, 34, 67, 0.24);
  outline: none;
}

.artist-card__name--static {
  cursor: default;
}

.artist-card__summary {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.artist-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artist-card__link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: rgba(230, 34, 67, 0.08);
  color: var(--white);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.artist-card__link:hover,
.artist-card__link:focus-visible {
  background: rgba(230, 34, 67, 0.24);
  outline: none;
}

.artist-card__preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.artist-preview {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--red);
  background: var(--black);
  box-shadow: 9px 9px 0 var(--red-dark);
  cursor: pointer;
}

.artist-preview img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--black);
}

.gallery-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin-bottom: 18px;
}

.gallery-set-label strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Mono", monospace;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-transform: uppercase;
}

.gallery-pager {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-page-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: rgba(230, 34, 67, 0.08);
  font-family: "Space Mono", monospace;
}

.gallery-page-count strong {
  font-size: 0.95rem;
}

.gallery-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: rgba(230, 34, 67, 0.08);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: var(--red);
  outline: none;
}

.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-board {
  max-width: 1180px;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--red);
  background: var(--black);
  box-shadow: 12px 12px 0 var(--red-dark);
}

.gallery-board img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.wallpaper-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wallpaper-card {
  position: relative;
  display: block;
  min-width: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--red);
  background: var(--black);
  box-shadow: 9px 9px 0 var(--red-dark);
  cursor: pointer;
  text-align: left;
  appearance: none;
  font: inherit;
  color: inherit;
  align-self: start;
}

.wallpaper-card img {
  display: block;
  width: 100%;
  aspect-ratio: var(--card-aspect-ratio, 9 / 16);
  object-fit: contain;
  object-position: center;
  background: var(--black);
}

.wallpaper-card.is-placeholder {
  cursor: default;
}

.wallpaper-card.is-placeholder .wallpaper-card__placeholder {
  display: grid;
  min-height: 100%;
  padding: 22px 18px;
  align-content: center;
  justify-items: start;
  gap: 12px;
  color: var(--white);
}

.wallpaper-card.is-placeholder .wallpaper-card__placeholder strong {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.wallpaper-card.is-placeholder .wallpaper-card__placeholder span {
  color: var(--muted);
  line-height: 1.5;
}

.wallpaper-card.is-placeholder:hover,
.wallpaper-card.is-placeholder:focus-visible {
  transform: none;
  box-shadow: 9px 9px 0 var(--red-dark);
}

.wallpaper-card:hover,
.wallpaper-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 var(--red-dark);
  outline: none;
}

.wallpaper-card:focus-visible {
  box-shadow: 0 0 0 3px var(--black), 0 0 0 6px var(--red), 12px 12px 0 var(--red-dark);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.gallery-credit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 18px;
  align-items: end;
  max-width: 1180px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(230, 34, 67, 0.12), transparent 48%), var(--panel);
}

.gallery-credit h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.gallery-credit p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.credit-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.credit-chip,
.credit-notes span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--white);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  background: rgba(230, 34, 67, 0.1);
}

.credit-note {
  cursor: help;
}

.credit-chip {
  cursor: pointer;
}

.credit-chip:hover,
.credit-chip:focus-visible {
  background: rgba(230, 34, 67, 0.24);
  outline: none;
}

.work-section {
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  background: var(--black);
}

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

.work-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(230, 34, 67, 0.16), transparent 38%),
    var(--panel);
}

.work-card:not(.featured) {
  border-color: var(--red);
  box-shadow: 10px 10px 0 var(--red-dark);
}

.work-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 58px;
  content: "";
  background-color: var(--black);
  background-image: var(--checker-white-pattern);
  background-size: 24px 24px;
  background-repeat: repeat;
}

.work-card.featured {
  border-color: var(--red);
  box-shadow: 10px 10px 0 var(--red-dark);
}

.work-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 28px;
  border: 2px solid var(--white);
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-family: "Space Mono", monospace;
  font-weight: 700;
}

.work-card h3 {
  max-width: 620px;
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.work-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.work-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.work-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.work-links a:hover {
  background: var(--red);
}

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

.style-grid article {
  min-height: 280px;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.style-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.style-grid p {
  margin: 0;
  color: var(--muted);
}

.swatch {
  display: block;
  width: 100%;
  height: 104px;
  border: 2px solid var(--white);
  border-radius: 4px;
}

.swatch.red {
  background: var(--red);
}

.swatch.black {
  background: #000;
}

.swatch.checker {
  background-color: var(--black);
  background-image: var(--checker-white-pattern);
  background-size: 28px 28px;
  background-repeat: repeat;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 24px;
  align-items: center;
  border-top: 2px solid var(--red);
  background: var(--black);
}

.contact p {
  color: var(--muted);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.contact-link:hover {
  border-color: var(--red);
  background: rgba(230, 34, 67, 0.12);
}

.contact-link span {
  color: var(--red);
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-link strong {
  min-width: 0;
  color: var(--white);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: right;
}

.wallpaper-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    visibility 0s linear 0.18s;
}

.wallpaper-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.18s ease,
    visibility 0s linear 0s;
}

.wallpaper-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop, rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(10px);
}

.wallpaper-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(92vw, 760px);
  height: min(88dvh, 920px);
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  border: 3px solid var(--modal-border, var(--red));
  border-radius: 8px;
  background: var(--modal-bg, var(--black));
  box-shadow: 18px 18px 0 var(--modal-shadow, rgba(0, 0, 0, 0.55));
  padding: 22px;
  color: var(--modal-text, var(--white));
}

.wallpaper-modal__dialog--image-only {
  height: fit-content;
  align-items: center;
  width: fit-content;
  max-width: min(92vw, 980px);
  max-height: calc(100dvh - 48px);
  padding: 18px;
}

.wallpaper-modal__dialog--viewer {
  width: fit-content;
  height: fit-content;
  max-width: min(92vw, 1240px);
  max-height: min(92dvh, 960px);
  padding: 18px;
  gap: 14px;
  overflow: hidden;
  align-items: stretch;
}

.wallpaper-modal__dialog--artist {
  width: min(92vw, 1120px);
  height: auto;
  max-height: min(90dvh, 920px);
  padding: 22px;
  overflow: auto;
}

.artist-modal__body {
  display: grid;
}

.artist-card--modal {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  box-shadow: none;
  border-color: var(--modal-line, var(--line));
  background: linear-gradient(135deg, rgba(230, 34, 67, 0.11), transparent 40%), var(--modal-bg, var(--panel));
}

.wallpaper-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 40px;
  border: 2px solid var(--modal-close-border, var(--white));
  border-radius: 4px;
  padding: 0 14px;
  background: var(--modal-close-bg, var(--black));
  color: var(--modal-close-text, var(--white));
  font-weight: 900;
  text-transform: uppercase;
}

.wallpaper-modal__dialog h2 {
  margin: 0 0 14px;
  padding-right: 110px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.wallpaper-modal__image {
  display: block;
  width: auto;
  max-width: calc(92vw - 36px);
  height: auto;
  max-height: calc(100dvh - 84px);
  flex: 0 0 auto;
  margin: 0 auto;
  object-fit: contain;
  border: 2px solid var(--modal-line, var(--line));
  background: transparent;
}

.wallpaper-modal__dialog--viewer .wallpaper-modal__image {
  width: auto;
  max-width: min(88vw, 1120px);
  max-height: min(78dvh, 820px);
  margin: 0 auto;
}

.wallpaper-modal__caption {
  margin: 14px 0 0;
  color: var(--modal-muted, var(--muted));
  line-height: 1.6;
  flex: 0 0 auto;
}

.wallpaper-modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  flex: 0 0 auto;
}

.wallpaper-modal__actions[hidden] {
  display: none;
}

.wallpaper-modal__actions .button.primary {
  border-color: var(--modal-close-border, var(--white));
  background: var(--modal-cta-bg, var(--red));
  color: var(--modal-cta-text, var(--white));
}

.wallpaper-modal__actions .button.primary:hover {
  box-shadow: 5px 5px 0 var(--modal-cta-shadow, var(--white));
}

.artist-socials-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.artist-socials-link {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 2px solid var(--modal-chip-border, var(--red));
  border-radius: 6px;
  background: var(--modal-chip-bg, rgba(230, 34, 67, 0.08));
  color: var(--modal-text, var(--white));
  font-weight: 900;
  text-transform: uppercase;
}

.artist-socials-link:hover,
.artist-socials-link:focus-visible {
  background: var(--modal-chip-hover-bg, var(--red));
  color: var(--modal-chip-hover-text, var(--white));
  outline: none;
}

.artist-socials-empty {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
}

.work-modal__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.work-modal__nav {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: rgba(230, 34, 67, 0.08);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.work-modal__nav--prev {
  left: -10px;
}

.work-modal__nav--next {
  right: -10px;
}

.work-modal__nav:hover:not(:disabled),
.work-modal__nav:focus-visible:not(:disabled) {
  background: var(--red);
  outline: none;
}

.work-modal__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.work-modal__counter {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: rgba(230, 34, 67, 0.08);
  color: var(--white);
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .hero,
  .identity,
  .contact {
    grid-template-columns: 1fr;
  }

  .gallery-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .artist-card {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .wallpaper-modal__dialog--viewer {
    max-width: min(94vw, 780px);
  }

  .work-modal__nav--prev {
    left: 0;
  }

  .work-modal__nav--next {
    right: 0;
  }

  .gallery-artist-name,
  .artist-card__name {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 18px;
  }

  .hero::after {
    width: 100%;
    height: 72px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 2.7rem);
    text-shadow: 4px 4px 0 var(--red-dark);
    white-space: normal;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-photo {
    width: min(74vw, 300px);
    justify-self: center;
    transform: none;
  }

  .signal-strip,
  .work-grid,
  .style-grid,
  .wallpaper-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .gallery-pager {
    width: 100%;
    justify-content: space-between;
  }

  .wallpaper-modal {
    padding: 12px;
  }

  .wallpaper-modal__dialog {
    width: min(100%, 760px);
    height: calc(100dvh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 16px;
  }

  .wallpaper-modal__dialog--image-only {
    height: fit-content;
    width: fit-content;
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    padding: 14px;
  }

  .wallpaper-modal__image {
    max-width: calc(100vw - 52px);
    max-height: calc(100dvh - 72px);
  }

  .wallpaper-modal__dialog--image-only .wallpaper-modal__image {
    max-width: calc(100vw - 52px);
    max-height: calc(100dvh - 72px);
  }

  .wallpaper-modal__dialog--viewer {
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    padding: 14px;
  }

  .wallpaper-modal__dialog--viewer .wallpaper-modal__image {
    max-width: calc(100vw - 52px);
    max-height: calc(100dvh - 72px);
  }

  .gallery-credit {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-credit--sticky {
    top: 62px;
  }

  .credit-notes {
    justify-content: flex-start;
  }

  .artist-card {
    padding: 18px;
  }

  .artist-card__preview {
    grid-template-columns: 1fr;
  }

  .artist-card__name,
  .gallery-artist-name {
    gap: 10px;
  }

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-link strong {
    text-align: left;
  }

  .signal-strip div {
    min-height: 108px;
    border-right: 0;
    border-bottom: 2px solid var(--red);
  }

  .identity-board {
    min-height: 360px;
  }

  .identity-board img {
    min-height: 360px;
  }

  .button {
    width: 100%;
  }
}
