:root {
  --color-ink: #30364f;
  --color-ink-soft: rgba(48, 54, 79, 0.78);
  --color-muted: #acbac4;
  --color-parchment: #c7d3a6;
  --color-ivory: #e7edd2;
  --color-sage: #8faa67;
  --color-sage-deep: #4f693f;
  --color-sage-dark: #273f2d;
  --color-sage-soft: rgba(108, 139, 78, 0.26);
  --color-sage-wash: rgba(108, 139, 78, 0.18);
  --color-sage-border: rgba(57, 78, 48, 0.38);
  --color-moss: #a8bb7c;
  --color-straw: #bfc99a;
  --color-cream: #d7e0bf;
  --color-bg: #dce7c8;
  --color-surface: rgba(79, 105, 63, 0.18);
  --color-surface-alt: rgba(101, 128, 72, 0.3);
  --color-border: rgba(48, 54, 79, 0.16);
  --color-shadow: rgba(48, 54, 79, 0.12);
  --font-heading: Cambria, Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --wrap: 1120px;
  --wide-wrap: 1240px;
  --nav-height: 66px;
}

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

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% -6%, rgba(79, 105, 63, 0.42), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(48, 54, 79, 0.22), transparent 25rem),
    linear-gradient(180deg, #dce7c8, #c9d8ad 38%, #b7ca95 74%, #dbe6c7);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(48, 54, 79, 0.32);
  text-underline-offset: 0.18em;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--color-sage-deep);
}

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

:focus-visible {
  outline: 3px solid rgba(154, 177, 122, 0.78);
  outline-offset: 4px;
}

::selection {
  background: var(--color-moss);
  color: var(--color-ink);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--color-ink);
  color: var(--color-ivory);
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(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;
}

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(237, 238, 225, 0.58);
  backdrop-filter: blur(14px) saturate(128%);
  box-shadow: 0 8px 24px rgba(30, 43, 38, 0.08);
  transition: transform 220ms ease, opacity 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header .wrap {
  max-width: calc(var(--wide-wrap) + 48px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(84, 103, 79, 0.2);
  background: rgba(231, 237, 210, 0.9);
  box-shadow: 0 10px 30px rgba(30, 43, 38, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.nav {
  position: relative;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(28, 55, 36, 0.72);
  border-radius: 50%;
  background: #4f693f;
  box-shadow: 0 8px 18px rgba(30, 43, 38, 0.2);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.72rem, 1.35vw, 1.28rem);
}

.nav-links a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  color: rgba(28, 38, 43, 0.94);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.92);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #1f3326;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: rgba(39, 63, 45, 0.58);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-sage-border);
  border-radius: 6px;
  background: var(--color-sage-soft);
  color: var(--color-ink);
  padding: 0.55rem;
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  height: 2px;
  margin: 0.28rem 0;
  background: currentColor;
}

.side-nav {
  position: fixed;
  left: 0.85rem;
  top: 50%;
  z-index: 45;
  display: grid;
  gap: 0.28rem;
  width: clamp(7.75rem, 9vw, 9.25rem);
  padding: 0.34rem;
  border: 1px solid rgba(57, 78, 48, 0.1);
  border-radius: 16px;
  background: rgba(247, 250, 235, 0.42);
  box-shadow: 0 14px 32px rgba(31, 51, 38, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translate(calc(-100% - 1.2rem), -50%);
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms ease;
}

body.show-side-nav .side-nav {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(31, 51, 38, 0.72);
  padding: 0.46rem 0.64rem 0.46rem 0.78rem;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.18;
  text-decoration: none;
  pointer-events: auto;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.side-nav a::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: var(--color-sage-deep);
  transform: translateY(-50%);
  opacity: 0;
  transition: height 180ms ease, opacity 180ms ease;
}

.side-nav a:hover,
.side-nav a:focus-visible {
  border-color: rgba(57, 78, 48, 0.12);
  background: rgba(255, 255, 246, 0.42);
  color: var(--color-sage-dark);
  transform: translateX(0.16rem);
}

.side-nav a.is-active {
  border-color: rgba(57, 78, 48, 0.1);
  background: rgba(247, 250, 235, 0.28);
  color: var(--color-sage-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 246, 0.22);
  transform: translateX(0.22rem);
}

.side-nav a.is-active::before {
  height: 1rem;
  opacity: 1;
}

.section-shell {
  position: relative;
  padding-block: 104px;
  scroll-margin-top: 84px;
}

.section-shell.tint {
  background:
    linear-gradient(90deg, rgba(79, 105, 63, 0.24), rgba(143, 170, 103, 0.24) 44%, rgba(48, 54, 79, 0.1)),
    #d2dfb8;
  border-block: 1px solid rgba(57, 78, 48, 0.24);
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100vw;
  min-height: calc(100vh - var(--nav-height));
  height: 100vh;
  padding-block: 0;
  overflow: hidden;
  border-bottom: 8px solid rgba(95, 116, 74, 0.34);
  background: #263324;
}

.about-section {
  margin-top: 100vh;
}

#main > .section-shell:not(.hero) {
  z-index: 1;
  background-color: var(--color-bg);
}

#main > .section-shell:not(.hero):not(.tint):not(.about-section):not(.awards-section):not(.contact-section) {
  background:
    radial-gradient(circle at 12% -6%, rgba(79, 105, 63, 0.22), transparent 30rem),
    linear-gradient(180deg, #dce7c8, #c9d8ad);
}

.hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
}

.hero-grid > *,
.two-column > *,
  .about-grid > *,
  .education-grid > *,
  .diptych > *,
  .creative-sliders > *,
  .contact-panel > *,
  .page-hero-grid > *,
  .article-hero-grid > *,
  .article-layout > *,
  .gallery-layout > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: clamp(7rem, 14vh, 10rem);
  color: var(--color-ivory);
  text-shadow: 0 2px 18px rgba(20, 29, 20, 0.48);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero .eyebrow {
  color: rgba(240, 240, 219, 0.9);
}

.hero .eyebrow::before {
  background: rgba(240, 240, 219, 0.8);
}

.hero-line {
  display: block;
  width: clamp(4.5rem, 12vw, 8rem);
  height: 3px;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: rgba(240, 240, 219, 0.82);
}

.hero h1 {
  color: var(--color-ivory);
  font-size: clamp(4.2rem, 8vw, 6.8rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 3px 18px rgba(13, 24, 20, 0.52);
}

.eyebrow,
.card-label,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  color: var(--color-sage-deep);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-label,
.pill {
  font-size: 0.74rem;
}

.eyebrow::before {
  content: "";
  width: 2.1rem;
  height: 2px;
  background: var(--color-sage-deep);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1 {
  max-width: 13.5ch;
  font-size: 4.1rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.hero-kicker {
  margin-top: 1.2rem;
  color: rgba(240, 240, 219, 0.9);
  font-size: 1.04rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 620px;
  margin-top: 1.2rem;
  color: rgba(240, 240, 219, 0.92);
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}

.button-row,
.contact-actions,
.text-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button-row {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

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

.button-primary {
  border-color: rgba(48, 54, 79, 0.16);
  background: var(--color-sage-deep);
  color: var(--color-ivory);
  box-shadow: 0 10px 22px rgba(95, 116, 74, 0.26);
}

.button-primary:hover {
  color: var(--color-ivory);
  background: var(--color-sage-dark);
}

.hero .button-primary {
  border-color: rgba(240, 240, 219, 0.72);
  background: rgba(240, 240, 219, 0.94);
  color: var(--color-ink);
  box-shadow: 0 14px 34px rgba(16, 25, 20, 0.3);
}

.hero .button-primary:hover {
  color: var(--color-ink);
  background: var(--color-ivory);
}

.button-secondary {
  border-color: var(--color-sage-border);
  background: rgba(154, 177, 122, 0.24);
  color: var(--color-ink);
}

.button-secondary:hover {
  background: rgba(154, 177, 122, 0.36);
  color: var(--color-ink);
}

.button-quiet {
  color: var(--color-sage-deep);
}

.hero .button-secondary {
  border-color: rgba(240, 240, 219, 0.66);
  background: rgba(16, 25, 20, 0.24);
  color: var(--color-ivory);
}

.hero .button-secondary:hover {
  background: rgba(240, 240, 219, 0.18);
  color: var(--color-ivory);
}

.hero .button-quiet {
  color: rgba(240, 240, 219, 0.92);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.hero-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 25, 20, 0.74) 0%, rgba(28, 41, 32, 0.56) 34%, rgba(28, 41, 32, 0.18) 68%, rgba(16, 25, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 25, 20, 0.18) 0%, rgba(16, 25, 20, 0.06) 58%, rgba(16, 25, 20, 0.42) 100%);
  pointer-events: none;
}

.image-panel {
  margin: 0;
  border: 1px solid var(--color-sage-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 105, 63, 0.22), rgba(143, 170, 103, 0.34)),
    rgba(220, 231, 200, 0.78);
  box-shadow: 0 24px 50px rgba(95, 116, 74, 0.18);
  overflow: hidden;
}

.image-panel figcaption {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(48, 54, 79, 0.1);
  color: rgba(48, 54, 79, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-image {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.hero-image figcaption {
  display: none;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--nav-height));
  object-fit: cover;
  object-position: 50% 58%;
}

.about-section {
  border-top: 1px solid rgba(57, 78, 48, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 105, 63, 0.24), transparent 24rem),
    linear-gradient(180deg, #dce7c8, #c7d3a6);
  box-shadow: inset 0 22px 42px rgba(95, 116, 74, 0.12);
  overflow: hidden;
}

.about-section::after {
  content: "";
  position: absolute;
  left: max(-22rem, calc((100vw - var(--wrap)) / 2 - 24rem));
  top: 41%;
  width: clamp(19rem, 40vw, 34rem);
  aspect-ratio: 0.72 / 1;
  background: url("../images/skills-plant-accent.png") center / contain no-repeat;
  opacity: 0.36;
  pointer-events: none;
  transform: translateY(-48%) rotate(45deg);
  transform-origin: center;
}

.about-intro {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.about-intro > div {
  max-width: 820px;
}

.about-intro .eyebrow {
  justify-content: center;
}

.photo-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(67, 83, 58, 0.94), rgba(95, 116, 74, 0.84) 52%, rgba(154, 177, 122, 0.68)),
    repeating-linear-gradient(120deg, rgba(240, 240, 219, 0.08) 0 1px, transparent 1px 16px);
  color: rgba(240, 240, 219, 0.9);
}

.photo-slot::before,
.photo-slot::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  pointer-events: none;
}

.photo-slot::before {
  width: 80%;
  height: 50%;
  background:
    linear-gradient(170deg, transparent 52%, rgba(195, 204, 155, 0.36) 53% 56%, transparent 57%),
    linear-gradient(155deg, transparent 62%, rgba(240, 240, 219, 0.24) 63% 66%, transparent 67%);
}

.photo-slot::after {
  inset: 0;
  background:
    radial-gradient(circle at 70% 24%, rgba(168, 187, 124, 0.2), transparent 8rem),
    linear-gradient(180deg, transparent 58%, rgba(48, 54, 79, 0.2));
}

.photo-slot span {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 2rem);
  border: 1px solid rgba(240, 240, 219, 0.36);
  border-radius: 6px;
  background: rgba(48, 54, 79, 0.38);
  padding: 0.55rem 0.78rem;
  font-size: 0.8rem;
  font-weight: 760;
  text-align: center;
}

.photo-slot-landscape {
  min-height: 520px;
}

.photo-slot-portrait {
  min-height: 520px;
  background:
    linear-gradient(150deg, rgba(154, 177, 122, 0.72), rgba(195, 204, 155, 0.48)),
    linear-gradient(180deg, rgba(48, 54, 79, 0.66), rgba(67, 83, 58, 0.92));
}

.photo-slot-card {
  min-height: 210px;
  background:
    linear-gradient(155deg, rgba(154, 177, 122, 0.62), rgba(195, 204, 155, 0.42)),
    linear-gradient(180deg, rgba(48, 54, 79, 0.62), rgba(67, 83, 58, 0.88));
}

.article-cover-thumb {
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  background: rgba(48, 54, 79, 0.14);
}

.article-cover-thumb img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center top;
}

.article-cover-thumb img.article-cover-forest-people {
  object-position: 50% 76%;
}

.photo-slot-stage {
  min-height: 290px;
  background:
    linear-gradient(130deg, rgba(48, 54, 79, 0.98), rgba(67, 83, 58, 0.96) 56%, rgba(95, 116, 74, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(240, 240, 219, 0.06) 24px 25px);
}

.photo-slot-art {
  min-height: 230px;
  background:
    linear-gradient(155deg, rgba(79, 105, 63, 0.72), rgba(168, 187, 124, 0.48)),
    linear-gradient(180deg, rgba(48, 54, 79, 0.5), rgba(67, 83, 58, 0.78));
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 48px;
}

.credential-grid article,
.degree-card,
.coursework-grid article,
.skill-card,
.timeline-card,
.project-card,
.award-card,
.creative-panel,
.blog-card,
.current-card,
.contact-panel {
  border: 1px solid var(--color-sage-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(79, 105, 63, 0.18), rgba(143, 170, 103, 0.28)),
    rgba(220, 231, 200, 0.62);
}

.credential-grid article {
  padding: 1rem;
}

.credential-grid span,
.facts-list dt,
.mini-meta dt,
.award-card span,
.blog-card time,
.blog-card .meta-line span {
  color: rgba(48, 54, 79, 0.62);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.credential-grid strong {
  display: block;
  margin-top: 0.28rem;
  line-height: 1.35;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.prose {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.stack > * + * {
  margin-top: 1.1rem;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 56px;
}

.portrait-panel {
  align-self: start;
  aspect-ratio: 1 / 1.05;
  box-shadow: none;
}

.portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 57% 68%;
  transform: scale(1.45);
  transform-origin: 57% 34%;
}

.current-card {
  padding: 2rem;
  border-color: var(--color-sage-border);
  background:
    linear-gradient(145deg, rgba(79, 105, 63, 0.24), rgba(143, 170, 103, 0.34)),
    rgba(220, 231, 200, 0.84);
}

.current-card h3 {
  max-width: 30ch;
  font-size: clamp(1.52rem, 2.35vw, 1.74rem);
}

.check-list,
.plain-list,
.timeline-card ul,
.journey-copy ul {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.timeline-card li,
.journey-copy li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-ink-soft);
}

.check-list li + li,
.plain-list li + li,
.timeline-card li + li,
.journey-copy li + li {
  margin-top: 0.55rem;
}

.check-list li::before,
.plain-list li::before,
.timeline-card li::before,
.journey-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-sage);
}

.text-link-row {
  margin-top: 1.5rem;
}

.text-link-row a {
  font-size: 0.9rem;
  font-weight: 760;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

#education {
  background:
    radial-gradient(circle at 14% 20%, rgba(154, 177, 122, 0.28), transparent 20rem),
    linear-gradient(135deg, #283b31, var(--color-sage-dark) 54%, var(--color-ink));
  border-block: 0;
  color: var(--color-ivory);
}

#education h2,
#education h3,
#education .eyebrow,
#education .card-label,
#education .section-heading p,
#education .degree-summary,
#education .coursework-grid p,
#education .coursework-grid ul {
  color: var(--color-ivory);
}

#education .eyebrow::before {
  background: var(--color-moss);
}

.education-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.degree-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1.15rem;
  padding: 1rem;
  border-color: rgba(195, 204, 155, 0.32);
  background:
    linear-gradient(145deg, rgba(154, 177, 122, 0.18), rgba(48, 54, 79, 0.18)),
    rgba(154, 177, 122, 0.14);
}

.education-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(195, 204, 155, 0.26);
  border-radius: 8px;
  background: rgba(20, 32, 26, 0.36);
}

.education-image img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  height: auto;
  object-fit: cover;
  object-position: 58% 50%;
}

.degree-details {
  padding: 0.25rem 0.25rem 0.45rem;
}

.degree-card h3 {
  font-size: 1.9rem;
}

.degree-summary {
  margin-top: 1rem;
  font-weight: 720;
}

.facts-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.5rem 0 0;
}

.facts-list div,
.mini-meta div {
  display: grid;
  gap: 0.12rem;
}

.facts-list dd,
.mini-meta dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 720;
}

.coursework-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.coursework-grid article {
  padding: 1.25rem;
  border: 1px solid rgba(195, 204, 155, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(154, 177, 122, 0.12), rgba(48, 54, 79, 0.08)),
    rgba(40, 59, 49, 0.54);
}

.coursework-grid h3 {
  font-size: 1.12rem;
}

.coursework-grid p,
.coursework-grid ul {
  margin-top: 0.65rem;
  font-size: 0.95rem;
}

.coursework-grid ul {
  display: grid;
  gap: 0.34rem;
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.coursework-grid li::marker {
  color: var(--color-moss);
}

.skills-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 105, 63, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(232, 239, 213, 0.96), rgba(211, 224, 190, 0.9));
}

.timeline-section .section-heading h2 {
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0;
}

#experience {
  background:
    radial-gradient(circle at 12% 8%, rgba(79, 105, 63, 0.22), transparent 22rem),
    linear-gradient(180deg, #b7ca95 0%, #a8bb7c 52%, #6f8a58 100%);
}

.skills-section::after {
  content: "";
  position: absolute;
  right: max(-13rem, calc((100vw - var(--wrap)) / 2 - 14rem));
  top: clamp(-8rem, -10vw, -4.5rem);
  width: clamp(17rem, 32vw, 27rem);
  aspect-ratio: 0.72 / 1;
  background: url("../images/skills-plant-accent.png") center / contain no-repeat;
  opacity: 0.46;
  pointer-events: none;
  transform: rotate(180deg);
  transform-origin: center;
}

.skills-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.skills-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100%;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(240, 240, 219, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(168, 187, 124, 0.16), transparent 15rem),
    linear-gradient(145deg, #1f3326, #273f2d 58%, #30364f);
  box-shadow: 0 18px 42px rgba(48, 54, 79, 0.12);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.skills-panel::after {
  content: "";
  position: absolute;
  left: clamp(-5.8rem, -5vw, -2.7rem);
  bottom: clamp(-5.5rem, -8vw, -3rem);
  z-index: 0;
  width: clamp(12.5rem, 23vw, 20rem);
  aspect-ratio: 0.69 / 1;
  background: url("../images/skills-ginkgo-accent.png") left bottom / contain no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.skills-panel .eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 1.76rem;
  font-weight: 760;
  line-height: 1.7;
  text-transform: uppercase;
}

.skills-panel .eyebrow::before {
  width: 2.1rem;
  height: 2px;
  background: var(--color-moss);
}

.skill-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 1.1rem;
  justify-content: center;
  max-width: none;
}

.skill-card {
  min-height: 100%;
  border: 1px solid rgba(57, 78, 48, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(232, 239, 213, 0.58), rgba(168, 187, 124, 0.16)),
    rgba(232, 239, 213, 0.42);
  padding: 1.2rem 1.3rem;
}

.skill-card h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #22372b;
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 800;
}

.skill-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 2.15rem;
  place-items: center;
  width: 2.15rem;
  height: 1.65rem;
  color: #22372b;
  background-color: transparent;
  background-image: var(--skill-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.skill-card-ecology .skill-icon::before {
  content: "";
  width: 0.95rem;
  height: 0.62rem;
  border: 2px solid currentColor;
  border-radius: 100% 0;
  transform: rotate(-28deg);
}

.skill-card-ecology .skill-icon::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  transform: rotate(-42deg);
}

.skill-card-lab .skill-icon::before {
  content: "";
  width: 0.82rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 0.28rem 0.28rem;
  transform: perspective(1rem) rotateX(12deg);
}

.skill-card-lab .skill-icon::after {
  content: "";
  position: absolute;
  top: 0.05rem;
  width: 0.42rem;
  height: 0.38rem;
  border-inline: 2px solid currentColor;
  border-top: 2px solid currentColor;
}

.skill-card-data .skill-icon::before {
  content: "";
  width: 1.05rem;
  height: 0.9rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) 0.18rem 0.58rem / 0.16rem 0.3rem no-repeat,
    linear-gradient(currentColor, currentColor) 0.48rem 0.36rem / 0.16rem 0.52rem no-repeat,
    linear-gradient(currentColor, currentColor) 0.78rem 0.16rem / 0.16rem 0.72rem no-repeat;
}

.skill-card-communication .skill-icon::before {
  content: "";
  width: 1rem;
  height: 0.72rem;
  border: 2px solid currentColor;
  border-radius: 0.18rem;
}

.skill-card-communication .skill-icon::after {
  content: "";
  position: absolute;
  right: 0.12rem;
  bottom: 0.05rem;
  width: 0.34rem;
  height: 0.34rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(42deg);
  background: rgba(232, 239, 213, 0.96);
}

.skill-card-ecology .skill-icon::before,
.skill-card-ecology .skill-icon::after,
.skill-card-lab .skill-icon::before,
.skill-card-lab .skill-icon::after,
.skill-card-data .skill-icon::before,
.skill-card-data .skill-icon::after,
.skill-card-communication .skill-icon::before,
.skill-card-communication .skill-icon::after {
  content: none;
}

.skill-card-ecology .skill-icon {
  --skill-icon: url("../images/skills-icon-ecology.png");
}

.skill-card-lab .skill-icon {
  --skill-icon: url("../images/skills-icon-lab.png");
}

.skill-card-data .skill-icon {
  --skill-icon: url("../images/skills-icon-data.png");
}

.skill-card-communication .skill-icon {
  --skill-icon: url("../images/skills-icon-communication.png");
}

.tag-list {
  display: grid;
  gap: 0.42rem;
  margin: 0.75rem 0 0;
  padding-left: 2.55rem;
  color: #1f3029;
}

.tag-list li {
  padding-left: 0.1rem;
  color: #1f3029;
  font-size: 0.9rem;
  font-weight: 680;
}

.tag-list li::marker {
  color: var(--color-sage-deep);
  font-size: 0.72em;
}

.evidence {
  margin-top: 1.05rem;
  color: rgba(48, 54, 79, 0.68);
  font-size: 0.86rem;
}

.timeline-board {
  --timeline-pad: clamp(0.6rem, 1.5vw, 1rem);
  --timeline-step: 2.45rem;
  --timeline-half-step: 1.225rem;
  --timeline-card-height: clamp(300px, 21vw, 340px);
  --timeline-arrow-width: clamp(6.8rem, 10.5vw, 11.5rem);
  --timeline-arrow-height: clamp(3.8rem, 6vw, 6rem);
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0.15rem;
  max-width: min(1400px, calc(100vw - 48px));
  padding: var(--timeline-pad);
  counter-reset: journey;
  border: 1px solid rgba(57, 78, 48, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(220, 231, 200, 0.82), rgba(143, 170, 103, 0.22)),
    repeating-linear-gradient(0deg, rgba(57, 78, 48, 0.04) 0 1px, transparent 1px 14px);
  box-shadow: 0 22px 44px rgba(95, 116, 74, 0.12);
}

.timeline-board::after {
  content: none;
}

.journey-event {
  position: relative;
  counter-increment: journey;
  display: grid;
  grid-template-columns:
    minmax(0, 1.28fr)
    minmax(250px, 0.78fr)
    minmax(250px, 0.78fr)
    minmax(0, 1.28fr);
  gap: 0;
  align-items: stretch;
  height: var(--timeline-card-height);
  min-width: 0;
  padding: 0;
}

.journey-event::before {
  content: none;
}

.journey-event:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(100% - 1.75rem);
  left: calc(50% - (var(--timeline-arrow-width) / 2));
  z-index: 4;
  width: var(--timeline-arrow-width);
  height: var(--timeline-arrow-height);
  pointer-events: none;
  opacity: 0.92;
}

.journey-event:nth-of-type(odd):not(:last-child)::after {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cmarker id='arrow' markerWidth='10' markerHeight='10' refX='10' refY='5' orient='auto' markerUnits='strokeWidth'%3E%3Cpath d='M0,0 L10,5 L0,10 Z' fill='%235c7147'/%3E%3C/marker%3E%3C/defs%3E%3Cpath d='M18 10 C140 10 140 78 154 104' fill='none' stroke='%235c7147' stroke-width='4' stroke-linecap='round' stroke-dasharray='2 12' marker-end='url(%23arrow)'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
}

.journey-event:nth-of-type(even):not(:last-child)::after {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cmarker id='arrow' markerWidth='10' markerHeight='10' refX='10' refY='5' orient='auto' markerUnits='strokeWidth'%3E%3Cpath d='M0,0 L10,5 L0,10 Z' fill='%235c7147'/%3E%3C/marker%3E%3C/defs%3E%3Cpath d='M162 10 C40 10 40 78 26 104' fill='none' stroke='%235c7147' stroke-width='4' stroke-linecap='round' stroke-dasharray='2 12' marker-end='url(%23arrow)'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
}

.journey-event:nth-of-type(odd) .journey-photo {
  grid-column: 2;
  grid-row: 1;
}

.journey-event:nth-of-type(even) .journey-photo {
  grid-column: 3;
  grid-row: 1;
}

.journey-event:nth-of-type(odd) .journey-copy {
  grid-column: 1;
  grid-row: 1;
}

.journey-event:nth-of-type(even) .journey-copy {
  grid-column: 4;
  grid-row: 1;
}

.journey-step {
  display: none;
}

.journey-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  height: var(--timeline-card-height);
  min-height: 0;
  align-self: stretch;
  border: 0;
  box-shadow: 0 14px 28px rgba(48, 54, 79, 0.14);
  overflow: visible;
}

.journey-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: 42% 54%;
}

.journey-photo:focus-visible {
  outline: 3px solid rgba(79, 105, 63, 0.72);
  outline-offset: 4px;
}

.journey-caption {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: clamp(17rem, 24vw, 25rem);
  border: 1px solid rgba(220, 231, 200, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(48, 54, 79, 0.96), rgba(57, 78, 48, 0.95));
  color: var(--color-ivory);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 18px 34px rgba(27, 41, 30, 0.24);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 680;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.journey-caption::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1rem;
}

.journey-event:nth-of-type(odd) .journey-caption {
  left: calc(100% + 0.85rem);
  transform: translate(-0.55rem, -50%);
}

.journey-event:nth-of-type(odd) .journey-caption::before {
  right: 100%;
}

.journey-event:nth-of-type(even) .journey-caption {
  right: calc(100% + 0.85rem);
  transform: translate(0.55rem, -50%);
}

.journey-event:nth-of-type(even) .journey-caption::before {
  left: 100%;
}

.journey-photo:hover .journey-caption,
.journey-photo:focus-within .journey-caption,
.journey-photo:focus-visible .journey-caption {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.journey-image-club {
  object-position: 48% 38%;
}

.journey-image-forest {
  object-position: 70% 46%;
}

.journey-image-overdose {
  object-position: 18% 48%;
}

.journey-image-dance {
  object-position: 50% 20%;
}

.journey-club .journey-photo,
.journey-overdose .journey-photo,
.journey-dance .journey-photo,
.journey-forest .journey-photo,
.journey-paleo .journey-photo {
  height: var(--timeline-card-height);
  min-height: 0;
}

.journey-event:nth-of-type(odd) .journey-photo {
  border-radius: 0 999px 999px 0;
}

.journey-event:nth-of-type(even) .journey-photo {
  border-radius: 999px 0 0 999px;
}

.journey-event:nth-of-type(odd) .journey-copy {
  border-radius: 8px 0 0 8px;
}

.journey-event:nth-of-type(even) .journey-copy {
  border-radius: 0 8px 8px 0;
}

.photo-slot-timeline span {
  border-color: rgba(240, 240, 219, 0.42);
  background: rgba(48, 54, 79, 0.34);
  font-size: 0.72rem;
}

.photo-slot-soil {
  background:
    linear-gradient(150deg, rgba(95, 116, 74, 0.76), rgba(48, 54, 79, 0.86)),
    repeating-linear-gradient(90deg, rgba(240, 240, 219, 0.12) 0 3px, transparent 3px 24px);
}

.photo-slot-club {
  background:
    linear-gradient(155deg, rgba(154, 177, 122, 0.68), rgba(48, 54, 79, 0.84)),
    linear-gradient(90deg, rgba(195, 204, 155, 0.28), transparent);
}

.photo-slot-forest {
  background:
    linear-gradient(150deg, rgba(67, 83, 58, 0.86), rgba(154, 177, 122, 0.58)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(240, 240, 219, 0.08) 18px 20px);
}

.photo-slot-overdose {
  background:
    linear-gradient(140deg, rgba(154, 177, 122, 0.62), rgba(48, 54, 79, 0.82)),
    linear-gradient(180deg, rgba(48, 54, 79, 0.14), transparent);
}

.photo-slot-paleo {
  background:
    linear-gradient(155deg, rgba(154, 177, 122, 0.64), rgba(48, 54, 79, 0.86)),
    repeating-linear-gradient(0deg, rgba(240, 240, 219, 0.16) 0 8px, transparent 8px 28px);
}

.photo-slot-dance {
  background:
    linear-gradient(135deg, rgba(48, 54, 79, 0.96), rgba(67, 83, 58, 0.9), rgba(154, 177, 122, 0.68)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(240, 240, 219, 0.08) 24px 25px);
}

.photo-slot-timeline {
  background-color: var(--color-ink);
}

.journey-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: var(--timeline-card-height);
  min-height: 0;
  align-self: stretch;
  border: 1px solid rgba(57, 78, 48, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(183, 202, 149, 0.28), rgba(220, 231, 200, 0.86)),
    rgba(220, 231, 200, 0.88);
  padding: 1.35rem 1.45rem;
  box-shadow: 0 12px 24px rgba(95, 116, 74, 0.08);
}

.journey-copy::before {
  content: counter(journey, decimal-leading-zero);
  position: absolute;
  top: 0.75rem;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 2px solid var(--color-ivory);
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-ivory);
  box-shadow: 0 8px 18px rgba(48, 54, 79, 0.18);
  font-size: 0.68rem;
  font-weight: 780;
}

.journey-event:nth-of-type(odd) .journey-copy {
  padding-left: 3.35rem;
}

.journey-event:nth-of-type(odd) .journey-copy::before {
  left: 0.75rem;
}

.journey-event:nth-of-type(even) .journey-copy {
  padding-right: 3.35rem;
}

.journey-event:nth-of-type(even) .journey-copy::before {
  right: 0.75rem;
}

.journey-copy h3 {
  font-size: 1.42rem;
  line-height: 1.14;
}

.journey-copy ul {
  margin-top: 0.82rem;
  font-size: 0.94rem;
  line-height: 1.5;
}

.timeline-date {
  margin-bottom: 0.3rem;
  color: rgba(48, 54, 79, 0.64);
  font-size: 0.86rem;
  font-weight: 760;
}

.timeline-role {
  margin-top: 0.3rem;
  color: var(--color-ink-soft);
  font-weight: 710;
}

.pill {
  border: 1px solid rgba(95, 116, 74, 0.3);
  border-radius: 6px;
  background: rgba(154, 177, 122, 0.28);
  color: var(--color-sage-dark);
  padding: 0.18rem 0.45rem;
  font-size: 0.68rem;
}

.timeline-note {
  position: relative;
  z-index: 1;
  justify-self: end;
  max-width: 330px;
  margin: 0.85rem clamp(0rem, 5vw, 4rem) 0 0;
  color: var(--color-sage-deep);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.32;
  text-align: center;
  transform: rotate(-2deg);
}

#work {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(79, 105, 63, 0.68) 0%, rgba(95, 116, 74, 0.48) 32%, transparent 64%),
    radial-gradient(circle at 0% 12%, rgba(79, 105, 63, 0.22), transparent 22rem),
    radial-gradient(circle at 100% 82%, rgba(79, 105, 63, 0.2), transparent 24rem),
    linear-gradient(180deg, #d5e1bd, #b8cb95);
}

#work::before,
#work::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 4rem);
  background: rgba(245, 248, 235, 0.84);
  -webkit-mask-image: url("../images/selected-work-leafy-accent.png");
  mask-image: url("../images/selected-work-leafy-accent.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.5;
  pointer-events: none;
}

#work::before {
  left: clamp(0.7rem, 1.8vw, 2rem);
  width: clamp(17rem, 25vw, 30rem);
  -webkit-mask-position: left center;
  mask-position: left center;
  transform: rotate(180deg) scaleX(-1);
  transform-origin: center;
}

#work::after {
  right: clamp(0.7rem, 1.8vw, 2rem);
  width: clamp(16rem, 24vw, 28rem);
  -webkit-mask-position: right center;
  mask-position: right center;
  transform: scaleX(-1);
  transform-origin: center;
}

#work > .wrap {
  position: relative;
  z-index: 1;
}

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

#work .project-card {
  background:
    linear-gradient(180deg, rgba(235, 242, 219, 0.72), rgba(202, 219, 171, 0.52)),
    rgba(220, 231, 200, 0.76);
}

.project-card,
.blog-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(79, 105, 63, 0.16), rgba(143, 170, 103, 0.26)),
    rgba(220, 231, 200, 0.68);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.project-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card:hover,
.project-card:focus-visible,
.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(95, 116, 74, 0.32);
  box-shadow: 0 14px 28px rgba(48, 54, 79, 0.09);
  transform: translateY(-2px);
}

.project-card:hover {
  color: inherit;
}

.project-media {
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  background: rgba(48, 54, 79, 0.14);
}

.project-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-image-overdose {
  object-position: 50% 32%;
}

.blog-card-link {
  display: flex;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover {
  color: inherit;
}

.blog-card-link:focus-visible {
  border-radius: 8px;
  outline-offset: -4px;
}

.project-body,
.blog-card-body {
  padding: 1.25rem;
}

.project-body {
  background:
    linear-gradient(180deg, rgba(79, 105, 63, 0.28), rgba(143, 170, 103, 0.38)),
    rgba(196, 213, 164, 0.86);
}

.project-card h3,
.blog-card h3 {
  margin-bottom: 0.75rem;
}

.project-card p,
.blog-card p {
  color: var(--color-ink-soft);
}

.mini-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

#awards {
  padding-block: 86px;
  background:
    radial-gradient(circle at 14% 20%, rgba(154, 177, 122, 0.28), transparent 20rem),
    linear-gradient(135deg, #283b31, var(--color-sage-dark) 54%, var(--color-ink));
  color: var(--color-ivory);
}

.awards-section h2,
.awards-section .eyebrow,
.awards-section .section-heading p {
  color: var(--color-ivory);
}

.awards-section .eyebrow::before {
  background: var(--color-moss);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.award-card {
  display: block;
  background:
    linear-gradient(180deg, rgba(154, 177, 122, 0.12), rgba(48, 54, 79, 0.08)),
    rgba(40, 59, 49, 0.54);
  border-color: rgba(195, 204, 155, 0.28);
  box-shadow: 0 18px 36px rgba(18, 35, 24, 0.14);
  padding: 1.35rem;
  text-decoration: none;
}

.award-card:hover,
.award-card:focus-visible {
  background:
    linear-gradient(180deg, rgba(154, 177, 122, 0.2), rgba(48, 54, 79, 0.12)),
    rgba(40, 59, 49, 0.72);
  border-color: rgba(195, 204, 155, 0.44);
  color: var(--color-ivory);
  transform: translateY(-2px);
}

.award-card span {
  color: rgba(240, 240, 219, 0.72);
}

.award-card h3 {
  margin-top: 0.35rem;
  color: var(--color-ivory);
  font-size: 1.28rem;
}

.award-card p {
  margin-top: 0.65rem;
  color: rgba(240, 240, 219, 0.82);
}

#dance-art {
  background:
    radial-gradient(circle at 18% 12%, rgba(48, 74, 66, 0.24), transparent 22rem),
    linear-gradient(180deg, #aebf95, #9fb489);
}

.creative-sliders {
  display: grid;
  gap: 1.25rem;
}

.creative-slider-card {
  position: relative;
  display: grid;
  gap: 1.1rem;
  border: 1px solid var(--color-sage-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 105, 63, 0.2), rgba(168, 187, 124, 0.46)),
    rgba(220, 231, 200, 0.76);
  color: inherit;
  overflow: hidden;
  padding: 1rem;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(48, 54, 79, 0.1);
}

.creative-slider-card:hover,
.creative-slider-card:focus-visible {
  border-color: rgba(95, 116, 74, 0.55);
  color: var(--color-ink);
  transform: translateY(-2px);
}

.creative-slider-title {
  padding-inline: 0.25rem;
  color: var(--color-ink);
  font-size: 1.72rem;
}

.creative-slider-header {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding-inline: 0.25rem;
}

.creative-slider-header::after {
  content: "View gallery";
  color: var(--color-sage-deep);
  font-size: 0.82rem;
  font-weight: 780;
}

.creative-slider-header h3 {
  font-size: 2rem;
}

.creative-slider-header p {
  color: var(--color-ink-soft);
  font-size: 0.98rem;
}

.image-auto-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.image-auto-slider::before,
.image-auto-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(8vw, 6rem);
  pointer-events: none;
}

.image-auto-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(237, 241, 220, 0.96), transparent);
}

.image-auto-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(237, 241, 220, 0.96), transparent);
}

.creative-slider-card.is-reverse .image-auto-slider::before,
.creative-slider-card.is-reverse .image-auto-slider::after {
  display: none;
}

.dance-image-slider::before,
.dance-image-slider::after {
  display: none;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: image-auto-slide var(--slider-speed, 68s) linear infinite;
  will-change: transform;
}

.creative-slider-card.is-reverse .slider-track {
  animation-direction: reverse;
  --slider-speed: 76s;
}

.slider-figure {
  flex: 0 0 clamp(220px, 28vw, 360px);
  min-height: 230px;
  margin: 0 0.45rem;
  border-radius: 8px;
  border: 1px solid rgba(240, 240, 219, 0.34);
}

.dance-image-slider .slider-figure {
  height: clamp(250px, 28vw, 340px);
  min-height: 0;
  overflow: hidden;
  background: rgba(30, 43, 38, 0.18);
}

.dance-image-slider .slider-figure.is-landscape {
  flex-basis: clamp(310px, 42vw, 560px);
}

.dance-image-slider .slider-figure.is-portrait {
  flex-basis: clamp(190px, 24vw, 310px);
}

.dance-image-slider .slider-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-image-slider .slider-figure {
  height: clamp(240px, 26vw, 330px);
  min-height: 0;
  overflow: hidden;
  background: rgba(237, 241, 220, 0.46);
}

.art-image-slider .slider-figure.is-landscape {
  flex-basis: clamp(300px, 38vw, 520px);
}

.art-image-slider .slider-figure.is-portrait {
  flex-basis: clamp(180px, 22vw, 300px);
}

.art-image-slider .slider-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-figure span {
  max-width: calc(100% - 1.5rem);
}

@keyframes image-auto-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.diptych {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
}

.creative-panel {
  overflow: hidden;
  background: rgba(154, 177, 122, 0.14);
}

.creative-copy {
  padding: 1.35rem;
}

.creative-copy p {
  color: var(--color-ink-soft);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.75rem;
}

.gallery-strip .photo-slot {
  min-height: 250px;
  border-radius: 6px;
}

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

#writing {
  background:
    radial-gradient(circle at 16% 8%, rgba(235, 242, 219, 0.42), transparent 24rem),
    radial-gradient(circle at 86% 88%, rgba(61, 86, 62, 0.2), transparent 28rem),
    linear-gradient(180deg, #c3d1ae 0%, #9eb486 48%, #8aa477 100%);
  color: var(--color-ink);
}

#writing .section-heading h2,
#writing .section-heading p {
  color: var(--color-ink);
}

#writing .section-heading .eyebrow {
  color: var(--color-sage-dark);
}

#writing .section-heading .eyebrow::before {
  background: rgba(57, 78, 48, 0.72);
}

#writing .blog-card {
  border: 1px solid rgba(42, 62, 43, 0.42);
  background:
    linear-gradient(180deg, rgba(237, 243, 219, 0.94), rgba(213, 228, 188, 0.94));
  box-shadow: 0 18px 36px rgba(31, 51, 38, 0.12);
}

#writing .blog-card:hover,
#writing .blog-card:focus-within {
  border-color: rgba(42, 62, 43, 0.58);
  box-shadow: 0 22px 44px rgba(31, 51, 38, 0.18);
}

#writing .blog-card-body {
  flex: 1;
  background:
    linear-gradient(180deg, rgba(238, 244, 221, 0.98), rgba(221, 235, 201, 0.98));
  color: var(--color-ink);
}

#writing .blog-card p {
  color: rgba(48, 54, 79, 0.76);
}

#writing .blog-card time,
#writing .blog-card .meta-line span,
#writing .blog-card .card-label {
  color: rgba(48, 54, 79, 0.68);
}

#writing .button-secondary {
  border-color: rgba(42, 62, 43, 0.24);
  background: rgba(237, 243, 219, 0.9);
  color: var(--color-ink);
  box-shadow: 0 14px 28px rgba(31, 51, 38, 0.14);
}

#writing .button-secondary:hover,
#writing .button-secondary:focus-visible {
  border-color: rgba(42, 62, 43, 0.36);
  background: var(--color-ivory);
  color: var(--color-ink);
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.meta-line span {
  color: inherit;
  font: inherit;
  text-transform: inherit;
}

.meta-line span::before {
  content: "/";
  margin-right: 0.45rem;
  color: currentColor;
  opacity: 0.68;
}

.article-meta.meta-line {
  margin-top: 1.25rem;
  color: rgba(48, 54, 79, 0.64);
  font-size: 0.88rem;
  font-weight: 760;
  text-transform: none;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.contact-section {
  overflow: hidden;
  padding-block: clamp(76px, 8vw, 116px);
  border-top: 1px solid rgba(57, 78, 48, 0.28);
  border-bottom: 8px solid rgba(48, 54, 79, 0.16);
  background:
    linear-gradient(180deg, rgba(79, 105, 63, 0.92), rgba(39, 63, 45, 0.94)),
    linear-gradient(135deg, rgba(143, 170, 103, 0.26), rgba(79, 105, 63, 0.4) 52%, rgba(48, 54, 79, 0.24)),
    #273f2d;
  box-shadow:
    inset 0 24px 36px rgba(255, 255, 255, 0.08),
    inset 0 -18px 34px rgba(18, 35, 24, 0.22);
}

.contact-section::before {
  content: "";
  position: absolute;
  left: clamp(-24rem, -18vw, -12rem);
  top: clamp(-8rem, -7vw, -4rem);
  bottom: clamp(-9rem, -8vw, -5rem);
  width: clamp(27rem, 42vw, 40rem);
  background: url("../images/skills-ginkgo-accent.png") left center / contain no-repeat;
  opacity: 0.24;
  pointer-events: none;
  transform: scaleX(-1);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: max(-11rem, calc((100vw - var(--wrap)) / 2 - 13rem));
  bottom: clamp(-7rem, -8vw, -4rem);
  width: clamp(13rem, 26vw, 22rem);
  aspect-ratio: 0.69 / 1;
  background: url("../images/skills-ginkgo-accent.png") right bottom / contain no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-color: rgba(57, 78, 48, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(231, 237, 210, 0.12)),
    rgba(231, 237, 210, 0.82);
  box-shadow: 0 22px 44px rgba(48, 54, 79, 0.12);
}

.contact-panel h2 {
  max-width: 820px;
  font-size: 2.15rem;
}

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

.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #243229, #30364f);
  color: rgba(247, 248, 230, 0.92);
  padding-block: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.6;
}

.footer-grid p:nth-child(2) {
  white-space: nowrap;
}

.footer-grid p:last-child {
  text-align: right;
}

.footer-quote span {
  display: inline;
  margin-left: 0.35rem;
}

.page-hero {
  padding-top: 92px;
  padding-bottom: 76px;
}

.page-hero-grid,
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 48px;
  align-items: center;
}

.bloom-hero-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.72fr);
  gap: 36px;
}

.writing-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero h1,
.article-hero h1 {
  max-width: 14ch;
  font-size: 3.6rem;
}

.page-hero .writing-hero-grid h1 {
  max-width: 22ch;
}

.page-hero p:not(.eyebrow),
.article-dek {
  max-width: 700px;
  margin-top: 1rem;
  color: var(--color-ink-soft);
  font-size: 1.08rem;
}

.page-hero-aside {
  border: 1px solid var(--color-sage-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 105, 63, 0.2), rgba(143, 170, 103, 0.32)),
    rgba(220, 231, 200, 0.76);
  padding: 1.25rem;
}

.page-hero-aside > span,
.article-toc p {
  display: block;
  color: rgba(48, 54, 79, 0.62);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.article-list {
  display: grid;
  gap: 1.25rem;
  max-width: 960px;
}

.horizontal-card {
  display: block;
}

.horizontal-card .blog-card-link {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

.horizontal-card .blog-thumb {
  width: 260px;
  height: 260px;
  min-height: 0;
}

.horizontal-card .article-cover-thumb img {
  height: 100%;
  min-height: 0;
}

.horizontal-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.7rem;
}

.all-writing-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 170, 103, 0.26), transparent 28rem),
    linear-gradient(180deg, #dce7c8 0%, #cfddb6 48%, #c2d2a6 100%);
}

.all-writing-page .page-hero {
  background:
    radial-gradient(circle at 8% 12%, rgba(79, 105, 63, 0.22), transparent 26rem),
    linear-gradient(180deg, #dce7c8 0%, #cfddb6 100%);
  border-bottom: 1px solid rgba(57, 78, 48, 0.18);
}

.all-writing-page .page-hero h1,
.all-writing-page .page-hero p:not(.eyebrow),
.all-writing-page .back-link {
  color: var(--color-ink);
}

.all-writing-page .page-hero p:not(.eyebrow) {
  color: var(--color-ink-soft);
}

.gallery-hero .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.gallery-hero .article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(39, 63, 45, 0.72);
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 680;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
}

.gallery-hero .article-meta span + span::before {
  content: "/";
  margin-right: 0.45rem;
  color: rgba(39, 63, 45, 0.38);
}

.all-writing-page .page-hero .eyebrow {
  color: var(--color-sage-deep);
}

.all-writing-page #main > .section-shell.article-index {
  background:
    radial-gradient(circle at 88% 8%, rgba(143, 170, 103, 0.18), transparent 25rem),
    linear-gradient(180deg, #dce7c8 0%, #c9d8ad 100%);
  border-top: 1px solid rgba(57, 78, 48, 0.16);
}

.all-writing-page .article-list {
  max-width: 1040px;
}

.all-writing-page .horizontal-card {
  border-color: rgba(57, 78, 48, 0.24);
  background:
    linear-gradient(135deg, rgba(247, 248, 230, 0.96), rgba(220, 231, 200, 0.98)),
    #f7f8e6;
  box-shadow: 0 18px 36px rgba(48, 54, 79, 0.12);
}

.all-writing-page .horizontal-card:hover,
.all-writing-page .horizontal-card:focus-within {
  border-color: rgba(57, 78, 48, 0.42);
  box-shadow: 0 20px 42px rgba(48, 54, 79, 0.16);
}

.all-writing-page .horizontal-card .blog-card-body {
  background:
    linear-gradient(135deg, rgba(247, 248, 230, 0.94), rgba(220, 231, 200, 0.92)),
    #f7f8e6;
}

.all-writing-page .horizontal-card h2 {
  color: var(--color-ink);
}

.all-writing-page .horizontal-card p {
  color: var(--color-ink-soft);
}

.all-writing-page .horizontal-card .card-label,
.all-writing-page .horizontal-card .meta-line time,
.all-writing-page .horizontal-card .meta-line span {
  color: var(--color-sage-dark);
}

.article-hero {
  padding-top: 82px;
  padding-bottom: 66px;
  background:
    linear-gradient(90deg, rgba(79, 105, 63, 0.28), rgba(143, 170, 103, 0.22) 44%, rgba(48, 54, 79, 0.1)),
    rgba(108, 139, 78, 0.16);
  border-bottom: 1px solid rgba(57, 78, 48, 0.22);
}

.back-link {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  margin-bottom: 1.4rem;
  color: rgba(48, 54, 79, 0.72);
  font-size: 0.88rem;
  font-weight: 780;
  text-decoration: none;
}

.back-link::before {
  content: "<";
  font-family: var(--font-body);
  font-size: 0.9em;
  line-height: 1;
}

.back-link:hover {
  color: var(--color-sage-deep);
}

.article-figure .photo-slot-landscape {
  min-height: 420px;
}

.article-figure img,
.inline-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-figure.image-panel,
.inline-figure {
  overflow: hidden;
}

.article-figure.image-panel img {
  min-height: 420px;
}

.article-figure.image-panel.bloom-figure {
  aspect-ratio: 548 / 300;
  width: 100%;
  justify-self: end;
}

.article-figure.image-panel.bloom-figure img {
  height: 100%;
  min-height: 0;
  object-position: center top;
}

.inline-figure img {
  min-height: 260px;
  max-height: 420px;
}

.inline-figure img.image-clarity-boost {
  filter: contrast(1.12) saturate(1.06);
  transform: scale(1.01);
}

.inline-figure:has(.image-clarity-boost) {
  max-width: 24rem;
  margin-inline: auto;
}

.inline-figure:has(.image-clarity-boost) img {
  min-height: 0;
  max-height: 220px;
}

.article-resource {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(57, 78, 48, 0.24);
}

.article-resource p {
  margin-bottom: 1.35rem;
  color: var(--color-ink-soft);
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 64px;
  align-items: start;
  padding-block: 72px 96px;
}

.article-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0.55rem;
  border-left: 1px solid rgba(48, 54, 79, 0.18);
  padding-left: 1rem;
}

.article-toc a {
  color: rgba(48, 54, 79, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.article-body {
  color: var(--color-ink-soft);
  font-size: 1.06rem;
}

.article-body section + section {
  margin-top: 3.25rem;
}

.article-body h2 {
  margin-bottom: 1rem;
  color: var(--color-ink);
  font-size: 2rem;
}

.article-body p + p {
  margin-top: 1rem;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  padding-block: 72px 96px;
}

.photo-slot-gallery-hero {
  min-height: 440px;
}

.gallery-body {
  display: grid;
  gap: 4rem;
}

.gallery-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.gallery-section-heading h2 {
  font-size: 2rem;
}

.gallery-section-heading p {
  color: var(--color-ink-soft);
}

.gallery-subsections {
  display: grid;
  gap: 2rem;
  margin: 0;
}

.gallery-subsection {
  border: 1px solid rgba(79, 105, 63, 0.28);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(245, 248, 235, 0.42);
}

.gallery-subsection h3 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--color-forest);
}

.dance-scroll-subsection {
  display: grid;
  gap: 0.95rem;
  overflow: hidden;
}

.dance-subsection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dance-subsection-header h3 {
  margin: 0;
}

.scroll-gallery-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.35rem;
}

.scroll-gallery-card {
  position: relative;
  flex: 0 0 calc((100% - 0.85rem) / 2);
  grid-template-rows: minmax(260px, 1fr);
  min-width: 0;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.scroll-gallery-card.is-portrait {
  flex-basis: min(360px, 76vw);
}

.scroll-gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.scroll-gallery-card .photo-slot {
  min-height: 280px;
}

.scroll-gallery-card::after {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(245, 248, 235, 0.72);
  border-radius: 999px;
  background: rgba(48, 54, 79, 0.72);
  opacity: 0;
  transform: translateY(-0.25rem);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
  z-index: 2;
}

.scroll-gallery-card::before {
  content: "";
  position: absolute;
  top: 1.43rem;
  right: 1.43rem;
  width: 1.02rem;
  height: 1.02rem;
  background:
    linear-gradient(currentColor, currentColor) right top / 0.58rem 2px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 2px 0.58rem no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 0.58rem 2px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 2px 0.58rem no-repeat;
  color: var(--color-ivory);
  opacity: 0;
  transform: translateY(-0.25rem);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 3;
}

.scroll-gallery-card:hover::before,
.scroll-gallery-card:hover::after,
.scroll-gallery-card:focus-visible::before,
.scroll-gallery-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.scroll-gallery-card:hover::after,
.scroll-gallery-card:focus-visible::after {
  background: rgba(48, 54, 79, 0.92);
}

@media (hover: none) {
  .scroll-gallery-card::before,
  .scroll-gallery-card::after {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-card {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  margin: 0;
  border: 1px solid var(--color-sage-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(79, 105, 63, 0.16), rgba(143, 170, 103, 0.28)),
    rgba(220, 231, 200, 0.68);
  overflow: hidden;
}

.gallery-card.is-wide {
  grid-column: span 2;
}

.gallery-card.is-tall {
  grid-row: span 2;
}

.gallery-card .photo-slot {
  min-height: 100%;
}

.gallery-card figcaption {
  border-top: 1px solid rgba(48, 54, 79, 0.1);
  padding: 0.75rem 0.9rem;
  color: rgba(48, 54, 79, 0.68);
  font-size: 0.85rem;
  font-weight: 690;
}

.compact-gallery .gallery-card {
  grid-template-rows: minmax(220px, 1fr) auto;
}

.art-gallery-hero {
  padding-bottom: 42px;
}

.art-gallery-heading {
  display: grid;
  justify-items: start;
}

.art-gallery-heading h1 {
  max-width: 18ch;
}

.art-bento-section {
  padding-block: 2rem 6rem;
}

.art-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: minmax(120px, 10vw);
  gap: 0.75rem;
}

.art-bento-item {
  position: relative;
  display: block;
  grid-column: span 2;
  grid-row: span 2;
  min-height: 0;
  border: 0;
  border-radius: 8px;
  background: var(--color-sage-dark);
  color: var(--color-ivory);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(48, 54, 79, 0.12);
}

.art-bento-item.is-feature {
  grid-column: span 3;
  grid-row: span 4;
}

.art-bento-item.is-wide {
  grid-column: span 4;
  grid-row: span 2;
}

.art-bento-item.is-tall {
  grid-column: span 2;
  grid-row: span 4;
}

.art-bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.art-bento-item:hover img,
.art-bento-item:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.art-bento-caption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 1.5rem);
  border-radius: 6px;
  background: rgba(18, 28, 22, 0.68);
  color: rgba(247, 248, 230, 0.96);
  padding: 0.42rem 0.58rem;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.2;
  opacity: 0.92;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(3rem, 1fr) minmax(0, 1120px) minmax(3rem, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background: rgba(20, 32, 24, 0.78);
  backdrop-filter: blur(18px);
  padding: clamp(1rem, 3vw, 2rem);
}

.gallery-lightbox-figure {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: 100%;
  max-height: calc(100vh - 8.5rem);
  margin: 0;
}

.gallery-lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 8.5rem);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox-figure figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 32rem;
  border-radius: 8px;
  background: rgba(18, 28, 22, 0.72);
  color: rgba(247, 248, 230, 0.92);
  padding: 0.8rem 0.95rem;
  backdrop-filter: blur(10px);
}

.gallery-lightbox-figure h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
}

.gallery-lightbox-figure p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.gallery-lightbox-close,
.gallery-lightbox-nav,
.gallery-lightbox-thumb {
  border: 1px solid rgba(247, 248, 230, 0.28);
  background: rgba(247, 248, 230, 0.14);
  color: #ffffff;
  cursor: pointer;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 1.8rem;
}

.gallery-lightbox-nav {
  justify-self: center;
}

.gallery-lightbox-nav.is-prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox-nav.is-next {
  grid-column: 3;
  grid-row: 1;
}

.gallery-lightbox-thumbs {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.gallery-lightbox-thumb {
  flex: 0 0 auto;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  opacity: 0.68;
}

.gallery-lightbox-thumb.is-active {
  border-color: rgba(247, 248, 230, 0.86);
  opacity: 1;
}

.gallery-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.has-gallery-lightbox {
  overflow: hidden;
}

.inline-figure {
  margin: 2rem 0 0;
  border: 1px solid var(--color-sage-border);
  border-radius: 8px;
  background: rgba(154, 177, 122, 0.14);
  overflow: hidden;
}

.inline-figure figcaption {
  padding: 0.75rem 1rem;
  color: rgba(48, 54, 79, 0.62);
  font-size: 0.85rem;
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 0.58rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

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

  .skills-section .skill-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .skills-layout {
    grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 70px;
  }

  .wrap {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--color-sage-border);
    border-radius: 8px;
    background: rgba(214, 226, 194, 0.98);
    box-shadow: 0 18px 40px rgba(95, 116, 74, 0.18);
    overflow: hidden;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.82rem 1rem;
    border-bottom: 1px solid rgba(95, 116, 74, 0.14);
    font-size: 0.96rem;
    text-align: center;
  }

  .nav-links a::after {
    display: none;
  }

  .section-shell {
    padding-block: 72px;
  }

  .contact-section {
    padding-block: 76px;
  }

  .hero {
    min-height: calc(100svh - var(--nav-height));
    padding-block: 0;
  }

  .hero-grid,
  .two-column,
  .about-grid,
  .education-grid,
  .diptych,
  .creative-slider-header,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .two-column {
    gap: 40px;
  }

  .skills-section::after {
    opacity: 0.16;
  }

  .skills-section .skill-grid {
    gap: 2.6rem 3rem;
  }

  .hero-grid {
    min-height: calc(100svh - var(--nav-height));
  }

  .hero-copy {
    max-width: 34rem;
    padding-block: 5.5rem;
  }

  h1 {
    max-width: 12ch;
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .photo-slot-landscape,
  .photo-slot-portrait {
    min-height: 390px;
  }

  .hero-photo {
    min-height: calc(100svh - var(--nav-height));
    object-position: 54% 58%;
  }

  .hero-image {
    transform: none;
  }

  .credential-grid,
  .project-grid,
  .award-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .degree-card {
    position: static;
  }

  .timeline-board {
    --timeline-pad: 1.35rem;
    gap: 1rem;
    padding: var(--timeline-pad);
  }

  .journey-soil,
  .journey-club,
  .journey-forest,
  .journey-overdose,
  .journey-paleo,
  .journey-dance,
  .timeline-note {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }

  .journey-event,
  .journey-forest,
  .journey-dance {
    grid-template-columns: minmax(132px, 0.38fr) minmax(0, 1fr);
    height: auto;
    min-height: 0;
    max-width: 100%;
    margin: 0;
  }

  .journey-event:nth-of-type(odd)::before,
  .journey-event:nth-of-type(even)::before {
    content: none;
  }

  .journey-event:not(:last-child)::after {
    content: none;
  }

  .journey-event:nth-of-type(odd) .journey-photo,
  .journey-event:nth-of-type(even) .journey-photo {
    grid-column: 1;
  }

  .journey-event:nth-of-type(odd) .journey-copy,
  .journey-event:nth-of-type(even) .journey-copy {
    grid-column: 2;
    height: auto;
    min-height: 0;
    padding-left: 1rem;
    padding-right: 3rem;
  }

  .journey-event:nth-of-type(odd) .journey-copy::before,
  .journey-event:nth-of-type(even) .journey-copy::before {
    right: 0.75rem;
    left: auto;
  }

  .journey-event:nth-of-type(odd) .journey-photo,
  .journey-event:nth-of-type(even) .journey-photo {
    border-radius: 999px 0 0 999px;
  }

  .journey-caption {
    position: static;
    display: block;
    width: auto;
    border: 0;
    border-top: 1px solid rgba(240, 240, 219, 0.26);
    border-radius: 0;
    background:
      linear-gradient(145deg, rgba(35, 54, 39, 0.92), rgba(48, 54, 79, 0.9));
    box-shadow: none;
    color: var(--color-ivory);
    padding: 0.72rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 640;
    line-height: 1.45;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .journey-caption::before {
    content: none;
  }

  .journey-event:nth-of-type(odd) .journey-copy,
  .journey-event:nth-of-type(even) .journey-copy {
    border-radius: 0 8px 8px 0;
  }

  .journey-photo,
  .journey-club .journey-photo,
  .journey-overdose .journey-photo,
  .journey-dance .journey-photo,
  .journey-forest .journey-photo,
  .journey-paleo .journey-photo {
    height: auto;
    min-height: 180px;
    overflow: hidden;
  }

  .journey-image {
    height: clamp(180px, 28vw, 240px);
  }

  .timeline-note {
    max-width: 28rem;
    margin: 0.65rem auto 0;
    font-size: 1.32rem;
    transform: none;
  }

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

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

  .footer-grid p:nth-child(2) {
    white-space: normal;
  }

  .footer-grid p:last-child {
    text-align: left;
  }

  .page-hero-grid,
  .article-hero-grid,
  .article-layout,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .page-hero h1,
  .article-hero h1 {
    max-width: 14ch;
    font-size: 3rem;
  }

  .article-toc {
    position: static;
    border-left: 0;
    border-top: 1px solid rgba(95, 116, 74, 0.26);
    padding: 1rem 0 0;
  }

  .creative-slider-header {
    align-items: start;
  }

  .creative-slider-header::after {
    justify-self: start;
  }

  .gallery-layout {
    gap: 40px;
    padding-block: 62px 82px;
  }

  .gallery-section-heading {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .scroll-gallery-card .photo-slot {
    min-height: 240px;
  }

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

  .art-bento-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(110px, 18vw);
  }

  .art-bento-item.is-feature,
  .art-bento-item.is-wide {
    grid-column: span 4;
    grid-row: span 3;
  }

  .art-bento-item,
  .art-bento-item.is-tall {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-lightbox {
    grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  }
}

@media (max-width: 760px) {
  .side-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  #work::before,
  #work::after {
    opacity: 0.46;
    width: 16rem;
  }

  .hero-copy,
  .hero-visual,
  .hero-image,
  .hero-text,
  .hero-kicker,
  .image-panel,
  .button-row,
  .contact-actions {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .hero .hero-visual,
  .hero .hero-image,
  .hero .image-panel {
    width: 100%;
    max-width: 100%;
  }

  .brand span:last-child {
    display: none;
  }

  .site-header {
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    pointer-events: none;
  }

  .site-header.is-scrolled {
    opacity: 1;
    transform: none;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .site-header .wrap {
    max-width: none;
  }

  .nav {
    min-height: 0;
    justify-content: flex-end;
  }

  .brand {
    display: none;
  }

  .nav-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 60;
    transform: none;
    border-color: rgba(240, 240, 219, 0.72);
    background: rgba(31, 51, 38, 0.78);
    color: var(--color-ivory);
    box-shadow: 0 12px 28px rgba(16, 25, 20, 0.32);
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    top: 4.35rem;
    left: 1rem;
    right: 1rem;
    pointer-events: auto;
  }

  .section-shell {
    padding-block: 64px;
  }

  .skills-section .skill-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .skills-layout {
    grid-template-columns: 1fr;
  }

  .skills-panel {
    min-height: 180px;
  }

  .skills-section::after {
    display: none;
  }

  .about-section::after {
    display: none;
  }

  .contact-section::before,
  .contact-section::after {
    display: none;
  }

  .hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100svh;
    height: 100svh;
    padding-block: 0;
    overflow: hidden;
    background: #263324;
  }

  .about-section {
    margin-top: 100svh;
  }

  .hero-grid {
    display: flex;
    align-items: center;
    min-height: 100svh;
    gap: 0;
  }

  .hero-copy {
    max-width: 100%;
    padding-block: 6.25rem 4.5rem;
    color: var(--color-ivory);
    text-shadow: 0 2px 18px rgba(20, 29, 20, 0.58);
  }

  .timeline-board {
    --timeline-pad: 1rem;
    --timeline-step: 2.35rem;
  }

  h1 {
    max-width: 11.5ch;
    font-size: 2.45rem;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(3.2rem, 15vw, 4.4rem);
    color: var(--color-ivory);
  }

  .hero .eyebrow {
    color: rgba(240, 240, 219, 0.9);
  }

  .hero .eyebrow::before {
    background: rgba(240, 240, 219, 0.8);
  }

  .hero-line {
    background: rgba(240, 240, 219, 0.82);
  }

  h2 {
    font-size: 1.95rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-text {
    color: rgba(240, 240, 219, 0.88);
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .image-panel figcaption {
    font-size: 0.74rem;
  }

  .hero-kicker {
    color: rgba(240, 240, 219, 0.82);
    max-width: 24rem;
    font-size: 0.98rem;
  }

  .button-row,
  .contact-actions {
    width: 100%;
  }

  .hero .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .hero .button {
    width: auto;
    min-width: min(100%, 9.5rem);
    justify-content: center;
  }

  .hero .button-secondary,
  .hero .button-quiet {
    border: 1px solid rgba(240, 240, 219, 0.78);
    background: rgba(240, 240, 219, 0.9);
    color: var(--color-ink);
    box-shadow: 0 12px 26px rgba(16, 25, 20, 0.28);
  }

  .hero .button-secondary:hover,
  .hero .button-quiet:hover {
    background: var(--color-ivory);
    color: var(--color-ink);
  }

  .credential-grid,
  .coursework-grid,
  .skill-grid,
  .project-grid,
  .award-grid,
  .blog-grid,
  .gallery-mosaic,
  .mini-meta {
    grid-template-columns: 1fr;
  }

  .photo-slot-landscape,
  .photo-slot-portrait {
    min-height: 300px;
  }

  .hero-photo {
    min-height: 100svh;
    height: 100%;
    aspect-ratio: auto;
    object-position: 58% 54%;
  }

  .hero-visual {
    position: absolute;
    inset: 0 auto 0 50%;
    width: 100vw;
    max-width: none;
    transform: translateX(-50%);
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(16, 25, 20, 0.78) 0%, rgba(28, 41, 32, 0.58) 56%, rgba(16, 25, 20, 0.28) 100%),
      linear-gradient(180deg, rgba(16, 25, 20, 0.22) 0%, rgba(16, 25, 20, 0.08) 48%, rgba(16, 25, 20, 0.5) 100%);
    pointer-events: none;
  }

  .hero-image {
    width: 100%;
    max-width: none;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero .button-primary {
    border-color: rgba(48, 54, 79, 0.16);
    background: var(--color-sage-deep);
    color: var(--color-ivory);
  }

  .hero .button-secondary {
    border-color: rgba(240, 240, 219, 0.78);
    background: rgba(240, 240, 219, 0.9);
    color: var(--color-ink);
    box-shadow: 0 12px 26px rgba(16, 25, 20, 0.28);
  }

  .hero .button-quiet {
    border: 1px solid rgba(240, 240, 219, 0.78);
    background: rgba(240, 240, 219, 0.9);
    color: var(--color-ink);
    box-shadow: 0 12px 26px rgba(16, 25, 20, 0.28);
  }

  .hero .button-row {
    justify-content: center;
  }

  .hero .button-row .button-primary,
  .hero .button-row .button-secondary {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
  }

  .hero .button-row .button-secondary {
    border-color: transparent;
    background: var(--color-sage-deep);
    color: var(--color-ivory);
  }

  .hero .button-row .button-quiet {
    flex: 0 1 9.5rem;
    margin-inline: auto;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip .photo-slot {
    min-height: 190px;
  }

  .creative-slider-card {
    padding: 0.75rem;
  }

  .creative-slider-header {
    padding-inline: 0.1rem;
  }

  .creative-slider-header h3 {
    font-size: 1.5rem;
  }

  .slider-figure {
    flex-basis: min(72vw, 280px);
    min-height: 190px;
  }

  .journey-event,
  .journey-forest,
  .journey-dance {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    height: auto;
    min-height: 0;
    padding: 0.15rem 0 0.75rem;
  }

  .journey-event:nth-of-type(odd)::before,
  .journey-event:nth-of-type(even)::before {
    content: none;
  }

  .journey-event:nth-of-type(odd) .journey-photo,
  .journey-event:nth-of-type(even) .journey-photo,
  .journey-event:nth-of-type(odd) .journey-copy,
  .journey-event:nth-of-type(even) .journey-copy {
    grid-column: 1;
  }

  .journey-event:nth-of-type(odd) .journey-photo,
  .journey-event:nth-of-type(even) .journey-photo {
    grid-row: 2;
    height: auto;
    min-height: 170px;
  }

  .journey-image {
    height: clamp(190px, 58vw, 270px);
  }

  .journey-event:nth-of-type(odd) .journey-copy,
  .journey-event:nth-of-type(even) .journey-copy {
    grid-row: 1;
    height: auto;
    min-height: 0;
    padding: 1rem 3rem 1rem 1rem;
    border-radius: 8px;
  }

  .journey-event:nth-of-type(odd) .journey-photo,
  .journey-event:nth-of-type(even) .journey-photo {
    border-radius: 8px;
  }

  .journey-copy h3 {
    font-size: 1.15rem;
  }

  .timeline-note {
    font-size: 1.2rem;
  }

  .project-body,
  .blog-card-body,
  .current-card,
  .contact-panel {
    padding: 1.1rem;
  }

  .contact-section {
    padding-block: 64px;
  }

  .contact-panel h2 {
    font-size: 1.75rem;
  }

  .page-hero h1,
  .article-hero h1 {
    max-width: 100%;
    font-size: 2.45rem;
  }

  .horizontal-card .blog-card-link {
    grid-template-columns: 1fr;
  }

  .horizontal-card .blog-thumb {
    width: 100%;
    height: auto;
    min-height: 220px;
  }

  .horizontal-card .article-cover-thumb img {
    height: 230px;
  }

  .article-layout {
    gap: 36px;
    padding-block: 52px 70px;
  }

  .gallery-layout {
    gap: 34px;
    padding-block: 52px 70px;
  }

  .gallery-card,
  .compact-gallery .gallery-card {
    grid-template-rows: minmax(210px, 1fr) auto;
  }

  .gallery-card.is-wide,
  .gallery-card.is-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .dance-subsection-header {
    align-items: flex-start;
  }

  .scroll-gallery-card {
    flex-basis: calc((100% - 0.7rem) / 2);
  }

  .scroll-gallery-track {
    gap: 0.7rem;
  }

  .scroll-gallery-card .photo-slot {
    min-height: 190px;
  }

  .art-gallery-hero {
    padding-bottom: 34px;
  }

  .art-bento-section {
    padding-block: 1rem 4rem;
  }

  .art-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.7rem;
  }

  .art-bento-item,
  .art-bento-item.is-feature,
  .art-bento-item.is-wide,
  .art-bento-item.is-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .art-bento-item.is-wide {
    aspect-ratio: 4 / 3;
  }

  .art-bento-item.is-tall {
    aspect-ratio: 3 / 4;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .gallery-lightbox-figure {
    grid-column: 1 / -1;
    max-height: calc(100vh - 9rem);
  }

  .gallery-lightbox-figure img {
    max-height: calc(100vh - 9rem);
  }

  .gallery-lightbox-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .gallery-lightbox-nav.is-prev,
  .gallery-lightbox-nav.is-next {
    grid-row: 2;
  }

  .gallery-lightbox-nav.is-prev {
    grid-column: 1;
    justify-self: end;
  }

  .gallery-lightbox-nav.is-next {
    grid-column: 2;
    justify-self: start;
  }

  .gallery-lightbox-thumbs {
    grid-row: 3;
  }

  .gallery-lightbox-figure figcaption {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .article-body h2 {
    font-size: 1.65rem;
  }

  .gallery-section-heading h2 {
    font-size: 1.65rem;
  }
}

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

  .slider-track {
    animation: none !important;
    transform: none !important;
  }
}
