:root {
  --ink: #171714;
  --muted: #68635b;
  --paper: #f5f1ea;
  --paper-deep: #ece6dc;
  --gold: #ad781f;
  --gold-light: #d7b376;
  --line: rgba(43, 38, 31, .15);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --header-height: 92px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

a { color: inherit; }
button, input, select { color: inherit; font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
figure, blockquote { margin: 0; }

.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;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  font-family: var(--sans);
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 96px), var(--container)); margin-inline: auto; }

.site-header {
  height: var(--header-height);
  padding: 0 max(48px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 234, .9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { display: inline-flex; align-items: center; gap: 30px; text-decoration: none; }
.brand-mark {
  position: relative;
  width: 61px;
  height: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-right: 1px solid var(--line);
  font-size: 18px;
}
.brand-mark span:first-child { align-self: start; padding-top: 4px; }
.brand-mark span:last-child { align-self: end; padding: 0 0 3px 5px; }
.brand-mark i {
  position: absolute;
  left: 13px;
  top: 25px;
  width: 33px;
  height: 1px;
  background: var(--ink);
  transform: rotate(-48deg);
}
.brand-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .36em;
  white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: 56px; margin-left: auto; margin-right: 52px; }
.desktop-nav a {
  position: relative;
  padding: 37px 0 32px;
  text-decoration: none;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 11px;
  font-weight: 600;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: calc(50% - 3px);
  bottom: 23px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0);
  transition: transform .25s ease;
}
.desktop-nav a.active::after { transform: scale(1); }

.menu-button {
  width: 30px;
  height: 30px;
  padding: 5px;
  display: grid;
  grid-template: repeat(2, 5px) / repeat(2, 5px);
  gap: 6px;
  border: 0;
  background: transparent;
}
.menu-button span { border: 1px solid var(--ink); border-radius: 50%; transition: .25s; }
.menu-button.open span:nth-child(1) { transform: translate(5px, 5px); }
.menu-button.open span:nth-child(2) { transform: translate(-5px, 5px); }
.menu-button.open span:nth-child(3) { transform: translate(5px, -5px); }
.menu-button.open span:nth-child(4) { transform: translate(-5px, -5px); }
.mobile-panel {
  display: flex;
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: min(390px, 100vw);
  height: calc(100vh - var(--header-height));
  padding: 48px 36px 34px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(245, 241, 234, .99);
  border-left: 1px solid var(--line);
  box-shadow: -18px 28px 55px rgba(46, 39, 28, .08);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .35s ease, visibility .35s;
}
.mobile-panel.open { transform: none; visibility: visible; }
.mobile-panel nav { display: flex; flex-direction: column; }
.mobile-panel a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 26px;
}
.mobile-panel a.active { color: var(--gold); }
.mobile-panel p { color: var(--muted); font-style: italic; }
body.menu-open { overflow: hidden; }

.page { animation: pageIn .45s ease both; }
.page[hidden] { display: none; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}
.eyebrow {
  margin: 0 0 28px;
  color: var(--gold);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 600;
}

.home-hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-copy { position: relative; z-index: 2; padding: 70px 0 75px; }
.hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(41px, 3.7vw, 56px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 400;
}
.hero-copy h1 em { font-weight: 400; }
.lead { margin: 28px 0 38px; color: #47433e; font-size: 17px; line-height: 1.55; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
}
.text-link span { font-family: var(--serif); font-size: 18px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.hero-art {
  height: 540px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-art img {
  width: 128%;
  max-width: none;
  transform: translate(4%, 2%);
  filter: contrast(.98) saturate(.9);
}

.essay {
  display: grid;
  grid-template-columns: 180px minmax(0, 880px);
  justify-content: center;
  gap: 70px;
  padding-top: 66px;
  padding-bottom: 100px;
}
.essay-index { padding-top: 4px; }
.essay-index .eyebrow { white-space: nowrap; }
.essay-rule { width: 1px; height: 90px; margin: 26px 0 18px 3px; background: var(--line); }
.reading-time {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.essay-body p { margin: 0 0 20px; font-size: 17px; line-height: 1.65; }
.essay-body .essay-opening { font-size: 26px; line-height: 1.35; }
.essay-body .standalone { font-size: 20px; font-style: italic; }
.essay-body strong { font-weight: 600; }
.inspiration-note {
  margin: 31px 0 !important;
  padding: 19px 23px;
  border-left: 2px solid var(--gold);
  background: rgba(236, 230, 220, .58);
  font-style: italic;
}
.inspiration-note a {
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
blockquote {
  position: relative;
  margin: 34px 0;
  padding: 26px 38px 25px 82px;
  border: 1px solid rgba(173, 120, 31, .42);
  background: rgba(255,255,255,.14);
  color: #38332d;
  font-style: italic;
}
blockquote span {
  position: absolute;
  left: 29px;
  top: 7px;
  color: var(--gold);
  font-size: 58px;
  font-style: normal;
}
blockquote p { margin: 0 !important; font-size: 18px !important; line-height: 1.55 !important; }
.essay-divider {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 42px 0;
  color: var(--gold);
}
.essay-divider::before, .essay-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.essay-divider span { font-size: 19px; }
.cube-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 45px;
  align-items: center;
  margin: 14px 0 24px;
}
.cube-figure { color: #413d37; }
.cube-figure svg { width: 100%; }
.gold-stroke { stroke: var(--gold-light); }
.dashed { stroke-dasharray: 5 5; }
.figure-labels { font-family: var(--serif); font-style: italic; font-size: 16px; fill: var(--ink); }
.closing-statement {
  margin: 40px 0 34px;
  padding: 29px 34px;
  border-left: 2px solid var(--gold);
  background: rgba(236, 230, 220, .65);
}
.closing-statement p { margin: 0 0 8px; font-size: 22px; line-height: 1.35; }
.closing-statement p:last-child { margin-bottom: 0; }
.essay-body .essay-ending { font-size: 21px; font-style: italic; }

.listing-hero {
  height: 300px;
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: center;
}
.listing-hero h1, .policy-hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.4vw, 88px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.035em;
}
.listing-hero h1 span, .policy-hero h1 span { color: var(--gold); }
.listing-hero .eyebrow { margin-bottom: 26px; }
.subtitle { margin: 22px 0 0; font-size: 20px; font-style: italic; }
.banana-sketch { height: 270px; overflow: hidden; display: flex; align-items: center; }
.banana-sketch img { width: 122%; max-width: none; transform: translate(-4%, 4%); opacity: .58; }
.orchard-sketch {
  color: rgba(145, 98, 25, .8);
  height: 254px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orchard-sketch svg { width: min(100%, 440px); height: 100%; overflow: visible; }
.orchard-sketch .faint { opacity: .18; }
.orchard-sketch .formula-text { fill: #5d5a54; font-size: 13px; }

.catalog { padding-bottom: 42px; min-height: 500px; }
.filter-bar {
  display: grid;
  grid-template-columns: minmax(280px, 1.9fr) repeat(3, minmax(150px, 1fr)) minmax(190px, 1.05fr);
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.filter-bar label {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255,255,255,.17);
}
.filter-bar select, .filter-bar input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 16px;
  font-size: 14px;
}
.filter-bar input::placeholder { color: #8a847c; }
.filter-bar label:focus-within { border-color: rgba(173,120,31,.75); box-shadow: 0 0 0 2px rgba(173,120,31,.09); }
.filter-bar .search-control { display: flex; align-items: center; }
.search-control svg { width: 18px; margin-left: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.search-control input { padding-left: 12px; }
.results-meta {
  min-height: 25px;
  padding-top: 9px;
  text-align: right;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.document-group {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}
.group-heading { display: flex; align-items: center; gap: 34px; padding: 14px 16px 14px 10px; }
.topic-icon { width: 50px; height: 50px; color: var(--gold); flex: 0 0 auto; }
.topic-icon svg { width: 100%; height: 100%; overflow: visible; }
.group-heading h2 { margin: 0; font-size: 22px; font-weight: 400; }
.group-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  line-height: 1.4;
}
.group-documents { display: flex; flex-direction: column; justify-content: center; padding: 10px 0; }
.coming-soon {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 9px;
  color: var(--muted);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
}
.coming-soon i {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
}
.awaiting-resources { min-height: 82px; }
.document-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 70px 70px 70px 125px 36px;
  align-items: center;
  min-height: 27px;
  font-size: 13px;
}
.document-title { display: flex; align-items: center; gap: 18px; min-width: 0; }
.document-title span:last-child { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pdf-icon {
  width: 20px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
}
.doc-cell { color: #555049; font-family: var(--sans); font-size: 10px; }
.download-button { width: 30px; height: 28px; border: 0; background: transparent; display: grid; place-items: center; }
.download-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.download-button:hover { color: var(--gold); }
.orchard-row {
  display: grid;
  grid-template-columns: 70px 235px minmax(400px, 1.2fr) minmax(250px, .8fr) 32px;
  align-items: center;
  min-height: 59px;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.orchard-row:hover { background: rgba(255,255,255,.2); }
.orchard-row .topic-icon { width: 44px; height: 44px; margin-left: 8px; }
.orchard-name { font-size: 20px; }
.subject-list { font-size: 13px; line-height: 1.5; }
.subject-list span:not(:last-child)::after { content: "·"; margin: 0 12px; color: var(--gold); }
.orchard-description { font-size: 13px; color: #514d47; }
.orchard-arrow { font-size: 25px; transition: transform .2s; }
.orchard-row:hover .orchard-arrow { transform: translateX(5px); color: var(--gold); }
.empty-state { padding: 70px 20px 90px; text-align: center; }
.empty-state > span { color: var(--gold); font-size: 55px; }
.empty-state h2 { margin: 10px 0; font-size: 28px; font-weight: 400; }
.empty-state p { color: var(--muted); }
.empty-state button {
  margin-top: 12px;
  border: 1px solid var(--ink);
  padding: 11px 20px;
  background: transparent;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}

.policy-hero {
  min-height: 320px;
  padding-top: 75px;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line);
}
.policy-hero h1 { margin-bottom: 25px; }
.policy-hero > p:last-child { max-width: 650px; margin: 0; font-size: 19px; font-style: italic; line-height: 1.5; }
.policy-content { max-width: 920px; padding-top: 65px; padding-bottom: 95px; }
.policy-content section { margin-bottom: 42px; }
.policy-content h2 { margin: 0 0 14px; font-size: 27px; font-weight: 400; }
.policy-content p { margin: 0 0 13px; font-size: 16px; line-height: 1.65; }
.policy-content p a { text-decoration-color: var(--gold); text-underline-offset: 4px; }

.site-footer { border-top: 1px solid var(--line); background: rgba(236, 230, 220, .58); }
.footer-inner {
  min-height: 156px;
  display: grid;
  grid-template-columns: 1.55fr .72fr .72fr;
  align-items: center;
}
.footer-inner > * { min-height: 92px; padding: 10px 38px; border-left: 1px solid var(--line); }
.footer-inner > *:first-child { border-left: 0; padding-left: 12px; }
.footer-brand { display: flex; align-items: center; gap: 25px; }
.footer-monogram {
  position: relative;
  width: 70px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid rgba(173,120,31,.32);
  font-size: 21px;
}
.footer-monogram span:first-child { align-self: start; padding: 8px 0 0 13px; }
.footer-monogram span:last-child { align-self: end; padding: 0 0 8px 8px; }
.footer-monogram i {
  position: absolute;
  left: 18px;
  top: 31px;
  width: 36px;
  height: 1px;
  background: var(--gold);
  transform: rotate(-48deg);
}
.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 10px;
}
.footer-brand p { margin: 0; color: #4f4a43; font-size: 13px; line-height: 1.5; }
.footer-links { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.footer-links a {
  text-decoration: none;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
  font-weight: 600;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin: 0;
  padding: 12px;
  text-align: center;
  border-top: 1px solid rgba(43,38,31,.08);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .08em;
}
.toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 100;
  max-width: 360px;
  padding: 15px 20px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --header-height: 78px; }
  .site-header { padding-inline: 36px; }
  .brand-name { font-size: 12px; }
  .desktop-nav { gap: 34px; margin-right: 36px; }
  .desktop-nav a { padding: 30px 0 27px; }
  .desktop-nav a::after { bottom: 17px; }
  .filter-bar { gap: 12px; grid-template-columns: minmax(230px, 1.6fr) repeat(3, minmax(125px, 1fr)) minmax(175px, 1fr); }
  .document-group { grid-template-columns: 255px 1fr; }
  .group-heading { gap: 20px; }
  .document-row { grid-template-columns: minmax(210px, 1fr) 55px 55px 50px 105px 32px; }
  .orchard-row { grid-template-columns: 58px 205px minmax(330px, 1fr) minmax(220px, .7fr) 30px; }
  .footer-inner > * { padding-inline: 22px; }
}

@media (max-width: 920px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .site-header { padding-inline: 24px; }
  .desktop-nav { display: none; }
  .brand-mark { display: none; }
  .brand-name { font-size: 12px; letter-spacing: .28em; }
  .menu-button { margin-left: auto; }
  .mobile-panel { inset: var(--header-height) 0 auto; width: 100%; min-height: calc(100vh - var(--header-height)); padding: 55px 24px; border-left: 0; box-shadow: none; }
  .mobile-panel a { padding: 18px 0; font-size: 36px; }
  .home-hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 62px 0 20px; }
  .hero-art { height: 390px; }
  .hero-art img { width: 108%; transform: none; }
  .essay { grid-template-columns: 120px 1fr; gap: 35px; }
  .cube-section { grid-template-columns: 1fr 240px; gap: 20px; }
  .listing-hero { height: 290px; grid-template-columns: 1fr 1fr; }
  .banana-sketch img { width: 155%; }
  .filter-bar { grid-template-columns: repeat(2, 1fr); }
  .filter-bar label:first-child, .filter-bar label:last-child { grid-column: 1 / -1; }
  .document-group { grid-template-columns: 1fr; padding: 16px 0; }
  .group-heading { padding: 2px 5px 12px; }
  .group-documents { border-left: 1px solid var(--line); margin-left: 28px; padding-left: 24px; }
  .document-row { grid-template-columns: minmax(190px, 1fr) 45px 45px 40px 95px 32px; }
  .orchard-row { grid-template-columns: 55px minmax(165px, .5fr) 1fr 30px; padding: 14px 0; }
  .orchard-description { display: none; }
  .footer-inner { grid-template-columns: 1.3fr .7fr .9fr; padding-block: 25px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { padding-inline: 18px; }
  .brand-name { font-size: 10px; letter-spacing: .23em; }
  .home-hero { display: flex; flex-direction: column; }
  .hero-art { order: -1; width: calc(100% + 36px); height: 245px; margin-inline: -18px; }
  .hero-art img { width: 125%; transform: translateY(3%); }
  .hero-copy { padding: 31px 0 50px; }
  .hero-copy h1 { font-size: 41px; line-height: 1.03; }
  .lead { font-size: 15px; }
  .essay { display: block; padding-top: 42px; padding-bottom: 60px; }
  .essay-index { margin-bottom: 38px; }
  .essay-rule { display: none; }
  .essay-body p { font-size: 16px; line-height: 1.6; }
  .essay-body .essay-opening { font-size: 23px; }
  blockquote { padding: 22px 18px 21px 48px; }
  blockquote span { left: 15px; }
  blockquote p { font-size: 16px !important; }
  .cube-section { display: flex; flex-direction: column; }
  .cube-figure { order: -1; width: 75%; }
  .closing-statement { padding: 24px 22px; }
  .closing-statement p { font-size: 19px; }
  .listing-hero { height: 310px; display: block; position: relative; padding-top: 48px; overflow: hidden; }
  .listing-hero > div:first-child { position: relative; z-index: 2; }
  .listing-hero h1 { font-size: 62px; }
  .subtitle { max-width: 270px; font-size: 17px; }
  .banana-sketch, .orchard-sketch { position: absolute; width: 70%; height: 250px; right: -50px; bottom: -15px; opacity: .43; }
  .banana-sketch img { width: 220%; transform: translate(-20%, 5%); }
  .orchard-sketch { width: 76%; }
  .catalog { padding-bottom: 20px; }
  .filter-bar { grid-template-columns: 1fr 1fr; gap: 9px; padding-bottom: 20px; }
  .filter-bar label { height: 45px; }
  .filter-bar label:first-child, .filter-bar label:last-child { grid-column: 1 / -1; }
  .filter-bar select, .filter-bar input { font-size: 12px; }
  .document-group { min-height: 0; }
  .group-heading h2 { font-size: 21px; }
  .group-heading .topic-icon { width: 43px; height: 43px; }
  .group-documents { margin-left: 22px; padding-left: 16px; padding-right: 2px; }
  .document-row { position: relative; display: block; min-height: 64px; padding: 8px 40px 8px 0; border-bottom: 1px dashed rgba(43,38,31,.12); }
  .document-row:last-child { border-bottom: 0; }
  .document-title { align-items: flex-start; gap: 10px; }
  .document-title span:last-child { white-space: normal; font-size: 13px; line-height: 1.3; }
  .pdf-icon { margin-top: 1px; }
  .document-row .doc-cell { display: inline-block; margin: 6px 10px 0 31px; }
  .document-row .doc-cell + .doc-cell { margin-left: 0; }
  .document-row .doc-pages { display: none; }
  .download-button { position: absolute; right: 2px; top: 12px; }
  .orchard-row { grid-template-columns: 50px 1fr 28px; min-height: 84px; }
  .orchard-row .topic-icon { width: 39px; height: 39px; margin: 0; }
  .orchard-name { font-size: 19px; }
  .subject-list { grid-column: 2; margin-top: -25px; padding-right: 10px; color: var(--muted); font-size: 11px; }
  .subject-list span:nth-child(n+3) { display: none; }
  .orchard-arrow { grid-column: 3; grid-row: 1 / 3; }
  .policy-hero { min-height: 280px; padding-top: 55px; padding-bottom: 50px; }
  .policy-hero h1 { font-size: 57px; }
  .policy-content { padding-top: 48px; padding-bottom: 70px; }
  .policy-content h2 { font-size: 24px; }
  .footer-inner { display: flex; flex-direction: column; align-items: stretch; padding-block: 32px 18px; }
  .footer-inner > * { min-height: auto; padding: 20px 6px; border: 0; border-bottom: 1px solid var(--line); }
  .footer-inner > *:first-child { padding: 0 6px 25px; }
  .footer-monogram { width: 58px; height: 55px; }
  .footer-monogram span:first-child { padding: 6px 0 0 10px; }
  .footer-monogram span:last-child { padding: 0 0 6px 6px; }
  .footer-monogram i { left: 14px; top: 27px; width: 31px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .toast { left: 18px; right: 18px; bottom: 18px; }
}

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