:root {
  --paper: #f1f0eb;
  --paper-deep: #e2e0d8;
  --ink: #151916;
  --muted: #626761;
  --line: #c3c4bd;
  --accent: #2f5c55;
  --accent-deep: #1c3f3b;
  --blue: #213c4b;
  --charcoal: #111715;
  --white: #f8f7f2;
  --page-pad: clamp(1.25rem, 4vw, 4.75rem);
  --serif: "Questrial", Arial, Helvetica, sans-serif;
  --sans: "Questrial", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body, button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, input, textarea { border-radius: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #f3a712;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 1rem;
  transform: translateY(-120%);
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus { transform: translateY(0); }
.page-shell { width: min(100%, 100rem); margin-inline: auto; padding-inline: var(--page-pad); }

.site-header {
  position: relative;
  z-index: 100;
  display: flex;
  min-height: 6.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 240, 235, .96);
}

.brand { display: inline-flex; align-items: center; gap: .8rem; line-height: 1; }
.brand-mark { display: grid; width: 4.05rem; height: 4.05rem; place-items: center; border: 1px solid currentColor; font-size: 1.28rem; font-weight: 700; letter-spacing: -.03em; }
.brand-name { font-size: 1.11rem; font-weight: 700; line-height: 1.05; letter-spacing: .1em; text-transform: uppercase; }
.brand-name em { font-family: var(--serif); font-weight: 400; letter-spacing: 0; text-transform: none; }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.8rem); }
.primary-nav a { position: relative; padding-block: .5rem; font-size: 1.17rem; letter-spacing: .1em; text-transform: uppercase; }
.primary-nav a::after { position: absolute; right: 0; bottom: .15rem; left: 0; height: 1px; content: ""; transform: scaleX(0); transform-origin: left; background: currentColor; transition: transform 180ms ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; text-transform: uppercase; letter-spacing: .12em; }

/* On the home route the header floats over the full-bleed hero video
   instead of pushing it down, so the video reaches the very top of the
   viewport. A gradient (not a solid fill) keeps the logo and nav legible
   against whatever the video is showing without hiding the footage. */
.site-header.dark-header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  border-bottom: none;
  background: linear-gradient(to bottom, rgba(8, 12, 11, .7) 0%, rgba(8, 12, 11, .38) 60%, rgba(8, 12, 11, 0) 100%);
  color: var(--white);
}
.site-header.dark-header .brand-mark { border-color: var(--white); }
.site-header.dark-header .primary-nav a::after { background: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.hero-video, .hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video video { object-fit: cover; background: #0c100f; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: rgba(8, 12, 11, .32); pointer-events: none; }
.hero-copy { position: relative; z-index: 2; display: flex; min-height: 100svh; flex-direction: column; justify-content: space-between; padding: clamp(6.5rem, 11vw, 9rem) var(--page-pad) clamp(5.25rem, 7vw, 7rem); pointer-events: none; }
.hero-copy h1 { max-width: 13ch; margin: auto 0; font-family: var(--serif); font-size: clamp(3.4rem, 8.5vw, 9rem); font-weight: 400; line-height: .85; letter-spacing: -.065em; }
.hero-copy h1 em { color: #c2d0cb; font-weight: 400; }
.hero-foot { display: grid; grid-template-columns: minmax(14rem, 25rem) minmax(18rem, 31rem); justify-content: space-between; align-items: end; gap: 2rem; }
.hero-foot > p:first-child { margin: 0; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.25; }
.attribution { margin: 0; color: rgba(248, 247, 242, .78); font-size: .82rem; line-height: 1.45; }
.eyebrow, .section-index { margin: 0 0 1rem; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: rgba(248, 247, 242, .74); }

/* Clip buttons sit bottom-left, listed in exactly the order the sequence
   plays, with the running clip marked. They are the sequence's controls and
   its legend at the same time. */
.clip-controls { position: absolute; z-index: 5; bottom: 1.4rem; left: var(--page-pad); display: flex; flex-wrap: wrap; gap: .35rem; }
.clip-controls button { padding: .48rem .7rem; border: 1px solid rgba(255,255,255,.6); background: rgba(12,16,15,.72); color: #fff; cursor: pointer; font-size: .72rem; letter-spacing: .06em; transition: background 160ms ease, color 160ms ease; }
.clip-controls button:hover { background: rgba(255,255,255,.9); color: var(--ink); }
.clip-controls button[aria-current="true"] { background: var(--white); color: var(--ink); }
.autoplay-label { position: absolute; z-index: 4; top: 7.5rem; right: var(--page-pad); padding: .35rem .5rem; background: rgba(12,16,15,.6); color: #fff; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }

.ruled-section { display: grid; grid-template-columns: .45fr 2.1fr 1fr; gap: clamp(1.5rem, 4vw, 5rem); padding-block: clamp(5rem, 9vw, 9rem); border-bottom: 1px solid var(--line); }
.practice-statement h2 { max-width: 18ch; margin: 0; font-family: var(--serif); font-size: clamp(2.15rem, 4vw, 4.6rem); font-weight: 400; line-height: 1.03; letter-spacing: -.035em; }
.practice-statement > p:last-child { max-width: 31rem; margin: .4rem 0 0; color: var(--muted); }
.selected-work, .news-strip { padding-block: clamp(5rem, 9vw, 9rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 6.8rem); font-weight: 400; line-height: .95; letter-spacing: -.05em; }
.section-heading.compact h2 { font-size: clamp(2.5rem, 4.5vw, 4.8rem); }
.text-link, .source-link { display: inline-flex; align-items: center; gap: .6rem; padding-bottom: .3rem; border-bottom: 1px solid currentColor; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.project-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.project-tile { min-height: 25rem; }
.project-tile.wide { grid-column: span 7; }
.project-tile.narrow { grid-column: span 5; }
.project-tile.tall { grid-column: span 5; min-height: 34rem; }
.project-tile a { display: grid; height: 100%; grid-template-rows: 1fr auto; }
.tile-visual { position: relative; min-height: 18rem; overflow: hidden; background: var(--paper-deep); }
.tile-visual > span { position: absolute; top: 1rem; left: 1rem; z-index: 1; font-family: var(--serif); font-size: 4rem; line-height: 1; opacity: .5; }
.tile-visual i { position: absolute; inset: 24% 13% -15% 37%; border: 1px solid currentColor; transform: skewY(-9deg); opacity: .35; transition: transform 260ms ease; }
.project-tile a:hover .tile-visual i { transform: skewY(-9deg) translate(-5%, -3%); }
.tile-copy { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.tile-copy p { margin: 0; color: var(--muted); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.tile-copy h3 { grid-column: 1 / -1; margin: .3rem 0; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.05; }
.placeholder-label { grid-column: 1 / -1; color: var(--muted); font-size: .7rem; }
.tone-dark .tile-visual, .tone-dark.project-placeholder, .tone-dark.video-surface { background: #171c1a; color: #d9ddd7; }
.tone-stone .tile-visual, .tone-stone.project-placeholder, .tone-stone.video-surface { background: #b9b4a7; color: #343732; }
.tone-green .tile-visual, .tone-green.project-placeholder, .tone-green.video-surface { background: var(--accent); color: #d9e1dd; }
.tone-chalk .tile-visual, .tone-chalk.project-placeholder { background: #deddd4; color: #5e615b; }
.tone-blue .tile-visual, .tone-blue.project-placeholder { background: var(--blue); color: #d6e0e4; }
.tone-graphite .tile-visual, .tone-graphite.project-placeholder { background: #414641; color: #dcdfda; }

.news-strip { border-top: 1px solid var(--line); }
.news-list { border-top: 1px solid var(--ink); }
.news-item { display: grid; grid-template-columns: 8rem 12rem 1fr auto; align-items: start; gap: 1.5rem; padding-block: 1.5rem; border-bottom: 1px solid var(--line); }
.news-item time, .news-item > p { margin: .35rem 0 0; color: var(--muted); font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; }
.news-item h2, .news-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 2rem); font-weight: 400; line-height: 1.2; }
.news-item h2 a:hover, .news-item h3 a:hover { color: var(--accent); }
.closing-invitation { padding-block: clamp(5rem, 9vw, 8rem); background: var(--accent-deep); color: var(--white); }
.closing-invitation .page-shell { display: grid; grid-template-columns: .6fr 2fr auto; align-items: end; gap: 2rem; }
.closing-invitation h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; line-height: .9; }
.outline-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.2rem; border: 1px solid currentColor; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.outline-link:hover { background: var(--white); color: var(--ink); }

/* ---------------------------------------------------------------------
   Home page carousels (News, Highlight Projects). The track is rendered
   twice back-to-back and animated from 0 to -50%, which loops seamlessly
   since the visible content repeats exactly halfway through. Hovering (or
   focusing) pauses it so a visitor can actually read/click a card, and
   prefers-reduced-motion turns it into a plain manually-scrollable strip
   with nothing duplicated visually hidden from view. */
.news-strip, .highlight-projects { padding-block: clamp(4rem, 8vw, 7rem); border-top: 1px solid var(--line); }
.carousel { overflow: hidden; }
.carousel-track { display: flex; width: max-content; animation: carousel-scroll 52s linear infinite; }
.carousel:hover .carousel-track, .carousel:focus-within .carousel-track { animation-play-state: paused; }
.carousel-set { display: flex; flex-shrink: 0; gap: clamp(1.2rem, 2vw, 2rem); padding-right: clamp(1.2rem, 2vw, 2rem); }
@keyframes carousel-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.carousel-card { display: flex; flex-direction: column; width: clamp(16rem, 24vw, 22rem); }
.carousel-card-visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-deep); }
.carousel-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.carousel-card:hover .carousel-card-visual img { transform: scale(1.04); }
.carousel-card-visual .placeholder-label { position: absolute; inset: 0; display: grid; place-items: center; padding: 0 1rem; text-align: center; }
.carousel-card-copy { padding-top: .9rem; border-top: 1px solid var(--line); }
/* Reserve two lines for the meta row so every card's title starts on the same
   baseline, whether its typology/location wraps or not. */
.carousel-card-copy time, .carousel-card-copy p { display: block; min-height: 2.7em; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.35; letter-spacing: .07em; text-transform: uppercase; }
.carousel-card-copy h3 { margin: .3rem 0 0; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; line-height: 1.15; }
.carousel-card:hover .carousel-card-copy h3 { color: var(--accent); }
.highlight-card .carousel-card-visual { aspect-ratio: 3 / 4; }

/* Three children to match .ruled-section's three columns: index, statement,
   aside. Wrapping the aside's copy and link together keeps the statement in
   the wide middle column instead of being pushed into the narrow first one. */
.vision-band h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 3.2rem); font-weight: 400; line-height: 1.14; letter-spacing: -.02em; }
.vision-aside { display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
.vision-aside p { max-width: 24rem; margin: 0; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; overflow-x: auto; scrollbar-width: thin; }
  .carousel-set[aria-hidden="true"] { display: none; }
}
.outline-link.dark:hover { background: var(--ink); color: var(--white); }

.inner-page { padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: clamp(6rem, 10vw, 10rem); }
.page-intro { display: grid; grid-template-columns: .55fr 1.7fr 1fr; gap: clamp(1.5rem, 4vw, 5rem); align-items: end; padding-bottom: clamp(4rem, 8vw, 8rem); border-bottom: 1px solid var(--ink); }
.page-intro h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.5rem, 11vw, 11rem); font-weight: 400; line-height: .74; letter-spacing: -.07em; }
.page-intro > p:last-child { max-width: 30rem; margin: 0; color: var(--muted); }
.work-entry { padding-block: clamp(3.5rem, 7vw, 7rem); border-bottom: 1px solid var(--line); scroll-margin-top: 2rem; }
.work-entry header { display: grid; grid-template-columns: .35fr 2fr; gap: 2rem; align-items: start; margin-bottom: 2.5rem; }
.work-entry h2 { max-width: 20ch; margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5.5vw, 6.2rem); font-weight: 400; line-height: .94; letter-spacing: -.045em; }
.work-number { margin: .5rem 0 0; color: var(--muted); font-size: .78rem; }
.project-meta { margin: 1rem 0 0; color: var(--muted); font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; }
.work-body { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(17rem, .65fr); gap: clamp(2rem, 5vw, 6rem); align-items: end; }
.project-video, .project-placeholder { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.project-video video { width: 100%; height: 100%; object-fit: cover; background: #0c100f; }
.project-placeholder { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding: 1.5rem; }
.project-placeholder > span { align-self: flex-start; font-family: var(--serif); font-size: clamp(4rem, 9vw, 9rem); line-height: 1; opacity: .45; }
.project-placeholder p { margin: 0; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.project-placeholder strong { display: block; max-width: 14rem; margin-top: .4rem; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1.15; }
.work-copy p { margin: 0 0 2rem; color: var(--muted); }
.source-link { font-size: .7rem; }

.source-status { display: flex; align-items: center; gap: .65rem; margin: 2rem 0 5rem; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.source-status span { width: .55rem; height: .55rem; background: var(--accent); }
.full-list .news-item { grid-template-columns: 8rem 13rem 1fr auto; padding-block: clamp(1.8rem, 4vw, 3.4rem); }
.full-list .news-item h2, .full-list .news-item h3 { font-size: clamp(1.65rem, 3.4vw, 3.4rem); }
.source-note { max-width: 48rem; margin: 2rem 0 0 auto; color: var(--muted); font-size: .82rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(3rem, 8vw, 9rem); padding-block: clamp(4rem, 8vw, 8rem); }
.about-statement { max-width: 42rem; }
.lead { margin-top: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 3.3rem); line-height: 1.08; letter-spacing: -.025em; }
.about-statement > p:not(.lead), .contact-aside > p:not(.lead) { max-width: 37rem; color: var(--muted); }
.discipline-field { position: relative; min-height: 38rem; margin: 0; overflow: hidden; background: var(--accent-deep); color: #d8e0dc; }
.discipline-field::before, .discipline-field::after { position: absolute; content: ""; border: 1px solid rgba(255,255,255,.2); }
.discipline-field::before { inset: 12% 14% -20% 34%; transform: skewY(-7deg); }
.discipline-field::after { top: 36%; right: -10%; left: -15%; height: 1px; border-width: 1px 0 0; transform: rotate(-7deg); }
.field-word { position: absolute; z-index: 1; font-family: var(--serif); font-size: clamp(2rem, 4.6vw, 5.2rem); line-height: 1; }
.word-1 { top: 11%; left: 8%; }
.word-2 { top: 34%; right: 10%; }
.word-3 { bottom: 28%; left: 14%; }
.word-4 { right: 8%; bottom: 10%; }
.discipline-field figcaption { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; z-index: 2; padding-top: .65rem; border-top: 1px solid rgba(255,255,255,.35); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.values-grid article { min-height: 20rem; padding: 1.5rem; border-right: 1px solid var(--line); }
.values-grid article:last-child { border-right: 0; }
.values-grid span { color: var(--muted); font-size: .75rem; }
.values-grid h2 { margin: 4rem 0 1rem; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 400; }
.values-grid p { max-width: 20rem; color: var(--muted); }

.verification-note { display: grid; grid-template-columns: .65fr 1.35fr; gap: 2rem; max-width: 64rem; margin: 3rem 0 clamp(4rem, 7vw, 7rem) auto; padding: 1.5rem; border-left: 4px solid var(--accent); background: var(--paper-deep); }
.verification-note p { margin: 0; }
.verification-note p:last-child { color: var(--muted); }
.team-structure { border-top: 1px solid var(--ink); }
.team-structure article { display: grid; grid-template-columns: .3fr 1fr .8fr; gap: 2rem; align-items: start; padding-block: clamp(2rem, 4vw, 3.5rem); border-bottom: 1px solid var(--line); }
.team-structure article > span { color: var(--muted); font-size: .76rem; }
.team-structure h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 4.8rem); font-weight: 400; line-height: 1; }
.team-structure article div p, .pending { margin: .7rem 0 0; color: var(--muted); }
.pending { font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); padding-top: clamp(4rem, 8vw, 8rem); }
.concept-form { border-top: 1px solid var(--ink); }
.field-row { display: grid; grid-template-columns: 8rem 1fr; align-items: start; border-bottom: 1px solid var(--line); }
.field-row label { padding: 1.2rem 1rem 1rem 0; color: var(--muted); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.field-row input, .field-row textarea { width: 100%; padding: 1rem 0; border: 0; background: transparent; color: var(--ink); font-size: 1rem; resize: vertical; }
.field-row input:focus, .field-row textarea:focus { outline: 0; box-shadow: inset 0 -2px var(--accent); }
.concept-form > button { width: 100%; margin-top: 1.5rem; padding: 1rem; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; text-align: left; text-transform: uppercase; letter-spacing: .1em; }
.concept-form > button:hover { background: var(--ink); color: var(--white); }
.form-status { color: var(--muted); font-size: .78rem; }
.not-found { min-height: 70svh; padding-top: 8rem; padding-bottom: 8rem; }
.not-found h1 { max-width: 12ch; margin: 0 0 2rem; font-family: var(--serif); font-size: clamp(3.4rem, 8vw, 8rem); font-weight: 400; line-height: .92; }
.not-found > p:not(.section-index) { max-width: 34rem; color: var(--muted); }
.not-found .outline-link { margin-top: 2rem; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 2rem; padding: 2.5rem var(--page-pad); border-top: 1px solid var(--line); background: var(--paper); }
.footer-brand { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand span { display: block; font-family: var(--serif); font-weight: 400; letter-spacing: 0; text-transform: none; }
.site-footer nav { display: grid; grid-template-columns: repeat(3, auto); gap: .3rem 1rem; justify-content: start; }
.site-footer nav a { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer > p { max-width: 35rem; margin: 0; color: var(--muted); font-size: .74rem; }
.no-script { padding: 4rem; }

@media (max-width: 900px) {
  .ruled-section, .page-intro { grid-template-columns: .45fr 1.55fr; }
  .ruled-section > p:last-child, .page-intro > p:last-child { grid-column: 2; }
  .work-body { grid-template-columns: 1fr; }
  .work-copy { max-width: 36rem; margin-left: auto; }
  .news-item, .full-list .news-item { grid-template-columns: 7rem 1fr auto; }
  .news-item > p { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .discipline-field { min-height: 32rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { max-width: 42rem; }
}

@media (max-width: 760px) {
  .site-header { min-height: 4.75rem; padding-block: .8rem; }
  .brand-mark { width: 2.3rem; height: 2.3rem; }
  .menu-toggle { display: inline-flex; align-items: center; gap: .7rem; padding: .6rem 0; cursor: pointer; font-size: .72rem; }
  .menu-glyph { position: relative; width: 1.4rem; height: .75rem; border-top: 1px solid; border-bottom: 1px solid; }
  .primary-nav { position: fixed; z-index: 90; inset: 4.75rem 0 0; display: none; flex-direction: column; align-items: stretch; padding: 1.5rem var(--page-pad) 3rem; background: var(--paper); color: var(--ink); }
  .primary-nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.7rem); letter-spacing: -.02em; text-transform: none; }
  .primary-nav a::after { display: none; }
  .menu-open { overflow: hidden; }
  .menu-open .primary-nav { display: flex; }
  .menu-open .menu-glyph { height: 1px; border: 0; background: currentColor; transform: rotate(45deg); }
  .menu-open .menu-glyph::after { position: absolute; inset: 0; content: ""; background: currentColor; transform: rotate(90deg); }

  .hero, .hero-copy { min-height: 100svh; }
  .hero-copy { padding-top: 1.5rem; padding-bottom: 4.75rem; }
  .hero-copy h1 { margin: auto 0 3rem; font-size: clamp(3.15rem, 15vw, 5.5rem); }
  .hero-foot { grid-template-columns: 1fr; gap: 1rem; }
  .attribution { max-width: 34rem; }
  .hero-scrim { background: rgba(8, 12, 11, .12); }

  .ruled-section, .page-intro { grid-template-columns: 1fr; }
  .ruled-section > p:last-child, .page-intro > p:last-child { grid-column: 1; }
  .practice-statement h2 { font-size: clamp(2.15rem, 10vw, 3.5rem); }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .project-mosaic { display: block; }
  .project-tile { min-height: 0; margin-bottom: 3rem; }
  .tile-visual { min-height: 17rem; }
  .news-item, .full-list .news-item { grid-template-columns: 1fr auto; gap: .6rem 1rem; }
  .news-item time { grid-column: 1; }
  .news-item h2, .news-item h3 { grid-column: 1; }
  .news-item > span { grid-column: 2; grid-row: 1 / 3; }
  .closing-invitation .page-shell { grid-template-columns: 1fr; align-items: start; }
  .closing-invitation h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .outline-link { width: 100%; }

  .inner-page { padding-top: 3.5rem; }
  .page-intro { padding-bottom: 3.5rem; }
  .page-intro h1 { font-size: clamp(4.1rem, 21vw, 7rem); }
  .work-entry header { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .work-entry h2 { font-size: clamp(2.45rem, 12vw, 4.4rem); }
  .project-video, .project-placeholder { aspect-ratio: 4 / 3; }
  .project-placeholder { align-items: flex-end; padding: 1rem; }
  .project-placeholder > span { font-size: 4rem; }
  .project-placeholder strong { font-size: 1.05rem; }
  .clip-controls { bottom: 1rem; left: var(--page-pad); right: var(--page-pad); justify-content: flex-start; }
  .clip-controls button { padding: .3rem .35rem; font-size: .57rem; white-space: nowrap; }
  .autoplay-label { display: none; }
  .source-status { margin-bottom: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: 0; padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .values-grid h2 { margin-top: 2rem; }
  .verification-note { grid-template-columns: 1fr; margin-top: 2rem; }
  .team-structure article { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .pending { grid-column: 2; }
  .field-row { grid-template-columns: 1fr; }
  .field-row label { padding-bottom: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------------------------ */
/* Populated-concept additions: stats, filters, detail pages, people   */
/* ------------------------------------------------------------------ */

.stat-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.stat-row div { display: flex; flex-direction: column; gap: .3rem; }
.stat-row strong { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; line-height: 1; }
.stat-row span { color: var(--muted); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }

.tile-visual img, .work-card-visual img, .detail-hero-image img, .gallery-grid img, .person-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.static-hero { background-position: center; background-size: cover; }

.filter-groups { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); margin: 2.5rem 0 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.filter-label { margin: 0 0 .7rem; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip { padding: .5rem .85rem; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.filter-count { margin: 0 0 2rem; color: var(--muted); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.empty-state { padding: 3rem 0; color: var(--muted); }

.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.work-card-visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-deep); }
.work-card-visual .placeholder-label { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.work-card-copy { padding-top: .9rem; }
.work-card-copy p { margin: 0; color: var(--muted); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.work-card-copy h3 { margin: .35rem 0 .5rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; line-height: 1.15; }
.status-pill, .tag-pill { display: inline-block; padding: .3rem .6rem; border: 1px solid var(--line); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
.status-pill { border-color: var(--accent); color: var(--accent-deep); }
.tag-pill.muted { color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

.breadcrumb { margin: 0 0 2.5rem; color: var(--muted); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--ink); }
.detail-header { padding-bottom: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--ink); margin-bottom: clamp(2rem, 4vw, 3rem); }
.detail-header h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 5.5rem); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.detail-header time { display: block; margin-bottom: .75rem; color: var(--muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.detail-hero-image { aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: clamp(2rem, 4vw, 3rem); background: var(--paper-deep); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.gallery-grid a { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-deep); }
.detail-copy { max-width: 46rem; }
.detail-copy p { margin: 0 0 1.2rem; color: var(--ink); }
.detail-copy p:last-child { margin-bottom: 0; }
.project-detail .source-link, .news-detail .source-link { display: inline-flex; margin-top: 2.5rem; }
.generic-page .detail-copy { margin-bottom: clamp(2rem, 4vw, 3rem); }

.pagination { display: flex; align-items: center; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.pagination a:hover { color: var(--accent); }
.pagination .disabled { color: var(--line); }
.pagination-status { color: var(--muted); }

.people-group { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.people-group h2 { margin: 0 0 2rem; font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; }
.people-group .count { color: var(--muted); font-family: var(--sans); font-size: .9rem; letter-spacing: .04em; }
.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: 1.75rem; }
.person-card { display: block; }
.person-photo { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--paper-deep); }
.person-photo.large { width: 9rem; height: 9rem; aspect-ratio: auto; flex-shrink: 0; }
.person-initials { position: absolute; inset: 0; display: grid; place-items: center; background: var(--accent-deep); font-family: var(--serif); font-size: 1.6rem; color: var(--white); }
.person-card h3 { margin: .8rem 0 .2rem; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.person-card p { margin: 0; color: var(--muted); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.person-header { display: flex; gap: 2rem; align-items: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.person-header h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; }
.person-header .role { margin: .5rem 0 0; color: var(--muted); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.person-header .years { margin: .3rem 0 0; color: var(--muted); font-size: .8rem; }

.about-links { padding-block: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.link-card { display: block; padding: 1.5rem; border: 1px solid var(--line); }
.link-card:hover { border-color: var(--ink); }
.link-card h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.link-card p { margin: 0; color: var(--muted); font-size: .84rem; }

.contact-aside address { font-style: normal; margin-bottom: 1.5rem; }
.contact-aside address p { margin: 0 0 .8rem; color: var(--muted); }
.contact-aside address a:hover { color: var(--accent); }
.contact-aside .note { max-width: 37rem; color: var(--muted); font-size: .82rem; }

.loading-shell { display: grid; min-height: 60svh; place-items: center; color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .person-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .filter-groups { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 760px) {
  .work-grid, .people-grid, .link-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { gap: 1.5rem; }
  .pagination { flex-wrap: wrap; gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
