/* ==========================================================================
   Kathryn Sullivan — Portfolio v2
   "Interior Weather" direction: atmospheric, elemental, curatorial.
   Void (dark, cinematic) for arrival moments; Paper (light, editorial)
   for reading and browsing. Every artwork still lands as a wall label —
   now kinetic: labels ink in on scroll, artwork tilts gently on hover.
   ========================================================================== */

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

:root {
  /* -- void: dark, cinematic surfaces (hero, nav overlay) -- */
  --void: #14130F;
  --void-soft: #201F1A;
  --mist: #C7C3B6;
  --mist-dim: #8D8879;

  /* -- paper: light, editorial surfaces (reading, browsing) -- */
  --paper: #EDEAE1;
  --paper-dim: #E2DDD2;
  --paper-deep: #D9D2C4;
  --ink: #1C1B19;
  --ink-soft: #3A3733;
  --stone: #8B8577;

  /* -- accents, pulled from glaze chemistry -- */
  --oxide: #A8503A;       /* ember — primary accent, ceramics oxide glaze */
  --oxide-deep: #7E3A28;
  --verdigris: #4F6357;   /* oxidized copper — links, hover, secondary accent */
  --verdigris-deep: #3A4A40;

  /* -- type -- */
  --display: 'Fraunces', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* -- layout -- */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1440px;
  --rule: 1px solid var(--paper-deep);
  --rule-dark: 1px solid rgba(199, 195, 182, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; height: 100%; }

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--oxide);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.eyebrow--on-dark { color: var(--mist-dim); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}

/* generic scroll-reveal hook — toggled via IntersectionObserver in main.js.
   Works with no JS dependency beyond core browser APIs; GSAP is optional
   enhancement layered on top, never a requirement for content to appear. */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Header / Nav — sits on void or paper depending on page; overlay is void.
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 250; /* must exceed .nav-overlay (200) so the toggle stays clickable while open —
                   z-index on a descendant can't escape this element's own stacking context */
  height: 84px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-solid {
  background: var(--paper);
  border-bottom: var(--rule);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.site-header:not(.is-solid) .brand,
.site-header:not(.is-solid) .brand span { color: var(--paper); }

.brand span {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--stone);
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-toggle {
  position: relative;
  z-index: 210;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.site-header:not(.is-solid) .nav-toggle span { background: var(--paper); }
.nav-open .nav-toggle span { background: var(--paper) !important; }

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

/* Full-screen nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--void);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.nav-open .nav-overlay {
  visibility: visible;
  opacity: 1;
}

.nav-overlay-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { overflow: hidden; }
.nav-links li:nth-child(1) a { transition-delay: 0.05s; }
.nav-links li:nth-child(2) a { transition-delay: 0.1s; }
.nav-links li:nth-child(3) a { transition-delay: 0.15s; }
.nav-links li:nth-child(4) a { transition-delay: 0.2s; }
.nav-links li:nth-child(5) a { transition-delay: 0.25s; }

.nav-links a {
  display: inline-block;
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  color: var(--paper);
  line-height: 1.15;
  transition: color 0.25s ease, transform 0.5s cubic-bezier(.2,.8,.2,1);
  transform: translateY(110%);
}

.nav-open .nav-links a { transform: translateY(0); }

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

.nav-overlay-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
}

.nav-overlay-aside .eyebrow { color: var(--mist-dim); }

.nav-social {
  display: flex;
  gap: 1.25rem;
}

.nav-social a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mist);
  border-bottom: 1px solid rgba(199,195,182,0.35);
  padding-bottom: 2px;
}
.nav-social a:hover { color: var(--oxide); border-color: var(--oxide); }

@media (max-width: 760px) {
  .nav-overlay-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links a { font-size: 2.4rem; }
}

/* ==========================================================================
   Buttons / links
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.85em 1.4em;
  background: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }

.btn--on-dark { border-color: var(--paper); color: var(--paper); }
.btn--on-dark:hover { background: var(--paper); color: var(--ink); }

.btn-oxide { border-color: var(--oxide); color: var(--oxide); }
.btn-oxide:hover { background: var(--oxide); color: var(--paper); }

.text-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--verdigris);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  cursor: pointer;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.text-link:hover { color: var(--oxide); }

/* ==========================================================================
   Hero — full-bleed, cinematic, Ken Burns drift
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--void);
  color: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media .art-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media .art-placeholder { animation: none; }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,19,15,0.55) 0%, rgba(20,19,15,0.15) 32%, rgba(20,19,15,0.35) 68%, rgba(20,19,15,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(84px + 2rem) var(--gutter) 3.5rem;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 300;
  color: var(--paper);
  max-width: 16ch;
}

.hero-title em {
  font-style: italic;
  color: var(--oxide);
}

.hero-foot {
  margin-top: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-foot p {
  max-width: 36ch;
  color: var(--mist);
  font-size: 1rem;
  margin: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, var(--mist));
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: 0; left: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--oxide);
  animation: scrollcue 2.4s ease-in-out infinite;
}

@keyframes scrollcue {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue::after { animation: none; top: 20px; opacity: 0.6; }
}

/* ==========================================================================
   Placeholder artwork
   ========================================================================== */

.art-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: var(--ar, 4/5);
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(28,27,25,0.035) 18px 19px),
    linear-gradient(160deg, var(--c1, #C9C2AE), var(--c2, #8A4A38) 130%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.art-placeholder::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(237,234,228,0.5);
  pointer-events: none;
}

.art-placeholder .ph-tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,234,228,0.85);
  background: rgba(28,27,25,0.28);
  padding: 0.5em 0.8em;
  text-align: center;
}

/* ==========================================================================
   Curatorial statement — short editorial line, generous whitespace
   ========================================================================== */

.statement {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--paper);
}

.statement .wrap { max-width: 900px; }

.statement p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  margin: 0;
}

/* ==========================================================================
   Marquee — auto-scrolling row of series / mediums
   ========================================================================== */

.marquee-section {
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: 1.6rem 0;
  overflow: hidden;
  background: var(--paper-dim);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-section:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 90s; }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
}

.marquee-item::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--oxide);
  display: inline-block;
  margin-left: 2.5rem;
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.section { padding: clamp(3rem, 7vw, 6rem) 0; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  border-bottom: var(--rule);
  padding-bottom: 1.25rem;
}

.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.section--dim { background: var(--paper-dim); }
.section--void { background: var(--void); color: var(--mist); }
.section--void h2 { color: var(--paper); }
.section--void .section-head { border-bottom: var(--rule-dark); }

/* ==========================================================================
   Editorial grid — asymmetric, home page teaser (not a uniform grid)
   ========================================================================== */

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.editorial-grid .work-item:nth-child(1) { grid-column: span 4; }
.editorial-grid .work-item:nth-child(2) { grid-column: span 2; }
.editorial-grid .work-item:nth-child(3) { grid-column: span 2; }
.editorial-grid .work-item:nth-child(4) { grid-column: span 4; }

@media (max-width: 860px) {
  .editorial-grid { grid-template-columns: minmax(0, 1fr); }
  .editorial-grid .work-item { grid-column: span 1 !important; }
}

/* ==========================================================================
   Work grid — All Works / series detail pages
   ========================================================================== */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.work-item { cursor: pointer; perspective: 1200px; }

.work-item .art-placeholder-wrap {
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
}

.work-item:hover .art-placeholder-wrap { transform: scale(1.015); }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: minmax(0, 1fr); }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-bar button {
  background: none; border: none;
  padding: 0.3em 0;
  color: var(--stone);
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.filter-bar button:hover { color: var(--ink); }
.filter-bar button.active { color: var(--oxide); border-bottom-color: var(--oxide); }

/* ==========================================================================
   Wall label — kinetic. Reveals via [data-reveal], inquire link inline.
   ========================================================================== */

.wall-label {
  padding-top: 0.85rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.wall-label .label-text { display: flex; flex-direction: column; gap: 0.2rem; }

.wall-label .label-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}

.wall-label .label-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--stone);
}

.inquire-trigger {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--verdigris);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  white-space: nowrap;
  background: none;
  border-top: none; border-left: none; border-right: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.inquire-trigger:hover { color: var(--oxide); }

/* ==========================================================================
   Series landing cards
   ========================================================================== */

.series-list { display: flex; flex-direction: column; }

.series-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: var(--rule);
  text-decoration: none;
  color: inherit;
}

.series-card:first-child { border-top: var(--rule); }

.series-card-media { overflow: hidden; }

.series-card-media .art-placeholder {
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}

.series-card:hover .art-placeholder { transform: scale(1.04); }

.series-card-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  transition: color 0.25s ease;
}

.series-card:hover .series-card-title { color: var(--oxide); }

.series-card-dek {
  max-width: 48ch;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.series-card-meta {
  margin-top: 1.25rem;
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 760px) {
  .series-card { grid-template-columns: minmax(0, 1fr); }
  .series-card-media { order: -1; }
}

/* ==========================================================================
   Series detail header
   ========================================================================== */

.series-hero {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  padding: calc(84px + 3rem) 0 3rem;
  background: var(--void);
  color: var(--mist);
  display: flex;
  align-items: flex-end;
}

.series-hero-media { position: absolute; inset: 0; }
.series-hero-media .art-placeholder { width: 100%; height: 100%; aspect-ratio: auto; }

.series-hero .wrap { position: relative; z-index: 2; width: 100%; }

.series-hero h1 { color: var(--paper); font-size: clamp(2.4rem, 6vw, 4.2rem); }
.series-hero .series-hero-dek { max-width: 60ch; margin-top: 1.25rem; font-size: 1.05rem; }
.series-hero .series-hero-meta { margin-top: 1.5rem; display: flex; gap: 2rem; }

/* ==========================================================================
   About page
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); }
}

.about-copy p { margin: 0 0 1.1em; max-width: 62ch; }
.about-copy p:last-child { margin-bottom: 0; }

.cv-list { margin-top: 1rem; border-top: var(--rule); }

.cv-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: var(--rule);
  font-size: 0.95rem;
}

.cv-row .cv-year { font-family: var(--mono); font-size: 0.8rem; color: var(--oxide); }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.4rem; }

.field label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

.field input, .field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--paper-deep);
  padding: 0.6em 0.1em;
  resize: vertical;
  width: 100%;
}

.field input:focus, .field textarea:focus { border-bottom-color: var(--oxide); }

.contact-meta { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-meta .item .eyebrow { margin-bottom: 0.35rem; }

.social-row { display: flex; gap: 1.25rem; }

.social-row a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--paper-deep);
  padding-bottom: 2px;
}
.social-row a:hover { border-bottom-color: var(--oxide); color: var(--oxide); }

.form-note { font-family: var(--mono); font-size: 0.7rem; color: var(--stone); margin-top: 0.75rem; }

/* ==========================================================================
   Inquire modal
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 19, 15, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-panel {
  background: var(--paper);
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-panel { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none; border: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
}
.modal-close:hover { color: var(--oxide); }

.modal-artwork-tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verdigris);
  margin-bottom: 0.5rem;
}

.modal-panel h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { border-top: var(--rule); padding: 2.5rem 0; background: var(--paper); }

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer .eyebrow { color: var(--stone); }

/* ==========================================================================
   Cursor dot — desktop-only micro-interaction on artwork hover
   ========================================================================== */

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  z-index: 400;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--oxide);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cursor-dot.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }

@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none; }
}

/* ==========================================================================
   Utility
   ========================================================================== */

.mt-lg { margin-top: clamp(2rem, 5vw, 4rem); }
.center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
