@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;1,300&family=Fraunces:ital,opsz,wght@0,9..144,300;1,9..144,300;1,9..144,400&family=Roboto+Condensed:wght@300;400&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --ink:    #0A0A0A;
  --paper:  #F7F5F0;
  --white:  #FFFFFF;
  --mid:    #9A9590;
  --rule:   #E2DED8;
  --gold:   #C8A96E;
  --deep:   #1A1814;

  --f-display: 'Fraunces', Georgia, serif;
  --f-body:    'Archivo', sans-serif;
  --f-ui:      'Roboto Condensed', sans-serif;

  --max: 1440px;
  --gap: clamp(1.5rem, 5vw, 5rem);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--f-body); background: var(--paper); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ── LAYOUT ─────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gap); }
.section { padding-block: clamp(4rem, 8vw, 8rem); }

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  padding-block: 1.25rem;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(12px);
  border-color: var(--rule);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--f-ui); font-size: 1.05rem; letter-spacing: 0.12em; }
.nav__logo em { color: var(--gold); font-style: normal; }
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__link { font-family: var(--f-ui); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__cta { font-family: var(--f-ui); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.5rem 1.25rem; border: 1px solid var(--ink); transition: background 0.2s, color 0.2s; }
.nav__cta:hover { background: var(--ink); color: var(--paper); }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 24px; padding: 2px 0; }
.nav__burger span { display: block; height: 1px; background: var(--ink); transition: 0.3s; }

/* ── MOBILE NAV ─────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--paper); flex-direction: column;
  justify-content: center; padding: var(--gap);
}
.mobile-nav.open { display: flex; }
.mobile-nav__close { position: absolute; top: 1.5rem; right: var(--gap); font-size: 1.25rem; color: var(--mid); }
.mobile-nav__links { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav__link { font-family: var(--f-display); font-style: italic; font-size: clamp(2.5rem, 8vw, 4rem); line-height: 1.1; transition: color 0.2s; }
.mobile-nav__link:hover { color: var(--gold); }

/* ── BUTTONS ────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--f-ui); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.85rem 2rem; transition: 0.2s; }
.btn-primary { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.btn-primary:hover { background: var(--deep); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--rule); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--mid); border: none; padding-inline: 0; font-size: 0.68rem; }
.btn-ghost:hover { color: var(--ink); }

/* ── HERO ───────────────────────────────────────────── */
.hero { min-height: 100svh; height: 100svh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero__text { display: flex; flex-direction: column; justify-content: flex-end; padding: 8rem var(--gap) clamp(3rem,6vw,6rem); }
.hero__eyebrow { font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero__headline { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(3rem, 5.5vw, 6.5rem); line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 2rem; }
.hero__sub { font-weight: 300; font-size: clamp(0.9rem, 1.1vw, 1.05rem); color: var(--mid); max-width: 40ch; line-height: 1.7; margin-bottom: 3rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__image { overflow: hidden; background: var(--rule); position: relative; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #e8e4de 0%, #d4cfc8 100%); }
.hero__image-placeholder span { font-family: var(--f-ui); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); }

/* ── BAND ───────────────────────────────────────────── */
.band { background: var(--ink); color: var(--paper); padding-block: clamp(4rem,8vw,8rem); }
.band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.band__headline { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(2rem, 3.5vw, 4rem); line-height: 1.1; }
.band__headline em { color: var(--gold); font-style: normal; }
.band__body { font-weight: 300; font-size: 1rem; line-height: 1.75; color: rgba(247,245,240,0.65); max-width: 52ch; padding-top: 0.5rem; }

/* ── SECTION HEADER ─────────────────────────────────── */
.section-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 2rem; border-bottom: 1px solid var(--rule); margin-bottom: 0; }
.section-head__title { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(1.75rem, 2.5vw, 2.75rem); }

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero { padding-top: clamp(7rem,12vw,10rem); padding-bottom: clamp(2rem,4vw,4rem); border-bottom: 1px solid var(--rule); }
.page-hero__label { font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.page-hero__title { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.05; letter-spacing: -0.02em; max-width: 20ch; margin-bottom: 1.5rem; }
.page-hero__sub { font-weight: 300; font-size: 1rem; color: var(--mid); max-width: 52ch; line-height: 1.7; }

/* ── FILTERS ────────────────────────────────────────── */
.filters { display: flex; gap: 0.5rem; flex-wrap: wrap; padding-block: 1.5rem; border-bottom: 1px solid var(--rule); }
.filter-btn { font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.45rem 1rem; border: 1px solid var(--rule); color: var(--mid); background: transparent; transition: 0.2s; }
.filter-btn:hover { border-color: var(--mid); color: var(--ink); }
.filter-btn.active { border-color: var(--ink); background: var(--ink); color: var(--paper); }

/* ── WORKS GRID ─────────────────────────────────────── */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); }
.work-card { background: var(--paper); cursor: pointer; position: relative; }
.work-card__image { aspect-ratio: 4/5; overflow: hidden; background: var(--rule); position: relative; display: flex; }
.work-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.25,.46,.45,.94); flex-shrink: 0; }
.work-card:hover .work-card__image img { transform: scale(1.04); }
.work-card__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg,#e8e4de,#d4cfc8); width: 100%; height: 100%; }
.work-card__placeholder span { font-family: var(--f-ui); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.work-card__meta { padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid var(--rule); }
.work-card__artist { font-family: var(--f-ui); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.4rem; }
.work-card__title { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: 1.1rem; line-height: 1.25; margin-bottom: 0.5rem; }
.work-card__foot { display: flex; justify-content: space-between; align-items: baseline; }
.work-card__year { font-family: var(--f-ui); font-size: 0.62rem; color: var(--mid); }
.work-card__cat { font-family: var(--f-ui); font-size: 0.62rem; text-transform: uppercase; color: var(--gold); }
.work-card__overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.82); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__overlay span { font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper); }

/* ── ARTISTS GRID ───────────────────────────────────── */
.artists-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); }
.artist-card { background: var(--paper); cursor: pointer; }
.artist-card__image { aspect-ratio: 3/4; overflow: hidden; background: var(--rule); }
.artist-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.25,.46,.45,.94); filter: grayscale(20%); }
.artist-card:hover .artist-card__image img { transform: scale(1.04); filter: grayscale(0%); }
.artist-card__placeholder { width: 100%; height: 100%; background: linear-gradient(160deg,#e8e4de,#d4cfc8); display: flex; align-items: center; justify-content: center; }
.artist-card__placeholder span { font-family: var(--f-ui); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.artist-card__meta { padding: 1rem 1.25rem 1.25rem; border-top: 1px solid var(--rule); }
.artist-card__name { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: 1.05rem; margin-bottom: 0.3rem; }
.artist-card__discipline { font-family: var(--f-ui); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }

/* ── JOURNAL GRID ───────────────────────────────────── */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); }
.journal-card { background: var(--paper); cursor: pointer; display: block; }
.journal-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--rule); }
.journal-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.25,.46,.45,.94); }
.journal-card:hover .journal-card__image img { transform: scale(1.04); }
.journal-card__placeholder { width: 100%; height: 100%; background: linear-gradient(160deg,#e8e4de,#d4cfc8); display: flex; align-items: center; justify-content: center; }
.journal-card__placeholder span { font-family: var(--f-ui); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.journal-card__body { padding: 1.5rem; border-top: 1px solid var(--rule); }
.journal-card__cat { font-family: var(--f-ui); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.journal-card__title { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: 1.25rem; line-height: 1.2; margin-bottom: 0.75rem; }
.journal-card__date { font-family: var(--f-ui); font-size: 0.62rem; color: var(--mid); }

/* ── MODAL ──────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--paper);
  max-width: 960px; width: 100%;
  max-height: 90svh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s;
}
.modal-backdrop.open .modal { transform: none; }
.modal__close {
  position: sticky; top: 0; float: right;
  background: var(--paper);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--mid);
  border-left: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  z-index: 2;
  transition: color 0.2s;
}
.modal__close:hover { color: var(--ink); }

/* Work modal */
.work-modal__inner { display: grid; grid-template-columns: 1fr 1fr; }
.work-modal__image { aspect-ratio: 4/5; overflow: hidden; background: var(--rule); }
.work-modal__image img { width: 100%; height: 100%; object-fit: contain; padding: 2rem; }
.work-modal__image-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg,#e8e4de,#d4cfc8); display: flex; align-items: center; justify-content: center; }
.work-modal__info { padding: 2.5rem 2rem; display: flex; flex-direction: column; }
.work-modal__artist { font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.work-modal__title { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(1.75rem, 2.5vw, 2.75rem); line-height: 1.05; margin-bottom: 2rem; }
.work-modal__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 2rem; padding: 1.5rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 1.75rem; }
.spec__key { font-family: var(--f-ui); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.25rem; }
.spec__val { font-weight: 300; font-size: 0.9rem; }
.work-modal__desc { font-weight: 300; font-size: 0.9rem; line-height: 1.75; color: var(--mid); margin-bottom: 2rem; flex: 1; }

/* Artist modal */
.artist-modal__inner { display: grid; grid-template-columns: 1fr 2fr; }
.artist-modal__image { aspect-ratio: 3/4; overflow: hidden; background: var(--rule); }
.artist-modal__image img { width: 100%; height: 100%; object-fit: cover; }
.artist-modal__image-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg,#e8e4de,#d4cfc8); }
.artist-modal__info { padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: flex-end; }
.artist-modal__discipline { font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.artist-modal__name { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(2.5rem, 4vw, 4.5rem); line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 2rem; }
.artist-modal__bio { font-weight: 300; font-size: 1rem; line-height: 1.75; color: var(--mid); max-width: 52ch; }

/* Journal modal */
.journal-modal__image { aspect-ratio: 16/6; overflow: hidden; background: var(--rule); }
.journal-modal__image img { width: 100%; height: 100%; object-fit: cover; }
.journal-modal__image-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg,#e8e4de,#d4cfc8); }
.journal-modal__body { padding: 2.5rem clamp(1.5rem,4vw,4rem); }
.journal-modal__cat { font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.journal-modal__title { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; max-width: 22ch; }
.journal-modal__meta { display: flex; gap: 2rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--rule); }
.journal-modal__meta span { font-family: var(--f-ui); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--mid); text-transform: uppercase; }
.journal-modal__content { font-weight: 300; font-size: 1.05rem; line-height: 1.8; color: var(--ink); max-width: 65ch; }
.journal-modal__content p { margin-bottom: 1.5rem; }
.journal-modal__content h2 { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; }

/* ── PILLARS ────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--rule); }
.pillar { padding: 3rem 2.5rem 3rem 0; border-right: 1px solid var(--rule); }
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar:not(:first-child) { padding-left: 2.5rem; }
.pillar__num { font-family: var(--f-ui); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 2rem; }
.pillar__head { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: 2rem; line-height: 1.1; margin-bottom: 0.75rem; }
.pillar__tag { font-weight: 500; font-size: 0.85rem; margin-bottom: 0.75rem; }
.pillar__body { font-weight: 300; font-size: 0.9rem; line-height: 1.75; color: var(--mid); }

/* ── CONTACT FORM ───────────────────────────────────── */
.form { display: grid; gap: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-family: var(--f-ui); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.form-input, .form-select, .form-textarea { background: transparent; border: none; border-bottom: 1px solid var(--rule); padding: 0.75rem 0; font-weight: 300; font-size: 1rem; color: var(--ink); outline: none; transition: border-color 0.2s; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--ink); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--deep); color: var(--paper); padding-block: clamp(4rem,8vw,8rem); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(2rem,4vw,4rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer__logo { font-family: var(--f-ui); font-size: 1.1rem; letter-spacing: 0.12em; display: block; margin-bottom: 1rem; }
.footer__logo em { color: var(--gold); font-style: normal; }
.footer__tagline { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: 1rem; color: rgba(247,245,240,0.35); line-height: 1.4; }
.footer__col-head { font-family: var(--f-ui); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,245,240,0.3); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link { font-weight: 300; font-size: 0.875rem; color: rgba(247,245,240,0.55); transition: color 0.2s; }
.footer__link:hover { color: var(--paper); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-family: var(--f-ui); font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(247,245,240,0.25); }
.footer__blvd { font-family: var(--f-ui); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,245,240,0.25); transition: color 0.2s; }
.footer__blvd:hover { color: var(--gold); }

/* ── EMPTY STATE ────────────────────────────────────── */
.empty { padding: 6rem 0; text-align: center; }
.empty__label { font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.75rem; }
.empty__text { font-weight: 300; font-size: 0.9rem; color: var(--mid); }

/* ── 404 ────────────────────────────────────────────── */
.error-page { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-block: 8rem; }
.error-page__code { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(8rem,20vw,18rem); line-height: 0.85; letter-spacing: -0.04em; color: var(--rule); margin-bottom: 2rem; }
.error-page__title { font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: clamp(2rem,4vw,4rem); margin-bottom: 1rem; }
.error-page__body { font-weight: 300; font-size: 1rem; color: var(--mid); max-width: 42ch; line-height: 1.7; margin-bottom: 2.5rem; }

/* ── REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .works-grid { grid-template-columns: repeat(2,1fr); }
  .artists-grid { grid-template-columns: repeat(3,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__text { min-height: 100svh; }
  .hero__image { display: none; }
  .band__inner { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: repeat(2,1fr); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); padding: 2.5rem 0; }
  .pillar:last-child { border-bottom: none; }
  .pillar:not(:first-child) { padding-left: 0; }
  .work-modal__inner { grid-template-columns: 1fr; }
  .work-modal__image { aspect-ratio: 4/3; }
  .artist-modal__inner { grid-template-columns: 1fr; }
  .artist-modal__image { aspect-ratio: 3/2; max-height: 50vw; }
}
@media (max-width: 700px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .works-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: repeat(2,1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .work-modal__specs { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ── ARTIST MODAL WORKS ─────────────────────────────── */
.artist-modal__works {
  border-top: 1px solid var(--rule);
  padding: 2rem;
}
.artist-modal__works-heading {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.artist-modal__works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.artist-modal__work-card {
  background: var(--paper);
  cursor: pointer;
  padding-bottom: 1rem;
}
.artist-modal__work-card:hover .artist-modal__work-image img { transform: scale(1.04); }
.artist-modal__work-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--rule);
}
.artist-modal__work-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.artist-modal__work-card .work-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg,#e8e4de,#d4cfc8);
}
.artist-modal__work-card .work-card__artist { padding-inline: 1rem; }
.artist-modal__work-card .work-card__year { padding-inline: 1rem; font-family: var(--f-ui); font-size: 0.62rem; color: var(--mid); }
@media (max-width: 600px) {
  .artist-modal__works-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── ARTIST PANEL ───────────────────────────────────── */
.artist-panel {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--paper);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.artist-panel.open {
  transform: translateX(0);
}
.artist-panel__close {
  position: fixed;
  top: 1.5rem;
  right: var(--gap);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-ui);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.artist-panel__close:hover { color: var(--ink); }
.artist-panel__hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 70vh;
  border-bottom: 1px solid var(--rule);
}
.artist-panel__image {
  overflow: hidden;
  background: var(--rule);
}
.artist-panel__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.artist-panel__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg,#e8e4de,#d4cfc8);
}
.artist-panel__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem var(--gap) 3rem;
}
.artist-panel__discipline {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.artist-panel__name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.artist-panel__bio {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  max-width: 56ch;
}
.artist-panel__works {
  padding: clamp(3rem, 5vw, 5rem) var(--gap);
}
.artist-panel__works-heading {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}
.artist-panel__works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.artist-panel__empty {
  padding: 3rem 0;
  font-family: var(--f-ui);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}
@media (max-width: 900px) {
  .artist-panel__hero { grid-template-columns: 1fr; min-height: auto; }
  .artist-panel__image { aspect-ratio: 3/2; }
  .artist-panel__info { padding-top: 3rem; }
  .artist-panel__works-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .artist-panel__works-grid { grid-template-columns: 1fr; }
}

/* ── WORK CARDS INSIDE ARTIST PANEL ─────────────────── */
.artist-panel__works-grid .work-card {
  cursor: pointer;
}
.artist-panel__works-grid .work-card__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--rule);
  position: relative;
}
.artist-panel__works-grid .work-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.artist-panel__works-grid .work-card:hover .work-card__image img {
  transform: scale(1.04);
}
.artist-panel__works-grid .work-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg,#e8e4de,#d4cfc8);
}
.artist-panel__works-grid .work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.artist-panel__works-grid .work-card:hover .work-card__overlay {
  opacity: 1;
}

/* ── FIX PLACEHOLDER HEIGHT IN ARTIST PANEL ─────────── */
.artist-panel__works-grid .work-card__image {
  position: relative;
}
.artist-panel__works-grid .work-card__placeholder,
.artist-panel__works-grid .work-card__image > div {
  position: absolute;
  inset: 0;
}

/* ── FORCE IMAGE HEIGHT IN ARTIST PANEL ─────────────── */
.artist-panel__works-grid .work-card__image {
  aspect-ratio: unset;
  padding-bottom: 125%; /* 4:5 ratio */
  height: 0;
  position: relative;
}
.artist-panel__works-grid .work-card__image img,
.artist-panel__works-grid .work-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.artist-panel__works-grid .work-card__image img {
  object-fit: cover;
}

/* ── WORK PRICE ─────────────────────────────────────── */
.work-modal__price {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.work-modal__price--poa {
  font-family: var(--f-ui);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}
