:root {
  --black: #050505;
  --white: #f8f6f1;
  --paper: #e9e5dc;
  --muted: rgba(248, 246, 241, 0.68);
  --line: rgba(248, 246, 241, 0.18);
  --red: #b51218;
  --blue: #2e77ff;
  --silver: #b9b6ad;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 10%, rgba(181, 18, 24, 0.18), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #090909 46%, #12110f 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(18px, 4vw, 58px);
  color: var(--white);
  mix-blend-mode: difference;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 36px);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.75;
  transition: opacity 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.intro {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: end start;
  padding: clamp(88px, 10vw, 150px) clamp(22px, 6vw, 92px);
  overflow: hidden;
}

.intro::after,
.identity-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.24) 46%, rgba(0, 0, 0, 0.56)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 34%);
  pointer-events: none;
}

.intro-media {
  position: absolute;
  inset: 0;
  display: grid;
}

.intro-media img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imagePulse 12s ease-in-out infinite;
}

.intro-media img:first-child {
  opacity: 1;
}

.intro-media img:nth-child(2) {
  animation-delay: 6s;
}

.intro-copy {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.eyebrow,
.kicker,
.work-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 10vw, 9.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 6.9rem);
}

h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
}

.intro-copy p:last-child,
.panel-copy p:last-child,
.contact-section h2 {
  max-width: 650px;
  color: rgba(248, 246, 241, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue span:first-child {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.identity-stack {
  background: var(--black);
}

.identity-panel {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: end;
  gap: clamp(22px, 5vw, 84px);
  padding: clamp(82px, 10vw, 150px) clamp(22px, 6vw, 92px);
  overflow: hidden;
}

.identity-panel[data-tone="red"] {
  background: #070202;
}

.identity-panel[data-tone="blue"] {
  background: #020712;
}

.identity-panel[data-tone="mono"] {
  background: #090909;
}

.identity-panel[data-tone="silver"] {
  background: #11100d;
}

.panel-image {
  position: absolute;
  inset: 0;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(var(--image-scale, 1.04));
  transition: transform 180ms linear;
}

.identity-panel[data-tone="red"] .panel-image img {
  filter: saturate(1.15) contrast(1.12);
}

.identity-panel[data-tone="blue"] .panel-image img {
  filter: saturate(1.08) contrast(1.08);
}

.identity-panel[data-tone="mono"] .panel-image img,
.identity-panel[data-tone="silver"] .panel-image img {
  filter: grayscale(1) contrast(1.08);
}

.panel-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: center;
  padding-top: 7vh;
  opacity: var(--panel-opacity, 1);
  transform: translateY(var(--panel-lift, 0));
  transition: opacity 180ms linear, transform 180ms linear;
}

.identity-panel:nth-child(odd) .panel-copy {
  grid-column: 1;
}

.about-section,
.work-section,
.practice-index-section,
.experience-section,
.statement-section,
.archive-section,
.contact-section {
  padding: clamp(82px, 12vw, 170px) clamp(22px, 6vw, 92px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(46, 119, 255, 0.09), transparent 42%),
    #070707;
}

.about-copy {
  align-self: center;
}

.about-copy p {
  max-width: 720px;
  color: rgba(248, 246, 241, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 80px);
  margin-bottom: clamp(36px, 7vw, 84px);
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.section-heading h2 {
  grid-column: 2;
  max-width: 760px;
  font-size: clamp(2.2rem, 5.2vw, 5.8rem);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(248, 246, 241, 0.12);
  background: #111;
}

.work-card.large {
  grid-column: span 2;
}

.work-card img,
.work-card video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 500ms ease;
}

.work-card:hover img,
.work-card:hover video {
  opacity: 0.95;
  transform: scale(1.055);
}

.cuba-card {
  background:
    linear-gradient(135deg, rgba(181, 18, 24, 0.24), rgba(46, 119, 255, 0.18)),
    #15110d;
}

.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 55%);
}

.work-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.practice-index-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.04), transparent 38%),
    #070707;
}

.practice-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 246, 241, 0.16);
}

.practice-route {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(20px, 2.2vw, 30px);
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.08), rgba(248, 246, 241, 0.025)),
    #080808;
  transition: background 220ms ease, transform 220ms ease;
}

.practice-route:hover {
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.13), rgba(181, 18, 24, 0.08)),
    #101010;
  transform: translateY(-4px);
}

.practice-route span,
.practice-directory span {
  color: rgba(248, 246, 241, 0.48);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.practice-route h3 {
  margin: clamp(52px, 7vw, 112px) 0 18px;
  font-size: clamp(1.7rem, 3vw, 3.8rem);
}

.practice-route p {
  max-width: 320px;
  color: rgba(248, 246, 241, 0.72);
  line-height: 1.55;
}

.practice-route em,
.practice-directory em {
  display: block;
  margin-top: auto;
  color: rgba(248, 246, 241, 0.52);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.practice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.practice-actions .text-link {
  margin-top: 0;
}

.experience-section {
  border-top: 1px solid var(--line);
  background: #080807;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 246, 241, 0.14);
}

.experience-card {
  min-height: 310px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.07), rgba(248, 246, 241, 0.025)),
    #090909;
}

.experience-card p {
  margin: 0 0 34px;
  color: rgba(248, 246, 241, 0.56);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin-bottom: 22px;
  font-size: clamp(1.45rem, 2.5vw, 2.7rem);
}

.experience-card span {
  display: block;
  color: rgba(248, 246, 241, 0.72);
  line-height: 1.58;
}

.statement-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(248, 246, 241, 0.92), rgba(185, 182, 173, 0.76) 56%, rgba(5, 5, 5, 0.92) 100%);
  color: var(--black);
}

.statement-section .eyebrow {
  color: rgba(0, 0, 0, 0.62);
}

.statement-section blockquote {
  width: min(1040px, 100%);
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
}

.statement-section p:last-child {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.62;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.75fr 1.25fr;
  gap: 12px;
  align-items: stretch;
}

.photo-strip img {
  width: 100%;
  height: clamp(260px, 43vw, 620px);
  object-fit: cover;
  filter: grayscale(1);
}

.photo-strip img:nth-child(even) {
  margin-top: clamp(30px, 7vw, 96px);
}

.contact-section {
  display: grid;
  min-height: 82svh;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #f4efe4 0%, #101010 48%, #050505 100%);
}

.contact-section h2 {
  max-width: 900px;
  color: var(--black);
  font-size: clamp(2.6rem, 6vw, 6.8rem);
}

.contact-section .eyebrow {
  color: rgba(0, 0, 0, 0.62);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-actions a {
  border: 1px solid rgba(248, 246, 241, 0.42);
  padding: 13px 18px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease;
}

.contact-actions a:hover {
  background: var(--white);
  color: var(--black);
}

.progress {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 30;
  width: 2px;
  height: 140px;
  background: rgba(248, 246, 241, 0.22);
  transform: translateY(-50%);
}

.progress span {
  display: block;
  width: 100%;
  height: var(--progress, 0%);
  background: var(--white);
}

.project-page {
  background: #050505;
}

.project-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) clamp(22px, 6vw, 92px);
}

.project-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.62)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 48%);
  pointer-events: none;
}

.project-hero video,
.project-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.practice-hero > img {
  object-position: 68% center;
  filter: saturate(0.82) contrast(1.08);
}

.practice-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(22px, 4vw, 52px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: rgba(248, 246, 241, 0.14);
}

.practice-directory a {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  padding: 20px;
  background: #080808;
  transition: background 180ms ease;
}

.practice-directory a:hover {
  background: #121212;
}

.practice-directory strong {
  margin: 36px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
}

.practice-detail-list {
  padding: 0 clamp(22px, 6vw, 92px) clamp(82px, 12vw, 170px);
  border-top: 1px solid var(--line);
  background: #060606;
}

.practice-group {
  scroll-margin-top: 88px;
  padding-top: clamp(82px, 11vw, 150px);
}

.practice-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 6vw, 80px);
  margin-bottom: clamp(24px, 4vw, 52px);
  border-top: 1px solid rgba(248, 246, 241, 0.18);
  padding-top: 26px;
}

.practice-group-heading h2 {
  grid-column: 2;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.7vw, 5.5rem);
}

.practice-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  border-top: 1px solid rgba(248, 246, 241, 0.14);
  padding: clamp(28px, 4.4vw, 58px) 0;
}

.practice-detail h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 3.7rem);
  line-height: 1;
}

.practice-detail h3 {
  max-width: 520px;
  color: rgba(248, 246, 241, 0.66);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.98rem, 1.25vw, 1.25rem);
  font-weight: 520;
  line-height: 1.45;
}

.practice-detail ul {
  display: grid;
  align-content: start;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.practice-detail li {
  position: relative;
  padding-left: 24px;
  color: rgba(248, 246, 241, 0.74);
  font-size: clamp(0.98rem, 1.22vw, 1.16rem);
  line-height: 1.62;
}

.practice-detail li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(248, 246, 241, 0.48);
  content: "";
  transform: rotate(45deg);
}

.project-overview,
.field-video-section,
.menu-study,
.journal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(82px, 12vw, 170px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.project-text,
.menu-list,
.journal-copy {
  align-self: center;
}

.field-video-frame {
  align-self: center;
}

.field-video-frame video {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  background: #050505;
}

.still-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(82px, 12vw, 170px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.still-gallery figure {
  margin: 0;
  background: #0a0a0a;
}

.still-gallery figure.wide {
  grid-column: span 2;
}

.still-gallery img {
  width: 100%;
  height: clamp(320px, 42vw, 760px);
  object-fit: cover;
}

.still-gallery figure:not(.wide) img {
  height: clamp(300px, 32vw, 560px);
}

.still-gallery figcaption {
  border-top: 1px solid rgba(248, 246, 241, 0.12);
  padding: 13px 14px 16px;
  color: rgba(248, 246, 241, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.film-strip-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(82px, 12vw, 170px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.film-strip {
  display: grid;
  gap: 12px;
}

.film-strip img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.project-text p,
.menu-list p,
.journal-copy p {
  max-width: 680px;
  color: rgba(248, 246, 241, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.project-text em {
  font-style: italic;
}

.thesis-section {
  padding: clamp(82px, 12vw, 170px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(248, 246, 241, 0.92), rgba(213, 58, 40, 0.72) 52%, rgba(5, 5, 5, 0.92) 100%);
  color: var(--black);
}

.thesis-section .eyebrow {
  color: rgba(0, 0, 0, 0.62);
}

.thesis-section blockquote {
  width: min(980px, 100%);
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
}

.thesis-section p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.62;
}

.sensory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(22px, 6vw, 92px) clamp(82px, 10vw, 150px);
}

.sensory-grid article {
  min-height: 260px;
  padding: 24px;
  background: rgba(248, 246, 241, 0.08);
}

.sensory-grid span {
  display: block;
  margin-bottom: 54px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.95;
}

.sensory-grid p {
  color: rgba(248, 246, 241, 0.72);
  line-height: 1.5;
}

.detail-breakdown {
  padding: clamp(82px, 12vw, 170px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.compact-heading {
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1.55fr);
  margin-bottom: clamp(28px, 5vw, 64px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 246, 241, 0.16);
}

.detail-grid article {
  min-height: 310px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.08), rgba(248, 246, 241, 0.035)),
    #090909;
}

.detail-grid article p {
  margin: 0 0 32px;
  color: rgba(248, 246, 241, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-grid article h3 {
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.6vw, 3rem);
}

.detail-grid article span {
  display: block;
  color: rgba(248, 246, 241, 0.72);
  line-height: 1.58;
}

.menu-study {
  background:
    linear-gradient(90deg, rgba(213, 58, 40, 0.12), transparent 52%),
    #080706;
}

.research-questions {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(82px, 12vw, 170px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #0d0b09;
}

.research-questions ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: question;
}

.research-questions li {
  position: relative;
  min-height: 96px;
  border-top: 1px solid rgba(248, 246, 241, 0.18);
  padding: 18px 0 0 58px;
  color: rgba(248, 246, 241, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  counter-increment: question;
}

.research-questions li::before {
  position: absolute;
  left: 0;
  top: 18px;
  content: counter(question, decimal-leading-zero);
  color: rgba(248, 246, 241, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.journal-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top;
  filter: contrast(1.02);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes imagePulse {
  0%,
  42% {
    opacity: 1;
    transform: scale(1);
  }
  50%,
  92% {
    opacity: 0;
    transform: scale(1.035);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .intro {
    min-height: 96svh;
  }

  .intro-copy {
    padding-bottom: 52px;
  }

  .identity-panel {
    min-height: 96svh;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .panel-copy,
  .identity-panel:nth-child(odd) .panel-copy {
    grid-column: 1;
    align-self: end;
  }

  .section-heading,
  .about-section,
  .contact-section,
  .practice-group-heading,
  .practice-detail {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .practice-group-heading h2 {
    grid-column: 1;
  }

  .work-grid,
  .practice-map,
  .practice-directory,
  .experience-grid,
  .photo-strip,
  .sensory-grid,
  .detail-grid,
  .still-gallery {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card.large {
    grid-column: auto;
    min-height: 360px;
  }

  .practice-route {
    min-height: 260px;
  }

  .practice-route h3 {
    margin-top: 54px;
  }

  .practice-directory {
    padding: 22px;
  }

  .photo-strip img,
  .photo-strip img:nth-child(even) {
    height: 360px;
    margin-top: 0;
  }

  .contact-section {
    background: linear-gradient(180deg, #f4efe4 0%, #141414 72%, #050505 100%);
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .project-overview,
  .field-video-section,
  .menu-study,
  .research-questions,
  .film-strip-section,
  .journal-section {
    grid-template-columns: 1fr;
  }

  .compact-heading {
    grid-template-columns: 1fr;
  }

  .still-gallery figure.wide {
    grid-column: auto;
  }

  .progress {
    display: none;
  }
}

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