:root {
  --paper: #ffffff;
  --ink: #151512;
  --muted: #6c675e;
  --line: rgba(21, 21, 18, 0.19);
  --yellow: #d8b53c;
  --blue: #636fb2;
  --max: 1440px;
  --intro-marquee-height: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
video { max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}
.brand { font-family: "Noto Serif", serif; font-weight: 500; text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { font-size: 0.9rem; text-decoration: none; }
.nav-cta { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.menu-toggle { display: none; font: inherit; background: none; border: 0; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }

body.intro-page {
  padding-top: var(--intro-marquee-height);
}

body.intro-page .site-header {
  top: var(--intro-marquee-height);
}

.booking-marquee {
  align-self: stretch;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-top: -2px;
  margin-bottom: 0;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  backdrop-filter: blur(8px);
  text-decoration: none;
  cursor: pointer;
}
body.intro-page .booking-marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 90;
}
.booking-marquee-track {
  display: flex;
  width: max-content;
  animation: booking-marquee-scroll 24s linear infinite;
}
.booking-marquee-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.2rem 0.7rem;
  white-space: nowrap;
}
.booking-marquee-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0.12rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(21, 21, 18, 0.35);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .booking-marquee-track {
    animation: none;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 5vw;
  align-items: center;
  max-width: var(--max);
  margin: auto;
  padding: 6vw 4vw;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-label, .project-meta {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  line-height: 0.98;
}
h1 { font-size: clamp(3.2rem, 6.4vw, 7rem); margin: 1.4rem 0 2rem; letter-spacing: -0.04em; }
h2 { font-size: clamp(2.2rem, 4.2vw, 4.8rem); letter-spacing: -0.035em; }
h3 { font-family: "Noto Serif", serif; font-size: 1.2rem; line-height: 1.25; font-weight: 500; }
.hero-intro { max-width: 620px; font-size: clamp(1.1rem, 1.6vw, 1.45rem); }
.hero-actions, .contact-links, .about-links { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.75rem 1.1rem; text-decoration: none; }
.button.primary { background: var(--ink); color: var(--paper); }
.button.text { padding-inline: 0.25rem; border-bottom: 1px solid var(--ink); }
.image-frame { position: relative; overflow: hidden; background: #ddd7cb; }
.image-frame img { height: 100%; object-fit: cover; transition: transform 700ms ease; }
.image-frame:hover img { transform: scale(1.015); }
.hero-image { height: min(72vh, 780px); position: relative; z-index: 1; }
.intro-hero {
  min-height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
.intro-hero .hero-image {
  order: 0;
  position: relative;
  inset: auto;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
  height: clamp(360px, 46vw, 680px);
  aspect-ratio: 16 / 9;
  z-index: 1;
}
.hero-feedback-ticker {
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -42%);
  z-index: 20;
  width: min(92%, 940px);
  max-width: calc(100% - (clamp(0.8rem, 2vw, 1.6rem) * 2));
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.18rem;
  overflow: visible;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 760ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-feedback-ticker.is-hidden {
  display: none !important;
}
.hero-feedback-ticker.is-active {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.hero-feedback-ticker::before {
  content: none;
  position: absolute;
  inset: -10px;
  pointer-events: none;
  background: radial-gradient(100% 100% at 50% 50%, rgba(8, 8, 8, 0.26) 0%, rgba(8, 8, 8, 0.08) 60%, rgba(8, 8, 8, 0) 100%);
  filter: blur(12px);
  z-index: 0;
}
.hero-feedback-ticker::after {
  content: none;
  position: absolute;
  inset: -14px;
  pointer-events: none;
  background: radial-gradient(100% 100% at 50% 50%, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.04) 58%, rgba(8, 8, 8, 0) 100%);
  filter: blur(14px);
  z-index: 0;
}
.hero-feedback-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Noto Serif", serif;
  font-size: clamp(1.05rem, 1.9vw, 1.9rem);
  line-height: 1.24;
  letter-spacing: 0.01em;
  min-height: 0;
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.92),
    0 14px 28px rgba(0, 0, 0, 0.84);
  opacity: 1;
  transition: opacity 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-feedback-quote.is-fading {
  opacity: 0;
}
.hero-feedback-author {
  position: relative;
  z-index: 1;
  margin: 0.45rem 0 0;
  width: 100%;
  text-align: center;
  font-size: clamp(0.76rem, 0.95vw, 0.9rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.86),
    0 9px 20px rgba(0, 0, 0, 0.74);
}
.intro-hero .hero-image::after { content: none; }
.intro-hero .hero-copy {
  max-width: 1040px;
  color: var(--paper);
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-46%) scale(0.97);
  z-index: 4;
  opacity: 0;
  transition: opacity 820ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 980ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.intro-hero .hero-copy.is-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.intro-hero .hero-copy.is-leaving {
  opacity: 0;
  transform: translateY(-58%) scale(0.985);
}
.intro-hero .hero-copy {
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 4rem);
  padding-right: clamp(1rem, 4vw, 4rem);
  text-align: center;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.92);
}
.intro-hero .eyebrow,
.intro-hero .hero-intro,
.intro-hero p {
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 5px 14px rgba(0, 0, 0, 0.96),
    0 20px 40px rgba(0, 0, 0, 0.9);
}
.intro-hero .eyebrow {
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
}
.intro-hero h1 {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
  line-height: 1.05;
  text-shadow:
    0 6px 16px rgba(0, 0, 0, 0.92),
    0 22px 46px rgba(0, 0, 0, 0.86);
}
.intro-hero .hero-intro {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.intro-hero p {
  max-width: 98ch;
  margin-left: auto;
  margin-right: auto;
}
.intro-hero .button.text { border-color: var(--paper); }

@media (orientation: portrait) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }
  .intro-hero .hero-image {
    height: clamp(280px, 38vh, 460px);
    aspect-ratio: 16 / 9;
  }
  .intro-hero .hero-copy {
    max-width: 100%;
    color: var(--paper);
    top: 50%;
  }
  .intro-hero h1 {
    max-width: 100%;
  }
  .intro-hero .button.text {
    border-color: var(--paper);
  }
}

.intro-context {
  min-height: auto;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.intro-context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
}

.intro-context-grid h2 {
  max-width: 680px;
}
.intro-context-grid p {
  max-width: 72ch;
}
.context-action {
  margin-top: 1.8rem;
}
.intro-page .method-section,
.intro-page .intro-section,
.intro-page .carousel-section,
.intro-page .formats-section,
.intro-page .motion-section,
.intro-page .invitation-section,
.intro-page .compact-about {
  min-height: auto;
}
.intro-page .section {
  min-height: auto;
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}
.intro-page .section-label {
  margin-bottom: 1.5rem;
}
.intro-text-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 4vw 0;
}
.intro-text-block p {
  max-width: 1100px;
  margin: 0 auto 1.2rem;
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}
.home-quote {
  min-height: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.home-quote-text {
  font-family: "Noto Serif", serif;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.explore-projects-prompt {
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  letter-spacing: 0.01em;
  text-align: center;
  margin: 0;
}
.evidence-section {
  min-height: auto;
}
.evidence-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 2rem;
  max-width: 980px;
}
.evidence-grid p {
  margin: 0;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
}
.feedback-section {
  min-height: auto;
}
.feedback-shell {
  margin-top: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 1.2rem;
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(8px);
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}
.feedback-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  grid-column: 1 / -1;
  padding: 0.75rem 0;
}
.feedback-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 12, 10, 0.36);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
}
.feedback-quote {
  margin: 0;
  color: var(--paper);
  font-family: "Noto Serif", serif;
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.35;
}
.feedback-meta {
  margin: 1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}
.feedback-open {
  margin-top: 2rem;
  padding-top: 1.8rem;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 960px;
}
.feedback-open h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  color: var(--paper);
}
.feedback-open-intro {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
}
.feedback-form {
  display: grid;
  gap: 0.9rem;
  max-width: 860px;
}
.feedback-field {
  display: grid;
  gap: 0.45rem;
}
.feedback-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.feedback-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.feedback-field-comment label {
  margin-bottom: 0.4rem;
}
.comment-box-frame {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.6rem;
}
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font: inherit;
  padding: 0.85rem 0.95rem;
}
.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 0;
}
.feedback-form input {
  min-height: 52px;
}
.feedback-form textarea {
  resize: vertical;
  min-height: 220px;
  border-width: 1px;
}
.feedback-form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}
.feedback-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.75rem;
}
.feedback-user-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 1.15rem;
}
.feedback-user-comment {
  margin: 0;
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 1.45;
}
.feedback-user-meta {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.feedback-delete-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 200ms, color 200ms;
}
.feedback-delete-btn:hover {
  border-color: rgba(255, 100, 80, 0.7);
  color: rgba(255, 120, 100, 0.9);
}
.section { min-height: 100vh; max-width: var(--max); margin: auto; padding: 8rem 4vw; border-top: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.section-label { margin-bottom: 2.5rem; }
.split-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.split-copy h2 { max-width: 720px; }
.practice-bleed { width: 100vw; max-width: none; aspect-ratio: 5 / 3; margin: 4rem 0 0 calc(50% - 50vw); }
.practice-bleed img { object-position: center 78%; }
.lead { font-size: clamp(1.2rem, 1.7vw, 1.55rem); line-height: 1.42; }

.motion-copy { max-width: 980px; margin-bottom: 2rem; }
.motion-feature {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #121212;
}
.motion-feature video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.motion-caption {
  display: block;
  padding: .95rem 1rem;
  color: var(--paper);
  background: #1a1a1a;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.method-card { background: var(--paper); min-height: 300px; padding: 2rem; display: flex; flex-direction: column; }
.method-card span { font-family: "Noto Serif", serif; font-size: 2.7rem; color: var(--muted); }
.method-card h3 { margin-top: auto; font-size: 1.4rem; }
.method-card p { color: var(--muted); margin-bottom: 0; }
.wide-image { height: min(72vw, 780px); margin-top: 4rem; }

.statement-section { padding-top: 5rem; padding-bottom: 5rem; }
.statement { max-width: 1100px; margin: auto; }
.statement p { font-family: "Noto Serif", serif; font-size: clamp(2rem, 4.8vw, 5rem); line-height: 1.05; letter-spacing: -0.025em; margin: 0; }

.section-heading-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-bottom: 4rem; }
.section-heading-row p { max-width: 620px; font-size: 1.2rem; }
.project-featured { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 5vw; align-items: center; margin-bottom: 7rem; }
.project-featured .project-image { min-height: 650px; }
.project-copy h3 { font-family: "Noto Serif", serif; font-size: clamp(2.3rem, 4vw, 4.8rem); font-weight: 400; line-height: 1; }
.project-copy p { color: var(--muted); }
.project-copy .tags { color: var(--ink); font-size: 0.85rem; margin-top: 2rem; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3vw; }
.project-card figure { height: 420px; margin: 0 0 1.5rem; }
.project-card h3 { font-family: "Noto Serif", serif; font-size: 2rem; font-weight: 400; margin-bottom: 0.75rem; }
.project-card p:last-child { color: var(--muted); }

.formats-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 8vw; }
.format-list article { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.format-list article:last-child { border-bottom: 1px solid var(--line); }
.format-list p { color: var(--muted); margin-bottom: 0; }
.audience-strip { margin-top: 5rem; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 0.7rem 2rem; font-family: "Noto Serif", serif; font-size: clamp(1.55rem, 3vw, 3.3rem); }

.practical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4vw; }
.practical-grid div { border-top: 1px solid var(--ink); padding-top: 1.2rem; }
.practical-grid p { color: var(--muted); }

.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.about-image { min-height: 680px; }
.about-copy .subtitle { font-size: 1.1rem; color: var(--muted); margin-top: -1.4rem; margin-bottom: 2.3rem; }
.about-links a { text-underline-offset: 4px; }

.contact-section { text-align: center; padding-top: 10rem; padding-bottom: 10rem; }
.contact-section h2 { max-width: 1050px; margin: 1rem auto 2.5rem; }
.contact-links { justify-content: center; }
.location { margin-top: 2.5rem; color: var(--muted); }
footer { max-width: var(--max); margin: auto; padding: 2rem 4vw; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 0.85rem; }
footer p { margin: 0; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 68px; max-height: calc(100vh - 68px); overflow-y: auto; padding: 1.25rem 4vw 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.9rem; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav a { font-size: 1rem; padding: 0.35rem 0; }
  .site-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-image { height: 60vh; }
  .split-copy, .section-heading-row, .formats-layout, .about-section { grid-template-columns: 1fr; }
  .intro-context-grid { grid-template-columns: 1fr; }
  .practice-bleed { aspect-ratio: 5 / 3; margin-top: 2.5rem; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .feedback-grid { grid-template-columns: 1fr; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured .project-image { min-height: 520px; }
  .project-grid { grid-template-columns: 1fr; gap: 5rem; }
  .project-card figure { height: 65vw; max-height: 650px; }
  .about-image { min-height: 70vw; }

  .intro-hero .hero-copy { max-width: 100%; }
  .intro-hero .hero-copy {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .intro-hero .hero-image {
    width: 100%;
    margin-right: 0;
    height: clamp(300px, 56vw, 500px);
    margin-left: 0;
  }
  .hero-feedback-ticker {
    width: min(90vw, 760px);
    min-height: 0;
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -42%);
  }
  .intro-hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 9vw, 4.6rem);
  }
}

@media (max-width: 620px) {
  :root {
    --intro-marquee-height: 28px;
  }
  .section { min-height: auto; padding-top: 4rem; padding-bottom: 4rem; }
  .page-intro, .project-page-intro, .project-detail { min-height: auto; }
  .hero, .intro-context, .home-quote, .statement-section, .contact-section { min-height: auto; }
  .site-header { min-height: 60px; padding: 0 4vw; }
  .site-nav { top: 60px; }
  .brand { max-width: 72vw; line-height: 1.1; }
  h1 { font-size: clamp(2.35rem, 12vw, 4.2rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 3rem); }
  .hero { min-height: auto; padding-bottom: 4rem; }
  .hero-copy { max-width: 100%; }
  .hero-intro { max-width: 100%; }
  .hero-actions, .contact-links, .about-links { width: 100%; gap: .75rem; }
  .hero-actions .button { width: 100%; }
  .hero-image { height: 44vh; }
  .intro-hero .hero-image {
    height: clamp(240px, 62vw, 360px);
    aspect-ratio: 16 / 10;
  }
  .intro-hero .hero-copy {
    top: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .intro-hero .eyebrow {
    font-size: clamp(0.72rem, 2.8vw, 0.84rem);
  }
  .intro-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.06;
  }
  .intro-hero .hero-intro {
    font-size: clamp(0.92rem, 3.8vw, 1.08rem);
  }
  .hero-feedback-quote {
    font-size: clamp(0.98rem, 4.1vw, 1.32rem);
    min-height: 0;
  }
  .hero-feedback-author {
    font-size: 0.85rem;
  }
  .hero-feedback-ticker {
    width: min(92vw, 620px);
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -42%);
  }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 220px; padding: 1rem; }
  .format-list article { grid-template-columns: 1fr; gap: 0.3rem; }
  .practical-grid { grid-template-columns: 1fr; gap: 3rem; }
  .project-featured .project-image { min-height: 420px; }
  .wide-image { height: 92vw; }
  .project-tiles-section { padding-top: 2.5rem; }
  .project-tile { padding: 1rem; }
  .project-tile-image { margin-bottom: .8rem; }
  .project-tile h2 { font-size: clamp(1.45rem, 8vw, 2.2rem); }
  .animations-grid-section { padding-top: 1.5rem; }
  .animation-card { padding: 1rem; }
  .animation-card h2 { font-size: clamp(1.45rem, 7vw, 2.1rem); }
  .animation-description { margin-top: .8rem; }
  .project-tiles-grid, .animations-grid, .collaboration-facts, .evidence-grid { grid-template-columns: 1fr; }
  .contact-page, .project-tiles-section, .animations-grid-section { padding-left: 4vw; padding-right: 4vw; }
  .contact-page { gap: 1.75rem; }
  .contact-page-image { aspect-ratio: 4 / 3; max-height: 420px; }
  .collaboration-facts p { padding: 0.75rem 0; }
  footer { flex-direction: column; gap: 0.6rem; }
  .footer-nav { gap: 0.7rem 1rem; }

  .booking-marquee-content {
    gap: 0.55rem;
    padding: 0.16rem 0.6rem;
  }
  .booking-marquee-link {
    min-height: 34px;
    padding: 0.3rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .section,
  .page-intro,
  .project-page-intro,
  .project-detail,
  .about-page,
  .contact-page,
  .project-tiles-section,
  .animations-grid-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-actions .button,
  .contact-links .button,
  .about-links .button {
    min-height: 44px;
  }

  .intro-hero .hero-image {
    height: clamp(220px, 58vw, 320px);
  }
  .intro-hero .hero-copy {
    top: 50%;
  }
}

/* Gdańsk workshop gallery */
.gdansk-project { margin: 5rem 0 7rem; }
.gdansk-heading { max-width: 760px; margin-bottom: 2.25rem; }
.gdansk-heading h3 {
  font-family: "Noto Serif", serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 0.98;
  font-weight: 400;
  margin: 0.4rem 0 1rem;
}
.gdansk-heading > p:last-child { max-width: 650px; color: var(--muted); }
.gdansk-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 1rem;
}
.gdansk-gallery figure { margin: 0; grid-column: span 4; grid-row: span 4; }
.gdansk-gallery figure.wide { grid-column: span 8; }
.gdansk-gallery figure.tall { grid-row: span 6; }
.gdansk-gallery img { width: 100%; height: 100%; object-fit: cover; }
.remaining-projects { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .gdansk-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .gdansk-gallery figure,
  .gdansk-gallery figure.wide,
  .gdansk-gallery figure.tall { grid-column: span 1; grid-row: span 1; }
  .gdansk-gallery figure:first-child,
  .gdansk-gallery figure:last-child { grid-column: 1 / -1; }
  .remaining-projects { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .gdansk-project { margin: 3.5rem 0 5rem; }
  .gdansk-gallery { grid-template-columns: 1fr; grid-auto-rows: 70vw; }
  .gdansk-gallery figure,
  .gdansk-gallery figure.wide,
  .gdansk-gallery figure.tall,
  .gdansk-gallery figure:first-child,
  .gdansk-gallery figure:last-child { grid-column: 1; }
}

/* Multi-page navigation */
.site-nav a.active { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.footer-nav a { text-decoration: none; }
.center-action { display: flex; justify-content: center; margin-top: 3.5rem; }

/* Introduction carousel */
.carousel-section { overflow: hidden; }
.carousel-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.carousel-heading h2 { max-width: 900px; margin-bottom: 0; }
.carousel-controls { display: flex; gap: .6rem; flex: 0 0 auto; }
.carousel-button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--ink); background: transparent; color: var(--ink); font: inherit; font-size: 1.25rem; cursor: pointer; }
.carousel-button:hover { background: var(--ink); color: var(--paper); }
.project-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(310px, 42vw); gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: .25rem; }
.project-carousel::-webkit-scrollbar { display: none; }
.method-carousel figure { margin: 0; }
.carousel-slide { position: relative; height: min(68vh, 720px); scroll-snap-align: start; overflow: hidden; color: white; text-decoration: none; background: #222; }
.carousel-slide::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.carousel-slide:hover img { transform: scale(1.025); }
.carousel-slide span { position: absolute; z-index: 2; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; display: flex; flex-direction: column; }
.carousel-slide strong { font-family: "Noto Serif", serif; font-size: clamp(1.7rem, 3vw, 3rem); font-weight: 400; line-height: 1; }
.carousel-slide small { margin-top: .5rem; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; }
.carousel-progress { height: 2px; margin-top: 1.5rem; background: var(--line); }
.carousel-progress span { display: block; width: 20%; height: 100%; background: var(--ink); transform-origin: left; transition: transform .2s ease; }
.compact-about { padding-bottom: 7rem; }

/* Project pages */
.page-intro { min-height: 100vh; max-width: var(--max); margin: auto; padding: 9rem 4vw 7rem; display: flex; flex-direction: column; justify-content: center; }
.page-intro h1 { margin: .7rem 0 1.5rem; }
.page-lead { max-width: 950px; font-size: clamp(1.25rem, 2.1vw, 2rem); line-height: 1.35; }
.projects-page .page-intro {
  min-height: auto;
  padding-top: 7rem;
  padding-bottom: 2.2rem;
  justify-content: flex-start;
}
.project-tiles-section {
  min-height: auto;
  padding-top: 3.5rem;
}
.projects-page .project-tiles-section {
  padding-top: 1.1rem;
}
.project-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.project-tile {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 1.15rem;
  background: var(--paper);
}
.project-tile-image {
  margin: 0 0 1rem;
  aspect-ratio: 16 / 10;
}
.project-tile h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
  line-height: 1.02;
  margin: 0.6rem 0 0.9rem;
}
.project-tile p {
  margin-bottom: 0;
}
.project-tile:hover .project-tile-image img {
  transform: scale(1.02);
}
.project-page-intro {
  min-height: auto;
  padding-bottom: 4rem;
}
.project-detail { min-height: 100vh; scroll-margin-top: 80px; }
.projects-page .project-detail {
  border-top-color: rgba(21, 21, 18, 0.5);
}
.projects-page .project-detail + .project-detail {
  margin-top: 2.5rem;
}
.alt-section { background: rgba(255,255,255,.2); max-width: none; padding-left: max(4vw, calc((100vw - var(--max))/2 + 4vw)); padding-right: max(4vw, calc((100vw - var(--max))/2 + 4vw)); }
.project-title-block { max-width: 900px; margin-bottom: 4rem; }
.subsection-intro-gap {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--ink);
  margin-left: clamp(0.6rem, 1.8vw, 1.8rem);
  padding-left: clamp(0.9rem, 2.2vw, 1.8rem);
  border-left: 1px solid var(--line);
}
.labs-subprojects-label {
  margin-top: 4.5rem;
  margin-bottom: 0.9rem;
}
.project-detail > h3 {
  margin-top: 4.5rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--ink);
}
.project-title-block h2 { margin: .7rem 0 1.7rem; }
.project-title-block > p:not(.project-meta) { font-size: 1rem; line-height: 1.55; }
.project-title-block > p:not(.project-meta):not(.lead) { max-width: 720px; color: var(--muted); }
.outputs-list {
  margin: 0 0 2.5rem;
  padding-left: 1.2rem;
  max-width: 720px;
}
.outputs-list li { margin: .35rem 0; }
.project-sequence {
  margin: 0 0 2.25rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem 1.4rem;
}
.project-sequence li { margin-left: 1rem; }
.collective-animation-block {
  margin-top: 2.6rem;
  padding: 2rem;
  border: 1px solid var(--line);
}
.collective-animation-block h3 {
  font-family: "Noto Serif", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.collective-animation-block p { max-width: 900px; color: var(--muted); }
#yellow-chair h3 {
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 0.7rem 0 1.7rem;
}
.project-animation-frame { margin: 1.6rem 0 1rem; background: #111; }
.project-animation-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.pigment-futures-media {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.project-animation-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.project-credit {
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .72rem;
  color: var(--muted);
}
.editorial-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 1rem; }
.editorial-gallery figure { margin: 0; grid-column: span 4; grid-row: span 4; }
.editorial-gallery .hero-cell { grid-column: span 8; grid-row: span 7; }
.editorial-gallery .wide-cell { grid-column: span 8; }
.zine-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.zine-grid figure { margin: 0; min-height: 560px; }
.zine-grid .wide-cell { min-height: 420px; }
.two-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.two-image-grid figure { margin: 0; min-height: 650px; }

/* Contact page */
.contact-page { min-height: calc(100vh - 68px); max-width: 1320px; margin: auto; padding: 5vw 4vw 6vw; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.contact-page-copy { max-width: 1040px; }
.contact-page h1 {
  font-size: clamp(1.95rem, 3.7vw, 4rem);
  line-height: 1.05;
  margin: 0.7rem 0 1rem;
  color: var(--paper);
  white-space: normal;
  overflow-wrap: anywhere;
  max-width: 24ch;
}
.contact-page-image {
  position: relative;
  margin: 0;
  min-height: clamp(440px, 70vh, 820px);
  aspect-ratio: 16 / 9;
  max-height: none;
}
.contact-page-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 15, 13, 0.78) 0%, rgba(15, 15, 13, 0.46) 42%, rgba(15, 15, 13, 0.15) 100%);
}
.contact-hero-overlay {
  position: absolute;
  left: clamp(1.2rem, 3vw, 3rem);
  right: clamp(1.2rem, 3vw, 3rem);
  bottom: clamp(1.2rem, 3vw, 3rem);
  z-index: 2;
  width: auto;
  max-width: none;
  padding: clamp(1.2rem, 2.2vw, 2rem);
  background: rgba(12, 12, 10, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}
.contact-hero-overlay .eyebrow,
.contact-hero-overlay .page-lead,
.contact-hero-overlay .collaboration-short,
.contact-hero-overlay .contact-stack span,
.contact-hero-overlay .contact-stack strong {
  color: var(--paper);
}
.contact-hero-overlay .page-lead {
  max-width: 62ch;
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
}

.collaboration-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin-top: 1rem;
}
.collaboration-facts p {
  margin: 0;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}
.contact-stack { margin-top: 1.5rem; border-top: 1px solid currentColor; }
.contact-stack a {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}
.contact-stack span { color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 600; }
.contact-stack strong { text-align: right; font-weight: 600; font-size: clamp(1.05rem, 1.7vw, 1.4rem); }
.collaboration-short { max-width: 760px; color: var(--ink); margin-top: 0; margin-bottom: 0; font-size: 1.05rem; }

@media (max-width: 620px) {
  .contact-page-image {
    min-height: clamp(320px, 110vw, 520px);
    aspect-ratio: 3 / 4;
  }
  .contact-hero-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }
  .contact-page h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .contact-hero-overlay .page-lead {
    font-size: 0.92rem;
  }
  .contact-stack strong {
    font-size: 0.85rem;
    text-align: left;
  }
  .contact-stack a {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem 0;
  }
}

.about-page {
  min-height: calc(100vh - 68px);
  max-width: 1160px;
  margin: auto;
  padding: 6vw 5vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  isolation: isolate;
}
.about-page-image {
  margin: 0;
  aspect-ratio: 16 / 10;
  min-height: clamp(320px, 42vw, 620px);
  z-index: 1;
}
.about-page-image img {
  height: 100%;
  object-fit: cover;
}
.about-page-copy {
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.about-page-below { grid-column: 1 / -1; }
.about-page h1 { font-size: clamp(3rem, 5.2vw, 6rem); margin: 1rem 0 1.6rem; }
.bio-text p { max-width: 72ch; margin-bottom: 1.15rem; }
.bio-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

.invitation-section {
  padding-top: 3.75rem;
}
.invitation-hero {
  position: relative;
  margin: 0;
  min-height: clamp(420px, 62vh, 760px);
  aspect-ratio: 16 / 9;
}
.invitation-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.6) 46%, rgba(10, 10, 10, 0.28) 100%);
}
.invitation-copy {
  position: absolute;
  left: clamp(1rem, 3.2vw, 3rem);
  right: clamp(1rem, 3.2vw, 3rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  z-index: 2;
  max-width: 820px;
  padding: clamp(1rem, 1.9vw, 1.8rem);
  background: rgba(8, 8, 8, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}
.invitation-copy .section-label,
.invitation-copy h2,
.invitation-copy p,
.invitation-copy .button.text {
  color: var(--paper);
}
.invitation-copy h2 {
  margin: 0.45rem 0 0.9rem;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
}
.invitation-copy p {
  max-width: 58ch;
  margin-bottom: 0;
  font-size: clamp(1.06rem, 1.5vw, 1.32rem);
}
.invitation-copy .hero-actions {
  margin-top: 1.5rem;
}
.invitation-copy .button.primary {
  background: #111111;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.invitation-copy .button.text {
  border-color: rgba(255, 255, 255, 0.86);
}
.invitation-question { margin-top: 1.8rem; }

/* Animations page */
.animations-intro { min-height: auto; padding-bottom: 3rem; }
.animations-grid-section { padding-top: 2rem; }
.animations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.animation-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
  background: var(--paper);
}
.animation-meta {
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .8rem;
}
.animation-card h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  margin-bottom: 1.2rem;
}
.animation-video-frame {
  margin: 0;
  background: #111;
}
.animation-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.animation-description {
  margin: 1rem 0 0;
  color: var(--muted);
}
.archive-card {
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease;
}
.archive-card:hover { transform: translateY(-4px); }
.archive-link-text {
  display: inline-block;
  margin: .9rem 0 0;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 980px) {
  .carousel-heading { align-items: flex-start; }
  .project-carousel { grid-auto-columns: minmax(300px, 72vw); }
  .invitation-hero { min-height: 520px; }
  .invitation-copy { max-width: none; }
  .contact-page { grid-template-columns: 1fr; padding-top: 5rem; }
  .contact-page h1 { white-space: normal; }
  .contact-page-image { min-height: 520px; }
  .contact-hero-overlay { right: 1rem; left: 1rem; bottom: 1rem; max-width: none; }
  .about-page { grid-template-columns: 1fr; padding-top: 5rem; }
  .about-page-image { order: -1; aspect-ratio: 16 / 10; min-height: clamp(300px, 58vw, 520px); }
  .collaboration-facts { grid-template-columns: 1fr; }
  .editorial-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
  .editorial-gallery figure, .editorial-gallery .hero-cell, .editorial-gallery .wide-cell { grid-column: span 1; grid-row: span 1; }
  .editorial-gallery .hero-cell, .editorial-gallery .wide-cell { grid-column: 1 / -1; }
  .zine-grid figure { min-height: 480px; }
  .two-image-grid { grid-template-columns: 1fr; }
  .two-image-grid figure { min-height: 70vw; }
  .animations-grid { grid-template-columns: 1fr; }
  .project-sequence { grid-template-columns: 1fr; }
  .project-tiles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .carousel-heading { flex-direction: column; align-items: stretch; }
  .carousel-controls { align-self: flex-end; }
  .project-carousel { grid-auto-columns: 86vw; }
  .carousel-slide { height: 68vh; }
  .page-intro { padding-top: 6rem; padding-bottom: 4rem; }
  .invitation-hero {
    min-height: 66vh;
  }
  .invitation-copy {
    padding: 1rem;
    background: rgba(10, 10, 9, 0.52);
  }
  .invitation-copy h2 {
    font-size: clamp(1.9rem, 9.5vw, 3.2rem);
  }
  .editorial-gallery { grid-template-columns: 1fr; grid-auto-rows: 105vw; }
  .editorial-gallery figure, .editorial-gallery .hero-cell, .editorial-gallery .wide-cell { grid-column: 1; }
  .zine-grid { grid-template-columns: 1fr; }
  .zine-grid figure, .zine-grid .wide-cell { min-height: 110vw; }
  .about-page { padding: 4rem 4vw; }
  .contact-page { padding: 4rem 4vw; }
  .contact-page-image {
    min-height: clamp(360px, 62vh, 540px);
    aspect-ratio: 4 / 5;
  }
  .contact-page h1 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.08;
    margin: 0.45rem 0 0.75rem;
  }
  .contact-hero-overlay {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.85rem;
    background: rgba(12, 12, 10, 0.6);
  }
  .contact-hero-overlay .page-lead {
    font-size: clamp(0.92rem, 3.8vw, 1.06rem);
  }
  .contact-stack {
    margin-top: 1rem;
  }
  .contact-stack a {
    padding: 0.85rem 0;
  }
  .contact-stack strong {
    font-size: clamp(0.95rem, 4.5vw, 1.12rem);
  }
  .contact-stack a { flex-direction: column; gap: .3rem; }
  .contact-stack strong { text-align: left; word-break: break-word; }
  .feedback-open {
    padding-left: 0;
    padding-right: 0;
  }
  .feedback-field-row {
    grid-template-columns: 1fr;
  }
  .feedback-shell {
    padding: 0.9rem;
  }
  .feedback-form textarea {
    min-height: 180px;
  }
}

.intro-hero .hero-image img {
  object-fit: cover;
  object-position: center;
  background: transparent;
}
.method-grid-expanded { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; background: transparent; border: 0; }
.method-grid-expanded .method-card {
  min-height: 315px;
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  position: relative;
  overflow: visible;
}
.method-illustration {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.1rem;
  opacity: .96;
}
.method-grid-expanded .method-card span { font-size: 1.5rem; }
.method-grid-expanded .method-card h3 { margin-top: 0.45rem; font-family: "Noto Serif", serif; font-size: clamp(1.35rem, 2vw, 1.95rem); font-weight: 400; }
.method-grid-expanded .method-card p { max-width: 650px; }
.method-grid-expanded .method-card:nth-child(2) .method-illustration { object-position: center 35%; }
.method-section .method-card {
  min-height: 300px;
  box-shadow: none;
}
.method-section .method-card h3 {
  margin-top: 0.6rem;
}
.formats-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; margin-bottom: 4rem; }
.formats-intro h2 { max-width: 650px; }
.format-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.format-card {
  min-height: 340px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.format-time { text-transform: uppercase; letter-spacing: .11em; font-size: .7rem; font-weight: 600; color: var(--muted); }
.format-card h3 { font-family: "Noto Serif", serif; font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; margin: 2rem 0 1.2rem; max-width: 85%; }
.format-card > p:last-child { color: var(--muted); max-width: 90%; position: relative; z-index: 1; }
.yellow-chair-gallery .hero-cell img { object-position: center; }

@media (max-width: 980px) {
  .formats-intro { grid-template-columns: 1fr; }
  .method-grid-expanded { grid-template-columns: repeat(2, 1fr); }
  .format-card-grid { grid-template-columns: 1fr; }
  .home-quote-image {
    aspect-ratio: 4 / 3;
  }
  .evidence-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .method-grid-expanded { grid-template-columns: 1fr; }
  .method-grid-expanded .method-card, .format-card { min-height: auto; }
  .method-illustration { height: 150px; }
}

@media (min-width: 981px) {
  body {
    background: #0f0f0e;
    color: var(--paper);
  }

  .site-header {
    background: rgba(12, 12, 10, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .brand,
  .site-nav a,
  .menu-toggle,
  .site-nav a.active,
  .footer-nav a,
  footer p {
    color: var(--paper);
  }

  .booking-marquee {
    background: rgba(12, 12, 10, 0.96);
    color: var(--paper);
  }

  .booking-marquee-chip {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.44);
    color: var(--paper);
  }

  .section,
  .page-intro,
  .project-page-intro,
  .project-detail,
  .about-page,
  .contact-page,
  .intro-text-block,
  .intro-context,
  .home-quote {
    background: #0f0f0e;
    border-top-color: rgba(255, 255, 255, 0.16);
  }

  .project-tile,
  .animation-card,
  .format-card,
  .feedback-shell,
  .feedback-card,
  .feedback-user-card,
  .project-sequence,
  .collective-animation-block,
  .contact-hero-overlay,
  .invitation-copy,
  .motion-feature {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .motion-caption {
    background: rgba(255, 255, 255, 0.08);
    color: var(--paper);
  }

  p,
  .lead,
  .hero-intro,
  .project-copy p,
  .format-list p,
  .practical-grid p,
  .project-title-block > p:not(.project-meta):not(.lead),
  .location,
  .about-copy .subtitle,
  .animation-description,
  .project-credit,
  .contact-stack span {
    color: rgba(243, 242, 238, 0.86);
  }

  .method-card {
    background: rgba(255, 255, 255, 0.04);
  }

  .button.primary {
    background: var(--paper);
    color: #0f0f0e;
  }

  .button.text {
    border-color: rgba(255, 255, 255, 0.78);
  }

  .collaboration-facts p,
  .contact-stack,
  .contact-stack a,
  .project-tile,
  .method-grid,
  .format-list article,
  .format-list article:last-child,
  .audience-strip,
  footer {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
