:root {
  --forest: #132a22;
  --forest-soft: #203e32;
  --ink: #1c211e;
  --paper: #f4f0e7;
  --paper-deep: #e9e2d4;
  --white: #fffdf8;
  --rust: #a6533f;
  --gold: #e7ca85;
  --sage: #738371;
  --line: rgba(19, 42, 34, .18);
  --container: 1280px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }
button { font: inherit; }
figure { margin: 0; }
figcaption, .image-caption {
  margin: 11px 0 0;
  color: #657067;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: .015em;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--forest);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 clamp(22px, 4vw, 64px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.17);
  transition: background .25s ease, color .25s ease, min-height .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  min-height: 70px;
  color: var(--forest);
  background: rgba(244, 240, 231, .96);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.wordmark img { width: 34px; height: 34px; }
.site-header.scrolled .wordmark img { filter: brightness(.43) saturate(.9); }
.wordmark span { display: grid; line-height: 1.08; }
.wordmark strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.wordmark small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .67;
}
.site-nav { display: flex; align-items: center; gap: 31px; }
.site-nav a {
  position: relative;
  color: inherit;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.site-nav a:hover::after { right: 0; }
.nav-contact {
  padding: 10px 16px;
  border: 1px solid currentColor;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--forest);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 50%;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,24,18,.79) 0%, rgba(8,24,18,.56) 42%, rgba(8,24,18,.12) 77%),
    linear-gradient(0deg, rgba(8,24,18,.42) 0%, transparent 48%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 7vw, 110px);
  bottom: clamp(100px, 14vh, 160px);
  width: min(820px, calc(100% - 48px));
}
.hero-kicker, .eyebrow, .chapter-label {
  margin: 0 0 17px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-kicker { color: #f1d89c; }
.hero h1 {
  max-width: 870px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7.2vw, 118px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.hero-copy > p:not(.hero-kicker) {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--forest); background: var(--white); }
.button-light:hover { background: var(--gold); }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 5px;
}
.text-link-light { color: rgba(255,255,255,.86); }
.hero-caption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 64px);
  bottom: 29px;
  max-width: 330px;
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}
.hero-scroll {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 64px);
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  text-decoration: none;
}

.profile {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(460px, 1.18fr);
  gap: clamp(55px, 8vw, 130px);
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) 0;
  align-items: start;
}
.profile-image-wrap { position: sticky; top: 110px; }
.profile-image-wrap img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.profile-copy { max-width: 730px; padding-top: 3vw; }
.profile h2, .case-intro h2, .field-note h2, .expertise h2, .experience h2, .contact h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(45px, 5.7vw, 83px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.profile-copy .lead {
  margin-top: 37px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.45;
}
.profile-copy > p:not(.eyebrow):not(.lead) { max-width: 680px; color: #596159; }
.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.profile-facts div { padding: 24px 20px 0 0; }
.profile-facts strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}
.profile-facts span { display: block; max-width: 160px; color: #6e776f; font-size: 11px; line-height: 1.45; }

.interlude {
  position: relative;
  min-height: min(78vw, 820px);
  color: #fff;
  overflow: hidden;
}
.interlude > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.interlude-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,31,24,.84), rgba(13,31,24,.25) 70%); }
.interlude-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding-top: clamp(100px, 12vw, 175px);
}
.interlude-copy p {
  margin: 0 0 27px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.interlude-copy h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.042em;
}

.case-study { padding: clamp(110px, 14vw, 200px) 0 0; background: var(--white); }
.case-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(50px, 8vw, 130px);
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto clamp(110px, 13vw, 180px);
  align-items: end;
}
.case-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -35px; }
.case-intro h2 { font-size: clamp(60px, 8vw, 116px); }
.case-intro > p:last-child { max-width: 560px; margin: 0 0 12px; color: #596159; font-size: 19px; }

.chapter {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto clamp(150px, 17vw, 240px);
}
.chapter-number {
  position: absolute;
  z-index: 0;
  top: -115px;
  left: -5px;
  color: rgba(19,42,34,.055);
  font-family: var(--serif);
  font-size: clamp(150px, 20vw, 300px);
  line-height: .8;
  pointer-events: none;
}
.chapter-copy { position: relative; z-index: 2; grid-column: 1 / 5; padding-top: 50px; }
.chapter-copy h3 {
  margin: 0 0 25px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 59px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.chapter-copy > p:not(.chapter-label) { color: #5e665f; }
.chapter-image-main { position: relative; z-index: 1; grid-column: 6 / 13; }
.chapter-image-main img { aspect-ratio: 1.25 / 1; object-fit: cover; }
.chapter-image-inset {
  position: relative;
  z-index: 3;
  grid-column: 4 / 8;
  margin-top: -18%;
  transform: translateX(-8%);
}
.chapter-image-inset img { aspect-ratio: 4 / 3; object-fit: cover; }
.chapter-two .chapter-copy { grid-column: 8 / 13; padding-top: 15px; }
.wide-image { grid-column: 1 / 10; grid-row: 1 / 3; }
.wide-image img { aspect-ratio: 1.72 / 1; object-fit: cover; }
.small-image { position: relative; z-index: 3; grid-column: 9 / 13; margin-top: -25%; }
.small-image img { aspect-ratio: 4 / 5; object-fit: cover; }
.chapter-three .chapter-copy { grid-column: 1 / 6; padding-top: 0; }
.propagation-grid {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: 1.2fr .78fr .88fr;
  gap: clamp(16px, 2vw, 30px);
  margin-top: 80px;
  align-items: end;
}
.propagation-grid figure:nth-child(2) { transform: translateY(80px); }
.propagation-grid img { height: 100%; object-fit: cover; }
.propagation-a img { aspect-ratio: 4 / 5; }
.propagation-b img { aspect-ratio: 3 / 4; }
.propagation-c img { aspect-ratio: 4 / 5; }
.chapter-four .chapter-copy { grid-column: 8 / 13; padding-top: 30px; }
.experiment-main { grid-column: 1 / 8; grid-row: 1 / 3; }
.experiment-main img { aspect-ratio: 4 / 3; }
.experiment-inset { grid-column: 6 / 10; margin-top: -6%; transform: none; }
.experiment-inset img { aspect-ratio: 4 / 5; object-position: center; }
.chapter-five .chapter-copy { grid-column: 1 / 6; padding-top: 0; }
.planting-strip {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: clamp(16px, 2vw, 30px);
  margin-top: 70px;
  align-items: start;
}
.planting-strip figure:nth-child(2) { margin-top: 100px; }
.planting-strip figure:nth-child(3) { margin-top: 35px; }
.planting-strip img { object-fit: cover; }
.planting-strip figure:first-child img { aspect-ratio: 1.23 / 1; }
.planting-strip figure:not(:first-child) img { aspect-ratio: 4 / 5; }
.chapter-six {
  width: 100%;
  margin-bottom: 0;
  padding: clamp(110px, 13vw, 180px) max(24px, calc((100% - var(--container))/2));
  color: #fff;
  background: var(--forest);
}
.chapter-six .chapter-number { top: 55px; left: max(24px, calc((100% - var(--container))/2)); color: rgba(255,255,255,.045); }
.chapter-six .chapter-copy { grid-column: 1 / 6; padding-top: 45px; }
.chapter-copy-light h3 { color: #fff; }
.chapter-copy-light > p:not(.chapter-label) { color: rgba(255,255,255,.61); }
.current-field { grid-column: 7 / 13; }
.current-field img { aspect-ratio: 4 / 3; object-fit: cover; }
.current-aerial { grid-column: 2 / 11; margin-top: 90px; }
.current-aerial img { aspect-ratio: 16 / 8.4; object-fit: cover; }
.chapter-six figcaption { color: rgba(255,255,255,.5); }

.field-note {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 8vw, 120px);
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: clamp(120px, 15vw, 210px) 0;
  align-items: start;
}
.field-note-copy { position: sticky; top: 120px; }
.field-note-copy h2 { font-size: clamp(45px, 5.3vw, 75px); }
.field-note-copy > p:last-child { max-width: 530px; color: #5e665f; }
.field-note-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.field-note-gallery img { object-fit: cover; }
.tour-one { grid-column: 1 / 3; }
.tour-one img { aspect-ratio: 16 / 10; }
.tour-two { margin-top: 50px; }
.tour-two img, .tour-three img { aspect-ratio: 4 / 5; }

.expertise {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(70px, 9vw, 145px);
  padding: clamp(110px, 13vw, 180px) max(24px, calc((100% - var(--container))/2));
  color: #fff;
  background: #10271f;
}
.expertise-heading { position: sticky; top: 115px; align-self: start; }
.eyebrow-light { color: var(--gold); }
.expertise h2 { color: #fff; }
.expertise-heading > p:last-child { color: rgba(255,255,255,.58); }
.expertise-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.expertise-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.expertise-list span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.expertise-list h3 {
  margin: -4px 0 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(27px, 2.8vw, 41px);
  font-weight: 400;
}
.expertise-list p { max-width: 620px; margin: 0; color: rgba(255,255,255,.55); font-size: 15px; }

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: clamp(120px, 15vw, 210px) 0;
  column-gap: clamp(70px, 9vw, 150px);
  align-items: end;
}
.experience-copy p:last-child { max-width: 600px; color: #5e665f; }
.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-content: end;
}
.locations span {
  padding: 8px 13px;
  color: var(--forest);
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.experience-image { grid-column: 1 / 3; margin-top: 85px; }
.experience-image img { aspect-ratio: 16 / 8; object-fit: cover; object-position: center 40%; }

.contact {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--rust);
}
.contact-word {
  position: absolute;
  top: -8vw;
  left: -2vw;
  color: rgba(255,255,255,.07);
  font-family: var(--serif);
  font-size: 28vw;
  line-height: .8;
  letter-spacing: -.08em;
  white-space: nowrap;
}
.contact-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 880px);
  margin: 0 auto;
  padding: clamp(110px, 14vw, 180px) 0;
  text-align: center;
}
.contact h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { max-width: 690px; margin: 28px auto 0; color: rgba(255,255,255,.72); }
.button-large { min-height: 60px; margin-top: 38px; padding: 0 34px; }
.contact-email { display: block; margin-top: 18px; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 700; text-underline-offset: 5px; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px clamp(24px, 4vw, 64px);
  color: #fff;
  background: #091914;
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 38px; height: 38px; }
.footer-brand div { display: grid; line-height: 1.2; }
.footer-brand strong { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.footer-brand span, .site-footer p { color: rgba(255,255,255,.47); font-size: 10px; }

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

@media (max-width: 980px) {
  .profile { grid-template-columns: 1fr 1.15fr; gap: 50px; }
  .profile-facts { grid-template-columns: 1fr; gap: 10px; }
  .profile-facts div { display: grid; grid-template-columns: 130px 1fr; align-items: baseline; }
  .profile-facts span { max-width: none; }
  .case-intro { grid-template-columns: 1fr; }
  .case-intro .eyebrow { margin-bottom: -18px; }
  .chapter-copy { grid-column: 1 / 6; }
  .chapter-image-main { grid-column: 6 / 13; }
  .chapter-two .chapter-copy { grid-column: 8 / 13; }
  .chapter-four .chapter-copy { grid-column: 8 / 13; }
  .field-note { grid-template-columns: 1fr; }
  .field-note-copy { position: static; }
  .expertise { grid-template-columns: 1fr; }
  .expertise-heading { position: static; }
  .experience { grid-template-columns: 1fr; }
  .locations { justify-content: flex-start; margin-top: 24px; }
  .experience-image { grid-column: auto; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { min-height: 72px; padding-inline: 18px; }
  .site-header.scrolled { min-height: 64px; }
  .wordmark strong { font-size: 18px; }
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: currentColor;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; background: currentColor; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    color: var(--forest);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: grid; gap: 0; }
  .site-nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-contact { border: 0; }

  .hero { min-height: 860px; }
  .hero-image { object-position: 60% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,24,18,.86) 0%, rgba(8,24,18,.35) 72%); }
  .hero-copy { left: 20px; bottom: 100px; width: calc(100% - 40px); }
  .hero h1 { font-size: clamp(52px, 15vw, 76px); }
  .hero-copy > p:not(.hero-kicker) { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-caption { display: none; }
  .hero-scroll { left: auto; right: 20px; bottom: 25px; }

  .profile {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    padding: 90px 0 110px;
  }
  .profile-image-wrap { position: static; }
  .profile-image-wrap img { aspect-ratio: 4 / 4.7; }
  .profile-copy { padding-top: 0; }
  .profile h2, .field-note h2, .expertise h2, .experience h2, .contact h2 { font-size: clamp(43px, 13vw, 62px); }
  .profile-facts div { grid-template-columns: 115px 1fr; }

  .interlude { min-height: 740px; }
  .interlude > img { object-position: 60% center; }
  .interlude-overlay { background: linear-gradient(0deg, rgba(13,31,24,.84), rgba(13,31,24,.26) 75%); }
  .interlude-copy { width: calc(100% - 36px); padding-top: 90px; }
  .interlude-copy h2 { font-size: 47px; }

  .case-study { padding-top: 100px; }
  .case-intro { width: calc(100% - 36px); margin-bottom: 120px; }
  .case-intro h2 { font-size: 68px; }
  .chapter {
    display: block;
    width: calc(100% - 36px);
    margin-bottom: 135px;
  }
  .chapter-number { top: -70px; font-size: 150px; }
  .chapter-copy { padding-top: 10px; margin-bottom: 40px; }
  .chapter-copy h3 { font-size: 43px; }
  .chapter-image-inset { width: 72%; margin: -45px 0 0 auto; transform: none; }
  .chapter-two .chapter-copy, .chapter-four .chapter-copy { padding-top: 10px; }
  .wide-image { margin: 0; }
  .wide-image img { aspect-ratio: 4 / 3; }
  .small-image { width: 62%; margin: -45px 0 0 auto; }
  .propagation-grid, .planting-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
  }
  .propagation-grid figure:first-child, .planting-strip figure:first-child { grid-column: 1 / 3; }
  .propagation-grid figure:nth-child(2), .planting-strip figure:nth-child(2), .planting-strip figure:nth-child(3) { margin-top: 0; transform: none; }
  .experiment-inset { width: 62%; margin: -40px 0 0 auto; }
  .chapter-six { width: 100%; padding: 100px 18px; }
  .chapter-six .chapter-number { top: 42px; left: 18px; }
  .current-aerial { margin-top: 45px; }
  .current-aerial img { aspect-ratio: 4 / 3; }

  .field-note { width: calc(100% - 36px); padding: 110px 0; }
  .field-note-gallery { gap: 15px; }
  .tour-two { margin-top: 30px; }
  .expertise { padding: 100px 18px; }
  .experience { width: calc(100% - 36px); padding: 110px 0; }
  .experience-image { margin-top: 45px; }
  .experience-image img { aspect-ratio: 4 / 3; }
  .contact { min-height: 690px; }
  .contact-copy { width: calc(100% - 36px); }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

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

/* Preview revision: restore the original editorial feel, add Ben to the hero,
   disperse a few quotes, and remove image/text collisions. */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr);
  gap: clamp(42px, 7vw, 96px);
  width: min(calc(100% - 48px), var(--container));
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 0 94px;
  align-items: center;
}
.hero-copy {
  position: static;
  left: auto;
  bottom: auto;
  width: auto;
  max-width: 760px;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 6.6vw, 106px);
}
.hero-copy > p:not(.hero-kicker) { max-width: 640px; }
.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
  margin-top: 34px;
  padding: 10px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -18px -18px 22px;
  border: 1px solid rgba(255,255,255,.38);
}
.hero-portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
}
.hero-portrait figcaption {
  margin: 9px 5px 1px;
  color: #526058;
}

.pull-quote {
  padding: clamp(72px, 9vw, 118px) 24px;
  color: var(--forest);
  background: var(--paper-deep);
  text-align: center;
}
.pull-quote blockquote {
  width: min(100%, 1050px);
  margin: 0 auto;
}
.pull-quote p,
.chapter-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.pull-quote cite,
.chapter-quote cite {
  display: block;
  margin-top: 18px;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .62;
}
.pull-quote-dark {
  color: #fff;
  background: #10271f;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.pull-quote-rust {
  color: #fff;
  background: var(--rust);
}
.chapter-quote {
  width: min(calc(100% - 48px), 980px);
  margin: -55px auto clamp(130px, 15vw, 210px);
  padding: 38px clamp(24px, 5vw, 62px);
  color: var(--forest);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.chapter-quote p { font-size: clamp(34px, 4vw, 58px); }

/* Keep the editorial layout, but do not overlap imagery with copy. */
.chapter-one .chapter-image-main {
  grid-column: 6 / 13;
  grid-row: 1;
}
.chapter-one .chapter-image-inset {
  grid-column: 7 / 12;
  grid-row: 2;
  margin-top: 34px;
  transform: none;
}
.chapter-two .wide-image {
  grid-column: 1 / 8;
  grid-row: 1;
}
.chapter-two .chapter-copy {
  grid-column: 9 / 13;
  grid-row: 1;
  padding-top: 10px;
}
.chapter-two .small-image {
  grid-column: 9 / 13;
  grid-row: 2;
  margin-top: 36px;
}
.chapter-four .experiment-main {
  grid-column: 1 / 8;
  grid-row: 1;
}
.chapter-four .chapter-copy {
  grid-column: 9 / 13;
  grid-row: 1;
  padding-top: 18px;
}
.chapter-four .experiment-inset {
  grid-column: 9 / 13;
  grid-row: 2;
  width: 100%;
  margin-top: 36px;
  transform: none;
}
.chapter-four .experiment-inset img { aspect-ratio: 4 / 3; }

.field-note-gallery .tour-two img,
.field-note-gallery .tour-three img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr .62fr;
    gap: 38px;
  }
  .hero h1 { font-size: clamp(54px, 8vw, 88px); }
  .hero-portrait { width: min(100%, 360px); }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    width: calc(100% - 36px);
    padding: 94px 0 100px;
  }
  .hero-copy {
    order: 2;
    width: 100%;
  }
  .hero-portrait {
    order: 1;
    justify-self: start;
    width: min(82vw, 360px);
    margin: 0 0 8px auto;
  }
  .hero h1 { font-size: clamp(50px, 14vw, 72px); }
  .hero-caption { display: none; }
  .pull-quote {
    padding: 70px 18px;
  }
  .pull-quote p { font-size: 40px; }
  .chapter-quote {
    width: calc(100% - 36px);
    margin: -30px auto 115px;
    padding: 30px 12px;
  }
  .chapter-quote p { font-size: 35px; }

  .chapter-one .chapter-image-inset,
  .chapter-two .small-image,
  .chapter-four .experiment-inset {
    width: 100%;
    margin: 24px 0 0;
  }
}
