:root {
  --forest: #173c2d;
  --forest-deep: #0b281d;
  --moss: #708662;
  --sage: #d7dfcc;
  --paper: #f4f0e6;
  --paper-bright: #fbf9f3;
  --ink: #17211a;
  --orange: #d84b22;
  --orange-bright: #f15a24;
  --line: rgba(23, 33, 26, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button, summary { font: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--orange); color: white; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--paper-bright);
  transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0.5rem); }

.announcement {
  min-height: 40px;
  padding: 0.55rem clamp(1rem, 4vw, 4rem);
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.announcement p { margin: 0; }
.announcement p span { font-weight: 800; margin-right: 0.7rem; }
.announcement a { font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.65); }

.site-header {
  min-height: 108px;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 230, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.wordmark { display: flex; align-items: center; gap: 1.05rem; text-decoration: none; }
.wordmark-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23, 60, 45, 0.25);
  border-radius: 50%;
  background: var(--forest-deep);
}
.wordmark-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
}
.wordmark-text { display: flex; flex-direction: column; line-height: 1.2; }
.wordmark-text strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; }
.wordmark-text small { margin-top: 0.28rem; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2.4rem); }
.site-nav a { font-size: 0.98rem; font-weight: 650; letter-spacing: 0.04em; text-decoration: none; }
.site-nav a:not(.nav-join) { border-bottom: 1px solid transparent; }
.site-nav a:not(.nav-join):hover { border-color: currentColor; }
.nav-join { padding: 0.6rem 1rem; color: white; background: var(--forest); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; color: inherit; }

.hero {
  max-width: var(--max);
  min-height: calc(100vh - 132px);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
}
.hero-copy { padding-top: 1rem; }
.eyebrow, .section-kicker {
  margin: 0 0 1.2rem;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.4vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}
.hero-intro { max-width: 610px; margin: 2rem 0 0; font-size: clamp(1rem, 1.4vw, 1.22rem); line-height: 1.65; }
.hero-actions { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.button {
  min-height: 48px;
  padding: 0.76rem 1.2rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; }
.button-primary:hover { background: var(--orange); }
.button-light { background: var(--paper-bright); color: var(--forest); }
.button-light:hover { background: white; }
.text-link { font-size: 0.78rem; font-weight: 800; letter-spacing: .03em; text-decoration: none; border-bottom: 1px solid currentColor; }
.hero-image-wrap { position: relative; overflow: hidden; background: var(--sage); }
.hero-figure { margin: 0; }
.hero-figure img { width: 100%; height: min(68vh, 760px); object-fit: cover; }
.hero-figure figcaption { margin-top: .7rem; font-family: var(--serif); font-size: .78rem; color: rgba(23,33,26,.7); }

.section-pad { padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6rem); }
.manifesto { background: var(--forest); color: var(--paper-bright); }
.manifesto .section-kicker { color: #ef8c67; }
.manifesto-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 10vw, 11rem); align-items: start; }
.manifesto h2, .section-heading h2, .people-heading h1, .people-heading h2, .approach h2, .notes h2, .join h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}
.manifesto-copy { max-width: 610px; padding-top: .5rem; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.7; }
.manifesto-copy p:first-child { margin-top: 0; }
.manifesto-copy p:last-child { color: rgba(251,249,243,.68); }

.research { background: var(--paper-bright); }
.section-heading { max-width: var(--max); margin: 0 auto clamp(3rem, 6vw, 6rem); display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.section-heading > p, .section-heading > .text-link { max-width: 520px; margin: 0 0 .45rem; }
.research-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.research-card { min-height: 570px; padding: clamp(2rem, 4vw, 4rem); position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.research-card h3 { max-width: 600px; margin: 0 0 1.4rem; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.8rem); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.research-card p { max-width: 560px; }
.card-number { font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.card-tag { margin-bottom: 1rem; font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.card-dark { background: var(--forest-deep); color: white; }
.card-dark p { color: rgba(255,255,255,.7); }
.card-paper { background: #e7e3d6; color: var(--ink); }
.card-orange { background: var(--orange); color: white; }
.card-orange p { color: rgba(255,255,255,.8); }
.card-image { padding: 0; }
.card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-image::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.card-image-caption { position: absolute; z-index: 1; left: 2rem; right: 2rem; bottom: 1.6rem; color: white; display: flex; justify-content: space-between; gap: 1rem; font-size: .72rem; }
.tag-list { margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; }
.tag-list li { padding: .35rem .65rem; border: 1px solid currentColor; border-radius: 999px; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }

.approach { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.approach-visual { min-width: 0; display: grid; grid-template-columns: 1fr auto; gap: .8rem; }
.approach-visual img { width: 100%; min-height: 650px; object-fit: cover; }
.vertical-note { margin: 0; writing-mode: vertical-rl; font-family: var(--serif); font-size: .75rem; color: rgba(23,33,26,.62); }
.approach-copy > p { margin-bottom: 1rem; }
.process-list { margin: 3rem 0 0; padding: 0; list-style: none; }
.process-list li { padding: 1.25rem 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 2.4rem 1fr; gap: 1.2rem; }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--orange); font-family: var(--serif); font-size: .8rem; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.process-list p { margin: .3rem 0 0; color: rgba(23,33,26,.68); font-size: .88rem; }

.people { background: #dce5d6; }
.people-heading { max-width: 780px; margin: 0 auto clamp(3rem, 7vw, 7rem); text-align: center; }
.people-heading p:last-child { max-width: 680px; margin: 1.8rem auto 0; }
.profile { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: minmax(280px, .78fr) 1.22fr; background: var(--paper-bright); }
.profile-photo { min-height: 620px; overflow: hidden; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.profile-copy { padding: clamp(2rem, 5vw, 5.5rem); align-self: center; }
.profile-role { color: var(--orange); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.profile-copy h2, .profile-copy h3 { margin: 0 0 1.8rem; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.4rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.profile-copy h2 span, .profile-copy h3 span { display: block; margin-top: .6rem; font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.profile-copy > p:not(.profile-role) { color: rgba(23,33,26,.72); }
.profile-links { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.3rem; }
.profile-links a { font-size: .72rem; font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }
.future-team { max-width: 1120px; margin: 4rem auto 0; }
.future-team-label { font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.future-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.future-team-grid > div { padding: 2rem 2rem 0 0; }
.future-team-grid > div + div { padding-left: 2rem; border-left: 1px solid var(--line); }
.future-team-grid span { color: var(--orange); font-family: var(--serif); font-size: 2rem; }
.future-team-grid h2, .future-team-grid h3 { margin: 1.8rem 0 .6rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.future-team-grid p { color: rgba(23,33,26,.7); font-size: .85rem; }

.interior-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8.5rem) clamp(1.25rem, 6vw, 6rem) clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}
.interior-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}
.interior-hero-copy > p:last-child { max-width: 650px; margin: 2rem 0 0; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.interior-hero figure { margin: 0; }
.interior-hero figure img { width: 100%; height: min(58vh, 650px); object-fit: cover; }
.interior-hero figcaption, .feature-image figcaption, .research-figure figcaption { margin-top: .65rem; color: rgba(23,33,26,.64); font-family: var(--serif); font-size: .78rem; }

.research-detail { background: var(--paper-bright); }
.research-detail-inner, .collection-inner { max-width: var(--max); margin: 0 auto; }
.research-topic {
  padding: clamp(4rem, 8vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 9vw, 10rem);
  border-top: 1px solid var(--line);
}
.research-topic:first-child { padding-top: 0; border-top: 0; }
.topic-heading { position: sticky; top: 145px; align-self: start; }
.topic-number { color: var(--orange); font-family: var(--serif); font-size: .9rem; font-style: italic; }
.research-topic h2, .collection-section h2, .collection-inner h2 {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}
.topic-copy > p:first-child { margin-top: 0; font-size: clamp(1.1rem, 1.8vw, 1.42rem); line-height: 1.65; }
.topic-copy h3 { margin: 3rem 0 1rem; font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 400; }
.topic-copy p { max-width: 780px; }
.research-figure { margin: 2.5rem 0 0; }
.research-figure img { width: 100%; max-height: 560px; object-fit: cover; }
.research-system { margin-top: 2.8rem; display: grid; grid-template-columns: minmax(0, .82fr) minmax(280px, 1.18fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.research-system + .research-system { padding-top: 2.8rem; border-top: 1px solid var(--line); }
.research-system h3 { margin-top: 0; }
.research-system-figure { margin: 0; min-width: 0; }
.research-system-figure img { width: 100%; height: 360px; object-fit: cover; object-position: 65% center; }
.research-system-figure figcaption { margin-top: .65rem; color: rgba(23,33,26,.64); font-family: var(--serif); font-size: .78rem; }
.research-more { margin-top: 2.8rem; padding-top: 2.8rem; border-top: 1px solid var(--line); }
.research-more h3 { margin-top: 0; }
.research-more p { margin-bottom: 0; }
.topic-links { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.2rem; }

.herbarium-intro { background: var(--forest); color: white; }
.collection-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 9vw, 10rem); }
.collection-section h2 { margin-top: 0; }
.collection-copy > p:first-child { margin-top: 0; font-size: clamp(1.08rem, 1.7vw, 1.32rem); }
.collection-copy p { color: rgba(255,255,255,.72); }
.collection-copy .button { margin-top: 1.2rem; }
.herbarium-uses { background: #dce5d6; }
.use-grid { max-width: var(--max); margin: 3.5rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.use-grid article { padding: 2.2rem 2.2rem 0 0; }
.use-grid article + article { padding-left: 2.2rem; border-left: 1px solid var(--line); }
.use-grid span { color: var(--orange); font-family: var(--serif); font-style: italic; }
.use-grid h3 { margin: 1.4rem 0 .8rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.use-grid p { color: rgba(23,33,26,.7); }
.herbarium-note { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.feature-image { margin: 0; }
.feature-image img { width: 100%; max-height: 700px; object-fit: cover; }
.herbarium-note h2 { margin: 0 0 1.5rem; font-family: var(--serif); font-size: clamp(2.5rem, 4.5vw, 5rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }

.publications { background: var(--paper-bright); }
.publication-list { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.publication { padding: 1.7rem 0; display: grid; grid-template-columns: 85px 1fr 40px; gap: 1.5rem; align-items: start; text-decoration: none; border-bottom: 1px solid var(--line); }
.publication:hover .pub-main strong { color: var(--orange); }
.pub-year { padding-top: .2rem; color: var(--orange); font-family: var(--serif); font-size: .85rem; }
.pub-main { display: flex; flex-direction: column; gap: .45rem; }
.pub-main strong { max-width: 980px; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.75rem); font-weight: 400; line-height: 1.25; transition: color .2s ease; }
.pub-main small { color: rgba(23,33,26,.62); }
.pub-arrow { justify-self: end; font-size: 1.2rem; }

.notes { padding-top: 0; padding-bottom: 0; display: grid; grid-template-columns: 1fr 1fr; background: var(--forest); color: white; }
.notes-image { min-height: 600px; margin-left: calc(clamp(1.25rem, 6vw, 6rem) * -1); overflow: hidden; }
.notes-image img { width: 100%; height: 100%; object-fit: cover; }
.notes-copy { max-width: 640px; padding: clamp(4rem, 8vw, 8rem); align-self: center; }
.notes-copy .section-kicker { color: #ef8c67; }
.notes-copy p:not(.section-kicker) { margin: 1.6rem 0 2rem; color: rgba(255,255,255,.72); }

.join { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 9vw, 10rem); }
.join-intro > p:not(.section-kicker):not(.email-note) { max-width: 560px; margin: 1.8rem 0 2rem; }
.email-note { color: rgba(23,33,26,.6); font-size: .75rem; }
.join-options { border-top: 1px solid var(--line); }
.join-options details { border-bottom: 1px solid var(--line); }
.join-options summary { padding: 1.7rem 0; display: flex; justify-content: space-between; gap: 2rem; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); }
.join-options summary::-webkit-details-marker { display: none; }
.join-options summary span:last-child { color: var(--orange); transition: transform .2s ease; }
.join-options details[open] summary span:last-child { transform: rotate(45deg); }
.join-options details p { max-width: 720px; margin: -0.25rem 3.5rem 1.7rem 0; color: rgba(23,33,26,.68); }

.site-footer { padding: 4rem clamp(1.25rem, 6vw, 6rem) 1.5rem; background: var(--forest-deep); color: white; display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 3rem; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.site-footer .wordmark-mark { border-color: rgba(255,255,255,.45); }
.footer-brand p, .footer-location p { margin: .15rem 0; color: rgba(255,255,255,.58); font-size: .72rem; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; align-items: flex-start; }
.footer-links a { font-size: .72rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); }
.footer-bottom { grid-column: 1 / -1; margin: 3rem 0 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.45); font-size: .65rem; letter-spacing: .04em; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--orange-bright); outline-offset: 4px; }

@media (max-width: 980px) {
  .announcement { justify-content: space-between; }
  .site-header { min-height: 78px; }
  .wordmark-mark { width: 64px; height: 64px; }
  .wordmark-text strong { font-size: 1.4rem; }
  .wordmark-text small { margin-top: 0.24rem; font-size: 0.68rem; }
  .menu-toggle { display: flex; align-items: center; gap: .75rem; cursor: pointer; }
  .menu-toggle-label { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .menu-toggle-lines { width: 24px; display: flex; flex-direction: column; gap: 6px; }
  .menu-toggle-lines i { height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; padding: 2rem; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper-bright); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .9rem 0; font-family: var(--serif); font-size: 1.35rem; }
  .nav-join { margin-top: .7rem; padding: .8rem 1rem !important; text-align: center; font-family: var(--sans) !important; font-size: .8rem !important; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero h1 { max-width: 850px; }
  .hero-figure img { height: min(70vh, 720px); }
  .manifesto-grid, .approach, .join { grid-template-columns: 1fr; }
  .approach-visual { max-width: 760px; }
  .section-heading { align-items: start; flex-direction: column; }
  .research-card { min-height: 500px; }
  .profile { grid-template-columns: .8fr 1.2fr; }
  .profile-photo { min-height: 540px; }
  .notes-copy { padding-right: 0; }
  .interior-hero, .research-topic, .collection-inner, .herbarium-note { grid-template-columns: 1fr; }
  .topic-heading { position: static; }
}

@media (max-width: 680px) {
  .announcement { display: block; text-align: center; }
  .announcement a { display: none; }
  .site-header { min-height: 92px; }
  .wordmark-mark { width: 58px; height: 58px; }
  .wordmark-text strong { font-size: 1.3rem; }
  .wordmark-text small { display: none; }
  .hero { padding-top: 3.5rem; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .hero-figure img { height: 66vh; min-height: 460px; }
  .manifesto-grid { gap: 2rem; }
  .research-grid { grid-template-columns: 1fr; }
  .research-card { min-height: 470px; }
  .approach-visual img { min-height: 480px; }
  .profile { grid-template-columns: 1fr; }
  .profile-photo { min-height: 520px; max-height: 670px; }
  .future-team-grid { grid-template-columns: 1fr; }
  .future-team-grid > div { padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
  .future-team-grid > div + div { padding-left: 0; border-left: 0; }
  .future-team-grid h2, .future-team-grid h3 { margin-top: .8rem; }
  .publication { grid-template-columns: 56px 1fr; gap: 1rem; }
  .pub-arrow { display: none; }
  .notes { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; }
  .notes-image { min-height: 430px; margin-left: 0; }
  .notes-copy { padding: 4rem 1.25rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { margin-top: 0; }
  .interior-hero { padding-top: 3.5rem; }
  .interior-hero figure img { height: 56vh; min-height: 430px; }
  .research-system, .use-grid { grid-template-columns: 1fr; }
  .research-system-figure img { height: 330px; }
  .use-grid article { padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
  .use-grid article + article { padding-left: 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
