:root {
  --black: #0c0b0a;
  --charcoal: #161412;
  --charcoal-2: #1f1c19;
  --bone: #ede7de;
  --bone-dim: #b8b0a4;
  --magenta: #c23b6b;
  --gold: #cba135;
  --rust: #b85c2e;
  --line: rgba(237, 231, 222, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- NAV ---------- */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  mix-blend-mode: normal;
  transition: background 0.4s ease, padding 0.4s ease;
}

header.nav.scrolled {
  background: rgba(12, 11, 10, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
}

.nav-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
}

.nav-mark span { color: var(--gold); }

nav.links {
  display: flex;
  gap: 44px;
}

nav.links a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

nav.links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.35s ease;
}

nav.links a:hover { color: var(--bone); }
nav.links a:hover::after { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(1.08) contrast(1.08);
  opacity: 0.96;
  transform: scaleX(-1);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,10,0.15) 0%, rgba(12,11,10,0.05) 30%, rgba(12,11,10,0.55) 72%, rgba(12,11,10,0.96) 100%),
    linear-gradient(90deg, rgba(12,11,10,0.75) 0%, rgba(12,11,10,0.05) 45%, rgba(12,11,10,0.05) 60%, rgba(12,11,10,0.3) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  padding: 0 48px 90px;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.98;
  color: var(--bone);
  max-width: 900px;
}

.hero h1 em {
  font-style: italic;
  color: var(--bone-dim);
}

.hero-sub {
  margin-top: 26px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--bone-dim);
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.hero-scroll .line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
  position: relative;
  padding: 200px 0 48px;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.section-pad.section-pad-tight { padding-top: 60px; }

.page-header .kicker { display: flex; align-items: center; gap: 16px; }

.page-header .kicker::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.page-header h1 {
  margin-top: 22px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1;
  color: var(--bone);
  max-width: 800px;
}

.page-header .page-sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--bone-dim);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.back-link:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- MARQUEE STRIP ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-track {
  display: inline-flex;
  gap: 60px;
  animation: scroll-strip 38s linear infinite;
}

.strip-track span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--bone-dim);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.strip-track span::after {
  content: '✦';
  font-style: normal;
  color: var(--gold);
  margin-left: 60px;
  font-size: 12px;
}

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

/* ---------- SECTION SHARED ---------- */
section { position: relative; }

.section-pad { padding: 150px 0; }

.kicker {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(34px, 4vw, 54px);
  color: var(--bone);
  max-width: 640px;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
  margin-top: 60px;
}

.about-copy p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--bone-dim);
  margin-bottom: 22px;
}

.about-copy p strong {
  color: var(--bone);
  font-weight: 500;
}

.about-portrait {
  margin-bottom: 40px;
  max-width: 360px;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(0.25) saturate(0.9) contrast(1.05);
  border: 1px solid var(--line);
}

.portrait-caption {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  background: var(--charcoal);
  padding: 38px 32px;
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
}

.stat .label {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.pull-quote {
  margin-top: 50px;
  padding-left: 28px;
  border-left: 2px solid var(--magenta);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--bone);
}

/* ---------- PORTFOLIO / WORK CARDS (shared by carousel + archive grid) ---------- */
.portfolio { background: var(--charcoal); }

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.view-all {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.view-all:hover { color: var(--gold); border-color: var(--gold); }

.work-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

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

.work-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(155deg, var(--charcoal-2), var(--black));
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.work-card .swatch-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1), opacity 0.4s ease;
}

.work-card:hover .swatch-img { transform: scale(1.06); opacity: 1; }

.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,11,10,0.92) 0%, rgba(12,11,10,0.2) 55%, rgba(12,11,10,0.05) 100%);
  z-index: 1;
}

.work-info {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.work-info .prod-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--bone);
}

.work-info .prod-meta {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- CAROUSEL (homepage "Selected Work") ---------- */
.carousel {
  position: relative;
  margin-top: 70px;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--black);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.9s cubic-bezier(.65,0,.35,1);
}

.slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,11,10,0.9) 0%, rgba(12,11,10,0.15) 45%, rgba(12,11,10,0.05) 100%);
}

.slide-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 48px;
  z-index: 2;
}

.slide-info .prod-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--bone);
}

.slide-info .prod-meta {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: rgba(12,11,10,0.5);
  backdrop-filter: blur(6px);
  color: var(--bone);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.car-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.car-prev { left: 24px; }
.car-next { right: 24px; }

.car-dots {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--bone-dim);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.car-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .carousel { aspect-ratio: 4 / 5; }
  .car-arrow { width: 42px; height: 42px; font-size: 18px; }
}

/* ---------- EXHIBITIONS & SPEAKING / DECADE TIMELINE ---------- */
.exhibit-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}

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

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

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
}

.timeline-body .t-title {
  font-size: 17px;
  color: var(--bone);
  letter-spacing: 0.01em;
}

.timeline-body .t-loc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}

/* ---------- ARCHIVE RAIL TIMELINE ---------- */
.timeline-rail {
  position: relative;
  margin-top: 60px;
  padding-left: 40px;
}

.timeline-rail::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--bone-dim) 4%, var(--bone-dim) 96%, transparent);
  opacity: 0.4;
}

.decade-marker {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 64px 0 26px;
}

.decade-marker:first-child { padding-top: 6px; }

.decade-marker::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
}

.decade-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--bone);
  line-height: 1;
}

.decade-blurb {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--bone-dim);
}

.tl-row {
  position: relative;
  border-top: 1px solid var(--line);
}

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

.tl-row::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 33px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.tl-summary {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px 4px;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
}

.tl-summary.has-thumb { grid-template-columns: 90px 112px 1fr auto; }

.tl-row.expandable .tl-summary { cursor: pointer; }

.tl-thumb {
  width: 112px;
  height: 112px;
  object-fit: cover;
  object-position: 50% 15%;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.tl-row.offset .tl-summary {
  margin-left: 68px;
  transition: margin-left 0.3s ease;
}

.tl-summary .timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
}

.tl-summary .t-title {
  font-size: 17px;
  color: var(--bone);
}

.tl-summary .t-loc {
  margin-top: 5px;
  font-size: 13px;
  color: var(--bone-dim);
  letter-spacing: 0.03em;
}

.tl-toggle {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-dim);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.4s ease, border-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.tl-row.expandable:hover .tl-toggle { border-color: var(--gold); color: var(--gold); }
.tl-row.open .tl-toggle { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }

.tl-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(.4,0,.2,1);
}

.tl-row.open .tl-panel { grid-template-rows: 1fr; }

.tl-panel-inner { overflow: hidden; }

.tl-gallery {
  padding: 4px 4px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tl-gallery img {
  width: 260px;
  flex: 1 1 260px;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 15%;
  border: 1px solid var(--line);
}

.tl-gallery.single img {
  flex: 0 1 460px;
  max-width: 460px;
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .tl-gallery img { flex: 1 1 100%; max-width: 100%; }
}

@media (max-width: 900px) {
  .timeline-rail { padding-left: 26px; }
  .timeline-rail::before { left: 3px; }
  .decade-marker::before, .tl-row::before { left: -26px; }
  .tl-summary { grid-template-columns: 60px 1fr auto; gap: 14px; }
  .tl-summary.has-thumb { grid-template-columns: 60px 52px 1fr auto; }
  .tl-thumb { width: 52px; height: 52px; }
  .tl-row.offset .tl-summary { margin-left: 0; }
}

/* ---------- CONTACT ---------- */
.contact { background: var(--charcoal); }

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
}

.contact h2 {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--bone);
  max-width: 560px;
}

.contact-copy {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--bone-dim);
  max-width: 460px;
}

.contact-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-cta:hover { background: var(--gold); color: var(--black); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  border-left: 1px solid var(--line);
  padding-left: 60px;
}

.contact-details .d-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-details .d-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bone);
}

/* ---------- FOOTER ---------- */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.footer-row .marks {
  display: flex;
  gap: 28px;
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  header.nav { padding: 22px 24px; }
  nav.links { display: none; }
  .hero-content { padding: 0 24px 70px; }
  .page-header { padding: 150px 0 60px; }
  .about-grid, .exhibit-grid, .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .work-grid, .work-grid.work-grid-3 { grid-template-columns: 1fr; }
  .contact-details { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 30px; }
  .decade-marker { flex-direction: column; gap: 10px; }
}

/* ---------- GALLERY IMAGE HOVER ---------- */
.tl-thumb, .tl-gallery img {
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tl-thumb:hover, .tl-gallery img:hover {
  opacity: 0.85;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 11, 10, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 84vw;
  max-height: 74vh;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.lightbox-caption {
  margin-top: 20px;
  color: var(--bone-dim);
  font-size: 14px;
  letter-spacing: 0.03em;
  text-align: center;
  max-width: 70vw;
}

.lightbox-counter {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 36px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: var(--bone);
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--bone);
  background: rgba(237, 231, 222, 0.05);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.lightbox-arrow:hover { border-color: var(--gold); color: var(--gold); background: rgba(203, 161, 53, 0.1); }
.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }
.lightbox-arrow.hidden, .lightbox-counter.hidden { display: none; }

@media (max-width: 900px) {
  .lightbox-img { max-width: 92vw; max-height: 60vh; }
  .lightbox-arrow { width: 44px; height: 44px; font-size: 18px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 16px; right: 16px; }
}
