:root {
  color-scheme: light;
  --ink: #2a3126;
  --deep-forest: #24401f;
  --redwood: #614135;
  --hill: #e3bf70;
  --dry-grass: #f1d889;
  --bay: #83bdd3;
  --fog: #f9f2e5;
  --paper: #fff7ed;
  --sage: #acc79b;
  --sky: #b9dcf0;
  --pansy: #4f075d;
  --petal-pink: #ef8fba;
  --shadow: rgba(42, 49, 38, 0.16);
  --wind-x: 0;
  --wind-y: 0;
  --max-page: 1120px;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(42, 49, 38, 0.01) 0 1px,
      transparent 1px 7px
    ),
    var(--paper);
}

.home-page {
  overflow: hidden;
}

.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-hummingbird-cursor,
.has-hummingbird-cursor a,
.has-hummingbird-cursor button,
.has-sunlight-cursor,
.has-sunlight-cursor a,
.has-sunlight-cursor button {
  cursor: none;
}

.content-open.has-custom-cursor,
.workbench-content-open.has-hummingbird-cursor,
.pressed-content-open.has-hummingbird-cursor {
  cursor: auto;
}

.content-open.has-custom-cursor a,
.content-open.has-custom-cursor button,
.workbench-content-open.has-hummingbird-cursor a,
.workbench-content-open.has-hummingbird-cursor button,
.pressed-content-open.has-hummingbird-cursor a,
.pressed-content-open.has-hummingbird-cursor button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 12px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 10px 30px var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--ink);
  pointer-events: none;
}

.wordmark,
.quiet-nav {
  pointer-events: auto;
}

.wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: clamp(1.08rem, 1.95vw, 1.34rem);
  font-weight: 500;
  letter-spacing: 0;
  padding: 6px 9px 8px;
  border-radius: 4px;
  background: transparent;
  color: rgba(38, 49, 36, 0.78);
  text-shadow: 0 1px 0 rgba(255, 248, 236, 0.42);
  transition: color 180ms ease;
}

.wordmark::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 48%;
  bottom: 4px;
  height: 2px;
  background: rgba(97, 65, 53, 0.34);
  transform-origin: 0 50%;
  transition:
    right 180ms ease,
    background 180ms ease,
    height 180ms ease;
}

.wordmark:hover,
.wordmark:focus-visible {
  color: rgba(24, 35, 27, 0.92);
}

.wordmark:hover::after,
.wordmark:focus-visible::after {
  right: 9px;
  height: 3px;
  background: rgba(97, 65, 53, 0.76);
}

.quiet-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 18px);
  padding: 8px 10px;
  border: 1px solid rgba(38, 49, 38, 0.14);
  border-radius: 4px;
  background: rgba(255, 248, 236, 0.62);
  backdrop-filter: blur(14px);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quiet-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 8px 6px;
  border-radius: 3px;
  color: rgba(42, 49, 38, 0.82);
  font-weight: 600;
  isolation: isolate;
  text-decoration: none;
  transition: color 180ms ease;
}

.quiet-nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: rgba(97, 65, 53, 0.74);
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: 50% 50%;
  transition:
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.quiet-nav a:hover,
.quiet-nav a:focus-visible {
  color: rgba(34, 43, 31, 0.96);
}

.quiet-nav a:hover::after,
.quiet-nav a:focus-visible::after {
  background: rgba(97, 65, 53, 0.82);
  opacity: 1;
  transform: scaleX(1);
}

.quiet-nav a:focus-visible {
  outline: 2px solid rgba(97, 65, 53, 0.62);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, var(--sky) 0%, #cfe3dc 42%, var(--sage) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -4%;
  right: -4%;
  bottom: -3%;
  height: 36%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 86%, rgba(36, 64, 31, 0.34), transparent 24%),
    radial-gradient(ellipse at 36% 78%, rgba(90, 116, 58, 0.32), transparent 22%),
    radial-gradient(ellipse at 70% 82%, rgba(36, 64, 31, 0.26), transparent 24%),
    radial-gradient(ellipse at 92% 84%, rgba(90, 116, 58, 0.3), transparent 22%),
    linear-gradient(180deg, rgba(255, 247, 237, 0), rgba(68, 91, 45, 0.2));
  mix-blend-mode: multiply;
  opacity: 0.72;
}

.landscape {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  user-select: none;
}

.fog-layer {
  position: absolute;
  z-index: -1;
  inset: 12% -12% auto;
  height: 34%;
  background:
    radial-gradient(ellipse at 15% 46%, rgba(255, 255, 255, 0.52), transparent 52%),
    radial-gradient(ellipse at 50% 38%, rgba(255, 255, 255, 0.42), transparent 58%),
    radial-gradient(ellipse at 86% 55%, rgba(255, 255, 255, 0.38), transparent 54%);
  filter: blur(18px);
  opacity: 0;
  transform: translateX(calc(var(--wind-x) * -10px));
  transition: transform 240ms ease-out;
}

.water-shine {
  position: absolute;
  z-index: -1;
  right: -6%;
  bottom: 8%;
  width: min(48vw, 560px);
  height: min(20vw, 190px);
  border-radius: 50%;
  background:
    linear-gradient(115deg, transparent 0 23%, rgba(255, 255, 255, 0.34) 24% 26%, transparent 27% 100%),
    linear-gradient(175deg, rgba(101, 164, 183, 0.1), rgba(35, 109, 126, 0.18));
  transform: rotate(-7deg);
  mix-blend-mode: screen;
  animation: water-glint 7s ease-in-out infinite;
}

.forest-home-page .hero {
  background: #3f4b32;
}

.forest-home-page .landscape {
  object-position: center center;
  filter:
    saturate(1.04)
    contrast(1.02)
    brightness(1.01);
}

.forest-home-page .fog-layer {
  inset: 0 auto auto 0;
  width: 58%;
  height: 100%;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(255, 248, 236, 0.1), transparent 66%),
    linear-gradient(90deg, rgba(255, 248, 236, 0.11), transparent 84%);
  filter: blur(28px);
  opacity: 0.36;
}

.forest-home-page .water-shine {
  display: none;
}

.forest-home-page .intro-copy {
  left: clamp(54px, 8vw, 112px);
  top: clamp(118px, 18vh, 172px);
  z-index: 4;
  pointer-events: none;
}

.forest-home-page .mist-name-zone {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: min(58vw, 680px);
  height: min(54vh, 460px);
  pointer-events: auto;
}

.forest-home-page .intro-copy h1 {
  max-width: 8.2ch;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  font-weight: 300;
  color: rgba(35, 48, 37, 0.2);
  text-shadow:
    0 0 30px rgba(255, 248, 236, 0.42),
    0 1px 36px rgba(255, 248, 236, 0.32);
  opacity: 0.12;
  filter: blur(2.6px);
  transform: translateY(5px);
  transition:
    color 520ms ease,
    filter 520ms ease,
    opacity 520ms ease,
    transform 520ms ease,
    text-shadow 520ms ease;
}

.forest-home-page .mist-name-zone:hover ~ .intro-copy h1,
.forest-home-page.mist-name-awake .intro-copy h1,
.forest-home-page .hero:focus-within .intro-copy h1 {
  color: rgba(24, 35, 27, 0.92);
  opacity: 0.9;
  filter: blur(0);
  transform: translateY(0);
  text-shadow:
    0 1px 10px rgba(255, 248, 236, 0.42),
    0 8px 26px rgba(14, 24, 17, 0.18);
}

.forest-home-page .flower-label {
  display: none;
}

.forest-home-page .stem {
  display: none;
}

.forest-home-page .flower-link::before {
  --ground-a: rgba(66, 66, 36, 0.24);
  --ground-b: rgba(118, 94, 46, 0.18);
  --ground-c: rgba(31, 48, 26, 0.22);
  display: block;
  z-index: 3;
  left: 8%;
  right: 8%;
  bottom: clamp(0px, 0.8vh, 8px);
  height: clamp(36px, 5vw, 64px);
  border-radius: 42% 48% 18% 22%;
  background:
    radial-gradient(ellipse at 12% 82%, var(--ground-a) 0 13%, transparent 14%),
    radial-gradient(ellipse at 31% 76%, var(--ground-b) 0 12%, transparent 13%),
    radial-gradient(ellipse at 53% 88%, var(--ground-c) 0 15%, transparent 16%),
    radial-gradient(ellipse at 72% 78%, var(--ground-b) 0 12%, transparent 13%),
    radial-gradient(ellipse at 88% 86%, var(--ground-a) 0 11%, transparent 12%),
    linear-gradient(66deg, transparent 0 47%, var(--ground-c) 48% 50%, transparent 51% 100%) 7% 38% / 28px 54px repeat-x,
    linear-gradient(108deg, transparent 0 47%, var(--ground-a) 48% 50%, transparent 51% 100%) 0 48% / 32px 46px repeat-x;
  filter: blur(0.55px);
  opacity: 0.46;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translateY(8px);
}

.forest-home-page .flower-link::after {
  content: none;
}

.intro-copy {
  position: absolute;
  z-index: 2;
  left: clamp(220px, 19vw, 320px);
  top: clamp(92px, 18vh, 180px);
  max-width: min(520px, calc(100vw - 40px));
  color: #263126;
  text-shadow: 0 1px 18px rgba(255, 248, 236, 0.58);
}

.kicker {
  margin: 0 0 10px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--redwood);
}

.intro-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 500;
}

.intro-copy p:last-child {
  max-width: 420px;
  margin: 16px 0 0;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.45;
}

.garden-map {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.garden-map::before {
  content: none;
}

.flower-link {
  --bloom-scale: 1;
  --label-tilt: 0deg;
  position: absolute;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: clamp(90px, 12vw, 150px);
  min-height: 180px;
  text-decoration: none;
  pointer-events: auto;
  transform:
    translate3d(0, 0, 0)
    rotate(calc(var(--wind-x) * 5deg));
  transform-origin: 50% 100%;
  transition: transform 220ms ease-out;
}

.flower-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 14%;
  right: 14%;
  bottom: 12px;
  height: clamp(48px, 6vw, 82px);
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(72deg, transparent 0 48%, rgba(46, 86, 44, 0.62) 49% 51%, transparent 52% 100%) 12% 20% / 28px 82px repeat-x,
    linear-gradient(104deg, transparent 0 48%, rgba(103, 127, 63, 0.52) 49% 51%, transparent 52% 100%) 4% 30% / 34px 76px repeat-x,
    radial-gradient(ellipse at 50% 100%, rgba(42, 49, 38, 0.2), transparent 65%);
  filter: blur(0.1px);
  opacity: 0.78;
  pointer-events: none;
}

.flower-link::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 18%;
  right: 18%;
  bottom: 10px;
  height: 20px;
  border-radius: 50%;
  background: rgba(42, 49, 38, 0.18);
  filter: blur(8px);
  pointer-events: none;
}

.flower-link.real-flower {
  --bloom-scale: 1;
  width: clamp(150px, 19vw, 260px);
  min-height: clamp(210px, 24vw, 320px);
}

.flower-link.real-flower .stem {
  display: none;
}

.forest-home-page .native-flower {
  width: clamp(126px, 13vw, 188px);
  min-height: clamp(170px, 22vw, 300px);
  align-content: end;
  opacity: 0.92;
  transform: translate3d(0, 0, 0);
}

.forest-home-page .native-flower .flower-head {
  width: 100%;
  margin-top: 0;
  transform: scale(1, var(--bloom-scale));
  transform-origin: 50% 94%;
  filter: none;
}

.forest-home-page .native-flower .flower-head::after {
  inset: 28%;
  background: rgba(255, 242, 199, 0.28);
  filter: blur(10px);
}

.forest-home-page .native-flower .flower-head img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0 78%,
    rgba(0, 0, 0, 0.74) 87%,
    rgba(0, 0, 0, 0.32) 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0 78%,
    rgba(0, 0, 0, 0.74) 87%,
    rgba(0, 0, 0, 0.32) 95%,
    transparent 100%
  );
  filter:
    saturate(1.04)
    sepia(0.03)
    brightness(0.99)
    contrast(1.02);
  transition:
    opacity 240ms ease,
    filter 240ms ease;
}

.forest-home-page .native-flower:hover .flower-head,
.forest-home-page .native-flower:focus-visible .flower-head,
.forest-home-page .native-flower.is-light-nourished .flower-head {
  filter: none;
}

.forest-home-page .native-flower:hover .flower-head img,
.forest-home-page .native-flower:focus-visible .flower-head img,
.forest-home-page .native-flower.is-light-nourished .flower-head img {
  opacity: 0.98;
  filter:
    saturate(1.16)
    sepia(0.01)
    brightness(1.03)
    contrast(1.04);
}

.flower-link:focus-visible {
  outline: 3px solid rgba(38, 49, 38, 0.76);
  outline-offset: 8px;
  border-radius: 4px;
}

.stem {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 34px;
  width: clamp(8px, 1.1vw, 12px);
  height: clamp(104px, 13vw, 168px);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 36%),
    linear-gradient(180deg, #6c7d3f, #2f5f3a);
  transform:
    translateX(-50%)
    rotate(calc(var(--wind-x) * 4deg));
  transform-origin: 50% 100%;
  box-shadow: inset -2px 0 0 rgba(24, 60, 36, 0.22);
}

.flower-head {
  position: relative;
  z-index: 2;
  width: clamp(74px, 10vw, 132px);
  margin-top: 2px;
  transform:
    translateY(calc(var(--wind-y) * 5px))
    scale(var(--bloom-scale));
  transition:
    transform 260ms cubic-bezier(0.18, 0.84, 0.28, 1.22),
    filter 260ms ease;
  filter: drop-shadow(0 16px 18px rgba(35, 31, 24, 0.18));
}

.real-flower .flower-head {
  width: 100%;
  transform-origin: 50% 88%;
  filter: drop-shadow(0 18px 18px rgba(44, 38, 28, 0.2));
}

.flower-head img {
  position: relative;
  z-index: 1;
}

.flower-head::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 20%;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.52);
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 260ms ease, transform 260ms ease;
}

.flower-link:hover,
.flower-link:focus-visible {
  --bloom-scale: 1.16;
  transform:
    translateY(-12px)
    rotate(calc(var(--wind-x) * 7deg));
}

.flower-link.real-flower:hover,
.flower-link.real-flower:focus-visible {
  --bloom-scale: 1.06;
}

.flower-link:hover .flower-head,
.flower-link:focus-visible .flower-head {
  filter:
    drop-shadow(0 20px 18px rgba(35, 31, 24, 0.24))
    saturate(1.08);
}

.flower-link:hover .flower-head::after,
.flower-link:focus-visible .flower-head::after {
  opacity: 1;
  transform: scale(1.14);
}

.forest-home-page .native-flower:hover .flower-head::after,
.forest-home-page .native-flower:focus-visible .flower-head::after,
.forest-home-page .native-flower.is-light-nourished .flower-head::after {
  opacity: 0.18;
  transform: scale(0.86);
}

.flower-link[data-awake="true"] .flower-head {
  animation: bloom-pop 420ms cubic-bezier(0.18, 0.84, 0.28, 1.22);
}

.forest-home-page .native-flower:hover,
.forest-home-page .native-flower:focus-visible,
.forest-home-page .native-flower.is-light-nourished {
  --bloom-scale: 1.055;
  transform: rotate(calc(var(--wind-x) * 0.8deg));
}

.forest-home-page .native-flower[data-awake="true"] .flower-head {
  animation: native-grow 520ms ease-out;
}

.flower-label {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 6px;
  min-width: max-content;
  padding: 8px 13px 7px;
  border: 2px solid rgba(58, 80, 43, 0.72);
  border-radius: 2px;
  background:
    radial-gradient(circle at 10px 50%, rgba(58, 80, 43, 0.42) 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 10px) 50%, rgba(58, 80, 43, 0.42) 0 2px, transparent 2.5px),
    linear-gradient(180deg, #f7efd8 0%, #e5d4a8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -3px 0 rgba(94, 82, 44, 0.08),
    0 6px 12px rgba(45, 45, 33, 0.16);
  color: #26391d;
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(var(--label-tilt));
  transform-origin: 50% 100%;
  transition:
    transform 200ms ease,
    background 200ms ease,
    opacity 200ms ease;
}

.flower-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 5px;
  height: 25px;
  border-radius: 0 0 999px 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 40%),
    linear-gradient(180deg, #756238, #473d27);
  box-shadow: 0 4px 5px rgba(42, 49, 38, 0.18);
  transform: translateX(-50%);
}

.flower-label strong {
  display: block;
}

.flower-label strong {
  font-size: clamp(0.62rem, 0.95vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

.flower-link:hover .flower-label,
.flower-link:focus-visible .flower-label {
  background:
    radial-gradient(circle at 10px 50%, rgba(58, 80, 43, 0.48) 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 10px) 50%, rgba(58, 80, 43, 0.48) 0 2px, transparent 2.5px),
    linear-gradient(180deg, #fff6df 0%, #eadab0 100%);
  transform: translate(-50%, 3px) rotate(var(--label-tilt));
}

.flower-about {
  --label-tilt: -1.8deg;
  z-index: 4;
  width: clamp(180px, 19vw, 260px);
  left: clamp(46px, 8vw, 130px);
  bottom: clamp(16px, 4vh, 42px);
}

.flower-work {
  --label-tilt: 1.4deg;
  z-index: 5;
  left: clamp(30%, 35vw, 40%);
  bottom: clamp(30px, 7vh, 82px);
}

.flower-writing {
  left: clamp(28%, 38vw, 44%);
  bottom: clamp(96px, 18vh, 150px);
}

.flower-notes {
  --label-tilt: -1deg;
  z-index: 6;
  left: clamp(51%, 55vw, 59%);
  bottom: clamp(80px, 13vh, 146px);
}

.flower-dance {
  right: clamp(220px, 24vw, 320px);
  bottom: clamp(70px, 13vh, 122px);
}

.flower-illustrations {
  --label-tilt: 1.8deg;
  z-index: 4;
  width: clamp(190px, 20vw, 280px);
  right: clamp(48px, 8vw, 150px);
  bottom: clamp(20px, 5vh, 64px);
}

.forest-home-page .flower-about {
  --ground-a: rgba(76, 68, 34, 0.24);
  --ground-b: rgba(145, 112, 50, 0.16);
  --ground-c: rgba(43, 58, 29, 0.2);
  z-index: 5;
  width: clamp(124px, 12vw, 184px);
  left: clamp(40px, 7vw, 110px);
  bottom: clamp(34px, 7vh, 76px);
}

.forest-home-page .flower-work {
  --ground-a: rgba(112, 94, 44, 0.2);
  --ground-b: rgba(180, 137, 57, 0.14);
  --ground-c: rgba(49, 58, 31, 0.18);
  z-index: 5;
  width: clamp(108px, 10vw, 158px);
  left: clamp(28%, 33vw, 37%);
  bottom: clamp(104px, 16vh, 158px);
}

.forest-home-page .flower-notes {
  --ground-a: rgba(94, 82, 42, 0.18);
  --ground-b: rgba(195, 148, 60, 0.12);
  --ground-c: rgba(50, 55, 30, 0.15);
  z-index: 3;
  width: clamp(82px, 8vw, 126px);
  left: clamp(62%, 66vw, 70%);
  bottom: clamp(154px, 23vh, 220px);
  opacity: 0.82;
}

.forest-home-page .flower-illustrations {
  --ground-a: rgba(45, 59, 30, 0.2);
  --ground-b: rgba(119, 98, 48, 0.16);
  --ground-c: rgba(31, 47, 28, 0.24);
  z-index: 6;
  width: clamp(138px, 13vw, 198px);
  right: clamp(38px, 7vw, 118px);
  bottom: clamp(30px, 6vh, 72px);
}

.garden-notes,
.content-band {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 58px);
}

.garden-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(240px, 0.7fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  max-width: var(--max-page);
  margin: 0 auto;
}

.garden-notes p:last-child,
.section-heading h2 {
  margin: 0;
}

.garden-notes p:last-child {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.section-heading {
  max-width: 620px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.content-band {
  border-top: 1px solid rgba(38, 49, 38, 0.12);
}

.content-band > * {
  max-width: var(--max-page);
  margin-left: auto;
  margin-right: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 5vw, 54px);
}

.item-card {
  min-height: 150px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(38, 49, 38, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.65);
  box-shadow: 0 22px 60px rgba(38, 49, 38, 0.08);
}

.item-card span {
  display: block;
  margin-bottom: 12px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--redwood);
}

.item-card p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
}

.link-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.link-stack a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(38, 49, 38, 0.16);
  border-radius: 4px;
  background: rgba(255, 247, 237, 0.72);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.link-stack a:hover,
.link-stack a:focus-visible {
  border-color: rgba(101, 63, 49, 0.36);
  box-shadow: 0 12px 30px rgba(38, 49, 38, 0.12);
  transform: translateY(-2px);
}

.linked-card {
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.linked-card:hover,
.linked-card:focus-visible {
  border-color: rgba(101, 63, 49, 0.38);
  box-shadow: 0 26px 70px rgba(38, 49, 38, 0.14);
  transform: translateY(-3px);
}

.workbench-tools {
  grid-template-columns: minmax(260px, 0.58fr);
}

.workbench-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(224, 214, 177, 0.48), transparent 32%),
    linear-gradient(180deg, #cfc4a4 0%, #8e866c 100%);
}

.workbench-page:not(.workbench-content-open) {
  overflow: hidden;
}

.workbench-page .subpage-site-header {
  position: fixed;
  background: linear-gradient(180deg, rgba(96, 91, 69, 0.52), transparent);
}

.page-shell.workbench-shell {
  width: 100%;
  max-width: none;
  padding: 0;
}

.workbench-landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.workbench-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  background: #857c63;
}

.workbench-frame {
  position: relative;
  z-index: 2;
  width: max(100vw, calc(100svh * 1.7768));
  height: max(100svh, calc(100vw / 1.7768));
  aspect-ratio: 1672 / 941;
  overflow: hidden;
}

.workbench-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter:
    saturate(1.04)
    contrast(1.02)
    brightness(1.01);
}

.workbench-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 34% 28%, rgba(255, 238, 180, 0.06), transparent 32%),
    radial-gradient(ellipse at 76% 18%, rgba(255, 234, 166, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(51, 45, 35, 0.02), rgba(41, 33, 22, 0.08));
  mix-blend-mode: soft-light;
  opacity: 0.72;
}

.workbench-hotspot {
  --hotspot-glow: rgba(255, 231, 166, 0.44);
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 999px;
  text-decoration: none;
  outline: none;
}

.workbench-hotspot::before,
.workbench-hotspot::after {
  content: "";
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.workbench-hotspot::before {
  inset: -14%;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 50%, var(--hotspot-glow), transparent 68%);
  filter: blur(3px);
  transform: scale(0.96);
  mix-blend-mode: screen;
}

.workbench-hotspot::after {
  content: attr(data-hover-label);
  left: 50%;
  bottom: 100%;
  min-width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(91, 68, 42, 0.22);
  border-radius: 3px;
  background: rgba(239, 224, 184, 0.82);
  box-shadow: 0 10px 28px rgba(44, 35, 22, 0.16);
  color: rgba(52, 43, 30, 0.86);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translate(-50%, 8px);
}

.workbench-hotspot:hover::before,
.workbench-hotspot:focus-visible::before,
.workbench-hotspot:hover::after,
.workbench-hotspot:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.workbench-hotspot:hover::before,
.workbench-hotspot:focus-visible::before {
  transform: scale(1);
}

.hotspot-projects {
  left: 18%;
  top: 5%;
  width: 64%;
  height: 59%;
  border-radius: 18px;
  --hotspot-glow: rgba(255, 231, 184, 0.25);
}

.hotspot-projects::after {
  left: 50%;
  top: clamp(42px, 8%, 68px);
  bottom: auto;
  transform: translate(-50%, -8px);
}

.hotspot-projects:hover::after,
.hotspot-projects:focus-visible::after {
  transform: translate(-50%, 0);
}

.hotspot-papers {
  left: 24%;
  top: 63%;
  width: 35%;
  height: 34%;
  border-radius: 16px;
  --hotspot-glow: rgba(224, 236, 205, 0.22);
}

.workbench-content {
  display: none;
  min-height: 100svh;
  padding: clamp(92px, 13vh, 132px) clamp(18px, 5vw, 58px) clamp(72px, 9vw, 112px);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 8%, rgba(239, 224, 184, 0.5), transparent 34%),
    linear-gradient(180deg, rgba(190, 177, 135, 0.92), rgba(226, 214, 184, 0.96));
}

.workbench-content-open {
  overflow: auto;
  overflow-x: hidden;
}

.workbench-content-open .workbench-landing {
  display: none;
}

.workbench-content-open .workbench-content {
  display: block;
}

.workbench-panel {
  display: none;
  width: min(100%, var(--max-page));
  margin: 0 auto;
  scroll-margin-top: clamp(120px, 18vh, 180px);
}

.workbench-panel.is-active {
  display: block;
}

.workbench-back {
  position: relative;
  top: auto;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  margin: 0 0 clamp(24px, 4vw, 42px);
  padding: 8px 11px;
  border: 1px solid rgba(73, 59, 38, 0.2);
  border-radius: 4px;
  background: rgba(239, 224, 184, 0.76);
  box-shadow: 0 12px 30px rgba(51, 42, 29, 0.12);
  color: rgba(55, 45, 31, 0.82);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.workbench-back::before {
  content: "←";
  font-size: 0.98rem;
  line-height: 1;
}

.workbench-back:hover,
.workbench-back:focus-visible {
  border-color: rgba(73, 59, 38, 0.42);
  box-shadow: 0 16px 38px rgba(51, 42, 29, 0.16);
}

.workbench-projects-panel .section-heading-row,
.workbench-panel.download-library .section-heading-row {
  margin-bottom: clamp(20px, 3vw, 34px);
}

.workbench-projects-panel h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

.project-note-board {
  position: relative;
  min-height: clamp(280px, 38vw, 430px);
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid rgba(73, 53, 31, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12px 12px, rgba(72, 52, 31, 0.23) 0 2px, transparent 2.5px) 0 0 / 42px 42px,
    radial-gradient(circle at 34px 34px, rgba(255, 237, 183, 0.1) 0 1px, transparent 1.5px) 0 0 / 42px 42px,
    linear-gradient(135deg, rgba(129, 84, 43, 0.88), rgba(168, 116, 62, 0.82));
  box-shadow:
    inset 0 0 0 8px rgba(92, 61, 34, 0.14),
    0 26px 70px rgba(51, 42, 29, 0.14);
}

.project-note-board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 8%, rgba(255, 232, 166, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 248, 226, 0.08), transparent 48%);
  mix-blend-mode: screen;
}

.project-note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  width: min(100%, 390px);
  min-height: 170px;
  padding: 34px 30px 26px;
  border: 1px solid rgba(91, 68, 42, 0.18);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 248, 226, 0.94), rgba(231, 211, 166, 0.9)),
    #f3dfaa;
  box-shadow:
    0 18px 34px rgba(51, 42, 29, 0.18),
    inset 0 -12px 30px rgba(132, 92, 49, 0.08);
  color: rgba(52, 43, 30, 0.9);
  text-decoration: none;
  transform: rotate(-1.4deg);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.project-note:hover,
.project-note:focus-visible {
  box-shadow:
    0 24px 48px rgba(51, 42, 29, 0.22),
    inset 0 -12px 30px rgba(132, 92, 49, 0.08);
  transform: rotate(-0.6deg) translateY(-3px);
}

.project-note-soon {
  cursor: default;
}

.project-pin {
  position: absolute;
  left: 50%;
  top: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 236, 183, 0.9), transparent 28%),
    linear-gradient(135deg, #9f5d2f, #5f3723);
  box-shadow:
    0 3px 8px rgba(49, 34, 23, 0.34),
    inset 0 -2px 3px rgba(65, 34, 20, 0.28);
  transform: translateX(-50%);
}

.project-title {
  margin-top: 8px;
  font-size: clamp(1.45rem, 2.7vw, 2.3rem);
  line-height: 1.02;
}

.project-meta {
  align-self: end;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(91, 68, 42, 0.72);
}

.download-library {
  margin-top: clamp(44px, 7vw, 82px);
}

.download-library .section-heading-row {
  margin-bottom: clamp(20px, 3vw, 34px);
}

.download-library h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.download-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  min-height: 116px;
  padding: 22px 22px 20px 58px;
  overflow: hidden;
  border: 1px solid rgba(38, 49, 38, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 58%),
    rgba(255, 248, 236, 0.66);
  box-shadow: 0 18px 46px rgba(38, 49, 38, 0.07);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.download-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  width: 20px;
  height: 28px;
  border: 1px solid rgba(97, 65, 53, 0.34);
  border-radius: 2px;
  background:
    linear-gradient(135deg, transparent 0 66%, rgba(97, 65, 53, 0.22) 67% 100%) 100% 0 / 9px 9px no-repeat,
    linear-gradient(180deg, rgba(255, 248, 236, 0.9), rgba(230, 211, 176, 0.78));
  box-shadow: inset 0 -3px 0 rgba(97, 65, 53, 0.08);
}

.download-card:hover,
.download-card:focus-visible {
  border-color: rgba(101, 63, 49, 0.38);
  box-shadow: 0 24px 60px rgba(38, 49, 38, 0.12);
  transform: translateY(-2px);
}

.download-title {
  min-width: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.18;
  overflow-wrap: break-word;
  word-break: normal;
}

.download-meta {
  align-self: end;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(97, 65, 53, 0.72);
}

.paper-folder-display {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  padding: clamp(42px, 6vw, 66px) clamp(20px, 4vw, 44px) clamp(30px, 5vw, 50px);
  border: 1px solid rgba(91, 68, 42, 0.22);
  border-radius: 6px 10px 10px 10px;
  background:
    linear-gradient(180deg, rgba(230, 188, 105, 0.92), rgba(181, 123, 61, 0.88)),
    #c58a49;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 206, 0.36),
    inset 0 -18px 42px rgba(91, 55, 27, 0.16),
    0 28px 70px rgba(51, 42, 29, 0.16);
}

.paper-folder-display::before {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  top: 22px;
  height: 24px;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 232, 161, 0.34);
  box-shadow: inset 0 -1px 0 rgba(91, 68, 42, 0.16);
}

.folder-tab-row {
  position: absolute;
  z-index: 1;
  left: clamp(30px, 5vw, 70px);
  top: -20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 48px);
}

.folder-tab-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 14px 7px;
  border: 1px solid rgba(91, 68, 42, 0.18);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #edd08a, #d7a764);
  color: rgba(73, 53, 31, 0.78);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paper-stack-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 22px);
  max-width: 100%;
}

.paper-sheet {
  --paper-tilt: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 10px 14px;
  width: 100%;
  min-width: 0;
  min-height: 142px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(73, 53, 31, 0.16);
  border-radius: 4px;
  background:
    repeating-linear-gradient(180deg, transparent 0 28px, rgba(105, 86, 53, 0.08) 29px 30px),
    linear-gradient(135deg, rgba(255, 252, 239, 0.98), rgba(235, 221, 188, 0.96));
  box-shadow:
    0 12px 26px rgba(63, 45, 27, 0.16),
    inset 0 -8px 26px rgba(126, 90, 47, 0.06);
  color: rgba(52, 43, 30, 0.9);
  text-decoration: none;
  transform: rotate(var(--paper-tilt));
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.paper-sheet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 48px;
  height: 18px;
  border-radius: 2px;
  background: rgba(217, 197, 150, 0.64);
  box-shadow: 0 3px 10px rgba(63, 45, 27, 0.12);
  transform: translateX(-50%) rotate(-1deg);
}

.paper-sheet:nth-child(2n) {
  --paper-tilt: 0.7deg;
}

.paper-sheet:nth-child(3n) {
  --paper-tilt: -0.8deg;
}

.paper-sheet:hover,
.paper-sheet:focus-visible {
  box-shadow:
    0 18px 38px rgba(63, 45, 27, 0.22),
    inset 0 -8px 26px rgba(126, 90, 47, 0.06);
  transform: rotate(0deg) translateY(-3px);
}

.paper-type {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 52px;
  padding-top: 2px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(97, 65, 53, 0.72);
}

.paper-title {
  min-width: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.18;
  overflow-wrap: break-word;
}

.paper-action {
  align-self: end;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(97, 65, 53, 0.18);
  border-radius: 3px;
  background: rgba(255, 248, 226, 0.5);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(91, 68, 42, 0.78);
}

.about-band {
  background: linear-gradient(180deg, #fff7ed 0%, #eef4e5 100%);
}

.notes-band {
  background:
    linear-gradient(180deg, rgba(185, 220, 240, 0.28), rgba(172, 199, 155, 0.2)),
    #fff7ed;
}

.pressed-pages-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 248, 224, 0.7), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(142, 166, 119, 0.24), transparent 32%),
    radial-gradient(circle at 18% 84%, rgba(70, 86, 59, 0.12), transparent 34%),
    linear-gradient(115deg, rgba(119, 86, 54, 0.045) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, #f0e3c8 0%, #e7dcc4 52%, #d7cfb9 100%);
}

.pressed-pages-page:not(.pressed-content-open) {
  overflow: hidden;
}

.pressed-pages-page .subpage-site-header {
  position: fixed;
  background: linear-gradient(180deg, rgba(237, 225, 199, 0.8), transparent);
}

.page-shell.pressed-pages-shell {
  width: 100%;
  max-width: none;
  padding: 0;
}

.pressed-library-landing {
  position: relative;
  display: grid;
  place-items: stretch;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.pressed-library-landing::before,
.pressed-library-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.pressed-library-landing::before {
  background:
    radial-gradient(ellipse at 18% 22%, rgba(79, 101, 67, 0.24), transparent 38%),
    radial-gradient(ellipse at 78% 78%, rgba(84, 104, 70, 0.18), transparent 42%),
    linear-gradient(112deg, transparent 0 54%, rgba(255, 239, 185, 0.22) 58%, transparent 70%);
}

.pressed-library-landing::after {
  background:
    radial-gradient(ellipse at 12% 58%, rgba(41, 54, 37, 0.14), transparent 42%),
    radial-gradient(ellipse at 84% 24%, rgba(255, 249, 224, 0.42), transparent 36%);
  mix-blend-mode: multiply;
  opacity: 0.64;
}

.pressed-library-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  background: #e6d6b8;
}

.pressed-library-scene::before,
.pressed-library-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pressed-library-scene::before {
  z-index: 1;
  background:
    radial-gradient(ellipse at 23% 26%, rgba(59, 82, 52, 0.2), transparent 34%),
    radial-gradient(ellipse at 72% 30%, rgba(255, 243, 196, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 248, 232, 0.04), rgba(64, 75, 51, 0.08));
  mix-blend-mode: multiply;
}

.pressed-library-scene::after {
  z-index: 2;
  border: 1px solid rgba(65, 73, 51, 0.13);
  box-shadow:
    inset 0 0 0 12px rgba(255, 250, 232, 0.08),
    inset 0 -80px 120px rgba(61, 54, 35, 0.08);
}

.pressed-library-frame {
  position: relative;
  z-index: 4;
  width: max(100vw, calc(100svh * 1.7768));
  height: max(100svh, calc(100vw / 1.7768));
  aspect-ratio: 1672 / 941;
  overflow: hidden;
}

.pressed-library-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    saturate(1.08)
    sepia(0.04)
    hue-rotate(3deg)
    brightness(1)
    contrast(1);
}

.pressed-library-title {
  position: absolute;
  z-index: 5;
  top: clamp(70px, 10vh, 116px);
  left: clamp(34px, 9vw, 128px);
  max-width: min(420px, 36vw);
  pointer-events: none;
}

.pressed-library-title h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.9rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(43, 54, 38, 0.58);
  text-shadow:
    0 1px 0 rgba(255, 249, 227, 0.5),
    0 14px 36px rgba(83, 67, 43, 0.12);
}

.pressed-shelf-board {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 9vw, 138px);
  right: clamp(24px, 8vw, 128px);
  bottom: clamp(76px, 16vh, 154px);
  height: clamp(42px, 6.8vh, 66px);
  border-radius: 6px 5px 9px 8px;
  background:
    linear-gradient(180deg, rgba(255, 230, 170, 0.2), transparent 42%),
    repeating-linear-gradient(2deg, rgba(83, 55, 32, 0.18) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, #aa7b45 0%, #82582f 54%, #684120 100%);
  box-shadow:
    0 22px 38px rgba(54, 43, 26, 0.24),
    inset 0 1px 0 rgba(255, 236, 188, 0.36),
    inset 0 -10px 18px rgba(61, 37, 19, 0.22);
  transform: rotate(-0.45deg);
}

.pressed-shelf-board::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 225, 163, 0.22);
  box-shadow:
    80px 14px 0 rgba(82, 52, 28, 0.16),
    230px 8px 0 rgba(255, 225, 163, 0.16),
    410px 18px 0 rgba(75, 47, 25, 0.12);
}

.pressed-shelf-bracket {
  position: absolute;
  z-index: 2;
  bottom: clamp(24px, 8vh, 86px);
  width: clamp(24px, 3vw, 38px);
  height: clamp(76px, 13vh, 120px);
  border-radius: 2px 2px 7px 7px;
  background:
    linear-gradient(90deg, rgba(255, 230, 176, 0.16), transparent 34%),
    linear-gradient(180deg, #8e5d31, #5f3c22);
  box-shadow: 12px 12px 24px rgba(50, 40, 24, 0.18);
}

.bracket-left {
  left: clamp(150px, 23vw, 330px);
  transform: skewX(-7deg) rotate(-1deg);
}

.bracket-right {
  right: clamp(120px, 18vw, 280px);
  transform: skewX(7deg) rotate(2deg);
}

.pressed-book-nav {
  position: absolute;
  z-index: 4;
  inset: 0;
}

.pressed-book-link {
  position: absolute;
  top: 13.4%;
  height: 58.8%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  outline-offset: 4px;
  isolation: isolate;
}

.pressed-book-link::before {
  content: "";
  position: absolute;
  inset: 0 3%;
  z-index: 0;
  display: none;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 246, 205, 0.22), transparent 18% 76%, rgba(45, 31, 24, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 18% 82%, rgba(31, 24, 18, 0.16)),
    var(--spine-tint, rgb(130 84 58));
  box-shadow:
    inset 8px 0 10px rgba(255, 238, 184, 0.08),
    inset -8px 0 12px rgba(28, 21, 16, 0.18),
    0 0 16px rgba(255, 236, 172, 0.04);
  opacity: 0.78;
  mix-blend-mode: normal;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.pressed-book-link span {
  position: absolute;
  left: 50%;
  bottom: 46%;
  z-index: 1;
  display: block;
  align-items: center;
  width: clamp(118px, 12vw, 168px);
  min-height: 34px;
  padding: 4px 7px;
  border-top: 1px solid rgba(239, 219, 157, 0.28);
  border-bottom: 1px solid rgba(239, 219, 157, 0.22);
  color: rgba(238, 220, 160, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  text-shadow:
    0 1px 2px rgba(23, 20, 15, 0.38),
    0 0 12px rgba(255, 241, 185, 0.12);
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: 50% 50%;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    text-shadow 180ms ease;
}

.pressed-book-link strong {
  display: block;
  font-size: clamp(0.7rem, 0.96vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.book-link-books {
  --spine-tint: rgb(176 58 29);
  left: 51.8%;
  width: 10.43%;
}

.book-link-books span {
  color: rgba(231, 196, 134, 0.74);
}

.book-link-movies {
  --spine-tint: rgb(91 132 43);
  left: 42.27%;
  width: 9.32%;
}

.book-link-movies span {
  color: rgba(229, 221, 166, 0.68);
}

.book-link-games {
  --spine-tint: rgb(28 126 148);
  left: 29.76%;
  width: 12.36%;
}

.book-link-games span {
  color: rgba(210, 226, 203, 0.7);
}

.book-link-misc {
  --spine-tint: rgb(164 68 94);
  left: 62.43%;
  width: 6.84%;
}

.book-link-misc span {
  color: rgba(237, 203, 183, 0.68);
}

.pressed-book-link:hover,
.pressed-book-link:focus-visible {
  outline-color: rgba(255, 242, 184, 0.28);
}

.pressed-book-link:hover::before,
.pressed-book-link:focus-visible::before {
  display: none;
  opacity: 0;
  filter: saturate(1.18) contrast(1.08);
  box-shadow:
    inset 8px 0 10px rgba(255, 238, 184, 0.12),
    inset -8px 0 12px rgba(28, 21, 16, 0.18),
    0 0 20px rgba(255, 236, 172, 0.14);
}

.pressed-book-link:hover span,
.pressed-book-link:focus-visible span,
.pressed-book-link.is-spine-glowing span {
  color: rgba(255, 246, 205, 0.92);
  border-color: rgba(255, 242, 184, 0.38);
  text-shadow:
    0 1px 2px rgba(23, 20, 15, 0.42),
    0 0 11px rgba(255, 229, 153, 0.42),
    0 0 22px rgba(255, 238, 184, 0.22);
}

.pressed-scrapbook {
  position: relative;
  display: none;
  isolation: isolate;
  width: min(1240px, calc(100% - clamp(34px, 7vw, 96px)));
  margin: 0 auto;
  min-height: 100svh;
  padding: clamp(32px, 5vw, 70px);
  overflow: hidden;
}

.pressed-content-open .pressed-library-landing {
  display: none;
}

.pressed-content-open .pressed-scrapbook {
  display: block;
  padding-top: clamp(92px, 13vh, 132px);
}

.pressed-shelf-back {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(22px, 4vw, 42px);
  padding: 8px 10px;
  border: 1px solid rgba(42, 49, 38, 0.14);
  border-radius: 4px;
  background: rgba(255, 247, 237, 0.62);
  box-shadow: 0 10px 28px rgba(42, 49, 38, 0.08);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.pressed-shelf-back::before {
  content: "<";
  font-size: 1rem;
  line-height: 1;
}

.pressed-scrapbook::before,
.pressed-scrapbook::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pressed-scrapbook::before {
  z-index: -2;
  inset: clamp(4px, 1vw, 12px);
  border: 1px solid rgba(97, 65, 53, 0.12);
  border-radius: 3px;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 89, 47, 0.07) 0 1px, transparent 1.6px),
    radial-gradient(circle at 76% 24%, rgba(65, 90, 57, 0.06) 0 1px, transparent 1.8px),
    radial-gradient(circle at 44% 78%, rgba(124, 89, 47, 0.045) 0 1px, transparent 1.7px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 22% 76%, rgba(101, 74, 44, 0.04)),
    #f8edd8;
  box-shadow:
    0 26px 70px rgba(67, 55, 35, 0.16),
    inset 0 0 0 10px rgba(255, 248, 236, 0.16);
  transform: rotate(-0.35deg);
}

.pressed-scrapbook::after {
  z-index: -1;
  inset: clamp(18px, 2vw, 28px);
  background:
    linear-gradient(90deg, rgba(97, 65, 53, 0.08) 0 1px, transparent 1px 100%) 50% 0 / 34px 100%,
    linear-gradient(180deg, rgba(97, 65, 53, 0.055) 0 1px, transparent 1px 100%) 0 50% / 100% 34px;
  opacity: 0.22;
  transform: rotate(0.25deg);
}

.scrapbook-corner {
  position: absolute;
  z-index: 0;
  width: clamp(110px, 13vw, 170px);
  height: clamp(36px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 54%),
    rgba(222, 205, 163, 0.55);
  box-shadow: 0 8px 20px rgba(67, 55, 35, 0.06);
  opacity: 0.7;
  pointer-events: none;
}

.corner-one {
  top: clamp(30px, 4vw, 52px);
  left: clamp(22px, 4vw, 58px);
  transform: rotate(-8deg);
}

.corner-two {
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 52px);
  transform: rotate(-7deg);
}

.pressed-scrapbook-header,
.pressed-collection-grid {
  position: relative;
  z-index: 1;
}

.pressed-scrapbook-header {
  max-width: 620px;
  margin-bottom: clamp(28px, 4vw, 50px);
}

.pressed-scrapbook-header h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(42, 49, 38, 0.92);
}

.pressed-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.pressed-content-open .pressed-collection-grid {
  display: block;
}

.pressed-collection {
  position: relative;
  scroll-margin-top: 112px;
  min-height: clamp(330px, 38vw, 440px);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(90, 71, 43, 0.16);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 251, 239, 0.78), rgba(244, 229, 197, 0.64)),
    rgba(255, 247, 237, 0.72);
  box-shadow:
    0 16px 38px rgba(67, 55, 35, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.pressed-content-open .pressed-collection {
  display: none;
  width: min(780px, 100%);
  margin: 0 auto;
  min-height: min(620px, calc(100svh - 190px));
}

.pressed-content-open .pressed-games {
  width: min(1180px, 100%);
}

.pressed-content-open .pressed-collection.is-active {
  display: block;
  overflow: visible;
}

.pressed-books {
  transform: rotate(-0.45deg);
}

.pressed-movies {
  transform: rotate(0.7deg);
}

.pressed-games {
  transform: rotate(0.35deg);
}

.pressed-misc {
  transform: rotate(-0.55deg);
}

.pressed-tape {
  position: absolute;
  z-index: 3;
  top: 15px;
  width: 96px;
  height: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 58%),
    rgba(220, 202, 163, 0.54);
  box-shadow: 0 8px 18px rgba(67, 55, 35, 0.06);
  opacity: 0.8;
  pointer-events: none;
}

.tape-one {
  left: 26px;
  transform: rotate(-6deg);
}

.tape-two {
  right: 30px;
  transform: rotate(7deg);
}

.tape-three {
  left: 34%;
  transform: rotate(4deg);
}

.tape-four {
  right: 22%;
  transform: rotate(-5deg);
}

.pressed-collection h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(89, 59, 43, 0.88);
}

.pressed-list,
.pressed-placeholder,
.pressed-caption {
  position: relative;
  z-index: 2;
}

.pressed-list {
  display: grid;
  gap: 7px;
  max-width: min(100%, 270px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.28;
}

.pressed-list li {
  padding-bottom: 6px;
  border-bottom: 1px dotted rgba(97, 65, 53, 0.18);
}

.pressed-item-title,
.pressed-item-meta {
  display: block;
}

.pressed-item-meta {
  margin-top: 3px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.62rem;
  line-height: 1.22;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(89, 59, 43, 0.62);
}

.pressed-list a {
  text-decoration-color: rgba(89, 59, 43, 0.36);
  text-underline-offset: 3px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.pressed-list a:hover {
  color: rgba(72, 92, 55, 0.96);
  text-decoration-color: rgba(72, 92, 55, 0.7);
}

.pressed-placeholder {
  max-width: 270px;
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

.pressed-caption {
  max-width: min(100%, 460px);
  margin: -7px 0 20px;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.42;
  color: rgba(83, 57, 44, 0.74);
}

.pressed-games .pressed-caption {
  max-width: min(100%, 560px);
}

.kitchen-table-spread {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  max-width: 720px;
}

.kitchen-note {
  position: relative;
  min-height: 142px;
  padding: clamp(15px, 2vw, 20px);
  border: 1px solid rgba(112, 79, 45, 0.16);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 42%),
    rgba(255, 249, 232, 0.78);
  box-shadow:
    0 12px 24px rgba(70, 52, 34, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.kitchen-note::before {
  content: "";
  position: absolute;
  top: -10px;
  left: clamp(18px, 4vw, 44px);
  width: 74px;
  height: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 58%),
    rgba(220, 202, 163, 0.48);
  box-shadow: 0 5px 14px rgba(67, 55, 35, 0.06);
  transform: rotate(-4deg);
}

.kitchen-note-wide {
  grid-column: 1 / -1;
}

.kitchen-note h3 {
  margin: 0 0 12px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-transform: uppercase;
  color: rgba(111, 68, 43, 0.82);
}

.kitchen-note ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(0.92rem, 1.2vw, 1.04rem);
  line-height: 1.28;
}

.kitchen-chip-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kitchen-chip-list li,
.kitchen-note li {
  padding-bottom: 6px;
  border-bottom: 1px dotted rgba(97, 65, 53, 0.18);
}

.kitchen-chip-list li {
  min-height: 36px;
}

.kitchen-note li span {
  display: block;
  margin-top: 3px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(89, 59, 43, 0.58);
}

.kitchen-note a {
  color: inherit;
  text-decoration-color: rgba(89, 59, 43, 0.34);
  text-underline-offset: 3px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.kitchen-note a:hover,
.kitchen-note a:focus-visible {
  color: rgba(72, 92, 55, 0.96);
  text-decoration-color: rgba(72, 92, 55, 0.72);
}

.kitchen-note-comfort {
  transform: rotate(-0.45deg);
}

.kitchen-note-make {
  transform: rotate(0.55deg);
}

.kitchen-note-recent {
  transform: rotate(0.35deg);
}

.kitchen-note-drawer {
  transform: rotate(-0.3deg);
}

.kitchen-note-hack {
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 46%),
    linear-gradient(180deg, rgba(242, 224, 165, 0.72), rgba(255, 248, 224, 0.78));
}

.kitchen-note-hack p {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.42;
}

.kitchen-drawer-list {
  display: grid;
  gap: 13px;
  margin: 0;
}

.kitchen-drawer-list div {
  display: grid;
  gap: 5px;
}

.kitchen-drawer-list dt {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(89, 59, 43, 0.58);
}

.kitchen-drawer-list dd {
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 1px dotted rgba(97, 65, 53, 0.18);
  font-size: clamp(0.92rem, 1.2vw, 1.04rem);
  line-height: 1.24;
}

.side-quest-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  max-width: 720px;
}

.side-quest-card {
  position: relative;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(97, 65, 53, 0.13);
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 48%),
    rgba(255, 249, 234, 0.62);
  box-shadow:
    0 10px 24px rgba(67, 55, 35, 0.055),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: rotate(var(--side-quest-tilt, -0.25deg));
}

.side-quest-card:nth-child(2n) {
  --side-quest-tilt: 0.35deg;
}

.side-quest-card:nth-child(3n) {
  --side-quest-tilt: -0.45deg;
}

.side-quest-card-wide {
  grid-column: 1 / -1;
  --side-quest-tilt: 0.2deg;
}

.side-quest-card h3 {
  margin: 0 0 8px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(89, 59, 43, 0.74);
}

.side-quest-card p {
  margin: 0;
  font-size: clamp(0.94rem, 1.15vw, 1.04rem);
  line-height: 1.42;
  color: rgba(72, 50, 38, 0.84);
}

.side-quest-artifacts {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(118px, 0.74fr);
  gap: clamp(12px, 2vw, 18px);
  align-items: end;
  margin-top: clamp(14px, 2vw, 20px);
}

.side-quest-photo {
  margin: 0;
  padding: 6px 6px 18px;
  border-radius: 2px;
  background: rgba(255, 252, 241, 0.9);
  box-shadow:
    0 12px 28px rgba(67, 55, 35, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  transform: rotate(var(--photo-tilt, -1.2deg));
}

.side-quest-photo-embroidery {
  --photo-tilt: 1.4deg;
}

.side-quest-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: saturate(0.98) contrast(1.02);
}

.side-quest-photo-crochet img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.side-quest-photo-embroidery img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.side-quest-photo figcaption {
  margin-top: 7px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(89, 59, 43, 0.58);
}

.odds-fact-panel {
  position: relative;
  z-index: 2;
  max-width: min(100%, 420px);
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(112, 82, 58, 0.24);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 250, 230, 0.84), rgba(235, 224, 190, 0.66)),
    radial-gradient(circle at 20% 12%, rgba(124, 106, 70, 0.12), transparent 28%);
  box-shadow:
    0 16px 28px rgba(71, 51, 34, 0.13),
    inset 0 0 30px rgba(255, 255, 255, 0.25);
  transform: rotate(-0.7deg);
}

.odds-fact {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.42;
  color: rgba(72, 50, 38, 0.9);
}

.odds-fact.is-changing {
  animation: factCardTurn 260ms ease;
}

.pressed-media-groups {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  max-width: 680px;
}

.dog-eared-groups {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: start;
  max-width: 100%;
}

.dog-eared-column {
  position: relative;
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.dog-eared-column-playlist {
  padding-top: 0;
}

.dog-eared-card {
  position: relative;
  grid-area: auto;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(97, 65, 53, 0.12);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 42%),
    rgba(255, 249, 234, 0.56);
  box-shadow:
    0 10px 24px rgba(67, 55, 35, 0.055),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.dog-eared-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(97, 65, 53, 0.055);
  pointer-events: none;
}

.dog-eared-card > h3,
.dog-eared-card > .pressed-list,
.dog-eared-card .spotify-embed {
  position: relative;
  z-index: 2;
}

.dog-eared-groups .pressed-list {
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  overflow-wrap: anywhere;
}

.dog-eared-groups .pressed-item-meta {
  font-size: 0.58rem;
  overflow-wrap: anywhere;
}

.dog-eared-movies .pressed-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(18px, 3vw, 28px);
}

.dog-eared-movies .pressed-list li,
.dog-eared-performances .pressed-list li {
  break-inside: avoid;
}

.dog-eared-performances .pressed-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 clamp(18px, 3vw, 28px);
}

.pressed-media-groups h3 {
  margin: 0 0 10px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(89, 59, 43, 0.72);
}

.pressed-media-groups .pressed-list {
  max-width: none;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
}

.spotify-embed {
  overflow: hidden;
  border: 1px solid rgba(97, 65, 53, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 229, 0.52), rgba(223, 213, 180, 0.34)),
    rgba(255, 249, 234, 0.72);
  box-shadow:
    0 10px 22px rgba(67, 55, 35, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.dog-eared-playlist .spotify-embed iframe {
  min-height: 292px;
}

.pressed-specimen {
  --plant-ink: rgba(69, 91, 48, 0.58);
  --plant-mid: rgba(101, 118, 64, 0.42);
  --plant-faded: rgba(143, 128, 77, 0.24);
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
  isolation: isolate;
  filter:
    saturate(0.92)
    sepia(0.12)
    brightness(0.98)
    contrast(0.96);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.pressed-specimen::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% 4% 2% 7%;
  border: 1px solid rgba(94, 70, 43, 0.09);
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 62%),
    radial-gradient(ellipse at 50% 52%, rgba(88, 95, 53, 0.1), transparent 64%),
    rgba(255, 248, 228, 0.32);
  box-shadow:
    0 12px 28px rgba(67, 55, 35, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  opacity: 0.72;
  transform: rotate(-3deg);
}

.pressed-specimen img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.specimen-miners-lettuce {
  right: clamp(-52px, -3.8vw, -28px);
  bottom: -58px;
  width: clamp(212px, 19vw, 286px);
  height: clamp(430px, 38vw, 552px);
  transform: rotate(5deg);
  opacity: 0.78;
}

.specimen-kitchen {
  bottom: clamp(30px, 6vw, 82px);
}

.pressed-stem {
  position: absolute;
  display: block;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--plant-mid), var(--plant-ink));
  transform-origin: 50% 100%;
}

.specimen-fern {
  right: clamp(-78px, -5vw, -42px);
  bottom: -42px;
  width: clamp(174px, 16vw, 214px);
  height: clamp(286px, 27vw, 340px);
  transform: rotate(8deg);
}

.specimen-fern .pressed-stem {
  left: 54%;
  top: 8%;
  height: 84%;
  transform: rotate(-5deg);
}

.specimen-side-quests {
  right: clamp(-50px, -3.6vw, -24px);
  bottom: -32px;
  width: clamp(216px, 19vw, 292px);
  height: clamp(392px, 34vw, 492px);
  transform: rotate(-6deg);
  opacity: 0.82;
}

.fern-leaf {
  position: absolute;
  left: 54%;
  width: 58px;
  height: 13px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(90deg, transparent 0 8%, var(--plant-ink) 12% 100%);
  opacity: 0.56;
  transform-origin: 0 50%;
}

.fern-leaf:nth-child(2) { top: 16%; transform: rotate(-154deg) scaleX(0.72); }
.fern-leaf:nth-child(3) { top: 22%; transform: rotate(24deg) scaleX(0.82); }
.fern-leaf:nth-child(4) { top: 30%; transform: rotate(-148deg) scaleX(0.88); }
.fern-leaf:nth-child(5) { top: 37%; transform: rotate(28deg) scaleX(0.96); }
.fern-leaf:nth-child(6) { top: 45%; transform: rotate(-144deg) scaleX(1.02); }
.fern-leaf:nth-child(7) { top: 52%; transform: rotate(30deg) scaleX(1.06); }
.fern-leaf:nth-child(8) { top: 60%; transform: rotate(-140deg) scaleX(0.98); }
.fern-leaf:nth-child(9) { top: 68%; transform: rotate(34deg) scaleX(0.92); }
.fern-leaf:nth-child(10) { top: 76%; transform: rotate(-135deg) scaleX(0.78); }
.fern-leaf:nth-child(11) { top: 82%; transform: rotate(38deg) scaleX(0.68); }

.specimen-dandelion {
  right: clamp(-82px, -5.2vw, -44px);
  top: 70px;
  width: clamp(170px, 16vw, 208px);
  height: clamp(278px, 27vw, 330px);
  transform: rotate(-7deg);
}

.specimen-dandelion .pressed-stem {
  left: 50%;
  top: 34%;
  height: 62%;
  transform: rotate(4deg);
}

.dog-eared-groups > .specimen-dog-eared {
  z-index: 1;
  left: clamp(-126px, -8vw, -92px);
  top: clamp(14px, 3.2vw, 40px);
  right: auto;
  bottom: auto;
  width: clamp(286px, 26vw, 380px);
  height: clamp(540px, 48vw, 680px);
  transform: rotate(-10deg);
  opacity: 0.28;
}

.dog-eared-groups > .specimen-dog-eared-flower {
  z-index: 1;
  right: clamp(-128px, -7.5vw, -72px);
  bottom: clamp(-96px, -5vw, -52px);
  width: clamp(250px, 24vw, 360px);
  height: clamp(396px, 38vw, 570px);
  transform: rotate(8deg);
  transform-origin: 70% 78%;
  opacity: 0.24;
  filter:
    saturate(0.76)
    sepia(0.16)
    brightness(0.98)
    contrast(0.94);
}

.dog-eared-groups > .specimen-dog-eared-flower::before {
  opacity: 0.5;
}

.specimen-mint-clover {
  right: clamp(-50px, -3.8vw, -24px);
  bottom: -50px;
  width: clamp(224px, 20vw, 300px);
  height: clamp(410px, 37vw, 548px);
  transform: rotate(-5deg);
  opacity: 0.78;
}

@keyframes oddsPlantGlowPulse {
  0%,
  100% {
    filter:
      saturate(0.92)
      sepia(0.12)
      brightness(0.98)
      contrast(0.96);
    opacity: 0.78;
  }

  42%,
  68% {
    filter:
      saturate(1.18)
      sepia(0.08)
      brightness(1.12)
      contrast(1.02)
      drop-shadow(0 0 18px rgba(225, 219, 133, 0.42));
    opacity: 0.96;
  }
}

.specimen-odds-and-ends.is-plant-hinting {
  animation: oddsPlantGlowPulse 2400ms ease-in-out 1;
}

.odds-clover-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.odds-clover-button:hover,
.odds-clover-button:focus-visible {
  opacity: 0.95;
  filter: saturate(1.08) brightness(1.04);
}

.odds-clover-button:focus-visible {
  outline: 2px solid rgba(89, 106, 52, 0.64);
  outline-offset: 7px;
  border-radius: 16px;
}

.odds-clover-button img {
  pointer-events: none;
}

.seed-head {
  position: absolute;
  left: 50%;
  top: 13%;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(128, 122, 85, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(126, 105, 59, 0.38) 0 4%, transparent 5%),
    repeating-conic-gradient(from 8deg, rgba(96, 89, 61, 0.28) 0 3deg, transparent 3deg 16deg);
  opacity: 0.76;
  transform: translateX(-50%);
}

.seed {
  position: absolute;
  width: 34px;
  height: 1px;
  background: rgba(116, 105, 69, 0.34);
  transform-origin: 0 50%;
}

.seed::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(116, 105, 69, 0.3);
}

.seed-one { left: 28%; top: 10%; transform: rotate(-38deg); }
.seed-two { left: 62%; top: 8%; transform: rotate(-70deg); }
.seed-three { left: 70%; top: 28%; transform: rotate(8deg); }
.seed-four { left: 18%; top: 32%; transform: rotate(182deg); }
.seed-five { left: 54%; top: 46%; transform: rotate(52deg); }

.specimen-sorrel {
  right: clamp(-86px, -5.4vw, -48px);
  bottom: -34px;
  width: clamp(194px, 18vw, 238px);
  height: clamp(274px, 26vw, 320px);
  transform: rotate(-10deg);
}

.specimen-sorrel .pressed-stem {
  left: 54%;
  bottom: 10%;
  height: 58%;
  transform: rotate(-9deg);
}

.sorrel-leaf {
  position: absolute;
  width: 54px;
  height: 50px;
  border-radius: 54% 54% 54% 10%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 248, 236, 0.16), transparent 28%),
    linear-gradient(135deg, var(--plant-mid), var(--plant-ink));
  opacity: 0.48;
  transform-origin: 50% 100%;
}

.sorrel-leaf.leaf-one { left: 52%; top: 24%; transform: rotate(38deg); }
.sorrel-leaf.leaf-two { left: 20%; top: 32%; transform: rotate(-56deg); }
.sorrel-leaf.leaf-three { left: 38%; top: 10%; transform: rotate(-8deg); }

.sorrel-flower {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.52;
  background:
    radial-gradient(ellipse 4px 8px at 50% 10%, rgba(246, 238, 227, 0.76) 0 68%, transparent 70%),
    radial-gradient(ellipse 4px 8px at 26% 46%, rgba(232, 214, 208, 0.68) 0 68%, transparent 70%),
    radial-gradient(ellipse 4px 8px at 74% 46%, rgba(248, 240, 230, 0.72) 0 68%, transparent 70%),
    radial-gradient(circle at 50% 48%, rgba(143, 111, 49, 0.62) 0 12%, transparent 14%);
}

.flower-one { left: 26%; top: 8%; }
.flower-two { left: 68%; top: 18%; transform: scale(0.78) rotate(20deg); }

.specimen-bay {
  right: clamp(-78px, -5vw, -42px);
  top: 44px;
  width: clamp(178px, 16vw, 216px);
  height: clamp(292px, 28vw, 346px);
  transform: rotate(10deg);
}

.specimen-bay .pressed-stem {
  left: 50%;
  top: 7%;
  height: 86%;
  transform: rotate(8deg);
}

.bay-leaf {
  position: absolute;
  left: 50%;
  width: 66px;
  height: 28px;
  border-radius: 90% 12% 90% 12%;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 248, 236, 0.18) 9% 11%, transparent 12% 100%),
    linear-gradient(135deg, var(--plant-mid), var(--plant-ink));
  opacity: 0.44;
  transform-origin: 0 50%;
}

.bay-leaf:nth-child(2) { top: 16%; transform: rotate(-154deg) scaleX(0.86); }
.bay-leaf:nth-child(3) { top: 27%; transform: rotate(28deg); }
.bay-leaf:nth-child(4) { top: 42%; transform: rotate(-148deg) scaleX(0.96); }
.bay-leaf:nth-child(5) { top: 55%; transform: rotate(34deg) scaleX(0.92); }
.bay-leaf:nth-child(6) { top: 68%; transform: rotate(-142deg) scaleX(0.82); }
.bay-leaf:nth-child(7) { top: 78%; transform: rotate(42deg) scaleX(0.68); }

.writing-band {
  background: #f8efe7;
}

.illustration-band {
  background:
    linear-gradient(180deg, rgba(239, 143, 186, 0.1), rgba(255, 247, 237, 0.9)),
    #fff7ed;
}

.media-card {
  background:
    linear-gradient(135deg, rgba(93, 151, 169, 0.17), rgba(236, 212, 141, 0.28)),
    rgba(255, 248, 236, 0.72);
}

.photo-gallery,
.photo-albums {
  margin-top: clamp(34px, 6vw, 72px);
}

.photo-albums {
  display: grid;
  gap: clamp(40px, 7vw, 78px);
}

.album-stack-grid {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.album-stack-grid[hidden],
.album-detail-region[hidden],
.photo-album[hidden] {
  display: none;
}

.album-stack-card {
  --stack-offset: 0;
  --p1-x: -50%;
  --p1-y: -50%;
  --p1-r: -1deg;
  --p1-w: 78%;
  --p1-h: 74%;
  --p2-x: -54%;
  --p2-y: -55%;
  --p2-r: 5deg;
  --p2-w: 78%;
  --p2-h: 74%;
  --p3-x: -46%;
  --p3-y: -47%;
  --p3-r: -6deg;
  --p3-w: 78%;
  --p3-h: 74%;
  --p4-x: -55%;
  --p4-y: -42%;
  --p4-r: 9deg;
  --p4-w: 78%;
  --p4-h: 74%;
  display: grid;
  gap: 14px;
  width: 100%;
  margin-top: var(--stack-offset);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.album-stack-card:nth-child(2) {
  --stack-offset: clamp(14px, 2vw, 32px);
  --p1-x: -47%;
  --p1-y: -52%;
  --p1-r: 4deg;
  --p1-w: 80%;
  --p1-h: 72%;
  --p2-x: -57%;
  --p2-y: -47%;
  --p2-r: -8deg;
  --p3-x: -43%;
  --p3-y: -57%;
  --p3-r: 11deg;
  --p4-x: -58%;
  --p4-y: -40%;
  --p4-r: -3deg;
}

.album-stack-card:nth-child(3) {
  --stack-offset: clamp(4px, 1vw, 14px);
  --p1-x: -52%;
  --p1-y: -48%;
  --p1-r: -6deg;
  --p1-w: 75%;
  --p1-h: 78%;
  --p2-x: -45%;
  --p2-y: -55%;
  --p2-r: 8deg;
  --p2-w: 82%;
  --p3-x: -57%;
  --p3-y: -43%;
  --p3-r: 2deg;
  --p4-x: -42%;
  --p4-y: -39%;
  --p4-r: -11deg;
}

.album-stack-card:nth-child(4) {
  --p1-x: -49%;
  --p1-y: -52%;
  --p1-r: 8deg;
  --p1-w: 77%;
  --p2-x: -58%;
  --p2-y: -53%;
  --p2-r: -4deg;
  --p2-h: 77%;
  --p3-x: -44%;
  --p3-y: -45%;
  --p3-r: -12deg;
  --p4-x: -50%;
  --p4-y: -39%;
  --p4-r: 5deg;
}

.album-stack-card:nth-child(5) {
  --stack-offset: clamp(18px, 2.4vw, 38px);
  --p1-x: -51%;
  --p1-y: -49%;
  --p1-r: -3deg;
  --p1-w: 82%;
  --p2-x: -43%;
  --p2-y: -53%;
  --p2-r: 12deg;
  --p2-w: 75%;
  --p3-x: -59%;
  --p3-y: -48%;
  --p3-r: -9deg;
  --p4-x: -46%;
  --p4-y: -39%;
  --p4-r: 2deg;
}

.album-stack-card:nth-child(6) {
  --stack-offset: clamp(6px, 1.5vw, 24px);
  --p1-x: -48%;
  --p1-y: -50%;
  --p1-r: 2deg;
  --p1-h: 78%;
  --p2-x: -58%;
  --p2-y: -43%;
  --p2-r: -13deg;
  --p3-x: -43%;
  --p3-y: -58%;
  --p3-r: 6deg;
  --p3-w: 80%;
  --p4-x: -55%;
  --p4-y: -39%;
  --p4-r: 14deg;
}

.album-stack-photos {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.08;
}

.album-stack-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 74%;
  overflow: hidden;
  border: 7px solid rgba(255, 248, 236, 0.92);
  border-radius: 6px;
  background: rgba(255, 248, 236, 0.82);
  box-shadow: 0 18px 42px rgba(38, 49, 38, 0.16);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.album-stack-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-stack-photo-1 {
  z-index: 4;
  width: var(--p1-w);
  height: var(--p1-h);
  transform: translate(var(--p1-x), var(--p1-y)) rotate(var(--p1-r));
}

.album-stack-photo-2 {
  z-index: 3;
  width: var(--p2-w);
  height: var(--p2-h);
  transform: translate(var(--p2-x), var(--p2-y)) rotate(var(--p2-r));
}

.album-stack-photo-3 {
  z-index: 2;
  width: var(--p3-w);
  height: var(--p3-h);
  transform: translate(var(--p3-x), var(--p3-y)) rotate(var(--p3-r));
}

.album-stack-photo-4 {
  z-index: 1;
  width: var(--p4-w);
  height: var(--p4-h);
  transform: translate(var(--p4-x), var(--p4-y)) rotate(var(--p4-r));
}

.album-stack-card:hover .album-stack-photo,
.album-stack-card:focus-visible .album-stack-photo {
  box-shadow: 0 24px 56px rgba(38, 49, 38, 0.22);
}

.album-stack-card:hover .album-stack-photo-1,
.album-stack-card:focus-visible .album-stack-photo-1 {
  transform: translate(var(--p1-x), calc(var(--p1-y) - 3%)) rotate(calc(var(--p1-r) - 1deg));
}

.album-stack-card:hover .album-stack-photo-2,
.album-stack-card:focus-visible .album-stack-photo-2 {
  transform: translate(calc(var(--p2-x) - 4%), calc(var(--p2-y) - 1%)) rotate(calc(var(--p2-r) + 2deg));
}

.album-stack-card:hover .album-stack-photo-3,
.album-stack-card:focus-visible .album-stack-photo-3 {
  transform: translate(calc(var(--p3-x) + 4%), calc(var(--p3-y) - 1%)) rotate(calc(var(--p3-r) - 2deg));
}

.album-stack-card:hover .album-stack-photo-4,
.album-stack-card:focus-visible .album-stack-photo-4 {
  transform: translate(calc(var(--p4-x) - 3%), calc(var(--p4-y) + 4%)) rotate(calc(var(--p4-r) + 2deg));
}

.album-stack-card:focus-visible {
  outline: 3px solid rgba(38, 49, 38, 0.76);
  outline-offset: 8px;
  border-radius: 8px;
}

.album-stack-text {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
}

.album-stack-text strong,
.album-stack-text span {
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
}

.album-stack-text strong {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--redwood);
}

.album-stack-text span {
  flex: 0 0 auto;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(42, 49, 38, 0.68);
}

.album-detail-heading {
  position: sticky;
  z-index: 6;
  top: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 10px 0;
  background: transparent;
}

.photo-album h3 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--redwood);
}

.album-back-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(38, 49, 38, 0.16);
  border-radius: 4px;
  background: rgba(255, 247, 237, 0.72);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
  transform 180ms ease;
}

.album-back-button::before {
  content: "\2190";
  font-size: 1rem;
  line-height: 1;
}

.album-back-button:hover,
.album-back-button:focus-visible {
  background: rgba(255, 247, 237, 0.96);
  box-shadow: 0 12px 30px rgba(38, 49, 38, 0.12);
  transform: translateY(-1px);
}

.photo-gallery,
.album-gallery {
  column-count: 3;
  column-gap: 16px;
}

.photo-tile {
  display: block;
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.72);
  box-shadow: 0 18px 50px rgba(38, 49, 38, 0.08);
}

.photo-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo-lightbox-trigger:focus-visible {
  outline: 3px solid rgba(38, 49, 38, 0.76);
  outline-offset: -3px;
}

.photo-tile img {
  display: block;
  width: 100%;
  height: auto;
}

body.photo-lightbox-open {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  grid-template-rows: 58px 1fr 44px;
  gap: 12px;
  align-items: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(36, 48, 32, 0.84);
  backdrop-filter: blur(12px);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox-image {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  align-self: center;
  max-width: 100%;
  max-height: calc(100svh - 170px);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  object-fit: contain;
}

.photo-lightbox-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 236, 0.36);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.82);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.photo-lightbox-button:hover,
.photo-lightbox-button:focus-visible {
  background: var(--paper);
  transform: translateY(-1px);
}

.photo-lightbox-close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  font-size: 1rem;
  text-transform: uppercase;
}

.photo-lightbox-prev {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
}

.photo-lightbox-next {
  grid-column: 3;
  grid-row: 2;
  justify-self: center;
}

.photo-lightbox-count {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  margin: 0;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(255, 248, 236, 0.78);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.hummingbird-cursor {
  --bird-size: 86px;
  --bird-tip-x: 74px;
  --bird-tip-y: 27px;
  --wing-opacity: 0.46;
  --wing-trace-opacity: 0.3;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--cursor-x, -120px), var(--cursor-y, -120px), 0);
  transform-origin: 0 0;
  transition: opacity 80ms ease;
  filter: drop-shadow(0 6px 9px rgba(24, 32, 21, 0.2));
  will-change: transform;
}

.hummingbird-cursor-art {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  display: block;
  transform:
    rotate(var(--cursor-tilt, 0deg))
    scaleX(var(--cursor-facing, 1));
  transform-origin: 0 0;
  transition: transform 130ms cubic-bezier(0.22, 0.78, 0.22, 1);
  will-change: transform;
}

.hummingbird-cursor-image {
  position: absolute;
  left: calc(0px - var(--bird-tip-x));
  top: calc(0px - var(--bird-tip-y));
  z-index: 2;
  width: var(--bird-size);
  height: var(--bird-size);
  max-width: none;
  display: block;
  object-fit: contain;
  filter:
    saturate(1.36)
    brightness(1.08)
    contrast(1.12);
}

.hummingbird-cursor-art::before,
.hummingbird-cursor-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-conic-gradient(from -28deg at 78% 56%,
      rgba(82, 66, 43, 0.18) 0deg 5deg,
      transparent 5deg 14deg),
    radial-gradient(ellipse at 45% 52%,
      rgba(255, 232, 174, 0.46),
      rgba(205, 178, 127, 0.22) 45%,
      transparent 72%);
  filter: blur(1.1px);
  transform-origin: 78% 56%;
  mix-blend-mode: normal;
}

.hummingbird-cursor-art::before {
  left: calc(0px - var(--bird-tip-x) + var(--bird-size) * 0.08);
  top: calc(0px - var(--bird-tip-y) + var(--bird-size) * 0.02);
  width: calc(var(--bird-size) * 0.58);
  height: calc(var(--bird-size) * 0.5);
  border-radius: 72% 48% 70% 44% / 70% 52% 68% 44%;
  opacity: var(--wing-opacity);
  animation: hummingbird-wing-flap 86ms ease-in-out infinite alternate;
}

.hummingbird-cursor-art::after {
  left: calc(0px - var(--bird-tip-x) + var(--bird-size) * 0.08);
  top: calc(0px - var(--bird-tip-y) + var(--bird-size) * 0.21);
  width: calc(var(--bird-size) * 0.52);
  height: calc(var(--bird-size) * 0.36);
  border-radius: 42% 76% 54% 62% / 48% 66% 54% 64%;
  opacity: var(--wing-trace-opacity);
  transform-origin: 80% 18%;
  animation: hummingbird-wing-trace 86ms ease-in-out infinite alternate-reverse;
}

.hummingbird-cursor.is-visible {
  opacity: 1;
}

.field-notes-page .hummingbird-cursor {
  --bird-size: 78px;
  --bird-tip-x: 67px;
  --bird-tip-y: 24px;
  --wing-opacity: 0.42;
  --wing-trace-opacity: 0.26;
  filter: drop-shadow(0 5px 7px rgba(28, 35, 22, 0.16));
}

.field-notes-page .hummingbird-cursor.is-visible {
  opacity: 1;
}

.content-open .hummingbird-cursor,
.workbench-content-open .hummingbird-cursor,
.pressed-content-open .hummingbird-cursor {
  display: none;
}

.sunlight-cursor {
  position: fixed;
  z-index: 48;
  left: 0;
  top: 0;
  width: clamp(280px, 38vw, 440px);
  height: clamp(280px, 38vw, 440px);
  pointer-events: none;
  opacity: 0;
  transform:
    translate3d(calc(var(--cursor-x, -180px) - 50%), calc(var(--cursor-y, -180px) - 50%), 0)
    rotate(calc(var(--cursor-tilt, 0deg) * 0.18));
  transform-origin: 50% 50%;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 247, 210, 0.42) 0 5px,
      rgba(255, 230, 151, 0.24) 6px 19px,
      rgba(255, 218, 126, 0.15) 20px 34%,
      transparent 62%);
  filter: blur(0.4px);
  transition: opacity 180ms ease;
  will-change: transform;
}

.sunlight-cursor::before {
  content: none;
}

.sunlight-cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 248, 215, 0.34);
  box-shadow:
    0 0 16px rgba(255, 231, 164, 0.32),
    0 0 40px rgba(255, 229, 148, 0.22);
  transform: translate(-50%, -50%);
}

.sunlight-cursor.is-visible {
  opacity: 1;
}

.subpage {
  min-height: 100svh;
}

.subpage-site-header {
  position: sticky;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.62), transparent);
}

.page-shell {
  width: min(var(--max-page), calc(100% - clamp(36px, 9vw, 116px)));
  margin: 0 auto;
  padding: clamp(88px, 14vh, 142px) 0 clamp(56px, 8vw, 96px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(28px, 5vw, 56px);
  padding: 8px 10px;
  border: 1px solid rgba(42, 49, 38, 0.14);
  border-radius: 4px;
  background: rgba(255, 247, 237, 0.62);
  box-shadow: 0 10px 28px rgba(42, 49, 38, 0.08);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link::before {
  content: "←";
  font-size: 1rem;
  line-height: 1;
}

.page-hero {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 500;
}

.page-hero p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.greenhouse-entry {
  display: grid;
  gap: clamp(22px, 4vw, 38px);
}

.greenhouse-entry-copy {
  max-width: 760px;
}

.greenhouse-entry-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 500;
}

.greenhouse-landing-page {
  min-height: 100svh;
  overflow: hidden;
  background: #fff7ed;
}

.greenhouse-landing-page .subpage-site-header {
  position: fixed;
}

.greenhouse-landing-page .page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.greenhouse-landing-page .back-link,
.greenhouse-landing-page .greenhouse-entry-copy {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.greenhouse-landing-page .greenhouse-entry {
  min-height: 100svh;
  display: block;
}

.greenhouse-landing-page .greenhouse-scene {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.greenhouse-scene {
  position: relative;
  min-height: clamp(500px, 58vw, 690px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(42, 49, 38, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(255, 255, 255, 0.82), transparent 28%),
    radial-gradient(ellipse at 18% 64%, rgba(53, 99, 57, 0.36), transparent 26%),
    radial-gradient(ellipse at 82% 62%, rgba(55, 104, 74, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(185, 220, 240, 0.74) 0 34%, rgba(220, 236, 224, 0.68) 35% 64%, rgba(139, 159, 104, 0.42) 65% 100%),
    #fff7ed;
  box-shadow: 0 28px 80px rgba(38, 49, 38, 0.11);
}

.greenhouse-scene::before,
.greenhouse-scene::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.greenhouse-scene::before {
  z-index: 2;
  left: -6%;
  right: -6%;
  bottom: -2%;
  height: 35%;
  background:
    radial-gradient(ellipse at 8% 78%, rgba(44, 86, 46, 0.86), transparent 24%),
    radial-gradient(ellipse at 22% 82%, rgba(115, 134, 78, 0.74), transparent 22%),
    radial-gradient(ellipse at 78% 80%, rgba(44, 86, 46, 0.78), transparent 24%),
    radial-gradient(ellipse at 92% 74%, rgba(128, 142, 79, 0.72), transparent 24%);
}

.greenhouse-scene::after {
  z-index: 1;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 54%;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 248, 236, 0.38) 49.5% 50.5%, transparent 51% 100%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 248, 236, 0.38), transparent 62%);
  opacity: 0.86;
}

.greenhouse-scene.redwoods-greenhouse-scene {
  aspect-ratio: 16 / 9;
  min-height: auto;
  background:
    linear-gradient(180deg, rgba(240, 250, 244, 0.04), rgba(42, 67, 42, 0.06)),
    url("assets/images/greenhouse/greenhouse-brighter-balanced.png") 50% 50% / cover no-repeat,
    #fff7ed;
}

.redwoods-greenhouse-scene::before {
  z-index: 2;
  inset: 0;
  height: auto;
  background:
    radial-gradient(ellipse at 18% 24%, rgba(255, 248, 236, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(72, 82, 58, 0.02), transparent 42%, rgba(30, 69, 44, 0.04));
}

.redwoods-greenhouse-scene::after {
  z-index: 3;
  inset: 0;
  height: auto;
  background:
    radial-gradient(ellipse at 50% 74%, rgba(255, 236, 184, 0.04), transparent 28%),
    linear-gradient(110deg, transparent 0 58%, rgba(255, 230, 166, 0.04) 60% 63%, transparent 66% 100%),
    linear-gradient(90deg, rgba(244, 252, 245, 0.02), transparent 24% 76%, rgba(244, 252, 245, 0.015));
  opacity: 0.55;
}

.redwoods-greenhouse-scene .greenhouse-dome,
.redwoods-greenhouse-scene .greenhouse-fountain {
  display: none;
}

.greenhouse-dome {
  position: absolute;
  z-index: 1;
  left: 4%;
  right: 4%;
  top: 4%;
  height: 67%;
  border: 2px solid rgba(82, 112, 95, 0.4);
  border-bottom: 1px solid rgba(82, 112, 95, 0.22);
  border-radius: 50% 50% 0 0 / 82% 82% 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 18% 82%, rgba(255, 255, 255, 0.3)),
    repeating-linear-gradient(90deg, rgba(67, 102, 91, 0.14) 0 2px, transparent 2px 78px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 2px 18px rgba(255, 255, 255, 0.7),
    inset 0 -28px 44px rgba(55, 83, 62, 0.08);
}

.greenhouse-dome::before,
.greenhouse-dome::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.greenhouse-dome::before {
  left: 39%;
  right: 39%;
  bottom: 0;
  height: 58%;
  border: 1px solid rgba(82, 112, 95, 0.22);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 78% 78% 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 42% 58%, rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.06);
}

.greenhouse-dome::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(82, 112, 95, 0.36), rgba(82, 112, 95, 0.08));
  transform: translateX(-50%);
}

.dome-arc,
.dome-pane {
  position: absolute;
  pointer-events: none;
}

.dome-arc {
  left: 50%;
  top: 7%;
  width: 58%;
  height: 92%;
  border: 1px solid rgba(82, 112, 95, 0.27);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform-origin: 50% 100%;
}

.arc-one {
  transform: translateX(-50%);
}

.arc-two {
  transform: translateX(-50%) scaleX(0.62);
}

.arc-three {
  transform: translateX(-50%) scaleX(1.34);
}

.dome-pane {
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 94%;
  background: rgba(82, 112, 95, 0.28);
  transform-origin: 50% 100%;
}

.pane-one {
  transform: rotate(-38deg);
}

.pane-two {
  transform: rotate(-16deg);
}

.pane-three {
  transform: rotate(16deg);
}

.pane-four {
  transform: rotate(38deg);
}

.greenhouse-fountain {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 31%;
  width: clamp(118px, 16vw, 190px);
  height: clamp(128px, 18vw, 210px);
  transform: translateX(-50%);
}

.fountain-spray {
  position: absolute;
  left: 50%;
  bottom: 48%;
  width: 58%;
  height: 44%;
  border-top: 2px solid rgba(119, 177, 193, 0.82);
  border-radius: 50%;
  opacity: 0.76;
  transform-origin: 50% 100%;
}

.spray-one {
  transform: translateX(-50%) rotate(-24deg);
}

.spray-two {
  width: 46%;
  height: 50%;
  transform: translateX(-50%);
}

.spray-three {
  transform: translateX(-50%) rotate(24deg);
}

.fountain-bowl,
.fountain-pool {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.bowl-top {
  bottom: 42%;
  width: 46%;
  height: 16%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.62), transparent 58%),
    #8cb4bd;
  box-shadow: inset 0 -8px 0 rgba(65, 90, 86, 0.14);
}

.bowl-bottom {
  bottom: 24%;
  width: 76%;
  height: 25%;
  border-radius: 50% 50% 38% 38%;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(255, 255, 255, 0.5), transparent 56%),
    #8aa9a2;
  box-shadow: inset 0 -10px 0 rgba(52, 74, 65, 0.14);
}

.fountain-pool {
  bottom: 8%;
  width: 100%;
  height: 28%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.58), transparent 52%),
    rgba(103, 164, 183, 0.72);
  box-shadow:
    inset 0 -8px 0 rgba(37, 70, 73, 0.1),
    0 12px 30px rgba(38, 49, 38, 0.16);
  animation: fountain-ripple 3200ms ease-in-out infinite alternate;
}

.greenhouse-paths {
  position: absolute;
  z-index: 5;
  inset: 0;
}

.greenhouse-path {
  position: absolute;
  bottom: -2%;
  display: block;
  height: 46%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

.greenhouse-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(94deg, rgba(118, 94, 61, 0.12) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, rgba(255, 248, 236, 0.86), rgba(197, 172, 118, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 22px 48px rgba(38, 49, 38, 0.14);
  transition:
    filter 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.path-dance {
  left: -4%;
  width: 42%;
}

.path-dance::before {
  clip-path: polygon(57% 0, 72% 0, 100% 100%, 0 100%);
  transform-origin: 66% 0;
}

.path-photography {
  left: 31%;
  width: 38%;
}

.path-photography::before {
  clip-path: polygon(42% 0, 58% 0, 78% 100%, 22% 100%);
  transform-origin: 50% 0;
}

.path-illustrations {
  right: -4%;
  width: 42%;
}

.path-illustrations::before {
  clip-path: polygon(28% 0, 43% 0, 100% 100%, 0 100%);
  transform-origin: 34% 0;
}

.greenhouse-path .path-label {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 50%;
  min-width: max-content;
  padding: 8px 13px;
  border: 2px solid rgba(58, 80, 43, 0.66);
  border-radius: 2px;
  background:
    radial-gradient(circle at 10px 50%, rgba(58, 80, 43, 0.4) 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 10px) 50%, rgba(58, 80, 43, 0.4) 0 2px, transparent 2.5px),
    linear-gradient(180deg, #f7efd8 0%, #dfce9c 100%);
  box-shadow:
    0 8px 18px rgba(38, 49, 38, 0.16),
    inset 0 -3px 0 rgba(94, 82, 44, 0.08);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.greenhouse-path .path-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 5px;
  height: 22px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, #756238, #473d27);
  transform: translateX(-50%);
}

.greenhouse-path:hover::before,
.greenhouse-path:focus-visible::before,
.greenhouse-path.is-room-active::before,
.greenhouse-path[aria-selected="true"]::before,
.greenhouse-path[aria-current="page"]::before {
  filter: saturate(1.08) brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 28px 62px rgba(38, 49, 38, 0.18);
}

.greenhouse-path:hover .path-label,
.greenhouse-path:focus-visible .path-label,
.greenhouse-path.is-room-active .path-label,
.greenhouse-path[aria-selected="true"] .path-label,
.greenhouse-path[aria-current="page"] .path-label {
  background:
    radial-gradient(circle at 10px 50%, rgba(58, 80, 43, 0.5) 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 10px) 50%, rgba(58, 80, 43, 0.5) 0 2px, transparent 2.5px),
    linear-gradient(180deg, #fff6df 0%, #eadab0 100%);
  transform: translate(-50%, -5px);
}

.greenhouse-path:focus-visible .path-label {
  outline: 3px solid rgba(38, 49, 38, 0.76);
  outline-offset: 5px;
}

.redwoods-greenhouse-scene .greenhouse-path {
  --post-length: 96px;
  --sign-left: 50%;
  --sign-tilt: 0deg;
  --sign-top: 42%;
  bottom: 0;
  height: 100%;
}

.redwoods-greenhouse-scene .path-dance {
  left: 34%;
  width: 32%;
}

.redwoods-greenhouse-scene .path-photography {
  left: 0;
  width: 34%;
}

.redwoods-greenhouse-scene .path-illustrations {
  right: 0;
  width: 34%;
}

.redwoods-greenhouse-scene .greenhouse-path::before {
  inset: 0;
  clip-path: none;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: none;
}

.redwoods-greenhouse-scene .greenhouse-path:hover::before,
.redwoods-greenhouse-scene .greenhouse-path:focus-visible::before,
.redwoods-greenhouse-scene .greenhouse-path.is-room-active::before {
  background: transparent;
  box-shadow: none;
  opacity: 0;
}

.redwoods-greenhouse-scene .greenhouse-path .path-label {
  top: var(--sign-top, 42%);
  left: var(--sign-left, 50%);
  min-width: max-content;
  padding: 11px 17px 10px;
  border: 1px solid rgba(79, 60, 38, 0.52);
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(92, 65, 36, 0.1), transparent 14% 86%, rgba(92, 65, 36, 0.08)),
    repeating-linear-gradient(0deg, rgba(102, 75, 41, 0.07) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, rgba(238, 216, 167, 0.86), rgba(189, 151, 92, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 236, 0.42),
    inset 0 -4px 0 rgba(81, 55, 30, 0.08),
    0 12px 22px rgba(38, 49, 38, 0.16);
  color: rgba(46, 39, 25, 0.86);
  font-size: clamp(0.82rem, 1vw, 1rem);
  text-shadow:
    0 1px 0 rgba(255, 248, 236, 0.46),
    0 0 12px rgba(255, 248, 236, 0.18);
  opacity: 0.92;
  transform: translateX(-50%) rotate(var(--sign-tilt));
}

.redwoods-greenhouse-scene .sign-arrow {
  display: inline-block;
  color: rgba(62, 48, 31, 0.76);
  font-size: 1.02em;
  line-height: 0;
  transform: translateY(-0.02em);
}

.redwoods-greenhouse-scene .path-dance {
  --dance-hanger-length: 58px;
  --dance-hanger-left: 18%;
  --dance-hanger-right: 82%;
  --sign-tilt: -1.4deg;
  --sign-left: 50%;
  --sign-top: 25.6%;
}

.redwoods-greenhouse-scene .path-photography {
  --post-length: 122px;
  --sign-tilt: -3deg;
  --sign-left: 78%;
  --sign-top: 47.5%;
}

.redwoods-greenhouse-scene .path-illustrations {
  --post-length: 122px;
  --sign-tilt: 2.4deg;
  --sign-left: 18%;
  --sign-top: 47.5%;
}

.redwoods-greenhouse-scene .path-dance .path-label::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--dance-hanger-length) * -1);
  height: var(--dance-hanger-length);
  background:
    linear-gradient(180deg, rgba(58, 45, 29, 0.72), rgba(58, 45, 29, 0.28)) var(--dance-hanger-left) 0 / 2px 100% no-repeat,
    linear-gradient(180deg, rgba(58, 45, 29, 0.68), rgba(58, 45, 29, 0.26)) var(--dance-hanger-right) 0 / 2px 100% no-repeat;
}

.redwoods-greenhouse-scene .path-dance .path-label::after {
  content: none;
}

.redwoods-greenhouse-scene .path-dance::after {
  content: none;
}

.redwoods-greenhouse-scene .path-photography .path-label::before,
.redwoods-greenhouse-scene .path-illustrations .path-label::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 1px;
  background: rgba(96, 68, 38, 0.16);
}

.redwoods-greenhouse-scene .path-photography .path-label::after,
.redwoods-greenhouse-scene .path-illustrations .path-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: 8px;
  height: var(--post-length);
  border-radius: 0 0 999px 999px;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(112, 78, 42, 0.88), rgba(68, 50, 31, 0.86));
  box-shadow:
    inset -2px 0 0 rgba(45, 32, 22, 0.14),
    0 10px 14px rgba(38, 49, 38, 0.12);
  transform: translateX(-50%);
}

.redwoods-greenhouse-scene .path-photography::after,
.redwoods-greenhouse-scene .path-illustrations::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: var(--sign-left);
  top: calc(var(--sign-top) + var(--post-length) + 34px);
  width: clamp(92px, 8vw, 128px);
  height: clamp(34px, 3.6vw, 48px);
  border-radius: 52% 48% 44% 40%;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(71, 86, 45, 0.58) 0 22%, transparent 24%),
    radial-gradient(ellipse at 40% 52%, rgba(98, 108, 57, 0.64) 0 24%, transparent 26%),
    radial-gradient(ellipse at 63% 65%, rgba(49, 72, 41, 0.6) 0 25%, transparent 27%),
    radial-gradient(ellipse at 82% 72%, rgba(86, 94, 48, 0.5) 0 19%, transparent 21%),
    radial-gradient(ellipse at 50% 88%, rgba(86, 57, 32, 0.34) 0 38%, transparent 40%);
  filter: blur(0.2px) saturate(1.04) sepia(0.04) brightness(0.98);
  opacity: 0.86;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--bed-tilt, 0deg));
}

.redwoods-greenhouse-scene .path-photography::after {
  --bed-tilt: -2deg;
}

.redwoods-greenhouse-scene .path-illustrations::after {
  --bed-tilt: 2deg;
}

.redwoods-greenhouse-scene .greenhouse-path:hover .path-label,
.redwoods-greenhouse-scene .greenhouse-path:focus-visible .path-label,
.redwoods-greenhouse-scene .greenhouse-path.is-room-active .path-label {
  background:
    linear-gradient(90deg, rgba(92, 65, 36, 0.08), transparent 14% 86%, rgba(92, 65, 36, 0.08)),
    repeating-linear-gradient(0deg, rgba(102, 75, 41, 0.06) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, rgba(248, 226, 176, 0.94), rgba(204, 164, 100, 0.92));
  border-color: rgba(79, 60, 38, 0.66);
  color: rgba(39, 33, 22, 0.94);
  opacity: 1;
  transform: translate(-50%, -3px) rotate(var(--sign-tilt));
}

.redwoods-greenhouse-scene .greenhouse-path:hover .sign-arrow,
.redwoods-greenhouse-scene .greenhouse-path:focus-visible .sign-arrow,
.redwoods-greenhouse-scene .greenhouse-path.is-room-active .sign-arrow {
  color: rgba(42, 34, 22, 0.94);
}

.redwoods-greenhouse-scene .room-marker {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 42%;
  width: clamp(108px, 10.5vw, 156px);
  height: clamp(88px, 8.5vw, 128px);
  pointer-events: none;
  opacity: 0.86;
  filter:
    saturate(1.08)
    sepia(0.02)
    brightness(1.02)
    drop-shadow(0 14px 20px rgba(34, 43, 30, 0.2));
  transform: translate(-50%, -50%);
  transition:
    filter 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.redwoods-greenhouse-scene .room-marker span {
  position: absolute;
  display: block;
  pointer-events: none;
}

.redwoods-greenhouse-scene .path-photography .room-marker {
  left: 49%;
  top: 41%;
}

.redwoods-greenhouse-scene .path-dance .room-marker {
  left: 50%;
  top: 41%;
}

.redwoods-greenhouse-scene .path-illustrations .room-marker {
  left: 51%;
  top: 41%;
}

.redwoods-greenhouse-scene .greenhouse-path:hover .room-marker,
.redwoods-greenhouse-scene .greenhouse-path:focus-visible .room-marker,
.redwoods-greenhouse-scene .greenhouse-path.is-room-active .room-marker {
  opacity: 1;
  filter:
    saturate(1.18)
    sepia(0.01)
    brightness(1.08)
    drop-shadow(0 16px 24px rgba(34, 43, 30, 0.2))
    drop-shadow(0 0 24px rgba(255, 236, 184, 0.26));
  transform: translate(-50%, -54%) scale(1.04);
}

.photo-line {
  left: 8%;
  right: 8%;
  top: 28%;
  height: 2px;
  background: rgba(67, 80, 58, 0.54);
  transform: rotate(-3deg);
}

.photo-print {
  width: 31%;
  height: 48%;
  border: 5px solid rgba(255, 248, 236, 0.82);
  border-bottom-width: 10px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(114, 164, 184, 0.54) 0 42%, rgba(238, 210, 143, 0.46) 43% 58%, rgba(54, 91, 49, 0.5) 59%),
    rgba(255, 248, 236, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(35, 49, 32, 0.12),
    0 12px 20px rgba(38, 49, 38, 0.16);
  transform-origin: 50% 0;
}

.photo-print-one {
  left: 8%;
  top: 27%;
  transform: rotate(-8deg);
}

.photo-print-two {
  left: 35%;
  top: 22%;
  background:
    linear-gradient(180deg, rgba(61, 72, 54, 0.5) 0 34%, rgba(191, 157, 84, 0.44) 35% 64%, rgba(117, 84, 47, 0.38) 65%),
    rgba(255, 248, 236, 0.42);
  transform: rotate(5deg);
}

.photo-print-three {
  right: 8%;
  top: 30%;
  background:
    linear-gradient(180deg, rgba(86, 137, 154, 0.5) 0 50%, rgba(235, 232, 207, 0.46) 51% 61%, rgba(78, 108, 61, 0.42) 62%),
    rgba(255, 248, 236, 0.42);
  transform: rotate(10deg);
}

.stage-light {
  top: 0;
  width: 42%;
  height: 72%;
  opacity: 0.7;
  background:
    linear-gradient(180deg, rgba(255, 229, 158, 0.72), rgba(221, 170, 83, 0.2) 60%, transparent 100%);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  mix-blend-mode: normal;
}

.stage-light-left {
  left: 8%;
  transform: rotate(18deg);
}

.stage-light-right {
  right: 8%;
  transform: rotate(-18deg);
}

.stage-floor {
  left: 10%;
  right: 10%;
  bottom: 7%;
  height: 24%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255, 232, 171, 0.5), transparent 66%),
    rgba(86, 64, 43, 0.16);
  box-shadow: 0 10px 20px rgba(36, 42, 29, 0.12);
}

.film-strip {
  left: 15%;
  bottom: 26%;
  width: 70%;
  height: 27%;
  border-radius: 3px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.86) 0 4px, transparent 4px 9px) 0 2px / 100% 5px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.86) 0 4px, transparent 4px 9px) 0 calc(100% - 7px) / 100% 5px no-repeat,
    linear-gradient(90deg, rgba(37, 45, 36, 0.64), rgba(52, 59, 45, 0.54));
  box-shadow: 0 12px 20px rgba(38, 49, 38, 0.16);
  transform: rotate(-8deg);
}

.easel-sheet {
  left: 24%;
  top: 5%;
  width: 52%;
  height: 64%;
  border: 4px solid rgba(104, 83, 48, 0.5);
  border-radius: 3px;
  background:
    radial-gradient(circle at 46% 42%, rgba(236, 143, 186, 0.58) 0 6%, transparent 7%),
    radial-gradient(ellipse at 43% 54%, transparent 0 20%, rgba(96, 83, 58, 0.38) 21% 23%, transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.76), rgba(241, 224, 189, 0.62));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 14px 22px rgba(38, 49, 38, 0.16);
}

.easel-leg {
  top: 64%;
  width: 3px;
  height: 34%;
  border-radius: 999px;
  background: rgba(92, 70, 43, 0.58);
  transform-origin: 50% 0;
}

.easel-leg-left {
  left: 38%;
  transform: rotate(15deg);
}

.easel-leg-right {
  right: 38%;
  transform: rotate(-15deg);
}

.paint-dot {
  bottom: 12%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(38, 49, 38, 0.1);
}

.paint-dot-one {
  left: 18%;
  background: rgba(208, 110, 133, 0.7);
}

.paint-dot-two {
  left: 31%;
  background: rgba(224, 171, 73, 0.68);
}

.paint-dot-three {
  left: 44%;
  background: rgba(91, 121, 71, 0.66);
}

@media (min-aspect-ratio: 16 / 10) {
  .greenhouse-scene.redwoods-greenhouse-scene {
    background-size: cover;
  }
}

@media (max-aspect-ratio: 4 / 5) {
  .greenhouse-scene.redwoods-greenhouse-scene {
    background-position: 50% 50%;
  }

  .redwoods-greenhouse-scene .path-dance .path-label {
    left: var(--sign-left);
  }

  .redwoods-greenhouse-scene .path-illustrations {
    --sign-left: 15%;
  }

  .redwoods-greenhouse-scene .path-photography {
    --sign-left: 56%;
  }
}

@keyframes fountain-ripple {
  from {
    transform: translateX(-50%) scaleX(0.96);
  }

  to {
    transform: translateX(-50%) scaleX(1.03);
  }
}

.bio-placeholder {
  min-height: clamp(100px, 18vw, 180px);
}

.field-notes-page {
  min-height: 100svh;
  overflow: hidden;
  background: #2b2818;
}

.field-notes-page .subpage-site-header {
  position: fixed;
  background: linear-gradient(180deg, rgba(31, 30, 18, 0.44), transparent);
}

.field-notes-page .wordmark {
  color: rgba(255, 248, 226, 0.86);
  text-shadow: 0 1px 5px rgba(25, 24, 15, 0.42);
}

.field-notes-page .wordmark::after {
  background: rgba(255, 239, 190, 0.34);
}

.field-notes-page .wordmark:hover,
.field-notes-page .wordmark:focus-visible {
  color: rgba(255, 248, 226, 0.96);
}

.field-notes-page .wordmark:hover::after,
.field-notes-page .wordmark:focus-visible::after {
  background: rgba(255, 239, 190, 0.82);
}

.field-notes-shell,
.field-notes-scene {
  min-height: 100svh;
}

.field-notes-scene {
  --field-stage-width: max(118vw, 177.7svh);
  --field-stage-height: calc(var(--field-stage-width) * 0.5628);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.field-notes-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--field-stage-width);
  aspect-ratio: 1672 / 941;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.field-notes-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.field-notes-copy {
  position: absolute;
  z-index: 2;
  left: calc(50vw - (var(--field-stage-width) * 0.198));
  top: calc(50svh - (var(--field-stage-height) * 0.253));
  width: calc(var(--field-stage-width) * 0.388);
  height: calc(var(--field-stage-height) * 0.575);
  overflow: visible;
  color: rgba(47, 39, 26, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.1vw, 1.24rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-shadow: 0 1px 0 rgba(255, 248, 226, 0.2);
  word-spacing: 0;
}

.field-notes-spread {
  position: absolute;
  inset: 0 0 2px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 9.6%;
  opacity: 0;
  transform: rotateY(3deg) translateX(8px);
  transform-origin: 50% 50%;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.field-notes-spread.is-active {
  opacity: 1;
  transform: rotateY(0) translateX(0);
}

.field-notes-spread[hidden] {
  display: none;
}

.field-notes-page-copy {
  position: relative;
  min-width: 0;
  overflow: visible;
  padding-right: 4px;
  scrollbar-width: none;
}

.field-notes-page-copy:first-child {
  transform: translateX(12px) rotate(-0.35deg);
  transform-origin: 22% 10%;
}

.field-notes-page-copy:nth-child(2) {
  transform: translateX(3px) rotate(0.65deg);
  transform-origin: 86% 10%;
}

.field-notes-page-copy::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.field-notes-page-copy p {
  margin: 0 0 1.15em;
}

.field-notes-photo {
  position: relative;
  width: min(74%, 230px);
  margin: clamp(18px, 2.4vw, 26px) auto 0;
  padding: 6px 6px 12px;
  border-radius: 3px;
  background: rgba(255, 248, 226, 0.82);
  box-shadow:
    0 12px 24px rgba(55, 42, 28, 0.18),
    inset 0 0 0 1px rgba(91, 68, 42, 0.12);
  transform: rotate(-3.5deg);
}

.field-notes-photo::before,
.field-notes-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -8px;
  width: 44%;
  height: 16px;
  background:
    linear-gradient(90deg, rgba(255, 250, 228, 0.1), rgba(255, 250, 228, 0.28)),
    rgba(219, 199, 153, 0.68);
  box-shadow: 0 2px 8px rgba(58, 43, 27, 0.14);
}

.field-notes-photo::before {
  left: -8px;
  transform: rotate(-9deg);
}

.field-notes-photo::after {
  right: -8px;
  transform: rotate(8deg);
}

.field-notes-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 2px;
  filter:
    saturate(1.06)
    sepia(0)
    brightness(1.02)
    contrast(1.02);
}

.field-notes-page-edge {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .field-notes-page-edge {
    position: absolute;
    z-index: 4;
    top: 47%;
    display: grid;
    place-items: center;
    width: 54px;
    height: min(48%, 220px);
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(67, 49, 30, 0.82);
    cursor: pointer;
    transform: translateY(-50%);
  }

  .has-hummingbird-cursor .field-notes-page-edge {
    cursor: none;
  }

  .field-notes-page-edge::after {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(91, 68, 42, 0.12);
    border-radius: 999px;
    background: rgba(248, 232, 190, 0.72);
    box-shadow:
      0 8px 22px rgba(62, 45, 26, 0.12),
      inset 0 0 16px rgba(255, 248, 226, 0.42);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transform: scale(0.88);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      background 160ms ease;
  }

  .field-notes-page-edge-prev {
    left: clamp(-74px, -5vw, -54px);
  }

  .field-notes-page-edge-next {
    right: clamp(-74px, -5vw, -54px);
  }

  .field-notes-page-edge-prev::after {
    content: "\2190";
  }

  .field-notes-page-edge-next::after {
    content: "\2192";
  }

  .field-notes-page-edge:hover::after,
  .field-notes-page-edge:focus-visible::after {
    opacity: 1;
    transform: scale(1);
  }

  .field-notes-page-edge:disabled {
    display: none;
  }
}

.field-notes-copy a {
  color: inherit;
  text-decoration-color: rgba(88, 65, 35, 0.46);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.field-notes-copy a:hover,
.field-notes-copy a:focus-visible {
  color: rgba(31, 43, 28, 0.94);
  text-decoration-color: rgba(88, 65, 35, 0.78);
}

.field-notes-controls {
  position: absolute;
  left: 50%;
  bottom: -3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(68, 50, 31, 0.74);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.field-notes-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 28px;
  border: 1px solid rgba(91, 68, 42, 0.18);
  border-radius: 999px;
  background: rgba(247, 232, 191, 0.42);
  color: rgba(68, 50, 31, 0.78);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition:
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.field-notes-page-button:hover,
.field-notes-page-button:focus-visible {
  background: rgba(247, 232, 191, 0.72);
  transform: translateY(-1px);
}

.field-notes-page-button:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.field-notes-page-count {
  min-width: 42px;
  text-align: center;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 6vw, 72px);
}

.page-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-section {
  margin-top: clamp(44px, 8vw, 92px);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  margin-bottom: clamp(24px, 5vw, 46px);
}

.section-heading-row h1,
.section-heading-row h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 500;
}

.section-heading-row > p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.illustration-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3.4vw, 42px);
  align-items: start;
  margin-top: clamp(18px, 4vw, 42px);
}

.illustration-frame {
  position: relative;
  margin: 0;
  padding: clamp(13px, 1.7vw, 20px);
  border: 1px solid rgba(79, 63, 43, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.94), rgba(240, 230, 209, 0.9)),
    #f6ecda;
  box-shadow:
    0 18px 44px rgba(48, 43, 31, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 0 0 0 clamp(8px, 1.1vw, 14px) rgba(255, 248, 232, 0.56);
}

.illustration-frame::before {
  content: none;
}

.illustration-frame img {
  display: block;
  width: 100%;
  max-height: min(62vh, 620px);
  object-fit: contain;
  border: 1px solid rgba(79, 63, 43, 0.18);
  border-radius: 2px;
  background: rgba(255, 248, 234, 0.62);
}

.illustration-lightbox-trigger {
  line-height: 0;
}

.illustration-lightbox-trigger img {
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.illustration-lightbox-trigger:hover img,
.illustration-lightbox-trigger:focus-visible img {
  filter: brightness(1.03) saturate(1.04);
  transform: scale(1.003);
}

.illustration-frame figcaption {
  margin: 10px 2px 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(69, 54, 38, 0.68);
}

.illustration-frame-wide {
  max-width: none;
}

.illustration-frame-tall {
  max-width: none;
}

.dance-photo-section {
  margin: 0 0 clamp(34px, 5vw, 58px);
}

.dance-photo-section h2 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--redwood);
}

.dance-photo-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  width: 100%;
  max-width: 100%;
}

.dance-photo-controls {
  display: inline-flex;
  gap: 2px;
  justify-self: end;
  padding: 3px;
  border: 1px solid rgba(101, 63, 49, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 238, 0.68);
  box-shadow: 0 8px 18px rgba(42, 49, 38, 0.08);
}

.dance-photo-arrow {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  color: var(--redwood);
  cursor: pointer;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.dance-photo-arrow:hover,
.dance-photo-arrow:focus-visible {
  background: rgba(101, 63, 49, 0.1);
  color: rgba(42, 49, 38, 0.94);
  box-shadow: none;
  transform: translateY(-1px);
}

.dance-photo-arrow:active {
  transform: translateY(0);
}

.dance-photo-strip {
  columns: 4 170px;
  column-gap: clamp(12px, 2vw, 20px);
  padding: 4px 6px 12px;
}

.dance-photo-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(12px, 2vw, 20px);
  padding: 7px 7px 14px;
  border-radius: 3px;
  background: rgba(255, 250, 238, 0.92);
  box-shadow:
    0 18px 34px rgba(45, 35, 24, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.5) inset;
  transform: rotate(var(--photo-tilt, -0.7deg));
  transform-origin: 50% 52%;
  vertical-align: top;
}

.dance-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: saturate(1.05) contrast(1.02);
}

.dance-photo-card:nth-child(2) {
  --photo-tilt: 1.2deg;
}

.dance-photo-card:nth-child(3) {
  --photo-tilt: -1.4deg;
}

.dance-photo-card:nth-child(4) {
  --photo-tilt: 0.6deg;
}

.dance-photo-card:nth-child(5) {
  --photo-tilt: -0.4deg;
}

.dance-photo-card:nth-child(6) {
  --photo-tilt: 1.6deg;
}

.dance-photo-card:nth-child(7) {
  --photo-tilt: -1deg;
}

.dance-photo-card:nth-child(8) {
  --photo-tilt: 0.9deg;
}

.dance-photo-card:nth-child(9) {
  --photo-tilt: -0.8deg;
}

.video-library {
  display: grid;
  gap: clamp(30px, 5vw, 54px);
}

.video-group h2,
.video-group h3 {
  margin: 0 0 16px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--redwood);
}

.video-group-note {
  max-width: 620px;
  margin: -8px 0 16px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(42, 49, 38, 0.72);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(38, 49, 38, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.7);
  box-shadow: 0 18px 50px rgba(38, 49, 38, 0.08);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  border-color: rgba(101, 63, 49, 0.36);
  box-shadow: 0 24px 62px rgba(38, 49, 38, 0.13);
  transform: translateY(-3px);
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(93, 151, 169, 0.18), rgba(236, 212, 141, 0.26)),
    rgba(255, 248, 236, 0.78);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-card:hover .video-thumb img,
.video-card:focus-visible .video-thumb img {
  transform: scale(1.04);
}

.video-set .video-meta {
  margin-bottom: 10px;
}

.piece-list {
  margin: 0 16px 16px;
  padding: 10px 0 0 18px;
  border-top: 1px solid rgba(38, 49, 38, 0.12);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(42, 49, 38, 0.72);
}

.piece-list li + li {
  margin-top: 5px;
}

.piece-list a {
  color: inherit;
  text-decoration: none;
}

.piece-list a:hover,
.piece-list a:focus-visible {
  color: var(--redwood);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-title,
.video-meta {
  display: block;
  padding: 0 16px;
}

.video-title {
  margin-top: 14px;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.3;
}

.video-meta {
  margin: 8px 0 16px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 49, 38, 0.68);
}

.dance-library {
  gap: clamp(34px, 6vw, 64px);
}

.dance-page-content,
.dance-library,
.dance-library .video-grid,
.dance-library .video-card,
.dance-library .video-thumb,
.dance-archive,
.dance-photo-interlude {
  min-width: 0;
  max-width: 100%;
}

.dance-page-content {
  overflow-x: hidden;
}

.dance-featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.dance-selected-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.dance-photo-interlude {
  margin: clamp(-6px, -1vw, 0px) 0 clamp(20px, 3vw, 34px);
  overflow: hidden;
}

.dance-photo-interlude .dance-photo-strip {
  align-items: flex-start;
  display: flex;
  gap: clamp(10px, 1.8vw, 16px);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  columns: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.dance-photo-interlude .dance-photo-strip::-webkit-scrollbar {
  display: none;
}

.dance-photo-interlude .dance-photo-card {
  flex: 0 0 clamp(132px, 15vw, 186px);
  margin: 0;
  scroll-snap-align: start;
}

.dance-photo-interlude .dance-photo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dance-photo-interlude .dance-photo-card-tall {
  flex-basis: clamp(92px, 10vw, 126px);
}

.dance-photo-interlude .dance-photo-card-wide {
  flex-basis: clamp(190px, 23vw, 280px);
}

.dance-archive {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(38, 49, 38, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.78), rgba(248, 233, 217, 0.62)),
    rgba(255, 248, 236, 0.62);
  box-shadow: 0 18px 52px rgba(38, 49, 38, 0.08);
}

.dance-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(260px, 0.65fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: end;
}

.dance-archive-heading > * {
  min-width: 0;
}

.dance-archive-heading h2,
.dance-archive-block h3,
.dance-year-group h4 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--redwood);
}

.dance-archive-heading h2 {
  font-size: 0.84rem;
}

.dance-archive-heading p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  color: rgba(42, 49, 38, 0.72);
}

.dance-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 22px);
}

.dance-archive-block {
  min-width: 0;
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(38, 49, 38, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 50%),
    rgba(255, 248, 236, 0.56);
}

.dance-archive-block-wide {
  grid-column: 1 / -1;
}

.dance-archive-block h3 {
  margin-bottom: 14px;
  font-size: 0.72rem;
}

.dance-year-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.dance-year-group h4 {
  margin-bottom: 8px;
  font-size: 0.62rem;
  color: rgba(101, 63, 49, 0.76);
}

.dance-link-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dance-link-list > li {
  border-top: 1px dotted rgba(38, 49, 38, 0.16);
}

.dance-link-list > li:first-child {
  border-top: 0;
}

.dance-archive-row,
.dance-archive-set summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
}

.dance-archive-row:hover,
.dance-archive-row:focus-visible,
.dance-archive-set summary:hover,
.dance-archive-set summary:focus-visible {
  color: var(--redwood);
}

.dance-archive-set summary {
  cursor: pointer;
  list-style-position: outside;
}

.dance-archive-title {
  min-width: 0;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.25;
}

.dance-archive-meta {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
  color: rgba(42, 49, 38, 0.62);
}

.dance-archive-set .piece-list {
  margin: 0 0 10px;
  padding: 10px 0 0 22px;
}

.dance-archive-set .piece-list a {
  text-decoration: underline;
  text-decoration-color: rgba(101, 63, 49, 0.28);
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 58px);
  border-top: 1px solid rgba(38, 49, 38, 0.12);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.site-footer p {
  margin: 0;
}

@keyframes water-glint {
  0%,
  100% {
    opacity: 0.48;
    transform: rotate(-7deg) translateX(0);
  }

  50% {
    opacity: 0.76;
    transform: rotate(-7deg) translateX(16px);
  }
}

@keyframes factCardTurn {
  0% {
    opacity: 0.45;
    transform: translateY(4px) rotate(-0.4deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes fieldNotesMobilePageIn {
  0% {
    opacity: 0.72;
    transform: translateX(0) rotate(0.35deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes fieldNotesMobilePageNext {
  0% {
    opacity: 0.42;
    transform: translateX(18px) rotateY(-12deg) rotate(0.6deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0) rotate(0deg);
  }
}

@keyframes fieldNotesMobilePagePrev {
  0% {
    opacity: 0.42;
    transform: translateX(-18px) rotateY(12deg) rotate(-0.6deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0) rotate(0deg);
  }
}

@keyframes bloom-pop {
  0% {
    transform: translateY(calc(var(--wind-y) * 5px)) scale(0.94);
  }

  58% {
    transform: translateY(calc(var(--wind-y) * 5px - 6px)) scale(1.22);
  }

  100% {
    transform: translateY(calc(var(--wind-y) * 5px)) scale(var(--bloom-scale));
  }
}

@keyframes native-grow {
  0% {
    transform: scale(1, 1);
  }

  48% {
    transform: scale(1.006, 1.07);
  }

  100% {
    transform: scale(1, var(--bloom-scale));
  }
}

@keyframes hummingbird-wing-flap {
  0% {
    transform: rotate(-18deg) scale(0.92, 0.68) skewX(-8deg);
  }

  52% {
    transform: rotate(2deg) scale(1.08, 1.02) skewX(4deg);
  }

  100% {
    transform: rotate(18deg) scale(0.96, 0.7) skewX(9deg);
  }
}

@keyframes hummingbird-wing-trace {
  0% {
    transform: rotate(18deg) scale(0.94, 0.7) skewX(8deg) translateY(1px);
  }

  52% {
    transform: rotate(-4deg) scale(1.06, 0.92) skewX(-5deg) translateY(-1px);
  }

  100% {
    transform: rotate(-19deg) scale(0.94, 0.68) skewX(-9deg) translateY(1px);
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    gap: 8px;
    padding: 12px 12px 0;
  }

  .quiet-nav {
    position: fixed;
    top: 13px;
    left: auto;
    right: 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: clamp(6px, 2vw, 10px);
    max-width: none;
    margin-left: auto;
    padding: 3px 2px;
    overflow: hidden;
    scrollbar-width: none;
    font-size: 0.43rem;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
  }

  .quiet-nav::-webkit-scrollbar {
    display: none;
  }

  .quiet-nav a {
    flex: 0 0 auto;
    min-height: 23px;
    padding: 3px 1px 4px;
  }

  .intro-copy {
    top: 92px;
    left: 24px;
  }

  .intro-copy p:last-child {
    max-width: 320px;
  }

  .flower-link {
    width: 96px;
    min-height: 142px;
  }

  .flower-link.real-flower {
    width: 132px;
    min-height: 164px;
  }

  .stem {
    height: 88px;
  }

  .flower-label {
    padding: 7px 11px 6px;
  }

  .flower-label strong {
    font-size: 0.64rem;
  }

  .flower-label span {
    display: none;
  }

  .flower-about {
    left: 4%;
    bottom: 26px;
  }

  .flower-work {
    left: 32%;
    bottom: 48px;
  }

  .flower-writing {
    left: 38%;
    bottom: 128px;
  }

  .flower-notes {
    left: 56%;
    bottom: 108px;
  }

  .flower-dance {
    right: 4%;
    bottom: 114px;
  }

  .flower-illustrations {
    right: 4%;
    bottom: 30px;
  }

  .forest-home-page .native-flower {
    width: clamp(88px, 23vw, 132px);
    min-height: clamp(126px, 28vw, 176px);
  }

  .forest-home-page .flower-about {
    width: clamp(96px, 20vw, 126px);
    left: 4%;
    bottom: 48px;
  }

  .forest-home-page .flower-work {
    width: clamp(90px, 18vw, 118px);
    left: 28%;
    bottom: 120px;
  }

  .forest-home-page .flower-notes {
    width: clamp(68px, 14vw, 92px);
    left: 66%;
    bottom: 184px;
  }

  .forest-home-page .flower-illustrations {
    width: clamp(104px, 21vw, 132px);
    right: 4%;
    bottom: 46px;
  }

  .garden-notes,
  .content-grid,
  .album-stack-grid,
  .section-heading-row,
  .pressed-collection-grid {
    grid-template-columns: 1fr;
  }

  .illustration-gallery {
    grid-template-columns: 1fr;
  }

  .illustration-frame,
  .illustration-frame-wide,
  .illustration-frame-tall {
    width: 100%;
  }

  .pressed-scrapbook {
    padding: clamp(28px, 7vw, 44px);
  }

  .pressed-library-landing {
    min-height: 100svh;
    padding: 0;
  }

  .pressed-library-scene {
    width: 100%;
    height: 100svh;
  }

  .pressed-library-title {
    top: 8%;
    left: 7%;
    max-width: 44%;
  }

  .pressed-library-title h1 {
    font-size: clamp(1.8rem, 7.8vw, 3.4rem);
  }

  .pressed-media-groups {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .dog-eared-groups {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
  }

  .dog-eared-column {
    min-width: 0;
    gap: clamp(18px, 5vw, 24px);
  }

  .dog-eared-column-playlist {
    padding-top: 0;
  }

  .dog-eared-playlist .spotify-embed iframe {
    min-height: 190px;
    height: 190px;
  }

  .dog-eared-movies .pressed-list {
    display: block;
  }

  .dog-eared-performances .pressed-list {
    grid-template-columns: 1fr;
  }

  .side-quest-board,
  .kitchen-table-spread,
  .side-quest-artifacts {
    grid-template-columns: 1fr;
  }

  .kitchen-chip-list {
    grid-template-columns: 1fr;
  }

  .side-quest-photo {
    transform: rotate(calc(var(--photo-tilt, 0deg) * 0.5));
  }

  .workbench-scene {
    min-height: 0;
  }

  .workbench-panel {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .workbench-image {
    object-position: 50% 50%;
  }

  .workbench-hotspot::after {
    font-size: 0.58rem;
  }

  .hotspot-projects {
    left: 18%;
    top: 5%;
    width: 64%;
    height: 59%;
  }

  .hotspot-papers {
    left: 24%;
    top: 63%;
    width: 35%;
    height: 34%;
  }


  .pressed-collection {
    min-height: 300px;
  }

  .pressed-specimen {
    opacity: 0.56;
  }

  .album-stack-card {
    --stack-offset: 0;
  }

  .greenhouse-scene {
    min-height: 540px;
  }

  .greenhouse-dome {
    left: -2%;
    right: -2%;
    top: 6%;
    height: 63%;
  }

  .greenhouse-fountain {
    bottom: 32%;
  }

  .greenhouse-path {
    height: 45%;
  }

  .greenhouse-path .path-label {
    padding: 7px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .video-grid,
  .video-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dance-selected-grid,
  .dance-archive-grid,
  .dance-year-groups {
    grid-template-columns: 1fr;
  }

  .dance-archive-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .photo-gallery,
  .album-gallery {
    column-count: 2;
  }

  .field-notes-page {
    overflow: auto;
    overflow-x: hidden;
  }

  .field-notes-scene {
    width: 100vw;
    max-width: 100vw;
    min-height: 100svh;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(36, 32, 20, 0.22), rgba(36, 32, 20, 0.28)),
      url("assets/images/field-notes/field-notes-notebook-vibrant.png") 54% 50% / cover no-repeat,
      #2b2818;
  }

  .field-notes-stage {
    display: none;
  }

  .field-notes-copy {
    left: 16px !important;
    right: auto !important;
    top: 104px;
    box-sizing: border-box;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    height: calc(100svh - 132px);
    overflow: hidden;
    padding: 26px 24px 30px;
    border: 1px solid rgba(96, 72, 42, 0.18);
    border-radius: 4px;
    background:
      linear-gradient(90deg, rgba(132, 101, 54, 0.06), transparent 12% 88%, rgba(132, 101, 54, 0.05)),
      rgba(255, 248, 226, 0.9);
    box-shadow:
      0 18px 42px rgba(28, 22, 16, 0.24),
      inset 0 0 30px rgba(126, 89, 45, 0.07);
    transform: none;
    color: rgba(47, 39, 26, 0.92);
    font-size: clamp(1rem, 3.9vw, 1.16rem);
    line-height: 1.48;
    transform: none !important;
    touch-action: pan-y;
  }

  .field-notes-copy::before {
    content: "Best in landscape or on a larger screen";
    display: block;
    margin: 0 0 14px;
    color: rgba(80, 65, 42, 0.62);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .field-notes-scene.is-mobile-page-left .field-notes-copy,
  .field-notes-scene.is-mobile-page-right .field-notes-copy {
    left: 16px !important;
    right: auto !important;
    width: calc(100vw - 32px) !important;
    transform: none !important;
  }

  .field-notes-spread {
    position: static !important;
    display: block;
    inset: auto !important;
    overflow: visible;
    opacity: 1;
    scrollbar-width: none;
    transform: none !important;
  }

  .field-notes-spread[hidden] {
    display: none;
  }

  .field-notes-page-copy {
    position: static !important;
    display: none;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0;
    padding-bottom: 10px;
    transform: none !important;
  }

  .field-notes-page-copy:first-child,
  .field-notes-page-copy:nth-child(2) {
    transform: none !important;
  }

  .field-notes-page-copy.is-mobile-page-active {
    display: block;
    animation: fieldNotesMobilePageIn 280ms ease;
  }

  .field-notes-page-copy p {
    width: min(calc(100vw - 116px), 24rem);
    max-width: 100%;
    overflow-wrap: normal;
  }

  .field-notes-scene.is-mobile-turning-next .field-notes-page-copy.is-mobile-page-active {
    animation-name: fieldNotesMobilePageNext;
  }

  .field-notes-scene.is-mobile-turning-prev .field-notes-page-copy.is-mobile-page-active {
    animation-name: fieldNotesMobilePagePrev;
  }

  .field-notes-page-copy + .field-notes-page-copy {
    margin-top: 0;
  }

  .field-notes-page-edge {
    position: sticky;
    bottom: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 38px;
    height: 34px;
    margin-top: 18px;
    border: 1px solid rgba(91, 68, 42, 0.18);
    border-radius: 999px;
    background: rgba(248, 232, 190, 0.72);
    color: rgba(68, 50, 31, 0.78);
    box-shadow: 0 8px 22px rgba(62, 45, 26, 0.12);
  }

  .field-notes-page-edge::after {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1;
  }

  .field-notes-page-edge-prev {
    float: left;
  }

  .field-notes-page-edge-next {
    float: right;
  }

  .field-notes-page-edge-prev::after {
    content: "\2190";
  }

  .field-notes-page-edge-next::after {
    content: "\2192";
  }

  .field-notes-page-edge:disabled {
    display: none;
  }

  .field-notes-photo {
    width: min(68%, 210px);
  }
}

@media (max-width: 820px) and (orientation: portrait) {
  .pressed-library-scene,
  .workbench-scene {
    position: relative;
  }

  .pressed-library-frame,
  .workbench-frame {
    position: absolute;
    left: 50%;
    top: 50%;
    width: max(100vw, calc(100svh * 1.7768));
    height: max(100svh, calc(100vw / 1.7768));
    overflow: hidden;
    transform: translate(-50%, -50%);
  }

  .pressed-library-frame {
    left: 48%;
  }

  .workbench-frame {
    left: 54%;
  }

  .workbench-hotspot::before,
  .workbench-hotspot::after {
    opacity: 1;
  }

  .workbench-hotspot::before {
    transform: scale(1);
  }

  .workbench-hotspot::after {
    transform: translate(-50%, 0);
  }

  .greenhouse-scene.redwoods-greenhouse-scene {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
  }

  .intro-copy {
    top: 84px;
  }

  .intro-copy h1 {
    font-size: clamp(3rem, 19vw, 5rem);
  }

  .forest-home-page .intro-copy h1 {
    color: rgba(31, 43, 33, 0.42);
    opacity: 0.42;
    filter: blur(1.1px);
    text-shadow:
      0 0 24px rgba(255, 248, 236, 0.5),
      0 1px 28px rgba(255, 248, 236, 0.38);
  }

  .intro-copy p:last-child {
    font-size: 0.98rem;
  }

  .flower-link {
    transform: none;
  }

  .flower-label {
    padding: 6px 9px 5px;
  }

  .flower-about {
    left: 12px;
    bottom: 36px;
  }

  .flower-work {
    left: calc(42% - 42px);
    bottom: 108px;
  }

  .flower-writing {
    left: calc(45% - 54px);
    bottom: 138px;
  }

  .flower-notes {
    left: calc(57% - 46px);
    bottom: 176px;
  }

  .flower-dance {
    right: 6px;
    bottom: 86px;
  }

  .flower-illustrations {
    right: 10px;
    bottom: 34px;
  }

  .forest-home-page .native-flower {
    width: clamp(74px, 27vw, 118px);
    min-height: 124px;
  }

  .forest-home-page .flower-about {
    width: clamp(78px, 24vw, 104px);
    left: 8px;
    bottom: 44px;
  }

  .forest-home-page .flower-work {
    width: clamp(72px, 22vw, 96px);
    left: calc(31% - 34px);
    bottom: 110px;
  }

  .forest-home-page .flower-notes {
    width: clamp(58px, 18vw, 78px);
    left: calc(68% - 30px);
    bottom: 170px;
  }

  .forest-home-page .flower-illustrations {
    width: clamp(82px, 26vw, 110px);
    right: 8px;
    bottom: 40px;
  }

  .page-shell {
    width: min(100% - 36px, var(--max-page));
    padding-top: 92px;
  }

  .greenhouse-entry-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
    line-height: 0.98;
  }

  .greenhouse-scene {
    min-height: 470px;
    border-radius: 6px;
  }

  .greenhouse-dome {
    left: -22%;
    right: -22%;
    top: 5%;
    height: 64%;
  }

  .greenhouse-dome::before {
    left: 42%;
    right: 42%;
  }

  .greenhouse-fountain {
    bottom: 31%;
    width: 104px;
    height: 118px;
  }

  .greenhouse-path {
    bottom: -3%;
    height: 45%;
  }

  .path-dance {
    left: -16%;
    width: 54%;
  }

  .path-photography {
    left: 23%;
    width: 54%;
  }

  .path-illustrations {
    right: -16%;
    width: 54%;
  }

  .path-dance .path-label {
    left: 63%;
  }

  .path-photography .path-label {
    left: 50%;
  }

  .path-illustrations .path-label {
    left: 20%;
  }

  .greenhouse-path .path-label {
    top: 11%;
    max-width: 116px;
    min-width: 0;
    padding: 7px 8px;
    font-size: 0.56rem;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
  }

  .page-grid,
  .page-grid.three-up,
  .workbench-tools,
  .download-grid,
  .video-grid,
  .video-grid.compact {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: 104px;
    padding: 18px 16px 18px 46px;
  }

  .download-card::before {
    left: 16px;
    top: 22px;
    width: 18px;
    height: 25px;
  }

  .download-title {
    font-size: 1rem;
    line-height: 1.2;
  }

  .download-meta {
    font-size: 0.62rem;
  }

  .project-note-board {
    min-height: 260px;
    padding: 34px 26px;
  }

  .paper-folder-display {
    padding: 42px 18px 26px;
  }

  .folder-tab-row {
    left: 24px;
  }

  .paper-stack-list {
    grid-template-columns: 1fr;
  }

  .paper-sheet {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 118px;
    padding: 22px 18px 18px;
  }

  .paper-type {
    min-width: 0;
    justify-content: flex-start;
  }

  .paper-title {
    font-size: clamp(1.02rem, 3.4vw, 1.18rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .dance-photo-strip {
    columns: 2 130px;
    column-gap: 12px;
    padding-inline: 2px;
  }

  .dance-photo-card {
    padding: 5px 5px 10px;
    margin-bottom: 12px;
    transform: rotate(calc(var(--photo-tilt, 0deg) * 0.55));
  }

  .video-library {
    gap: 34px;
  }

  .video-group h2,
  .video-group h3 {
    margin-bottom: 12px;
  }

  .video-grid,
  .video-grid.compact {
    gap: 10px;
  }

  .dance-photo-interlude .dance-photo-strip {
    gap: 10px;
    padding-bottom: 16px;
  }

  .dance-photo-heading {
    display: block;
  }

  .dance-photo-controls {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .dance-photo-interlude .dance-photo-card {
    flex-basis: 132px;
  }

  .dance-photo-interlude .dance-photo-card-tall {
    flex-basis: 92px;
  }

  .dance-photo-interlude .dance-photo-card-wide {
    flex-basis: 188px;
  }

  .dance-photo-interlude .dance-photo-card img {
    height: auto;
  }

  .video-card {
    display: grid;
    grid-template-columns: minmax(86px, 30%) minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
    border-radius: 6px;
  }

  .video-thumb {
    grid-row: 1 / span 2;
    height: 100%;
    min-height: 78px;
    aspect-ratio: 4 / 3;
  }

  .video-title,
  .video-meta {
    min-width: 0;
    padding: 0 12px;
  }

  .video-title {
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.22;
  }

  .video-meta {
    margin: 4px 0 0;
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .video-set .video-meta {
    margin-bottom: 0;
  }

  .dance-library .video-card {
    display: block;
    min-height: 0;
  }

  .dance-library .video-thumb {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .dance-library .video-title,
  .dance-library .video-meta {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .piece-list {
    grid-column: 1 / -1;
    margin: 8px 12px 12px;
    padding-top: 8px;
    font-size: 0.72rem;
  }

  .dance-archive {
    padding: 18px 14px;
  }

  .dance-archive-row,
  .dance-archive-set summary {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 11px 0;
  }

  .dance-archive-meta {
    text-align: left;
  }

  .pressed-content-open .pressed-books {
    width: 100%;
    padding-inline: 14px;
  }

  .pressed-content-open .pressed-games {
    width: 100%;
    padding-inline: 16px;
    overflow: hidden;
  }

  .pressed-books .pressed-caption,
  .pressed-games .pressed-caption,
  .kitchen-table-spread {
    max-width: 100%;
  }

  .dog-eared-card,
  .spotify-embed {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .kitchen-note {
    min-width: 0;
    padding: 14px;
  }

  .kitchen-note-hack p {
    overflow-wrap: break-word;
  }

  .page-shell.pressed-pages-shell {
    width: 100%;
  }

  .pressed-library-landing {
    min-height: 100svh;
    padding: 0;
  }

  .pressed-library-scene {
    width: 100%;
    height: 100svh;
  }

  .pressed-library-title {
    top: 7%;
    left: 7%;
    max-width: 46%;
  }

  .pressed-library-title h1 {
    font-size: clamp(1.5rem, 8.5vw, 2.6rem);
  }

  .workbench-image {
    object-position: 50% 50%;
  }

  .workbench-hotspot::after {
    padding: 6px 8px;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .hotspot-projects {
    left: 18%;
    top: 5%;
    width: 64%;
    height: 59%;
  }

  .hotspot-papers {
    left: 24%;
    top: 63%;
    width: 35%;
    height: 34%;
  }

  .workbench-content {
    padding: 92px 18px 56px;
  }

  .workbench-back {
    top: auto;
    margin-left: 0;
  }

  .project-note-board {
    padding: 30px 18px;
  }

  .project-note {
    min-height: 140px;
    padding: 32px 22px 22px;
  }

  .paper-folder-display {
    margin-top: 20px;
    padding: 38px 12px 18px;
  }

  .folder-tab-row {
    left: 18px;
    top: -18px;
  }

  .folder-tab-row span {
    min-height: 28px;
    padding: 7px 9px 6px;
    font-size: 0.54rem;
  }

  .paper-sheet {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 16px 18px;
  }

  .paper-type {
    min-width: 0;
    justify-content: flex-start;
  }


  .pressed-scrapbook {
    width: min(100% - 28px, var(--max-page));
    padding: 24px 18px 30px;
  }

  .pressed-scrapbook-header h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .pressed-collection {
    padding: 24px 20px;
  }

  .pressed-list,
  .pressed-placeholder {
    max-width: calc(100% - 76px);
  }

  .specimen-miners-lettuce,
  .specimen-fern,
  .specimen-dandelion,
  .specimen-dandelion-flower,
  .specimen-mint-clover,
  .specimen-sorrel,
  .specimen-bay {
    right: -18px;
    transform: scale(0.78) rotate(var(--mobile-plant-tilt, 0deg));
    transform-origin: 100% 50%;
  }

  .specimen-miners-lettuce { --mobile-plant-tilt: 7deg; }
  .specimen-fern { --mobile-plant-tilt: 8deg; }
  .specimen-dandelion { --mobile-plant-tilt: -7deg; }
  .specimen-dandelion-flower { --mobile-plant-tilt: 8deg; }
  .specimen-mint-clover { --mobile-plant-tilt: -6deg; }
  .specimen-sorrel { --mobile-plant-tilt: -10deg; }
  .specimen-bay { --mobile-plant-tilt: 10deg; }

  .dog-eared-groups > .specimen-dog-eared {
    position: absolute;
    left: -28px;
    top: 62px;
    right: auto;
    bottom: auto;
    width: min(270px, 70vw);
    height: min(480px, 124vw);
    margin: 0;
    transform: scale(0.82) rotate(-10deg);
    transform-origin: 0 50%;
    opacity: 0.24;
  }

  .dog-eared-groups > .specimen-dog-eared-flower {
    position: absolute;
    left: auto;
    right: -46px;
    top: auto;
    bottom: 86px;
    width: min(220px, 58vw);
    height: min(348px, 92vw);
    margin: 0;
    transform: scale(0.82) rotate(8deg);
    transform-origin: 100% 80%;
    opacity: 0.18;
  }

  .photo-gallery,
  .album-gallery {
    column-count: 1;
  }

  .album-stack-text {
    display: grid;
    gap: 5px;
  }

  .photo-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-rows: 48px 1fr 38px;
    gap: 8px;
    padding: 12px;
  }

  .photo-lightbox-image {
    max-height: calc(100svh - 126px);
  }

  .photo-lightbox-button {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.55rem);
    line-height: 0.98;
  }

  .field-notes-scene {
    min-height: 100svh;
  }

  .field-notes-stage {
    display: none;
  }

  .field-notes-copy {
    left: 14px !important;
    right: auto !important;
    top: 96px;
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    height: calc(100svh - 118px);
    overflow: hidden;
    padding: 22px 20px 28px;
    font-size: clamp(0.98rem, 3.82vw, 1.08rem);
    line-height: 1.48;
    transform: none !important;
  }

  .field-notes-scene.is-mobile-page-left .field-notes-copy,
  .field-notes-scene.is-mobile-page-right .field-notes-copy {
    left: 14px !important;
    right: auto !important;
    width: calc(100vw - 28px) !important;
    transform: none !important;
  }

  .field-notes-photo {
    width: min(64%, 180px);
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .has-hummingbird-cursor,
  .has-hummingbird-cursor a,
  .has-hummingbird-cursor button,
  .has-sunlight-cursor,
  .has-sunlight-cursor a,
  .has-sunlight-cursor button {
    cursor: auto;
  }

  .hummingbird-cursor,
  .sunlight-cursor {
    display: none;
  }
}

/* Use the finished gilded bookshelf painting as the Pressed Pages landing scene. */
.pressed-library-scene {
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 248, 226, 0.02), rgba(48, 32, 21, 0.1)),
    #5f432d;
}

.pressed-library-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pressed-library-scene::before {
  z-index: 0;
  background: url("assets/images/pressed/gilded-books-pothos-background-titled-rotated-ccw-realistic-gold.png") 50% 50% / cover no-repeat;
  filter:
    blur(8px)
    saturate(0.96)
    brightness(0.96);
  opacity: 1;
  transform: scale(1.04);
}

.pressed-library-scene::after {
  z-index: 3;
  border: 1px solid rgba(64, 42, 26, 0.18);
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(38, 24, 16, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 250, 230, 0.04), rgba(54, 34, 22, 0.08));
  box-shadow:
    inset 0 0 0 12px rgba(255, 245, 218, 0.05),
    inset 0 -96px 128px rgba(38, 24, 16, 0.16);
}

.pressed-book-nav {
  position: absolute;
  z-index: 7;
  inset: 0;
  display: block;
  width: auto;
  height: auto;
  overflow: visible;
  pointer-events: auto;
  transform: none;
}

.pressed-book-nav::before,
.pressed-book-nav::after {
  content: none;
}

.pressed-book-link {
  position: absolute;
  top: var(--spine-top, 8%);
  height: var(--spine-height, 73%);
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  outline-offset: 5px;
  pointer-events: auto;
  transform: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.pressed-book-link::before {
  content: "";
  position: absolute;
  inset: 4% 5%;
  display: block;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 247, 205, 0.2), transparent 62%),
    radial-gradient(ellipse at 48% 78%, rgba(255, 223, 143, 0.13), transparent 68%),
    linear-gradient(90deg, transparent 0 4%, rgba(255, 241, 185, 0.1) 17%, rgba(255, 242, 190, 0.18) 48%, rgba(255, 237, 170, 0.1) 74%, transparent 96% 100%),
    linear-gradient(180deg, transparent 0 4%, rgba(255, 248, 214, 0.08) 16%, rgba(255, 232, 164, 0.13) 50%, rgba(86, 52, 28, 0.08) 82%, transparent 96% 100%);
  box-shadow:
    inset 8px 0 20px rgba(255, 245, 197, 0.08),
    inset -8px 0 20px rgba(61, 38, 23, 0.08),
    0 0 22px rgba(255, 226, 145, 0.12);
  filter: blur(2.5px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    filter 180ms ease;
}

.pressed-book-link::after {
  content: none;
}

.pressed-book-link span {
  display: none;
}

.pressed-book-link strong {
  display: none;
}

.pressed-book-link:hover,
.pressed-book-link:focus-visible,
.pressed-book-link.is-spine-glowing {
  background: transparent;
  box-shadow: none;
}

.pressed-book-link:hover::before,
.pressed-book-link:focus-visible::before,
.pressed-book-link.is-spine-glowing::before {
  display: block;
  opacity: 0.92;
  filter: blur(3px);
  box-shadow:
    inset 8px 0 20px rgba(255, 245, 197, 0.08),
    inset -8px 0 20px rgba(61, 38, 23, 0.08),
    0 0 26px rgba(255, 226, 145, 0.16);
}

.book-link-games {
  --spine-top: 8%;
  --spine-height: 73%;
  left: 32.6%;
  width: 15.9%;
}

.book-link-movies {
  --spine-top: 13.2%;
  --spine-height: 68%;
  left: 48.3%;
  width: 9.1%;
}

.book-link-books {
  --spine-top: 13.5%;
  --spine-height: 67.5%;
  left: 57.3%;
  width: 11.7%;
}

.book-link-misc {
  --spine-top: 21%;
  --spine-height: 60.6%;
  left: 69.4%;
  width: 6.1%;
}

/* Mobile portrait art variants: 941x1672 counterparts for the 1672x941 desktop scenes. */
@media (max-width: 820px) and (orientation: portrait) {
  .field-notes-scene {
    background:
      linear-gradient(180deg, rgba(24, 22, 14, 0.1), rgba(24, 22, 14, 0.22)),
      url("assets/images/field-notes/field-notes-scroll-mobile.png") 50% 50% / cover no-repeat,
      #2b2818;
  }

  .field-notes-copy {
    left: 19.5vw !important;
    top: 23.5svh;
    width: 62vw !important;
    max-width: 62vw !important;
    height: 45svh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px 1.8vw 32px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(52, 43, 27, 0.93);
    font-size: clamp(0.92rem, 3.35vw, 1.04rem);
    line-height: 1.52;
    scrollbar-width: thin;
    scrollbar-color: rgba(103, 75, 39, 0.36) transparent;
  }

  .field-notes-copy::before {
    content: none;
  }

  .field-notes-copy::-webkit-scrollbar {
    width: 5px;
  }

  .field-notes-copy::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(103, 75, 39, 0.32);
  }

  .field-notes-spread,
  .field-notes-spread[hidden] {
    position: static !important;
    display: block !important;
    overflow: visible;
    opacity: 1;
    transform: none !important;
  }

  .field-notes-page-copy,
  .field-notes-page-copy.is-mobile-page-active {
    position: static !important;
    display: block;
    height: auto;
    overflow: visible;
    padding: 0;
    transform: none !important;
    animation: none;
  }

  .field-notes-page-copy + .field-notes-page-copy {
    margin-top: 1rem;
  }

  .field-notes-page-copy p {
    width: 100%;
    max-width: 100%;
  }

  .field-notes-page-edge {
    display: none !important;
  }

  .field-notes-photo {
    width: min(58%, 170px);
    margin: 14px auto 16px;
  }

  .greenhouse-scene.redwoods-greenhouse-scene {
    aspect-ratio: 941 / 1672;
    min-height: min(1120px, calc(100svh - 128px));
    background:
      linear-gradient(180deg, rgba(240, 250, 244, 0.02), rgba(42, 67, 42, 0.04)),
      url("assets/images/greenhouse/greenhouse-brighter-balanced-mobile.png") 50% 50% / cover no-repeat,
      #fff7ed;
  }

  .redwoods-greenhouse-scene .greenhouse-path {
    bottom: 0;
    height: 46%;
  }

  .redwoods-greenhouse-scene .path-photography {
    left: -6%;
    width: 48%;
  }

  .redwoods-greenhouse-scene .path-dance {
    left: 27%;
    width: 46%;
    --dance-hanger-length: 44px;
  }

  .redwoods-greenhouse-scene .path-illustrations {
    right: -6%;
    width: 48%;
  }

  .redwoods-greenhouse-scene .greenhouse-path .path-label {
    top: 20%;
  }

  .pressed-library-frame,
  .workbench-frame {
    width: max(100vw, calc(100svh * 0.5628));
    height: max(100svh, calc(100vw / 0.5628));
    aspect-ratio: 941 / 1672;
    left: 50%;
  }

  .pressed-library-frame {
    left: 44.5%;
  }


  .redwoods-greenhouse-scene .greenhouse-path .path-label {
    max-width: 112px;
    padding: 6px 8px;
    font-size: 0.52rem;
  }

  .redwoods-greenhouse-scene .path-photography .path-label {
    left: 48%;
    top: 29%;
  }

  .redwoods-greenhouse-scene .path-dance .path-label {
    left: 50%;
    top: -44%;
  }

  .redwoods-greenhouse-scene .path-illustrations .path-label {
    left: 38%;
    top: 29%;
  }

  .book-link-games {
    --spine-top: 32.6%;
    --spine-height: 40.2%;
    left: 11.4%;
    width: 30.4%;
  }

  .book-link-movies {
    --spine-top: 36.8%;
    --spine-height: 35.7%;
    left: 44.4%;
    width: 17.4%;
  }

  .book-link-books {
    --spine-top: 37.8%;
    --spine-height: 34.8%;
    left: 61.4%;
    width: 18.9%;
  }

  .book-link-misc {
    --spine-top: 42.0%;
    --spine-height: 30.4%;
    left: 74.8%;
    width: 14.2%;
  }

  .hotspot-projects {
    left: 8%;
    top: 10%;
    width: 84%;
    height: 43%;
  }

  .hotspot-papers {
    left: 6%;
    top: 62%;
    width: 88%;
    height: 32%;
  }
}

@media (max-width: 560px) and (orientation: portrait) {
  .field-notes-copy {
    left: 19vw !important;
    top: 23svh;
    width: 63vw !important;
    max-width: 63vw !important;
    height: 45svh;
    padding-inline: 1.6vw;
    font-size: clamp(0.9rem, 3.36vw, 1rem);
  }

  .greenhouse-scene.redwoods-greenhouse-scene {
    min-height: min(1040px, calc(100svh - 114px));
  }
}

