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

:root {
  --blue-deep: #0b1d3a;
  --blue-mid:  #1a3a6e;
  --cyan:      #5ac8d8;
  --cyan-pale: #a8e6ee;
  --terra:     #c2603a;
  --gold:      #e8b84b;
  --cream:     #f5f0e8;
  --warm-white:#faf8f4;
  --ink:       #1a1510;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Space Grotesk', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  mix-blend-mode: normal;
}
nav.light { color: var(--ink); }
nav.light .nav-name { color: var(--ink); }
nav.light .nav-links a { color: var(--ink); }
.nav-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.4s;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.4s;
}
.nav-links a:hover { opacity: 1; }

/* ── HERO ── */
#hero {
  height: 100svh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.18) 18%,
    transparent 40%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-image-col {
  position: absolute;
  inset: 0;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
  filter: saturate(1.15) contrast(1.05);
}
.hero-text-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 6vw 0 auto;
  padding: 3rem 3.2rem 3rem;
  max-width: 520px;
  background: rgba(8, 14, 22, 0.32);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-radius: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 8px 48px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-weight: 600;
  opacity: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.92;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-pale);
  display: block;
}
.hero-tagline {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 30ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-scroll {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ── COLLABORATORS ── */
#collaborators {
  background: #0e0e0e;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}
.collab-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  padding: 0 2rem;
}
.collab-header-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  font-weight: 500;
}

/* Marquee rows */
.marquee-row {
  display: flex;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: 2.5rem;
}
.marquee-row:last-child { margin-bottom: 0; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(3.5rem, 6vw, 7rem);
  animation: marquee-scroll 55s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-row.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 70s;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual logo items */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 64px;
  opacity: 0.65;
}

/* Logo images — all converted to white on dark bg */
.logo-item img {
  height: 100%;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}
/* KNMA white paths — no filter needed */
.logo-item.logo-knma img { filter: none; }

/* ── Text / wordmark logos ── */
/* Compact stacked wordmark that sits in the same visual weight as image logos */
.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  text-align: center;
}
.logo-wordmark .wm-line1 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.9);
  line-height: 1;
  white-space: nowrap;
}
.logo-wordmark .wm-line2 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  line-height: 1;
  white-space: nowrap;
}
/* Single-line wordmark for short names */
.logo-wordmark.single .wm-line1 {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
}
/* Serif variant */
.logo-wordmark.serif-wm .wm-line1 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}
.logo-wordmark.serif-wm .wm-line2 {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Dividers between logos */
.logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(245,240,232,0.12);
  flex-shrink: 0;
}

/* ── MANIFESTO ── */
#manifesto {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 8vw, 10rem);
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  max-width: 900px;
}
.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 2.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.manifesto-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--terra);
  opacity: 0.4;
  max-width: 60px;
}
.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.25;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.manifesto-quote strong {
  font-weight: 600;
}
.manifesto-meta {
  font-size: 0.8rem;
  color: rgba(26,21,16,0.5);
  letter-spacing: 0.05em;
}
.manifesto-deco {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 700;
  color: rgba(194,96,58,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── CHAPTER HEADER ── */
.chapter-header {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
  position: relative;
}
.chapter-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(5rem, 15vw, 18rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px currentColor;
  opacity: 0.12;
  position: absolute;
  top: 0; right: 3%;
  pointer-events: none;
  user-select: none;
}
.chapter-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.chapter-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
}
.chapter-title em {
  font-style: italic;
  font-weight: 300;
}

/* ── CHAPTER I: ORIGINS ── */
#origins {
  background: var(--warm-white);
  color: var(--ink);
}
#origins .chapter-num { color: var(--terra); }

/* ── Infinite auto-scroll artwork strip — Chapter I ── */
.origins-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  height: 340px;
  margin-bottom: 0.35rem;
}
.origins-scroll-track {
  display: flex;
  gap: 0.4rem;
  height: 100%;
  width: max-content;
  animation: strip-scroll 70s linear infinite;
  will-change: transform;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.origins-scroll-cell {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 226px;
  flex-shrink: 0;
  cursor: zoom-in;
}
.origins-scroll-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.origins-scroll-cell:hover img { transform: scale(1.04); }
.origins-scroll-cell .strip-hover-label {
  position: absolute;
  inset: 0;
  background: rgba(26,21,16,0);
  display: flex;
  align-items: flex-end;
  padding: 1rem 0.75rem;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  pointer-events: none;
}
.origins-scroll-cell:hover .strip-hover-label {
  background: rgba(26,21,16,0.55);
  opacity: 1;
}
.strip-hover-label span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
}

/* Text + timeline below strip */
.origins-text {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: var(--warm-white);
}
.origins-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink);
  max-width: 70ch;
}
.origins-statement strong { font-weight: 600; }

/* Accordion timeline */
.origins-timeline {
  display: flex;
  flex-direction: column;
}
.timeline-entry {
  border-top: 1px solid rgba(26,21,16,0.12);
}
.timeline-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  text-align: left;
}
.timeline-trigger:hover .timeline-year { color: var(--ink); }
.timeline-year {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terra);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.timeline-label {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(26,21,16,0.65);
  font-family: var(--font-sans);
}
.timeline-chevron {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: rgba(26,21,16,0.3);
  transition: transform 0.35s ease, color 0.2s;
}
.timeline-entry.open .timeline-chevron {
  transform: rotate(90deg);
  color: var(--terra);
}
.timeline-entry.open .timeline-year { color: var(--terra); }

/* Expanded panel */
.timeline-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.timeline-entry.open .timeline-panel {
  grid-template-rows: 1fr;
}
.timeline-panel-inner {
  overflow: hidden;
}
.timeline-panel-content {
  padding-bottom: 1.5rem;
}
.timeline-works {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.timeline-work-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.timeline-work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.timeline-work-thumb:hover img { transform: scale(1.07); }
.timeline-work-thumb .work-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,21,16,0.7));
  color: white;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  padding: 0.9rem 0.45rem 0.35rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.timeline-work-thumb:hover .work-caption { opacity: 1; }
.timeline-note {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(26,21,16,0.55);
  max-width: 55ch;
}
/* CV list inside accordion */
.timeline-cv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(26,21,16,0.1);
}
.timeline-cv-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(26,21,16,0.07);
}
.cv-year {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--terra);
  letter-spacing: 0;
  padding-top: 0.15rem;
  line-height: 1.4;
}
.cv-content {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(26,21,16,0.72);
}
/* Each bullet point within a year */
.cv-content .cv-bullet {
  display: block;
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
  border-left: 2px solid rgba(194,96,58,0.15);
  margin-bottom: 0.5rem;
}
.cv-content .cv-bullet:last-child { margin-bottom: 0; }
.cv-content .cv-bullet::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.5;
}

/* ── CHAPTER II: BODY & TIME ── */
#bodytime {
  background: var(--ink);
  color: var(--cream);
}
#bodytime .chapter-num { color: var(--gold); }
.bodytime-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 75vh;
}
.bodytime-image {
  position: relative;
  overflow: hidden;
}
.bodytime-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.2) contrast(1.1);
}
.bodytime-content {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.bodytime-content .show-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
}
.bodytime-content .show-title em {
  font-style: italic;
  font-weight: 300;
  display: block;
  color: var(--gold);
}
.bodytime-content p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.65);
  max-width: 40ch;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(232,184,75,0.35);
  border-radius: 99px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.bodytime-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.4rem clamp(2rem, 6vw, 6rem) clamp(3rem, 6vw, 5rem);
}
.bodytime-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.bodytime-gallery img:hover { transform: scale(1.03); }

/* ── CHAPTER III: CYANOTYPE ── */
#cyanotype {
  background: var(--blue-deep);
  color: var(--cream);
  position: relative;
}
#cyanotype .chapter-num { color: var(--cyan); }
.cyano-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
}
.cyano-intro-text {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
}
.cyano-intro-text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.65);
  max-width: 42ch;
}
.cyano-intro-text .essay-attr {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  opacity: 0.75;
}
.cyano-intro-image {
  overflow: hidden;
  position: relative;
}
.cyano-intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
/* Masonry-style gallery */
.cyano-grid {
  padding: 0.5rem clamp(1rem, 3vw, 3rem) clamp(3rem, 6vw, 5rem);
  columns: 3;
  column-gap: 0.5rem;
}
.cyano-grid-item {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cyano-grid-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.cyano-grid-item:hover img { transform: scale(1.03); }
.cyano-grid-item .cyano-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,29,58,0.85));
  color: var(--cyan-pale);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 1.5rem 0.7rem 0.6rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.cyano-grid-item:hover .cyano-caption { opacity: 1; }
/* Hero cyanotype */
.cyano-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0 clamp(1rem, 3vw, 3rem) 0.5rem;
}
.cyano-hero-item {
  overflow: hidden;
  aspect-ratio: 2/3;
}
.cyano-hero-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}
.cyano-hero-item:hover img { transform: scale(1.04); }

/* ── CHAPTER IV: WORLDS MADE ── */
#worlds {
  background: #0d0d0d;
  color: var(--cream);
}
#worlds .chapter-num { color: rgba(245,240,232,0.08); }
.worlds-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.worlds-project {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.worlds-project:last-child { border-right: none; }
.worlds-project-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.worlds-project-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.worlds-project:hover .worlds-project-image img { transform: scale(1.05); }
.worlds-project-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
}
.worlds-project h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
}
.worlds-project h3 em {
  font-style: italic;
  font-weight: 300;
}
.worlds-project p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.55);
  max-width: 40ch;
}
.worlds-project .accent-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: flex-start;
}
.accent-dot { background: rgba(90,200,216,0.15); color: var(--cyan); }
.accent-flyover { background: rgba(232,184,75,0.12); color: var(--gold); }
.worlds-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.5rem clamp(1rem, 3vw, 3rem) clamp(3rem, 6vw, 5rem);
}
.worlds-secondary-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.worlds-secondary-grid img:hover { transform: scale(1.02); }

/* ── ABOUT STRIP ── */
#about {
  background: var(--terra);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 8vw, 10rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
}
.about-content { display: flex; flex-direction: column; gap: 1.8rem; }
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
}
.about-content h2 em {
  font-style: italic;
  font-weight: 300;
  display: block;
}
.about-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.75);
  max-width: 45ch;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── FOOTER ── */
footer {
  background: var(--blue-deep);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem) clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.footer-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-pale);
}
.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.45);
  max-width: 36ch;
}
.footer-contact { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.footer-contact a {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cyan-pale);
  text-decoration: none;
  font-style: italic;
  transition: color 0.3s;
}
.footer-contact a:hover { color: white; }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.25);
  text-transform: uppercase;
}
.footer-credit {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 1.2rem;
  font-size: 0.68rem;
  color: rgba(245,240,232,0.22);
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: rgba(245,240,232,0.8); }

/* ── FULLSCREEN LIGHTBOX ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 999;
  display: none;
  place-items: center;
  cursor: zoom-out;
}
#lightbox.active { display: grid; }
#lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  background: none; border: none;
}
#lightbox-close:hover { opacity: 1; }

/* ── SECTION DIVIDER ── */
.section-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, currentColor, transparent);
  opacity: 0.12;
  margin: 0 clamp(2rem, 6vw, 6rem);
}

/* ── VIDEO PLAYER ── */
.video-wrap {
  position: relative;
  background: #000;
  border-radius: 2px;
  overflow: hidden;
}
.video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.video-overlay-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.video-overlay:hover .video-overlay-btn {
  background: rgba(255,255,255,0.20);
  transform: scale(1.08);
}
.video-overlay-btn svg {
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,0.92);
}
.video-wrap.playing .video-overlay { opacity: 0; }
.video-wrap.playing:hover .video-overlay { opacity: 1; }

.bodytime-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 0 clamp(1.5rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem);
}
.worlds-project-video {
  width: 100%;
  margin: 0.8rem 0 1.2rem;
}
.worlds-secondary-video { width: 100%; }
#lightbox video { max-width: 92vw; max-height: 92vh; display: none; }
#lightbox.video-mode img { display: none; }
#lightbox.video-mode video { display: block; }
@media (max-width: 720px) {
  .bodytime-videos { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-text-col { margin: 0 1.5rem; padding: 2rem 1.8rem; max-width: calc(100% - 3rem); }
  nav { padding: 1rem 1.5rem; }
  .origins-scroll-wrapper { height: 260px; }
  .origins-text { grid-template-columns: 1fr; }
  .origins-statement { position: static; }
  .bodytime-layout { grid-template-columns: 1fr; }
  .bodytime-image { height: 50vh; }
  .cyano-intro { grid-template-columns: 1fr; }
  .cyano-intro-image { height: 55vh; }
  .cyano-grid { columns: 2; }
  .cyano-hero { grid-template-columns: 1fr 1fr; }
  .worlds-split { grid-template-columns: 1fr; }
  #about { grid-template-columns: 1fr; }
  .about-portrait { max-height: 55vh; }
  footer { grid-template-columns: 1fr; }
  .footer-contact { align-items: flex-start; }
}
@media (max-width: 580px) {
  .nav-links { display: none; }
  .origins-scroll-wrapper { height: 200px; }
  .cyano-grid { columns: 1; }
  .cyano-hero { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .bodytime-gallery { grid-template-columns: 1fr 1fr; }
  .worlds-secondary-grid { grid-template-columns: 1fr; }
}

/* ── SECTION CARDS (landing) ── */
#sections {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
}
.section-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.section-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cream);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.section-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.section-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.section-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.section-card:hover .section-card-img img { transform: scale(1.05); }
.section-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.section-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}
.section-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.1;
}
.section-card-title em { font-style: italic; font-weight: 300; color: var(--cyan-pale); }
.section-card-body p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(245,240,232,0.5);
  flex: 1;
}
.section-card-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ── INSTALLATION SECTION ── */
.install-section {
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 6rem) clamp(3rem, 6vw, 5rem);
  background: #0d0d0d;
}
.install-intro {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.5);
  max-width: 60ch;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.install-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.install-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.install-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.install-item:hover img { transform: scale(1.04); }
.install-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,13,13,0.88));
  padding: 2rem 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.install-item:hover .install-caption { opacity: 1; }
.install-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.install-title em { font-weight: 300; font-style: italic; }
.install-meta {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
@media (max-width: 900px) {
  .install-grid { grid-template-columns: repeat(2, 1fr); }
  .install-item--wide { grid-column: span 2; }
}
@media (max-width: 580px) {
  .install-grid { grid-template-columns: 1fr; }
  .install-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}
