:root {
	--ink: #18211b;
	--ink-soft: #2b372f;
	--paper: #f4f0e7;
	--paper-light: #fffdf8;
	--paper-deep: #e7e0d3;
	--moss: #6e7f6b;
	--moss-dark: #465846;
	--rust: #b8673d;
	--line: rgba(24, 33, 27, 0.16);
	--line-light: rgba(255, 253, 248, 0.19);
	--serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
	--sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--shell: min(1280px, calc(100vw - 48px));
	--reading: min(760px, calc(100vw - 48px));
	--section: clamp(4.5rem, 8vw, 8.5rem);
	--radius: 2px;
	--shadow: 0 22px 55px rgba(24, 33, 27, 0.12);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

figure,
blockquote {
	margin: 0;
}

a {
	color: inherit;
	text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.04;
}

h1 {
	font-size: clamp(3.3rem, 8vw, 8.4rem);
}

h2 {
	font-size: clamp(2.25rem, 4.7vw, 4.85rem);
}

h3 {
	font-size: clamp(1.4rem, 2vw, 2rem);
}

::selection {
	color: var(--paper-light);
	background: var(--moss-dark);
}

:focus-visible {
	outline: 2px solid var(--rust);
	outline-offset: 4px;
}

.site-shell {
	width: var(--shell);
	margin-inline: auto;
}

.reading-shell {
	width: var(--reading);
}

.section-space {
	padding-block: var(--section);
}

.section-space--paper {
	background: var(--paper-light);
}

.section-space--ink {
	color: var(--paper-light);
	background: var(--ink);
}

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	color: var(--paper-light);
	background: var(--ink);
	transform: translateY(-180%);
}

.skip-link:focus {
	transform: translateY(0);
}

.eyebrow {
	margin-bottom: 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.19em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lead {
	font-family: var(--serif);
	font-size: clamp(1.28rem, 2vw, 1.68rem);
	line-height: 1.55;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.78rem 1.35rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.095em;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--ink {
	color: var(--paper-light);
	background: var(--ink);
}

.button--ink:hover {
	background: var(--moss-dark);
}

.button--paper {
	color: var(--ink);
	background: var(--paper-light);
}

.button--paper:hover {
	background: var(--paper-deep);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link::after {
	content: "→";
	font-size: 1.1rem;
	font-weight: 400;
	transition: transform 180ms ease;
}

.text-link:hover::after {
	transform: translateX(5px);
}

.text-link--light {
	color: var(--paper-light);
}

.site-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid var(--line);
	background: rgba(244, 240, 231, 0.94);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 86px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-brand__text {
	display: grid;
	gap: 0.12rem;
}

.site-brand__text strong {
	font-family: var(--serif);
	font-size: 1.14rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1;
}

.site-brand__text small {
	font-size: 0.65rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1.25rem, 2.6vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	position: relative;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav-toggle {
	display: none;
	padding: 8px 0;
	border: 0;
	color: var(--ink);
	background: transparent;
	cursor: pointer;
}

.home-hero {
	position: relative;
	min-height: calc(100svh - 86px);
	overflow: hidden;
	color: var(--paper-light);
	background:
		radial-gradient(circle at 77% 24%, rgba(110, 127, 107, 0.48), transparent 30%),
		linear-gradient(135deg, var(--ink), #314136);
}

.home-hero__image,
.home-hero__veil {
	position: absolute;
	inset: 0;
}

.home-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__veil {
	background:
		linear-gradient(90deg, rgba(13, 20, 15, 0.9) 0%, rgba(13, 20, 15, 0.47) 58%, rgba(13, 20, 15, 0.24) 100%),
		linear-gradient(0deg, rgba(13, 20, 15, 0.68) 0%, transparent 48%);
}

.home-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	min-height: calc(100svh - 86px);
	padding-top: 7rem;
	padding-bottom: 3.5rem;
	gap: 4rem;
}

.home-hero__content {
	max-width: 900px;
}

.home-hero h1 {
	max-width: 950px;
	margin-bottom: 1.4rem;
}

.home-hero__tagline {
	max-width: 580px;
	margin-bottom: 2.35rem;
	font-family: var(--serif);
	font-size: clamp(1.25rem, 2.1vw, 1.7rem);
	line-height: 1.45;
}

.home-hero__stats {
	display: grid;
	align-self: stretch;
	align-content: end;
	margin: 0;
	border-left: 1px solid var(--line-light);
}

.home-hero__stats div {
	min-width: 135px;
	padding: 1.15rem 0 1.15rem 1.5rem;
	border-top: 1px solid var(--line-light);
}

.home-hero__stats div:last-child {
	border-bottom: 1px solid var(--line-light);
}

.home-hero__stats dt {
	margin-bottom: 0.25rem;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home-hero__stats dd {
	font-family: var(--serif);
	font-size: 2.2rem;
	line-height: 1;
}

.home-intro__grid {
	display: grid;
	grid-template-columns: minmax(150px, 0.6fr) minmax(0, 2fr);
	gap: 2rem;
}

.home-intro h2 {
	max-width: 950px;
	margin-bottom: 2rem;
}

.home-intro .lead {
	max-width: 800px;
}

.signature-line {
	margin-top: 2rem;
	color: var(--moss-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: clamp(2.2rem, 5vw, 4rem);
	gap: 2rem;
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading > p {
	max-width: 500px;
	margin-bottom: 0.4rem;
}

.section-heading--light {
	border-color: var(--line-light);
}

.bird-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 2vw, 2rem);
}

.bird-card {
	min-width: 0;
}

.bird-card__image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--paper-deep);
}

.bird-card__image img,
.bird-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.bird-card__placeholder {
	display: block;
	background:
		linear-gradient(145deg, transparent 47%, rgba(24, 33, 27, 0.08) 48%, rgba(24, 33, 27, 0.08) 52%, transparent 53%),
		var(--paper-deep);
}

.bird-card__image:hover img {
	transform: scale(1.025);
}

.bird-card__number {
	position: absolute;
	top: 12px;
	left: 12px;
	min-width: 50px;
	padding: 0.5rem 0.65rem;
	color: var(--paper-light);
	background: rgba(24, 33, 27, 0.88);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-align: center;
}

.bird-card__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	padding-top: 1.15rem;
	gap: 1rem;
}

.bird-card h3 {
	margin-bottom: 0.35rem;
	font-size: clamp(1.38rem, 2vw, 1.8rem);
}

.bird-card h3 a {
	text-decoration: none;
}

.bird-card__scientific {
	margin-bottom: 0;
	color: var(--moss-dark);
	font-family: var(--serif);
	font-size: 0.94rem;
}

.bird-card__meta {
	display: grid;
	justify-items: end;
	gap: 0.2rem;
	color: rgba(24, 33, 27, 0.66);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: right;
	text-transform: uppercase;
}

.home-method {
	border-top: 1px solid var(--line);
}

.home-method__grid {
	display: grid;
	grid-template-columns: 0.7fr 1.4fr 1fr;
	align-items: start;
	gap: clamp(2rem, 5vw, 6rem);
}

.home-method__number {
	color: var(--paper-deep);
	font-family: var(--serif);
	font-size: clamp(5rem, 12vw, 11rem);
	letter-spacing: -0.08em;
	line-height: 0.72;
}

.home-method h2 {
	font-size: clamp(2rem, 4vw, 4rem);
}

.home-method__copy {
	padding-top: 2rem;
}

.term-list {
	border-top: 1px solid var(--line-light);
}

.term-list a {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr) auto;
	align-items: baseline;
	padding: 1.3rem 0;
	border-bottom: 1px solid var(--line-light);
	text-decoration: none;
	transition: padding 180ms ease, color 180ms ease;
}

.term-list a:hover {
	padding-inline: 1rem;
	color: #c6d5c2;
}

.term-list span,
.term-list small {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.term-list strong {
	font-family: var(--serif);
	font-size: clamp(1.4rem, 3vw, 2.5rem);
	font-weight: 500;
}

.home-closing__inner {
	max-width: 1020px;
	text-align: center;
}

.home-closing blockquote {
	margin: 0 auto 2.5rem;
	font-family: var(--serif);
	font-size: clamp(2rem, 4.7vw, 4.5rem);
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.home-closing__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.archive-hero,
.page-hero {
	color: var(--paper-light);
	background: var(--ink);
}

.archive-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
	align-items: end;
	padding-top: clamp(5rem, 10vw, 9rem);
	padding-bottom: clamp(3rem, 7vw, 6rem);
	gap: 5rem;
}

.archive-hero h1 {
	margin-bottom: 0;
	font-size: clamp(3.4rem, 8vw, 7.5rem);
}

.archive-hero__inner > p {
	margin-bottom: 0.6rem;
	font-family: var(--serif);
	font-size: 1.15rem;
}

.archive-filters {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr) auto;
	align-items: end;
	padding-bottom: 1.8rem;
	border-bottom: 1px solid var(--line);
	gap: 1rem;
}

.archive-filters label {
	display: grid;
	gap: 0.45rem;
}

.archive-filters label > span {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.archive-filters input,
.archive-filters select {
	width: 100%;
	height: 48px;
	padding: 0 0.75rem;
	border: 1px solid var(--line);
	border-radius: 0;
	color: var(--ink);
	background: transparent;
}

.archive-result-count {
	display: flex;
	justify-content: space-between;
	margin: 1rem 0 3rem;
	color: rgba(24, 33, 27, 0.65);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.archive-empty {
	max-width: 650px;
	margin: 3rem auto;
	padding: clamp(2rem, 6vw, 5rem);
	border: 1px solid var(--line);
	text-align: center;
}

.archive-empty--home {
	margin-block: 0;
}

.archive-empty h2,
.archive-empty h3 {
	margin-bottom: 1rem;
}

.archive-empty .button {
	margin-top: 1rem;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4rem;
	gap: 0.6rem;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--line);
	text-decoration: none;
}

.page-numbers.current {
	color: var(--paper-light);
	background: var(--ink);
}

.species-header {
	padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(2.8rem, 6vw, 5rem);
}

.breadcrumbs {
	display: flex;
	margin-bottom: clamp(3rem, 6vw, 6rem);
	gap: 0.65rem;
	color: rgba(24, 33, 27, 0.62);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.species-header__title {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: end;
	gap: clamp(2rem, 5vw, 5rem);
}

.species-number {
	display: grid;
	width: clamp(120px, 15vw, 180px);
	height: clamp(120px, 15vw, 180px);
	align-content: center;
	margin-bottom: 0.75rem;
	border: 1px solid var(--ink);
	border-radius: 50%;
	text-align: center;
}

.species-number span {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.species-number strong {
	font-family: var(--serif);
	font-size: clamp(2.3rem, 5vw, 4rem);
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: 1;
}

.species-header h1 {
	margin-bottom: 0.4rem;
	font-size: clamp(3.6rem, 9vw, 8.5rem);
}

.species-header__scientific {
	margin-bottom: 0;
	color: var(--moss-dark);
	font-family: var(--serif);
	font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.species-header__facts {
	display: flex;
	flex-wrap: wrap;
	margin: clamp(3rem, 5vw, 5rem) 0 0;
	border-top: 1px solid var(--line);
}

.species-header__facts div {
	flex: 1 1 220px;
	padding: 1.15rem 1.25rem 0 0;
}

.species-header__facts div + div {
	padding-left: 1.25rem;
	border-left: 1px solid var(--line);
}

.species-header__facts dt {
	margin-bottom: 0.2rem;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.species-header__facts dd {
	font-family: var(--serif);
	font-size: 1.15rem;
}

.species-hero-image {
	width: min(1500px, calc(100vw - 32px));
	margin-inline: auto;
}

.species-hero-image button,
.portfolio-grid button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
}

.species-hero-image img {
	width: 100%;
	max-height: 85vh;
	object-fit: cover;
}

.species-hero-image figcaption,
.portfolio-grid figcaption {
	margin-top: 0.65rem;
	font-size: 0.7rem;
	line-height: 1.5;
}

.species-reading-grid {
	display: grid;
	grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.7fr);
	gap: clamp(2rem, 7vw, 7rem);
}

.species-reading-grid h2 {
	font-size: clamp(2rem, 4vw, 3.6rem);
}

.prose {
	font-family: var(--serif);
	font-size: 1.08rem;
	line-height: 1.8;
}

.prose--lead {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	line-height: 1.72;
}

.prose > *:last-child {
	margin-bottom: 0;
}

.prose a {
	color: var(--moss-dark);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
}

.portfolio-grid figure:nth-child(even) {
	margin-top: clamp(2rem, 8vw, 7rem);
}

.portfolio-grid figure.portfolio-grid__wide {
	grid-column: 1 / -1;
	margin-top: 0;
}

.portfolio-grid img {
	width: 100%;
	max-height: 850px;
	object-fit: cover;
}

.species-reference .section-heading {
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}

.timeline {
	border-top: 1px solid var(--line);
}

.timeline-entry {
	position: relative;
	display: grid;
	grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.4fr) minmax(220px, 0.8fr);
	padding: clamp(2rem, 5vw, 4.5rem) 0;
	border-bottom: 1px solid var(--line);
	gap: clamp(2rem, 5vw, 5rem);
}

.timeline-entry::before {
	position: absolute;
	top: -5px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--rust);
	content: "";
}

.timeline-entry__date {
	display: grid;
	align-content: start;
	gap: 0.35rem;
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.timeline-entry__date span {
	color: rgba(24, 33, 27, 0.62);
}

.timeline-entry h3 {
	margin-bottom: 1.2rem;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.timeline-entry__image button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.timeline-entry__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.reference-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.reference-grid section {
	padding: clamp(1.5rem, 3vw, 3rem);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.reference-grid__overview {
	grid-column: 1 / -1;
}

.reference-grid h3 {
	margin-bottom: 1.2rem;
	font-family: var(--sans);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.species-index {
	padding: 2.2rem 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.species-index__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem;
}

.species-index h3 {
	margin-bottom: 0.65rem;
	font-family: var(--sans);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.species-index p {
	margin: 0;
}

.species-index a {
	display: inline-block;
	margin: 0 0.4rem 0.4rem 0;
	font-family: var(--serif);
}

.species-field-note__inner {
	display: grid;
	grid-template-columns: 1fr 2fr 0.5fr;
	gap: 2rem;
}

.species-field-note .prose {
	grid-column: 2;
}

.species-actions__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(230px, 0.7fr);
	align-items: end;
	gap: 4rem;
}

.species-actions h2 {
	max-width: 900px;
	margin-bottom: 0;
	font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.species-actions__buttons {
	display: grid;
	justify-items: start;
	gap: 1.4rem;
}

.page-hero {
	padding: clamp(5rem, 10vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.page-hero--compact {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

.page-hero h1 {
	margin-bottom: 0;
	font-size: clamp(3rem, 7vw, 6.6rem);
}

.journal-entry__header h1 {
	font-size: clamp(3rem, 7vw, 6rem);
}

.journal-entry__header .lead {
	margin-top: 1.5rem;
	color: rgba(255, 253, 248, 0.78);
}

.journal-entry__hero {
	width: min(1400px, calc(100vw - 32px));
	margin-inline: auto;
	transform: translateY(-2rem);
}

.journal-entry__hero img {
	width: 100%;
	max-height: 780px;
	object-fit: cover;
}

.entry-content {
	min-height: 35vh;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2em;
}

.entry-content h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
}

.entry-content h3 {
	font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.entry-content figure,
.entry-content .wp-block-image {
	margin-block: 2.5rem;
}

.entry-content .alignwide {
	width: min(1100px, calc(100vw - 48px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.journal-grid {
	display: grid;
	gap: 5rem;
}

.journal-card {
	display: grid;
	grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 6rem);
}

.journal-card:nth-child(even) .journal-card__image {
	order: 2;
}

.journal-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.journal-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.journal-card__image:hover img {
	transform: scale(1.025);
}

.journal-card h2 {
	font-size: clamp(2rem, 4vw, 3.8rem);
}

.journal-card h2 a,
.search-result h2 a {
	text-decoration: none;
}

.project-hero {
	padding: clamp(5.5rem, 10vw, 10rem) 0 clamp(4.5rem, 8vw, 7.5rem);
	color: var(--paper-light);
	background: var(--ink);
}

.project-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.55fr);
	align-items: end;
	gap: clamp(3rem, 8vw, 8rem);
}

.project-hero h1 {
	max-width: 1000px;
	margin-bottom: 0;
	font-size: clamp(3.5rem, 7.2vw, 7.8rem);
}

.project-hero__statement {
	margin-bottom: 0;
	padding-left: 1.5rem;
	border-left: 1px solid var(--line-light);
	color: rgba(255, 253, 248, 0.72);
	font-family: var(--serif);
	font-size: clamp(1.08rem, 1.6vw, 1.35rem);
	line-height: 1.65;
}

.editorial-split {
	display: grid;
	grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 8vw, 8rem);
}

.editorial-split > .eyebrow {
	padding-top: 0.55rem;
}

.editorial-split > div {
	max-width: 880px;
}

.editorial-split h2 {
	margin-bottom: 2rem;
}

.editorial-split .button {
	margin-top: 1.2rem;
}

.study-levels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.study-levels article {
	min-height: 340px;
	padding: clamp(1.7rem, 3vw, 3rem);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.study-levels article > span,
.licensing-grid article > span {
	display: block;
	margin-bottom: clamp(4rem, 7vw, 7rem);
	color: var(--moss-dark);
	font-family: var(--serif);
	font-size: 1.2rem;
}

.study-levels h3,
.licensing-grid h3 {
	margin-bottom: 1rem;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.study-levels p,
.licensing-grid p {
	margin-bottom: 0;
	color: rgba(24, 33, 27, 0.7);
}

.about-record__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
	gap: clamp(3rem, 9vw, 9rem);
}

.about-record h2 {
	max-width: 600px;
}

.archive-principles {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line-light);
	list-style: none;
}

.archive-principles li {
	display: grid;
	grid-template-columns: 55px 1fr;
	align-items: center;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--line-light);
	gap: 1rem;
}

.archive-principles span {
	color: rgba(255, 253, 248, 0.48);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.archive-principles strong {
	font-family: var(--serif);
	font-size: clamp(1.35rem, 2vw, 1.9rem);
	font-weight: 500;
}

.about-creator__grid {
	display: grid;
}

.about-creator__grid--with-image {
	grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(3rem, 9vw, 9rem);
}

.about-creator__portrait {
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.about-creator__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-creator__copy {
	max-width: 850px;
}

.about-creator__copy h2 {
	margin-bottom: 2rem;
}

.licensing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.licensing-grid article {
	min-height: 370px;
	padding: clamp(1.7rem, 3.5vw, 3.5rem);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.licensing-steps {
	margin: 3rem 0 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.licensing-steps li {
	display: grid;
	grid-template-columns: 55px 1fr;
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--line);
	gap: 1rem;
}

.licensing-steps li > span {
	padding-top: 0.25rem;
	color: var(--moss-dark);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.licensing-steps p {
	margin-bottom: 0;
}

.licensing-inquiry__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.15fr);
	align-items: start;
	gap: clamp(3rem, 9vw, 9rem);
}

.licensing-inquiry h2 {
	max-width: 650px;
}

.licensing-inquiry__grid > div:first-child > p:not(.eyebrow) {
	max-width: 520px;
	color: rgba(255, 253, 248, 0.7);
}

.licensing-inquiry__privacy {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line-light);
	font-size: 0.78rem;
}

.licensing-form {
	display: grid;
	gap: 1.25rem;
}

.licensing-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.licensing-form label {
	display: grid;
	gap: 0.5rem;
}

.licensing-form label > span {
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.licensing-form input,
.licensing-form select,
.licensing-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 253, 248, 0.35);
	border-radius: 0;
	color: var(--paper-light);
	background: rgba(255, 253, 248, 0.035);
}

.licensing-form input,
.licensing-form select {
	height: 52px;
	padding: 0 0.85rem;
}

.licensing-form textarea {
	min-height: 180px;
	padding: 0.85rem;
	resize: vertical;
}

.licensing-form select option {
	color: var(--ink);
	background: var(--paper-light);
}

.licensing-form input:focus,
.licensing-form select:focus,
.licensing-form textarea:focus {
	border-color: var(--paper-light);
	outline: 1px solid var(--paper-light);
	outline-offset: 2px;
}

.licensing-form .button {
	justify-self: start;
	margin-top: 0.5rem;
}

.form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.form-notice {
	margin-bottom: 2rem;
	padding: 1.3rem 1.4rem;
	border: 1px solid var(--line-light);
}

.form-notice h3 {
	margin-bottom: 0.45rem;
	font-size: 1.6rem;
}

.form-notice p:last-child {
	margin-bottom: 0;
}

.form-notice--success {
	border-color: rgba(190, 220, 188, 0.6);
	background: rgba(190, 220, 188, 0.08);
}

.form-notice--error {
	border-color: rgba(235, 168, 135, 0.7);
	background: rgba(184, 103, 61, 0.12);
}

.journal-index .archive-empty {
	padding-block: clamp(2rem, 4vw, 4rem);
}

.journal-index .archive-empty h2 {
	font-size: clamp(2.4rem, 5vw, 5rem);
}

.journal-index .archive-empty .button {
	margin-top: 1.2rem;
}

.search-result {
	padding: 2rem 0;
	border-bottom: 1px solid var(--line);
}

.search-result h2 {
	font-size: 2.3rem;
}

.not-found {
	min-height: 70vh;
}

.not-found .error-number {
	margin-bottom: -2rem;
	color: var(--paper-deep);
	font-family: var(--serif);
	font-size: clamp(7rem, 22vw, 18rem);
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.not-found h1 {
	font-size: clamp(3rem, 7vw, 6rem);
}

.vll-lightbox {
	width: 100vw;
	max-width: none;
	height: 100vh;
	max-height: none;
	margin: 0;
	padding: clamp(2.8rem, 6vw, 5rem);
	border: 0;
	color: var(--paper-light);
	background: rgba(13, 18, 15, 0.97);
}

.vll-lightbox[open] {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr) 50px;
	align-items: center;
}

.vll-lightbox::backdrop {
	background: rgba(13, 18, 15, 0.9);
}

.vll-lightbox figure {
	display: grid;
	justify-items: center;
	min-width: 0;
	max-height: 100%;
}

.vll-lightbox img {
	max-width: 100%;
	max-height: calc(100vh - 9rem);
	object-fit: contain;
}

.vll-lightbox figcaption {
	margin-top: 0.8rem;
	font-size: 0.74rem;
	text-align: center;
}

.vll-lightbox button {
	border: 0;
	color: var(--paper-light);
	background: transparent;
	font-size: 1.7rem;
	cursor: pointer;
}

.vll-lightbox__close {
	position: absolute;
	top: 1.2rem;
	right: 1.5rem;
}

.site-footer {
	padding: clamp(3rem, 7vw, 6rem) 0 2rem;
	color: var(--paper-light);
	background: #111713;
}

.site-footer__lead {
	display: flex;
	align-items: end;
	justify-content: space-between;
	padding-bottom: 3rem;
	border-bottom: 1px solid var(--line-light);
	gap: 2rem;
}

.site-footer h2 {
	margin-bottom: 0.5rem;
	font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.site-footer__lead p:last-child {
	margin-bottom: 0;
	color: rgba(255, 253, 248, 0.65);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.8rem;
	gap: 2rem;
	color: rgba(255, 253, 248, 0.58);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin-bottom: 0;
}

.site-footer__nav {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
	list-style: none;
}

.site-footer__nav a {
	text-decoration: none;
}

@media (max-width: 1100px) {
	.bird-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.archive-filters {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.archive-filters__search {
		grid-column: span 2;
	}

	.archive-filters .button {
		width: 100%;
	}

	.species-index__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	:root {
		--shell: min(100% - 32px, 1280px);
		--reading: min(100% - 32px, 760px);
	}

	.site-header__inner {
		min-height: 72px;
	}

	.site-nav-toggle {
		display: flex;
		align-items: center;
		gap: 0.7rem;
	}

	.site-nav-toggle__label {
		font-size: 0.68rem;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
	}

	.site-nav-toggle__icon,
	.site-nav-toggle__icon::before,
	.site-nav-toggle__icon::after {
		display: block;
		width: 22px;
		height: 1px;
		background: currentColor;
		content: "";
		transition: transform 180ms ease;
	}

	.site-nav-toggle__icon {
		position: relative;
	}

	.site-nav-toggle__icon::before {
		position: absolute;
		top: -6px;
	}

	.site-nav-toggle__icon::after {
		position: absolute;
		top: 6px;
	}

	.menu-open .site-nav-toggle__icon {
		background: transparent;
	}

	.menu-open .site-nav-toggle__icon::before {
		transform: translateY(6px) rotate(45deg);
	}

	.menu-open .site-nav-toggle__icon::after {
		transform: translateY(-6px) rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		inset: 72px 0 0;
		display: none;
		padding: 3rem 1.5rem;
		color: var(--paper-light);
		background: var(--ink);
	}

	.menu-open .site-nav {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 0;
	}

	.site-nav li {
		border-bottom: 1px solid var(--line-light);
	}

	.site-nav a {
		display: block;
		padding: 1.2rem 0;
		font-family: var(--serif);
		font-size: 1.7rem;
		font-weight: 500;
		letter-spacing: -0.02em;
		text-transform: none;
	}

	.home-hero,
	.home-hero__inner {
		min-height: calc(100svh - 72px);
	}

	.home-hero__inner {
		grid-template-columns: 1fr;
		align-content: end;
		align-items: initial;
		gap: 2.5rem;
	}

	.home-hero__stats {
		grid-template-columns: repeat(3, 1fr);
		border-top: 1px solid var(--line-light);
		border-left: 0;
	}

	.home-hero__stats div {
		min-width: 0;
		padding: 0.85rem 0.8rem 0 0;
		border-top: 0;
	}

	.home-hero__stats div + div {
		padding-left: 0.8rem;
		border-left: 1px solid var(--line-light);
	}

	.home-hero__stats div:last-child {
		border-bottom: 0;
	}

	.home-intro__grid,
	.home-method__grid,
	.archive-hero__inner,
	.species-reading-grid,
	.species-actions__inner,
	.timeline-entry,
	.project-hero__inner,
	.editorial-split,
	.about-record__grid,
	.about-creator__grid--with-image,
	.licensing-inquiry__grid {
		grid-template-columns: 1fr;
	}

	.project-hero__statement {
		max-width: 680px;
	}

	.study-levels {
		grid-template-columns: 1fr;
	}

	.study-levels article {
		min-height: 0;
	}

	.study-levels article > span,
	.licensing-grid article > span {
		margin-bottom: 3rem;
	}

	.home-method__number {
		font-size: 7rem;
	}

	.home-method__copy {
		padding-top: 0;
	}

	.archive-hero__inner {
		gap: 2rem;
	}

	.species-field-note__inner {
		grid-template-columns: 1fr;
	}

	.species-field-note .prose {
		grid-column: 1;
	}

	.journal-card {
		grid-template-columns: 1fr;
	}

	.journal-card:nth-child(even) .journal-card__image {
		order: initial;
	}
}

@media (max-width: 600px) {
	h1 {
		font-size: clamp(3rem, 16vw, 5.2rem);
	}

	.site-brand__text small {
		display: none;
	}

	.home-hero__inner {
		padding-top: 4rem;
		padding-bottom: 2rem;
	}

	.home-hero__tagline {
		font-size: 1.15rem;
	}

	.home-hero__stats dt {
		font-size: 0.55rem;
	}

	.home-hero__stats dd {
		font-size: 1.7rem;
	}

	.section-heading,
	.site-footer__lead,
	.site-footer__bottom {
		display: grid;
		align-items: initial;
	}

	.bird-grid {
		grid-template-columns: 1fr;
	}

	.bird-card__content {
		grid-template-columns: 1fr;
	}

	.bird-card__meta {
		justify-items: start;
		text-align: left;
	}

	.term-list a {
		grid-template-columns: 45px minmax(0, 1fr);
	}

	.term-list small {
		display: none;
	}

	.home-closing__links {
		flex-direction: column;
	}

	.archive-filters {
		grid-template-columns: 1fr;
	}

	.archive-filters__search {
		grid-column: auto;
	}

	.archive-result-count {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.6rem;
	}

	.species-header__title {
		grid-template-columns: 1fr;
	}

	.species-number {
		width: 100px;
		height: 100px;
	}

	.species-header__facts {
		display: grid;
	}

	.species-header__facts div + div {
		padding-left: 0;
		border-left: 0;
	}

	.portfolio-grid,
	.reference-grid,
	.species-index__grid,
	.licensing-grid,
	.licensing-form__grid {
		grid-template-columns: 1fr;
	}

	.licensing-grid article {
		min-height: 0;
	}

	.portfolio-grid figure:nth-child(even) {
		margin-top: 0;
	}

	.reference-grid__overview {
		grid-column: auto;
	}

	.vll-lightbox {
		padding: 3.5rem 1rem 1rem;
	}

	.vll-lightbox[open] {
		grid-template-columns: 35px minmax(0, 1fr) 35px;
	}

	.site-footer__nav {
		flex-wrap: wrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
