:root {
  --bg: #050505;
  --surface: #111111;
  --surface-strong: #1a1a1a;
  --text: #f4efe8;
  --muted: #b7aea4;
  --line: rgba(244, 239, 232, 0.14);
  --accent: #d7a06d;
  --accent-soft: #8d6747;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --max-width: 1160px;
  --hero-content-max-width: 1280px;
  --serif: "Hiragino Sans", "Yu Gothic", sans-serif;
  --sans: "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 160, 109, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(215, 160, 109, 0.08), transparent 26%),
    linear-gradient(180deg, #090909 0%, var(--bg) 46%, #020202 100%);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.site-nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.home-page {
  position: relative;
}

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

figure {
  margin: 0;
}

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  --header-glass-blur: 18px;
  --header-glass-bg: rgba(5, 5, 5, 0.88);
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(var(--header-glass-blur));
  -webkit-backdrop-filter: blur(var(--header-glass-blur));
  background: var(--header-glass-bg);
}

body.home-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  --header-glass-bg: rgba(5, 5, 5, 0.46);
}

.site-header.has-media-behind {
  --header-glass-bg: rgba(5, 5, 5, 0.38);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.22em;
  line-height: 1.12;
  flex: 0 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.52);
}

.site-brand br {
  display: block;
}

.site-brand span:last-child,
.site-brand .site-brand-sub {
  display: block;
  font-size: 0.68em;
  letter-spacing: 0.28em;
  color: rgba(244, 239, 232, 0.52);
  margin-top: 0.18rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav-group {
  display: flex;
  align-items: center;
}

.site-nav-subnav {
  display: none;
}

.site-nav-close {
  display: none;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  color: var(--muted);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
}

.site-nav-label {
  position: relative;
  display: inline-block;
}

.site-nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover .site-nav-label::after,
.site-nav a.is-active .site-nav-label::after {
  transform: scaleX(1);
}

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

.site-nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: 0.2rem;
  border: 1px solid rgba(247, 242, 234, 0.18);
  border-radius: 999px;
  color: var(--text);
  flex: 0 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav-instagram::after {
  display: none;
}

.site-nav-instagram:hover,
.site-nav-instagram:focus-visible {
  background: rgba(247, 242, 234, 0.08);
  border-color: rgba(247, 242, 234, 0.34);
  color: #f7f2ea;
  transform: translateY(-1px);
}

.site-nav-instagram .instagram-icon {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  flex: 0 0 1.5rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: clip;
  background: #000;
}

body.home-page .hero {
  min-height: 100svh;
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
}

.hero-full .hero-slide {
  display: block;
  background: #000;
  overflow: hidden;
}

.hero-full .hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  transform: none;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
}

.hero-overlay {
  background: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
  color: #f7f2ea;
}

body.home-page .hero-content {
  width: min(calc(100% - 2rem), var(--max-width));
  padding-top: calc(78px + 8rem);
  padding-bottom: 3.1rem;
}

body.home-page .hero h1 {
  max-width: 12.5em;
  font-weight: 700;
  color: rgba(247, 242, 234, 0.5);
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 8px 20px rgba(0, 0, 0, 0.16);
}

body.home-page .hero .lead {
  max-width: 70rem;
}

body.home-page .hero-actions {
  gap: 0.7rem;
  margin-top: 1.6rem;
}

body.home-page .hero-actions .button {
  min-height: 42px;
  padding: 0.7rem 1.1rem;
  font-size: 0.94rem;
}

.eyebrow,
.section-label,
.stat-label,
.timeline-year {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.stat-label {
  color: #a5907a;
}

.hero h1,
.page-hero h1,
.section h2,
.band h2,
.work-entry h2,
.category-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 8.5em;
  font-size: clamp(4.8rem, 6.2vw, 5.6rem);
}

.lead {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.8);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.text-link:hover,
.lightbox-close:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.button-secondary {
  border-color: rgba(247, 242, 234, 0.38);
  color: #f7f2ea;
}

.button-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f7f2ea;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.button-icon svg {
  display: block;
  margin: 0 auto;
}

.button-icon .instagram-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex: 0 0 30px;
}

body.home-page .button-primary {
  background: transparent;
  color: #f7f2ea;
  border-color: rgba(247, 242, 234, 0.38);
}

.page-main .button-secondary,
.contact-panel .button-secondary {
  border-color: var(--line);
  color: var(--text);
}

.section,
.page-hero {
  padding: 6rem 0;
}

.page-hero.narrow {
  padding-bottom: 3rem;
}

.page-hero-grid,
.intro-grid,
.two-column,
.band-grid,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.page-hero-grid,
.two-column,
.band-grid,
.contact-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.page-hero .lead,
.page-main .lead {
  color: var(--muted);
}

.page-hero-image {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero-image img,
.feature-card img,
.category-card img,
.work-media-grid img {
  height: 100%;
  object-fit: cover;
}

.page-hero-image.tall {
  min-height: 560px;
}

.intro-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
}

.intro-copy,
.stack-text p,
.contact-panel p,
.feature-copy p,
.work-copy p,
.category-copy p,
.footer-copy,
.topic-list {
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.text-link {
  color: var(--accent);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.gallery-preview-grid,
.gallery-collection-grid,
.archive-grid {
  display: grid;
  gap: 1.4rem;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.portfolio-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

body.portfolio-page .portfolio-page-main {
  flex: 1 0 auto;
  padding-top: 0;
  min-height: 0;
}

body.portfolio-page .site-footer {
  margin-top: auto;
}

body.portfolio-page .footer-inner {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

body.portfolio-page .portfolio-grid-section {
  width: 100%;
  padding: 0 !important;
}

body.portfolio-page .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 10px;
  grid-auto-flow: dense;
  gap: 0.65rem;
}

body.portfolio-page .portfolio-thumb {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  grid-row: span var(--portfolio-thumb-rows, 30);
}

body.portfolio-page .portfolio-thumb picture {
  display: block;
  height: 100%;
}

body.portfolio-page .portfolio-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--thumb-pos-x, 50%) var(--thumb-pos-y, 50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.portfolio-page .portfolio-thumb--3-small {
  --portfolio-thumb-rows: 22;
}

body.portfolio-page .portfolio-thumb--3-square {
  --portfolio-thumb-rows: var(--portfolio-thumb-rows-3-square, 22);
  grid-column: span 1;
}

body.portfolio-page .portfolio-thumb--3-tall-md {
  --portfolio-thumb-rows: var(--portfolio-thumb-rows-3-tall-md, 22);
}

body.portfolio-page .portfolio-thumb--3-tall-lg {
  --portfolio-thumb-rows: var(--portfolio-thumb-rows-3-tall-lg, 28);
}

body.portfolio-page .portfolio-thumb--3-tall-xl {
  --portfolio-thumb-rows: var(--portfolio-thumb-rows-3-tall-xl, 40);
}

body.portfolio-page .portfolio-thumb--3-tall-md-wide {
  --portfolio-thumb-rows: var(--portfolio-thumb-rows-3-tall-md, 22);
  grid-column: span 2;
}

body.portfolio-page .portfolio-thumb--3-tall-lg-wide {
  --portfolio-thumb-rows: var(--portfolio-thumb-rows-3-tall-lg, 28);
  grid-column: span 2;
}

body.portfolio-page .portfolio-thumb--3-tall-xl-wide {
  --portfolio-thumb-rows: var(--portfolio-thumb-rows-3-tall-xl, 40);
  grid-column: span 2;
}

body.portfolio-page .portfolio-thumb--3-wide {
  --portfolio-thumb-rows: var(--portfolio-thumb-rows-3-wide, 26);
  grid-column: span 2;
}

body.portfolio-page .portfolio-thumb--3-wide-xl {
  --portfolio-thumb-rows: 30;
  grid-column: span 3;
}

body.portfolio-page .portfolio-thumb:hover img,
body.portfolio-page .portfolio-thumb:focus-visible img {
  transform: scale(1.02);
  opacity: 0.92;
}

body.portfolio-page .portfolio-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  background: rgba(5, 5, 5, 0.98);
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

body.portfolio-page.portfolio-viewer-open {
  overflow: hidden;
}

body.portfolio-page.portfolio-viewer-open .site-header,
body.portfolio-page.portfolio-viewer-open .site-footer,
body.portfolio-page.portfolio-viewer-open .portfolio-page-main {
  visibility: hidden;
}

body.portfolio-page .portfolio-viewer.is-open {
  display: grid;
}

body.portfolio-page .portfolio-viewer-stage {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.35rem;
  padding: 1.25rem 0.2rem 0.6rem;
}

body.portfolio-page .portfolio-viewer-asset {
  display: inline-grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: start;
  align-items: end;
  max-width: 100%;
  min-width: 0;
  max-height: 100%;
}

body.portfolio-page .portfolio-viewer-picture {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
  min-height: 0;
  touch-action: manipulation;
}

body.portfolio-page .portfolio-viewer-picture img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  height: auto;
  object-fit: contain;
}

body.portfolio-page .portfolio-viewer-meta {
  width: 100%;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(183, 174, 164, 0.68);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.portfolio-page .portfolio-viewer-close,
body.portfolio-page .portfolio-viewer-nav {
  border: 0;
  background: transparent;
  color: rgba(244, 239, 232, 0.92);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

body.portfolio-page .portfolio-viewer-close {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  z-index: 4;
  width: 60px;
  height: 60px;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(244, 239, 232, 0.58);
}

body.portfolio-page .portfolio-viewer-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 76px;
  min-height: 0;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

body.portfolio-page .portfolio-viewer-nav[disabled] {
  opacity: 0.25;
  cursor: default;
}

body.portfolio-page .portfolio-viewer-prev {
  left: 0;
}

body.portfolio-page .portfolio-viewer-next {
  right: 0;
}

.gallery-subnav,
.section-local-nav {
  position: sticky;
  top: 78px;
  z-index: 18;
  border-bottom: 1px solid rgba(244, 239, 232, 0.08);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gallery-subnav-inner,
.section-local-nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 46px;
}

.gallery-subnav a,
.section-local-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 0.1rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 180ms ease;
}

.gallery-subnav a::after,
.section-local-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.gallery-subnav a:hover,
.gallery-subnav a:focus-visible,
.gallery-subnav a.is-active,
.section-local-nav a:hover,
.section-local-nav a:focus-visible,
.section-local-nav a.is-active,
.section-tail-links a.is-active {
  color: var(--text);
}

.gallery-subnav a:hover::after,
.gallery-subnav a:focus-visible::after,
.gallery-subnav a.is-active::after,
.section-local-nav a:hover::after,
.section-local-nav a:focus-visible::after,
.section-local-nav a.is-active::after,
.section-tail-links a.is-active::after {
  transform: scaleX(1);
}

.gallery-current-path,
.section-current-path {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.gallery-tail-nav,
.section-tail-nav {
  padding-top: 2rem;
}

.gallery-tail-links,
.section-tail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.gallery-tail-links a,
.section-tail-links a {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.gallery-tail-links a::after,
.section-tail-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.gallery-tail-links a:hover,
.gallery-tail-links a:focus-visible,
.section-tail-links a:hover,
.section-tail-links a:focus-visible {
  color: var(--text);
}

.gallery-tail-links a:hover::after,
.gallery-tail-links a:focus-visible::after,
.section-tail-links a:hover::after,
.section-tail-links a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-only {
  display: none;
}

.gallery-preview-grid,
.gallery-collection-grid,
.archive-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-preview-card,
.gallery-work-card,
.archive-work-card,
.featured-series,
.featured-series-card {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(244, 239, 232, 0.08);
  box-shadow: var(--shadow);
  border-radius: 24px;
  overflow: hidden;
}

.gallery-work-copy h3,
.archive-year-head h2,
.featured-series-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
}

.gallery-work-copy p,
.archive-year-head p,
.featured-series-copy p {
  color: var(--muted);
}

.gallery-work-meta {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-preview-image,
.gallery-work-image,
.archive-work-image,
.featured-series-image {
  background: #090909;
}

.gallery-preview-image img,
.gallery-work-image img,
.archive-work-image img,
.featured-series-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-work-copy {
  padding: 1.2rem 1.25rem 1.35rem;
}

.gallery-section-lead {
  margin: 0 0 1.5rem;
}

.gallery-section-footer {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.featured-series-stack,
.archive-stack {
  display: grid;
  gap: 2rem;
}

.featured-series {
  display: grid;
  gap: 1.4rem;
  padding: 1.2rem;
}

.featured-series-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-series-copy {
  max-width: 42rem;
}

.featured-series-card {
  padding: 0.75rem;
}

.featured-series-card .text-link {
  display: inline-flex;
  margin-top: 0.85rem;
}

.archive-year-section {
  display: grid;
  gap: 1.3rem;
}

.archive-year-head {
  display: grid;
  gap: 0.4rem;
}

.archive-year-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.feature-grid,
.category-grid,
.stat-grid {
  display: grid;
  gap: 1.4rem;
}

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

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

.feature-card,
.category-card,
.stat-card,
.contact-panel,
.work-entry {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(244, 239, 232, 0.08);
  box-shadow: var(--shadow);
}

.feature-card,
.category-card {
  border-radius: 24px;
  overflow: hidden;
}

.feature-card {
  min-height: 460px;
}

.feature-card img {
  height: 320px;
}

.feature-copy,
.category-copy,
.stat-card,
.contact-panel,
.work-copy {
  padding: 1.4rem;
}

.band {
  background: rgba(255, 255, 255, 0.03);
  border-block: 1px solid rgba(244, 239, 232, 0.08);
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-list.compact {
  max-width: 860px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.works-stack {
  display: grid;
  gap: 3rem;
}

.works-profile {
  display: grid;
  gap: 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-items: start;
}

.works-profile-label {
  margin: 0;
}

.works-profile-body {
  display: grid;
  grid-template-columns: 7.2rem minmax(16rem, 0.9fr) minmax(12rem, 0.7fr);
  gap: 2.25rem;
  align-items: start;
}

.works-profile-copy {
  display: grid;
  gap: 0.45rem;
  max-width: 30rem;
}

.works-profile-copy p {
  margin: 0;
}

.works-profile-copy p + p {
  margin-top: 1em;
}

.works-profile-icon {
  width: 7.2rem;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #0d0d0d;
}

.works-profile-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-profile-copy h1 {
  margin: 0;
  /*font-size: clamp(2rem, 2.7vw, 2.8rem);*/
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.works-profile-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  margin: 0;
  padding: 0;
  align-content: start;
}

.works-profile-meta div {
  display: grid;
  gap: 0.28rem;
}

.works-profile-meta dt {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(183, 174, 164, 0.72);
}

.works-profile-meta dd {
  margin: 0;
  color: rgba(244, 239, 232, 0.84);
  font-size: 0.95rem;
  line-height: 1.7;
}

.works-profile-meta a {
  color: inherit;
  border-bottom: 1px solid rgba(244, 239, 232, 0.16);
}

.works-profile-meta a:hover,
.works-profile-meta a:focus-visible {
  border-color: rgba(244, 239, 232, 0.4);
  color: var(--text);
}

.works-section-heading {
  padding-top: 0.1rem;
  margin-bottom: -1.7rem;
}

.works-section-heading .timeline-year {
  margin: 0;
}

.work-entry {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1.75rem;
  border-radius: 10px;
  padding: 1.5rem 1.1rem;
  border: 1px solid var(--line);
  align-items: start;
}

.work-copy {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  max-width: 25rem;
  padding-top: 0;
}

.work-copy h2 {
  line-height: 1.04;
  /*font-size: clamp(1.85rem, 2.35vw, 2.35rem);*/
  font-size: 1.3rem;
}

.work-copy p {
  margin: 0;
  color: rgba(244, 239, 232, 0.72);
}

.work-summary {
  /*max-width: 31ch;*/
  font-size: 0.8rem;
  line-height: 1.75;
}

.work-media-layout {
  display: flex;
  gap: 0.9rem;
  align-items: flex-end;
  justify-content: flex-start;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  margin-left: 0;
}

.work-media-frame {
  margin: 0;
  flex: 0 0 auto;
}

.work-media-secondary-list {
  display: grid;
  gap: 0.6rem;
  align-content: end;
}

.work-media-layout-single {
  display: block;
  max-width: none;
}

.work-media-primary img {
  width: auto;
  max-width: 100%;
  height: min(42vh, 340px);
  border-radius: 0;
  object-fit: contain;
  object-position: center;
}

.work-media-secondary {
  align-self: end;
  margin-bottom: 0;
}

.work-media-secondary img {
  width: auto;
  max-width: min(100%, 18rem);
  height: min(24vh, 180px);
  border-radius: 0;
  object-fit: contain;
  object-position: center;
}

.work-source-link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin: 0.15rem 0 0;
}

.work-source-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0;
  border-bottom: 1px solid rgba(244, 239, 232, 0.16);
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  transition: border-color 180ms ease, color 180ms ease;
}

.work-source-link a::after {
  content: "↗";
  font-size: 0.82em;
}

.work-source-link a:hover,
.work-source-link a:focus-visible {
  border-color: rgba(244, 239, 232, 0.4);
  color: var(--text);
}

.works-section.section {
  padding-top: 2.25rem;
}

.stat-card h3,
.feature-copy h3,
.timeline-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.contact-layout {
  align-items: stretch;
}

.contact-panel {
  border-radius: 24px;
}

.contact-panel.emphasis {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(8, 8, 8, 0.98));
  color: #f7f2ea;
}

.contact-panel.emphasis p,
.contact-panel.emphasis .section-label,
.contact-panel.emphasis .small-note {
  color: rgba(247, 242, 234, 0.76);
}

.stacked {
  flex-direction: column;
  align-items: stretch;
}

.small-note {
  font-size: 0.9rem;
}

.topic-list {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
}

.site-footer {
  padding: 2rem 0 1.4rem;
}

body.home-page .site-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 0;
}

body.home-page .site-footer::before {
  content: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.18) 78%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.site-footer-overlay222 {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0;
  /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.72) 58%, #000 100%);*/
}

.site-footer-overlay::before {
  content: none;
}

body.home-page .footer-inner {
  position: relative;
  min-height: auto;
  align-items: center;
  padding-top: 1.55rem;
  padding-bottom: 0.6rem;
  border-top: 0;
}

body.home-page .footer-copyright {
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(244, 239, 232, 0.88);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 0 12px rgba(0, 0, 0, 0.28);
}

body.home-page .footer-inner::before {
  content: none;
  position: absolute;
  top: 3.9rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 0;
}

.footer-copyright {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(183, 174, 164, 0.72);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 30;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  :root {
    --works-mobile-inset: 0.5rem;
  }

  .site-brand {
    font-size: 0.86rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .feature-grid,
  .category-grid,
  .stat-grid,
  .gallery-preview-grid,
  .gallery-collection-grid,
  .archive-grid,
  .featured-series-grid,
  .page-hero-grid,
  .two-column,
  .band-grid,
  .contact-layout,
  .works-profile,
  .work-entry,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-image.tall {
    min-height: 420px;
  }

  .feature-card {
    min-height: 0;
  }

  .work-copy {
    max-width: none;
    padding-inline: var(--works-mobile-inset);
  }

  .works-profile {
    gap: 1rem;
    padding: 0;
  }

  .works-section-heading {
    padding-inline: var(--works-mobile-inset);
  }

  .works-profile-body {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .works-profile-copy {
    max-width: none;
  }

  .works-profile-copy h1 {
    /*font-size: clamp(2rem, 8vw, 2.45rem);*/
    font-size: 1rem;
  }

  .works-profile-icon {
    width: 6rem;
  }

  .works-profile-meta {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .works-stack {
    gap: 2.2rem;
  }

  .work-entry {
    gap: 1rem;
    padding: 1.15rem var(--works-mobile-inset) 0.95rem;
    justify-items: stretch;
  }

  .work-copy h2 {
    /*font-size: clamp(1.9rem, 7.6vw, 2.35rem);*/
    font-size: 1.26rem;
    line-height: 1.18;
  }

  .work-summary,
  .work-copy p {
    /*font-size: 0.92rem;*/
    font-size: 0.7rem;
    line-height: 1.72;
  }

  .work-media-layout-poster,
  .work-media-layout-museum,
  .work-media-layout-single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    align-items: start;
    justify-content: start;
    justify-self: stretch;
    margin-left: 0;
    padding-inline: var(--works-mobile-inset);
    box-sizing: border-box;
  }

  .work-media-layout-single {
    display: block;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin-left: 0;
    padding-inline: var(--works-mobile-inset);
    box-sizing: border-box;
  }

  .work-media-primary img {
    display: block;
    width: auto;
    max-width: min(100%, 68vw);
    max-height: min(50svh, 500px);
    height: auto;
    margin-left: 0;
    margin-right: auto;
  }

  .work-media-layout-poster .work-media-secondary,
  .work-media-layout-museum .work-media-secondary {
    display: block;
  }

  .work-media-secondary-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 0.6rem;
    justify-content: start;
    align-items: end;
  }

  .work-media-secondary img {
    display: block;
    width: auto;
    max-width: min(100%, 100vw);
    /*max-height: min(14svh, 105px);*/
    max-height: min(22svh, 240px);
    height: auto;
    margin-left: 0;
    margin-right: auto;
  }

  .work-media-layout-single .work-media-primary img {
    display: block;
    width: auto;
    max-width: min(100%, 68vw);
    max-height: min(24svh, 190px);
    height: auto;
    margin-left: 0;
    margin-right: auto;
  }

  .work-media-secondary {
    margin-bottom: 0;
  }

  .gallery-work-copy h3,
  .archive-year-head h2,
  .featured-series-copy h2 {
    font-size: 1.55rem;
  }

  body.portfolio-page .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 10px;
    gap: 0.75rem;
  }
}

@media (max-width: 980px) {
  .gallery-subnav,
  .section-local-nav {
    display: none;
  }

  .site-nav-group {
    display: grid;
    gap: 0;
  }

  .site-nav-subnav {
    display: grid;
    gap: 0;
    padding: 0 0 0.35rem 1.1rem;
  }

  .site-nav-subnav a {
    padding: 0.55rem 1rem 0.55rem 1.1rem;
    font-size: 0.84rem;
    color: rgba(244, 239, 232, 0.72);
  }

  .site-nav-subnav a::after {
    display: none;
  }

  .site-nav-subnav a.is-active {
    color: var(--text);
  }

  .header-inner {
    min-height: 72px;
  }

  .site-header.site-header-nav-open {
    z-index: 26;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav-scrim {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 24;
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
    touch-action: none;
    overscroll-behavior: contain;
  }

  .site-nav-scrim.is-open {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 90px;
    right: 1rem;
    left: 1rem;
    z-index: 25;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(5, 5, 5, 0.64);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 0.8rem;
    transition:
      background-color 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .site-nav-label {
    display: inline-flex;
    flex: 0 0 auto;
    width: fit-content;
    align-items: center;
    gap: 0.7rem;
  }

  .site-nav-label::after {
    position: static;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scale(0.4);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav a:hover .site-nav-label::after,
  .site-nav a:focus-visible .site-nav-label::after,
  .site-nav a:active .site-nav-label::after {
    opacity: 0;
    transform: scale(0.4);
  }

  .site-nav a.is-active .site-nav-label::after {
    opacity: 1;
    transform: scale(1);
  }

  .site-nav a.is-active {
    color: rgba(247, 242, 234, 0.96);
  }

  .site-nav a.is-active .site-nav-label {
    font-weight: 500;
  }

  .site-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1;
    align-self: end;
    width: 2.5rem;
    height: 2.5rem;
    margin: -0.1rem 0 0.25rem auto;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: rgba(244, 239, 232, 0.72);
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 0 0.22rem;
    cursor: pointer;
  }

  .site-nav-instagram {
    width: 100%;
    height: auto;
    margin-top: 0.85rem;
    margin-left: 0;
    padding: 0.95rem 1rem;
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
    color: rgba(244, 239, 232, 0.9);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a:active {
    background: rgba(247, 242, 234, 0.12);
  }

  .site-nav a.is-active:hover,
  .site-nav a.is-active:focus-visible,
  .site-nav a.is-active:active {
    background: rgba(247, 242, 234, 0.08);
  }

  .site-nav-subnav a:hover,
  .site-nav-subnav a:focus-visible,
  .site-nav-subnav a:active {
    background: transparent;
  }

  .site-nav-instagram:hover,
  .site-nav-instagram:focus-visible,
  .site-nav-instagram:active {
    transform: none;
  }

  .site-brand {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    line-height: 1.12;
  }

  .site-brand span:last-child,
  .site-brand .site-brand-sub {
    font-size: 0.7em;
    letter-spacing: 0.18em;
    margin-top: 0.14rem;
  }

  .hero {
    min-height: 84svh;
  }

  body.home-page .hero {
    min-height: 100svh;
  }

  body.home-page .hero-content {
    width: min(calc(100% - 3rem), var(--max-width));
    padding-top: calc(72px + 6rem);
    padding-bottom: 2.8rem;
  }

  body.home-page .hero h1 {
    max-width: 42rem;
    font-size: clamp(1.9rem, 8.8vw, 2.75rem);
  }

  body.home-page .hero .lead {
    max-width: 42rem;
  }

  .lead {
    font-size: 0.62rem;
    line-height: 1.38;
  }

  .footer-copyright {
    font-size: 0.62rem;
    letter-spacing: 0.015em;
    white-space: nowrap;
  }

  .hero-content {
    padding: 6rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.5vw, 3.1rem);
  }

  .section,
  .page-hero {
    padding: 4.5rem 0;
  }

  body.portfolio-page .portfolio-grid-section {
    padding: 0 !important;
  }

  body.portfolio-page .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 6px;
    grid-auto-flow: dense;
    gap: 0.45rem;
  }

  body.portfolio-page .portfolio-thumb {
    grid-row: span var(--portfolio-thumb-rows-2, 28);
    aspect-ratio: auto;
  }

  body.portfolio-page .portfolio-thumb--2-small {
    --portfolio-thumb-rows-2: 22;
  }

  body.portfolio-page .portfolio-thumb--2-square {
    --portfolio-thumb-rows-2: var(--portfolio-thumb-rows-2-square, 22);
    grid-column: span 1;
  }

  body.portfolio-page .portfolio-thumb--2-tall-md {
    --portfolio-thumb-rows-2: var(--portfolio-thumb-rows-2-tall-md, 18);
  }

  body.portfolio-page .portfolio-thumb--2-tall-lg {
    --portfolio-thumb-rows-2: var(--portfolio-thumb-rows-2-tall-lg, 24);
  }

  body.portfolio-page .portfolio-thumb--2-tall-xl {
    --portfolio-thumb-rows-2: var(--portfolio-thumb-rows-2-tall-xl, 34);
  }

  body.portfolio-page .portfolio-thumb--2-wide {
    --portfolio-thumb-rows-2: var(--portfolio-thumb-rows-2-wide, 18);
    grid-column: 1 / -1;
  }

  body.portfolio-page .portfolio-thumb--2-wide img {
    object-fit: cover;
    object-position: center center;
  }

  body.portfolio-page .portfolio-thumb--3-tall-md-wide,
  body.portfolio-page .portfolio-thumb--3-tall-lg-wide,
  body.portfolio-page .portfolio-thumb--3-tall-xl-wide {
    grid-column: span 1;
  }

  body.portfolio-page .portfolio-viewer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  body.portfolio-page .portfolio-viewer-stage {
    padding: 1.15rem 0.2rem 0.55rem;
    gap: 0.22rem;
  }

  body.portfolio-page .portfolio-viewer-picture img {
    max-height: calc(100vh - 110px);
    width: auto;
    max-width: 100%;
  }

  body.portfolio-page .portfolio-viewer-meta {
    font-size: 10px;
    line-height: 1.2;
  }

  body.portfolio-page .portfolio-viewer-nav {
    width: 56px;
    font-size: 1.15rem;
  }

  @supports (-webkit-touch-callout: none) {
    body.portfolio-page .portfolio-grid-section {
      margin-top: -1rem !important;
    }

    body.portfolio-page .portfolio-viewer-stage {
      padding-top: 0.95rem;
    }

    body.portfolio-page .portfolio-viewer-meta {
      font-size: 10px;
      line-height: 1.1;
    }
  }

  @media (orientation: landscape) {
    body.portfolio-page .portfolio-viewer-stage {
      padding: 0 0.2rem 0.4rem;
      gap: 0.16rem;
    }

    body.portfolio-page .portfolio-viewer-picture img {
      max-height: calc(100vh - 78px);
    }

    body.portfolio-page .portfolio-viewer-meta {
      font-size: 9px;
      line-height: 1.05;
    }
  }

  .gallery-current-path,
  .section-current-path {
    font-size: 0.76rem;
  }

  .gallery-tail-links,
  .section-tail-links {
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
  }

  .mobile-only {
    display: block;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
  }
}
