/* =========================================================================
   Quinn Dowd — site stylesheet
   ------------------------------------------------------------------------
   Sections:
     1. Tokens & reset
     2. Left rail (sidebar nav)
     3. Main content area
     4. Shared components
        4a. Back link
        4b. Page header
        4c. Asymmetric works grid
        4d. Fade-in entrance animation
     5. Page-specific
        5a. Studio — collapsible series
        5b. Exhibitions — cv-style list
        5c. Blog — opening + entries
        5d. Painting detail (fluid01)
        5e. Homepage (quinn-dowd splash)
     6. Responsive
   ========================================================================= */


/* =========================================================================
   1. Tokens & reset
   ========================================================================= */
:root {
  --bg: #fafaf7;
  --ink: #1a1612;
  --ink-soft: #5a5650;
  --ink-mute: #9a958c;
  --rule: #e8e5dc;
  --display: 'Syne', sans-serif;
  --mono: 'Tenor Sans', serif;
  --rail-width: 245px;
  --rail-padding: 1.75rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}


/* =========================================================================
   2. Left rail
   ========================================================================= */
aside.rail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--rail-width);
  padding: 2.5rem var(--rail-padding);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 50;
  background: var(--bg);
  border-right: 1px solid var(--rule);
}

.wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}
.wordmark .subtle {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  margin-top: 0.6rem;
  font-weight: 400;
}

nav.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
nav.rail-nav > * {
  /* every direct child (links + nav-groups) gets the same gap — no extras */
  margin: 0;
}
nav.rail-nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 0;
}
nav.rail-nav a:hover { color: var(--ink); }
nav.rail-nav a.active { color: var(--ink); }
nav.rail-nav a.active::before { display: none; }

/* nav group with collapsible sub-menu */
.nav-group { display: flex; flex-direction: column; }
.nav-group summary { list-style: none; cursor: pointer; }
.nav-group summary::-webkit-details-marker { display: none; }

.nav-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-right: 0.25rem;
}
.nav-summary a { flex: 1; }

.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 0.35s ease, border-color 0.25s ease;
  margin-bottom: 3px;
  flex-shrink: 0;
}
.nav-summary:hover .nav-chevron { border-color: var(--ink); }
.nav-group[open] .nav-chevron {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  padding-left: 0.85rem;
  border-left: 1px solid var(--rule);
  overflow: hidden;
}
.sub-nav a {
  font-family: var(--mono);
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.sub-nav a:hover { color: var(--ink-soft); }
.sub-nav a.current {
  color: var(--ink);
  font-weight: 500;
}

.rail-foot {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  line-height: 2;
}
.rail-foot a {
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.3s ease;
}
.rail-foot a:hover { color: var(--ink); }

.social-icons {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--ink-soft);
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social-icon:hover {
  color: var(--ink);
  transform: translateY(-1px);
}


/* =========================================================================
   3. Main content area
   ========================================================================= */
main {
  margin-left: var(--rail-width);
  padding: 3rem 4rem 5rem;
  max-width: 1400px;
}

/* studio uses a slightly tighter top padding */
body.studio main { padding-top: 2.5rem; }

/* blog uses a roomier top padding */
body.blog main { padding-top: 5rem; }

/* painting detail uses a tighter top padding */
body.detail main { padding-top: 2.5rem; }


/* =========================================================================
   4. Shared components
   ========================================================================= */

/* ---- 4a. Back link ---- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-decoration: none;
  margin-bottom: 4rem;
  transition: color 0.3s ease, gap 0.3s ease;
}
.back-link:hover { color: var(--ink); gap: 0.85rem; }

body.detail .back-link { margin-bottom: 3rem; }

.back-arrow {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.back-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2.5px;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ---- 4b. Page header (series/exhibitions/works-on-paper) ---- */
.page-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  padding-bottom: 2.5rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--rule);
}

.page-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.page-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink-mute);
}

.page-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.page-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  text-align: right;
  line-height: 2;
}

/* ---- 4c. Asymmetric works grid ---- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3.5rem 2.5rem;
}

.work {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.work-image {
  width: 100%;
  aspect-ratio: auto;
  background: transparent;
  margin-bottom: 0.85rem;
  position: relative;
  overflow: visible;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work:hover .work-image { transform: translateY(-4px); }
.work:hover .work-image img { transform: none; }

.work.lg { grid-column: span 7; }
.work.lg .work-image { aspect-ratio: auto; }

.work.md { grid-column: span 5; }
.work.md .work-image { aspect-ratio: auto; }

.work.sm { grid-column: span 4; }
.work.sm .work-image { aspect-ratio: auto; }

.work.wide { grid-column: span 8; }
.work.wide .work-image { aspect-ratio: auto; }

.work.tall { grid-column: span 4; }
.work.tall .work-image { aspect-ratio: auto; }

.work.offset {
  grid-column: span 5;
  margin-top: 5rem;
}
.work.offset .work-image { aspect-ratio: auto; }

.sketchbook-work .work-image {
  aspect-ratio: auto !important;
  background: transparent;
  overflow: visible;
}
.sketchbook-work .work-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Preview cards should hug the actual image height instead of reserving
   extra space from inline aspect-ratio placeholders. */
.works-grid .work-image[style*="aspect-ratio"] {
  aspect-ratio: auto !important;
}

.work-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
}

.work-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.work-info {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-align: right;
  white-space: nowrap;
  line-height: 1.7;
}
.work-info span { display: block; }

/* ---- 4d. Fade-in entrance animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeIn 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.25s; }
.fade-in.d3 { animation-delay: 0.4s; }
.fade-in.d4 { animation-delay: 0.55s; }
.fade-in.d5 { animation-delay: 0.7s; }

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

body.exhibitions .fade-in {
  opacity: 1;
  transform: none;
  animation: none;
}


/* =========================================================================
   5. Page-specific styles
   ========================================================================= */

/* ---- 5a. Studio — collapsible series ---- */
.series {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.series:first-of-type { border-top: 1px solid var(--rule); }
.series[open] { margin-bottom: 4rem; }

.series summary { list-style: none; }
.series summary::-webkit-details-marker { display: none; }

.series-header {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: baseline;
  gap: 2rem;
  padding: 2rem 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  user-select: none;
}
.series-header:hover { opacity: 0.6; }
.series-header:hover .series-see-all { opacity: 1; }
.series-header:hover .series-toggle { background: var(--ink); }
.series-header:hover .series-toggle::before,
.series-header:hover .series-toggle::after { background: var(--bg); }

.series-number {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
}

.series-name {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.series-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
}

.series-see-all {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  align-self: center;
}
.series-see-all:hover {
  color: var(--bg);
  background: var(--ink);
  border-color: var(--ink);
}

.see-all-arrow {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}
.see-all-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2.5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.series-see-all:hover .see-all-arrow { width: 20px; }

.series-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.4s ease;
}
.series-toggle::before,
.series-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transition: background 0.3s ease, transform 0.4s ease;
}
.series-toggle::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.series-toggle::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.series[open] .series-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.series[open] .works-grid {
  padding-bottom: 2.5rem;
  padding-top: 1.5rem;
}


/* ---- 5d. Painting detail (fluid01) ---- */
.painting-hero {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
.painting-frame {
  width: 100%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.painting-frame img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.painting-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
}

.painting-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.painting-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink-mute);
}

.painting-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.painting-year {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.painting-specs {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  line-height: 2.4;
}
.painting-specs strong {
  color: var(--ink);
  font-weight: 400;
  display: block;
  margin-top: 0.1rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
}
.painting-specs .spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
}
.painting-specs .spec-row:first-child { padding-top: 0; }
.painting-specs .spec-row:last-child { border-bottom: none; }

/* secondary image block — shown on detail pages that have an alternate view */
.painting-secondary {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--rule);
}
.painting-secondary-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.painting-secondary-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink-mute);
}
.painting-secondary-frame {
  width: 100%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.painting-secondary-frame img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Sold indicator ── */
.sold-badge {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--rule);
  padding: 0.3rem 0.7rem;
}

.sold-tag {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--rule);
  padding: 0.15rem 0.45rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.work-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  margin-top: 5rem;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.work-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.3s ease, gap 0.3s ease;
}
.work-nav a:hover { color: var(--ink); gap: 1rem; }
.work-nav .disabled {
  color: var(--ink-mute);
  opacity: 0.4;
  pointer-events: none;
}
.work-nav a:nth-child(2) {
  text-align: center;
}


/* ---- 5b. Exhibitions — cv-style list ---- */
.cv-section { margin-bottom: 6rem; }

.cv-section-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.cv-section-number {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
}

.cv-section-name {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.cv-section-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
}

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

.cv-entry {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 2.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.cv-entry:last-child { border-bottom: none; }
.cv-entry:hover { padding-left: 0.5rem; }

/* keep year and detail top-aligned with a small nudge to match old baseline feel */
.cv-year { padding-top: 0.35rem; }
.cv-detail { padding-top: 0.2rem; }

.cv-year {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  padding-top: 0.35rem;
}

.cv-detail {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.2rem;
}

.cv-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.cv-title em {
  font-style: italic;
  font-weight: 400;
}

.cv-venue {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cv-venue .sep {
  margin: 0 0.6rem;
  color: var(--ink-mute);
}

.cv-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
  white-space: nowrap;
  padding-top: 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  text-decoration: none;
}

.cv-see-more {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--rule);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
a.cv-entry:hover .cv-see-more {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.cv-entry.press { grid-template-columns: 100px 1fr auto; }
.cv-entry.press .cv-detail { gap: 0.35rem; }
.cv-entry.press .cv-title { font-size: 1rem; font-weight: 500; }
.cv-entry.press .cv-venue em { font-style: italic; }

.cv-entry.award { grid-template-columns: 100px 1fr; }


/* ---- commissions page extras ---- */
.commissions-intro {
  font-family: var(--mono);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 4rem;
  margin-top: -2rem; /* pull up closer to header */
}
.commissions-intro a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--rule);
  transition: text-decoration-color 0.3s ease;
}
.commissions-intro a:hover {
  text-decoration-color: var(--ink);
}

.commissions-cta {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
}
.commissions-cta-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.commissions-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease, gap 0.3s ease;
}
.commissions-cta-link:hover {
  color: var(--ink);
  gap: 0.9rem;
}



.opening {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
  align-items: start;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--rule);
}
.opening-text { padding-bottom: 0.5rem; }

.kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink-mute);
}

h1.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.opening-meta { padding-top: 8rem; }
.opening-meta p {
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.index-stats {
  display: flex;
  gap: 3rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
}
.index-stats div span {
  display: block;
  color: var(--ink);
  font-size: 1.5rem;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 0.5rem;
}

/* exhibitions has a hero-image variant of .opening */
body.exhibitions main { padding-top: 2.5rem; }

body.exhibitions .opening {
  padding: 5rem 4rem 4rem;
  margin-left: -4rem;
  margin-right: -4rem;
  margin-top: -2.5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
body.exhibitions .opening::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('homepagephoto.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: -2;
}
body.exhibitions .opening::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250,250,247,0.55) 0%,
    rgba(250,250,247,0.7) 50%,
    rgba(250,250,247,0.92) 100%
  );
  z-index: -1;
}

.entries { display: flex; flex-direction: column; }

.entry {
  display: grid;
  grid-template-columns: 140px 1fr 180px;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.entry:hover { padding-left: 0.75rem; }
.entry:last-child { border-bottom: none; }

.entry-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.4rem;
}

.entry-date {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.entry-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
}

.entry-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entry-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.65rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.entry-excerpt {
  font-family: var(--mono);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
}

.entry-read {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
  text-align: right;
  padding-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  transition: color 0.3s ease, gap 0.3s ease;
}
.entry:hover .entry-read { color: var(--ink); gap: 0.85rem; }

.entry-arrow {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.entry-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2.5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}


/* =========================================================================
   Bird's Eye View slideshow
   ========================================================================= */
.bev-slideshow {
  margin-bottom: 4rem;
}

.bev-main {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
}

.bev-active-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.bev-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bev-placeholder span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* arrows */
.bev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--rule);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  z-index: 2;
}
.bev-arrow svg {
  width: 22px;
  height: 22px;
}
.bev-arrow:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--bg);
}
.bev-prev { left: 1.5rem; }
.bev-next { right: 1.5rem; }

/* counter */
.bev-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--bg);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--rule);
}

/* thumbnail strip */
.bev-thumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bev-caption {
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.bev-thumb {
  width: 72px;
  height: 54px;
  border: 1px solid var(--rule);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.55;
  flex-shrink: 0;
}
.bev-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bev-thumb.active,
.bev-thumb:hover {
  border-color: var(--ink);
  opacity: 1;
}

@media (max-width: 900px) {
  .bev-arrow { width: 36px; height: 36px; }
  .bev-arrow svg { width: 18px; height: 18px; }
  .bev-prev { left: 0.75rem; }
  .bev-next { right: 0.75rem; }
  .bev-thumb { width: 56px; height: 42px; }
}



body.about main { padding-top: 5rem; }

/* statement opening — photo left, text right */
.statement-opening {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 7rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.statement-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.statement-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.statement-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.statement-body p {
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* journey timeline */
.journey-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 4rem;
}
.journey-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.timeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 7rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--rule);
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 28px 1fr;
  gap: 0 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
  position: relative;
}

/* vertical spine */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 128px; /* 100px col + gap */
  top: 6px;
  bottom: -3rem;
  width: 1px;
  background: var(--rule);
}
.timeline-item:last-child::before { display: none; }

.timeline-year {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  padding-top: 0.15rem;
  text-align: right;
}

/* dot on the spine */
.timeline-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--bg);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  justify-self: center;
}
.timeline-item.milestone .timeline-dot {
  background: var(--ink);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.timeline-event {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.timeline-detail {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.timeline-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-top: 0.25rem;
}

/* work in the world */
.world-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 4rem;
}
.world-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  margin-bottom: 2rem;
}

.world-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.world-item-link {
  text-decoration: none;
  color: inherit;
}
.world-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f0ede4;
  overflow: hidden;
}
.world-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.world-item:hover .world-image img { transform: scale(1.04); }

.world-caption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.world-place {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.world-location {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}


/* =========================================================================
   5f. Contact page
   ========================================================================= */
body.contact main { padding-top: 5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-lead {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-intro {
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 42ch;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-method {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s ease;
}
.contact-method:first-child { border-top: 1px solid var(--rule); }
.contact-method:hover { padding-left: 0.5rem; }

.contact-method-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
}
.contact-method-value {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
}

.form-input,
.form-textarea {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.65rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--ink);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-mute);
}
.form-textarea {
  resize: none;
  height: 120px;
  line-height: 1.7;
}

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}
.form-submit:hover {
  background: transparent;
  color: var(--ink);
  gap: 1.2rem;
}
.form-submit-arrow {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}
.form-submit-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2.5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.form-status {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  min-height: 1.4em;
}
.form-status.success { color: var(--ink-soft); }
.form-status.error   { color: #a04040; }


/* =========================================================================
   5g. Homepage splash (quinn-dowd.html)
   ========================================================================= */
body.home {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.stage {
  position: relative;
  width: 100%;
  min-height: 112vh;
  overflow: hidden;
}

.frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: slowZoom 30s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0) 55%,
    rgba(20, 14, 8, 0.55) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.overlay {
  position: fixed;
  left: 2.5rem;
  bottom: 2.25rem;
  z-index: 3;
  max-width: 70%;
}

.overlay-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.92);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 1px 5px rgba(0,0,0,0.6);
}
.overlay-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(255, 248, 235, 0.8);
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.overlay-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3.3rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff8eb;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.85),
    0 1px 8px rgba(0, 0, 0, 0.65),
    0 0 1px rgba(0, 0, 0, 0.5);
}

.corner-meta {
  position: fixed;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.85);
  text-shadow: 0 2px 22px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.5);
}

.enter {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1.6rem 0.95rem 1.8rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff8eb;
  background: rgba(26, 22, 18, 0.4);
  border: 1px solid rgba(255, 248, 235, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.enter:hover {
  background: rgba(255, 248, 235, 0.95);
  color: #1a1612;
  border-color: #fff8eb;
  letter-spacing: 0.32em;
  text-shadow: none;
}

.enter-arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.4s ease;
}
.enter-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.enter:hover .enter-arrow { width: 34px; }


/* =========================================================================
   6. Responsive
   ========================================================================= */

/* --- Hamburger button (hidden on desktop) --- */
.hamburger-btn {
  display: none;
  position: relative;
  z-index: 250;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Mobile full-screen menu overlay --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 200;
  padding: 5rem 2.5rem 3rem;
  overflow-y: auto;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-mute);
  padding: 0.5rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}
.mobile-nav > a,
.mobile-nav > details > summary > a {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s ease;
}
.mobile-nav > details { border-bottom: 1px solid var(--rule); }
.mobile-nav > details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.mobile-nav > details > summary::-webkit-details-marker { display: none; }
.mobile-nav > details > summary > a { border-bottom: none; flex: 1; }

.mobile-nav-chevron {
  width: 8px; height: 8px;
  border-right: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-bottom: 3px;
  margin-left: 1rem;
}
.mobile-nav details[open] .mobile-nav-chevron {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}

.mobile-sub-nav {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0 1rem 1.25rem;
  border-left: 1px solid var(--rule);
  margin-bottom: 0.25rem;
  gap: 0;
}
.mobile-sub-nav a {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.45rem 0;
  border: none;
}
.mobile-sub-nav a.current { color: var(--ink); }

.mobile-menu-foot {
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.mobile-page-footer {
  display: none;
  margin-left: var(--rail-width);
  padding: 0 4rem 4rem;
  border-top: 1px solid var(--rule);
}
.mobile-page-footer p,
.mobile-menu-foot p {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  line-height: 2.2;
}
.mobile-page-footer p {
  padding-top: 1.5rem;
}
.mobile-menu-foot a {
  color: var(--ink-soft);
  text-decoration: none;
}
.mobile-page-footer a {
  color: var(--ink-soft);
  text-decoration: none;
}
.mobile-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}
.mobile-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-soft);
}
.mobile-social-icon svg { width: 20px; height: 20px; display: block; }

@media (max-width: 900px) {
  aside.rail {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    z-index: 100;
  }
  .wordmark {
    font-size: 1rem;
    flex: 1 1 auto;
    min-width: 0;
  }
  .wordmark .subtle { display: none; }
  nav.rail-nav { display: none; }
  .rail-foot { display: none; }
  .hamburger-btn { display: flex; }
  .mobile-page-footer {
    display: block;
    margin-left: 0;
    padding: 0 1.5rem 4rem;
  }

  main { margin-left: 0; padding: 5rem 1.5rem 4rem; }
  body.studio main { padding-top: 4.5rem; }
  body.blog main { padding-top: 5rem; }

  .back-link { margin-bottom: 2.5rem; }
  body.detail .back-link { margin-bottom: 2rem; }

  /* page header */
  .page-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 3rem;
  }
  .page-meta { text-align: left; }

  /* works grid */
  .works-grid { grid-template-columns: repeat(6, 1fr); gap: 2.5rem 1.25rem; }
  .work.lg, .work.md, .work.sm, .work.wide, .work.tall, .work.offset {
    grid-column: span 6;
    margin-top: 0;
  }

  /* studio series header reflow */
  .series-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "num toggle"
      "name toggle"
      "meta toggle"
      "see-all toggle";
    gap: 0.4rem 1rem;
    padding: 1.5rem 0;
  }
  .series-number { grid-area: num; }
  .series-name { grid-area: name; font-size: 1.5rem; }
  .series-meta { grid-area: meta; }
  .series-see-all { grid-area: see-all; justify-self: start; margin-top: 0.6rem; }
  .series-toggle { grid-area: toggle; align-self: center; }

  /* painting detail */
  .painting-info { grid-template-columns: 1fr; gap: 2rem; }
  .work-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "all all"
      "prev next";
    gap: 1rem 1.25rem;
    align-items: center;
  }
  .work-nav a:nth-child(1) { grid-area: prev; justify-self: start; }
  .work-nav a:nth-child(2) {
    grid-area: all;
    justify-self: center;
    text-align: center;
  }
  .work-nav a:nth-child(3) {
    grid-area: next;
    justify-self: end;
    text-align: right;
  }

  /* blog */
  .opening {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding-bottom: 2.5rem;
  }
  .opening-meta { padding-top: 0; }

  /* exhibitions opening overrides */
  body.exhibitions main { padding-top: 4.5rem; }
  body.exhibitions .opening {
    padding: 3rem 1.5rem 2.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-top: -2rem;
    padding-bottom: 2.5rem;
  }

  /* cv list */
  .cv-section-header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  body.exhibitions .cv-section:first-of-type .cv-section-header {
    padding-top: 1rem;
  }
  .cv-entry {
    grid-template-columns: 70px 1fr;
    gap: 1.25rem;
    padding: 1.25rem 0;
  }
  .cv-tag { grid-column: 2; padding-top: 0; }
  .cv-year { font-size: 0.75rem; }
  .cv-title { font-size: 1rem; }

  .entry {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .entry:hover { padding-left: 0; }
  .entry-meta { flex-direction: row; gap: 1rem; padding-top: 0; }
  .entry-title { font-size: 1.35rem; }
  .entry-read { text-align: left; justify-content: flex-start; padding-top: 0.5rem; }

  /* homepage */
  .overlay { left: 1.4rem; bottom: 5.5rem; max-width: 90%; }
  .overlay-eyebrow { font-size: 0.62rem; letter-spacing: 0.24em; }
  .enter {
    right: 1.4rem;
    bottom: 1.4rem;
    padding: 0.75rem 1.2rem;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }
  .corner-meta { display: none; }

  /* about */
  body.about main { padding-top: 3rem; }
  .statement-opening {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
  }
  .statement-photo {
    aspect-ratio: auto;
  }
  .statement-photo img {
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }
  .timeline-item {
    grid-template-columns: 70px 20px 1fr;
    gap: 0 1.5rem;
  }
  .timeline-item::before { left: 84px; }
  .world-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* contact */
  body.contact main { padding-top: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
