/* ============================================================
   CULT OF SAMMA — style.css
   Stack: vanilla CSS, no dependencies
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Figtree:wght@300;400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0d0b09;
  --bg-input:  #131110;
  --text:      #f4f1ec;
  --accent:    #c9a96e;
  --muted:     #6b6560;
  --border:    rgba(201, 169, 110, 0.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Figtree', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --nav-height: 60px;
}

html {
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  background: var(--bg);
  overflow-x: hidden;
}

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

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

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.nav--scrolled {
  background: rgba(13, 11, 9, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__wordmark {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  z-index: 102;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a.nav--active {
  color: var(--text);
}

.nav__links a.nav--active::after {
  transform: scaleX(1);
}

/* Apply link — gold, no underline indicator */
.nav__links a.nav--apply {
  color: var(--accent);
}

.nav__links a.nav--apply:hover {
  color: var(--text);
}

.nav__links a.nav--apply::after {
  display: none;
}

/* ── Mobile hamburger ─────────────────────────────────────── */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
  position: relative;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Mobile overlay ───────────────────────────────────────── */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav__overlay.is-open {
  display: flex;
}

.nav__overlay a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav__overlay a:hover,
.nav__overlay a.nav--active {
  color: var(--text);
}

.nav__overlay a.nav--apply {
  color: var(--accent);
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* ── Hero — full-viewport image ───────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  opacity: 0;
  animation: hero-fade 1.2s ease forwards;
  animation-delay: 0.1s;
}

@keyframes hero-fade {
  to { opacity: 1; }
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,9,0.15) 0%,
    rgba(13,11,9,0.08) 60%,
    rgba(13,11,9,0.55) 100%
  );
}

.hero__wordmark {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  z-index: 2;
}

/* ── Home statement ───────────────────────────────────────── */
.home-statement {
  padding: 80px 0 80px 8vw;
  border-bottom: 1px solid var(--border);
}

.home-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  max-width: 600px;
}

/* ── Horizontal scroll gallery ────────────────────────────── */
.gallery {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.gallery__track {
  display: flex;
  align-items: flex-start;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__track.is-dragging {
  cursor: grabbing;
}

.gallery__item {
  flex: 0 0 28vw;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  pointer-events: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── Artist panels — Berluti model ───────────────────────── */
.artist-panels {
  border-bottom: 1px solid var(--border);
  padding-top: 80px;
}

.artist-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  border-bottom: 1px solid var(--border);
}

.artist-panel:last-child {
  border-bottom: none;
}

.artist-panel__image {
  overflow: hidden;
  position: relative;
  background: #0f0d0b;
}

.artist-panel__image img,
.artist-panel__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Shunt placeholder — dark ground until portrait is added */
.artist-panel__image--placeholder {
  background: #0f0d0b;
}

/* Alternating panel — video/image on the right, text on the left */
.artist-panel--flipped {
  direction: rtl;
}
.artist-panel--flipped > * {
  direction: ltr;
}

.artist-panel__content {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 64px;
}

.artist-panel__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 14px;
}

.artist-panel__role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.artist-panel__desc {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  max-width: 360px;
}

.artist-panel__link {
  margin-top: 20px;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.artist-panel__link:hover {
  color: var(--text);
  border-color: rgba(241, 241, 236, 0.4);
}

/* ── Studio split ─────────────────────────────────────────── */
.studio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 70vh;
  min-height: 400px;
  border-bottom: 1px solid var(--border);
}

.studio-split__panel {
  overflow: hidden;
}

.studio-split__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Home CTA ─────────────────────────────────────────────── */
.home-cta {
  padding: 15vh 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.home-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.home-cta__link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.home-cta__link:hover {
  color: var(--accent);
  border-bottom-color: rgba(201, 169, 110, 0.4);
}

/* ============================================================
   WORK PAGE (masonry grid)
   ============================================================ */

.work-page {
  padding-top: var(--nav-height);
}

.masonry {
  columns: 4;
  column-gap: 3px;
  padding: 3px;
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.masonry__item img {
  width: 100%;
  display: block;
}

.masonry__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 9, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry__item:hover .masonry__overlay,
.masonry__item.is-active .masonry__overlay {
  opacity: 1;
}

.masonry__artist-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.06em;
}

.work-footer {
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.work-footer p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
}

.work-footer__link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.work-footer__link:hover {
  color: var(--accent);
  border-bottom-color: rgba(201, 169, 110, 0.4);
}

/* ============================================================
   LOCATION PAGES (oxford / boston)
   ============================================================ */

/* THIS PAGE REQUIRES A HIGH-QUALITY STUDIO PHOTOGRAPH TO FUNCTION */
.location-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}

.location-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,9,0.1) 0%,
    rgba(13,11,9,0.55) 100%
  );
}

.location-hero__wordmark {
  position: absolute;
  bottom: 32px;
  left: 40px;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  z-index: 2;
}

.location-body {
  padding: 80px 8vw 100px;
  max-width: 1200px;
}

.location-body__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}

.location-body__sub {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 48px;
}

.location-body__text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 64px;
}

.location-body__artists-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.location-body__artists {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}

.location-body__artists li {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.location-body__artists li:first-child {
  border-top: 1px solid var(--border);
}

/* ── Location artist accordion ────────────────────────────── */
.location-artist__trigger {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 14px 0;
  transition: color 0.2s;
}

.location-artist__trigger:hover,
.location-artist__trigger[aria-expanded="true"] {
  color: var(--accent);
}

.location-artist__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.location-artist__panel.is-open {
  max-height: 320px;
  opacity: 1;
}

.location-artist__inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 16px 0 24px;
}

.location-artist__thumb {
  flex: 0 0 72px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.location-artist__thumb img,
.location-artist__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-artist__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-artist__role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.location-artist__desc {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 16px;
}

.location-artist__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 2px;
  margin-bottom: 20px;
  transition: color 0.2s, border-color 0.2s;
}

.location-artist__link:hover {
  color: var(--text);
  border-color: rgba(241, 241, 236, 0.4);
}

/* Location CTA */
.location-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.location-cta:hover {
  color: var(--accent);
  border-bottom-color: rgba(201, 169, 110, 0.4);
}

/* ============================================================
   ARTISTS PAGE
   ============================================================ */

.artists-page {
  padding-top: var(--nav-height);
}

.artists-page__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 48px 8vw 0;
}

.artist-entry {
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

.artist-entry__portrait {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  background: #0f0d0b;
}

.artist-entry__portrait img,
.artist-entry__portrait video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Shunt placeholder — dark ground until portrait is added */
.artist-entry__portrait--placeholder {
  background: #0f0d0b;
}

.artist-entry__content {
  padding: 48px 8vw 80px;
  max-width: 1200px;
}

.artist-entry__name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 14px;
}

.artist-entry__meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.artist-entry__bio {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 20px;
}

.artist-entry__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 8px;
}

.artist-entry__link:hover {
  color: var(--text);
  border-bottom-color: rgba(241, 241, 236, 0.4);
}

/* ============================================================
   APPLY PAGE
   ============================================================ */

.apply-page {
  padding: calc(var(--nav-height) + 80px) 8vw 120px;
  max-width: 760px;
}

.apply-page__statement {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 72px;
}

/* ── Form ─────────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form__label--required::after {
  content: ' *';
  color: var(--accent);
}

.form__input,
.form__select,
.form__textarea {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--accent);
}

.form__textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b6560'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.2s;
}

.form__radio-label:hover {
  color: var(--text);
}

.form__radio {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
  cursor: pointer;
}

.form__radio:checked {
  border-color: var(--accent);
}

.form__radio:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--accent);
  border-radius: 50%;
}

.form__artist-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form__artist-note.is-visible {
  opacity: 1;
}

.form__submit {
  margin-top: 8px;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0 0 2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.form__submit:hover {
  color: var(--accent);
  border-bottom-color: rgba(201, 169, 110, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 56px 40px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__name {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer__emails {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__email {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__email:hover {
  color: var(--text);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  text-align: right;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .artist-panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  .artist-panel__image {
    height: 60vw;
    min-height: 300px;
  }

  .artist-panel__content {
    padding: 40px 32px 48px;
  }

  .studio-split {
    grid-template-columns: 1fr;
    height: auto;
  }

  .studio-split__panel {
    height: 60vw;
    min-height: 280px;
  }

  .masonry {
    columns: 3;
  }

  .gallery__item {
    flex: 0 0 48vw;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-height: 52px;
  }

  .nav {
    padding: 0 24px;
  }

  .hero__wordmark {
    bottom: 28px;
    left: 24px;
  }

  .home-statement {
    padding: 56px 24px;
  }

  .gallery__item {
    flex: 0 0 72vw;
  }

  .masonry {
    columns: 3;
  }

  .location-body {
    padding: 56px 24px 80px;
  }

  .location-hero__wordmark {
    left: 24px;
    bottom: 24px;
  }

  .apply-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer {
    padding: 48px 24px;
  }

  .footer__links {
    text-align: left;
  }

  .footer__inner {
    flex-direction: column;
    gap: 28px;
  }

  .artist-entry__content {
    padding: 36px 24px 64px;
  }

  .artists-page__eyebrow {
    padding: 36px 24px 0;
  }
}

/* ── Utility ──────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
