:root {
  --ink: #17332d;
  --evergreen: #123f35;
  --evergreen-deep: #092b25;
  --fern: #2d6a58;
  --sky: #cce4eb;
  --paper: #fbf8ed;
  --paper-deep: #f0ead6;
  --gold: #b68a3c;
  --gold-light: #d9bd79;
  --line: rgba(18, 63, 53, 0.22);
  --muted: #60716a;
  --white: #fffef9;
  --shadow: 0 24px 70px rgba(9, 43, 37, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(204, 228, 235, 0.55), transparent 28rem),
    linear-gradient(180deg, var(--paper) 0%, #f7f3e7 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--white);
  border: 2px solid var(--evergreen);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(9, 43, 37, 0.97);
  border-bottom: 3px double var(--gold-light);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-note {
  margin-top: 0.48rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font: inherit;
}

.site-nav { display: flex; align-items: center; gap: 0.2rem; }
.site-nav a {
  padding: 0.7rem 0.7rem;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,.82);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] { color: var(--white); border-color: var(--gold-light); }

main { overflow: hidden; }

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(204, 228, 235, .55), transparent 45%),
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(18,63,53,.035) 29px 30px);
}

.hero-inner,
.page-hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, .72fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(2.75rem, 5vw, 5rem) 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--fern);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.35rem;
  color: var(--evergreen-deep);
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  letter-spacing: -0.035em;
}

.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { margin-bottom: 0.55rem; font-size: 1.35rem; }

.lede {
  max-width: 42rem;
  margin: 0 0 1.8rem;
  color: #375149;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
}

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .75rem 1.2rem;
  border: 2px solid var(--evergreen);
  border-radius: 3px;
  background: var(--evergreen);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}
.button:hover, .button:focus-visible { background: var(--evergreen-deep); }
.button-secondary { background: transparent; color: var(--evergreen); }
.button-secondary:hover, .button-secondary:focus-visible { background: rgba(18,63,53,.08); }
.button-muted { cursor: default; opacity: .66; }

.cover-frame {
  position: relative;
  width: min(100%, 400px);
  justify-self: center;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
  transform: none;
}
.cover-frame::after {
  content: "";
  position: absolute;
  inset: 4px;
  pointer-events: none;
  border: 1px solid var(--evergreen);
}

.cover-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cover-frame video { width: 100%; }

.hero-loop {
  width: min(100%, 400px);
  margin: 0;
  padding: 10px;
  overflow: hidden;
  transform: none;
}

.hero-loop::after { display: none; }

.hero-loop video {
  display: block;
  height: auto;
  aspect-ratio: 1024 / 1336;
  object-fit: contain;
}

.section { padding: clamp(4.2rem, 8vw, 7rem) 0; }
.section-dark { background: var(--evergreen-deep); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-sky { background: var(--sky); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(255,255,255,.24);
  border: 1px solid rgba(255,255,255,.25);
}
.stat {
  display: flex;
  min-height: 145px;
  padding: 1.3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,.055);
}
.stat strong {
  display: block;
  margin-bottom: .15rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}
.stat span { color: rgba(255,255,255,.82); font-size: .92rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.card {
  height: 100%;
  padding: 1.5rem;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
}
.card p:last-child { margin-bottom: 0; }
.section-dark .card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
  border-top-color: var(--gold-light);
}
.section-dark .card p { color: rgba(255,255,255,.82); }

.field-image {
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
}
.field-image img { width: 100%; height: auto; object-fit: contain; }
.home-field-image-crop {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.home-field-image-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.caption { margin: .75rem 0 0; color: var(--muted); font-size: .85rem; }

.showcase-intro {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}
.showcase-headline { text-align: center; }
.showcase-headline span { display: block; }
.showcase-intro p:last-child { margin-bottom: 0; }

.page-fan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.75rem, 2vw, 1.15rem);
  width: min(100%, 560px);
  margin: 0 auto 1.75rem;
}
.fan-card {
  width: 100%;
  min-width: 0;
  padding: 5px;
  cursor: zoom-in;
  background: var(--white);
  border: 0;
  box-shadow: 0 12px 28px rgba(9, 43, 37, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fan-card:hover,
.fan-card:focus-visible {
  box-shadow: 0 18px 38px rgba(9, 43, 37, .24);
  transform: translateY(-6px) scale(1.025);
}
.fan-card:focus-visible { outline: 3px solid var(--evergreen); outline-offset: 3px; }
.fan-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2400 / 3150;
  object-fit: contain;
  border: 1px solid var(--gold);
}
.showcase-actions { justify-content: center; margin-top: .75rem; }

/* Homepage narrative */
.home-page .hero-inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, .62fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(3rem, 5vw, 4.8rem) 0;
}
.home-page .hero-copy { position: relative; z-index: 1; }
.hero-definition {
  margin: .15rem 0 0;
  color: #896322;
  font-size: clamp(.82rem, 1.4vw, 1rem);
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.home-page .hero h1 {
  max-width: 620px;
  margin-top: 1.25rem;
  font-size: clamp(1.85rem, 3.7vw, 3.15rem);
  letter-spacing: -.015em;
  line-height: 1.12;
}
.home-page .hero h1 span { display: block; }
.home-page .hero .lede { max-width: 610px; }

@media (min-width: 701px) {
  .home-page:not(.trees-page) .hero h1 {
    max-width: none;
    white-space: nowrap;
  }
  .home-page:not(.trees-page) .hero h1 span { display: inline; }
  .home-page:not(.trees-page) .hero h1 span + span { margin-left: .22em; }
}

.hero-choices {
  flex-wrap: nowrap;
  gap: .75rem;
}
.hero-choices .button {
  min-width: 180px;
  border-color: var(--evergreen-deep);
  background: rgba(255, 254, 249, .72);
  color: var(--evergreen-deep);
}
.hero-choices .button:hover,
.hero-choices .button:focus-visible {
  background: var(--evergreen-deep);
  color: var(--white);
}
.hero-choice-separator {
  color: #896322;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .92rem;
  font-style: italic;
  font-weight: 700;
}
.home-page .hero-loop {
  width: min(100%, 370px);
  align-self: start;
  margin-top: .5rem;
}

.trees-page .trees-hero .hero-inner {
  padding-top: clamp(2.2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.6rem, 5vw, 4rem);
}
.trees-page .trees-hero h1 {
  margin-top: .35rem;
  margin-bottom: .75rem;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
}
.trees-page .trees-hero .lede { margin-bottom: .8rem; }
.trees-hero-note {
  max-width: 580px;
  margin: 0 0 1.55rem;
  color: #375149;
}
.trees-page .trees-hero .hero-loop { margin-top: 0; }
.trees-page .trees-sections { padding-bottom: clamp(5.2rem, 9vw, 8.5rem); }

.home-introduction.section { padding: clamp(3.1rem, 5vw, 4.7rem) 0; }
.home-introduction .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}
.home-introduction-copy h2 { max-width: 620px; font-size: clamp(2rem, 3.8vw, 3.15rem); }
.home-introduction-copy h2 span { display: block; }
.home-introduction-copy p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}
body.home-page:not(.trees-page) .home-introduction-copy { text-align: center; }
body.home-page:not(.trees-page) .home-introduction-copy h2 { margin-bottom: .65rem; }
body.home-page:not(.trees-page) .home-introduction-copy h2 span:last-child {
  margin-top: .08em;
  font-size: .78em;
}
body.home-page:not(.trees-page) .home-introduction-copy h2,
body.home-page:not(.trees-page) .home-introduction-copy p:last-child {
  margin-left: auto;
  margin-right: auto;
}
.collection-counts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1rem 0 .4rem;
  border-top: 1px solid rgba(217,189,121,.7);
  border-bottom: 1px solid rgba(217,189,121,.35);
}
.collection-count {
  min-width: 0;
  padding: .4rem .75rem .8rem;
  text-align: center;
}
.collection-count + .collection-count { border-left: 1px solid rgba(255,255,255,.2); }
.collection-count strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}
.collection-count span {
  display: block;
  margin-top: .45rem;
  color: rgba(255,255,255,.76);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-landscapes { padding-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.landscape-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
  width: min(100%, 880px);
  margin: 0 auto;
  padding: .35rem 0;
  counter-reset: landscape-categories;
  list-style: none;
  border-top: 1px solid rgba(182, 138, 60, .7);
  border-bottom: 1px solid rgba(182, 138, 60, .45);
}
.landscape-category-list li {
  counter-increment: landscape-categories;
  border-bottom: 1px solid rgba(18, 63, 53, .12);
}
.landscape-category-button {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) 38px;
  gap: .7rem;
  width: 100%;
  min-height: 70px;
  padding: .55rem .35rem;
  align-items: center;
  cursor: zoom-in;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  transition: background .18s ease;
}
.landscape-category-button::before {
  content: counter(landscape-categories, decimal-leading-zero);
  color: var(--fern);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.landscape-category-button img {
  width: 38px;
  aspect-ratio: 16 / 21;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 10px rgba(9, 43, 37, .13);
}
.landscape-category-button:hover,
.landscape-category-button:focus-visible {
  background: rgba(204, 228, 235, .3);
  outline: 2px solid var(--gold-light);
  outline-offset: -2px;
}
.landscape-hover-preview {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 80;
  width: min(310px, 72vw, 66vh);
  padding: 5px;
  pointer-events: none;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 24px 70px rgba(4, 18, 16, .38);
  transform: translate(-50%, -50%) scale(.975);
  transition: opacity .18s ease, transform .18s ease;
}
.landscape-hover-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.landscape-hover-preview img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 66svh;
  margin: 0 auto;
  object-fit: contain;
  border: 1px solid var(--gold);
}
.landscape-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  width: min(100%, 890px);
  margin: 3rem auto 4.25rem;
  align-items: start;
}
.landscape-card {
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: transform .22s ease;
}
.landscape-card-first { transform: translateY(1.8rem) rotate(-1.3deg); }
.landscape-card-featured { transform: translateY(-.3rem); }
.landscape-card-last { transform: translateY(1.35rem) rotate(1.3deg); }
.landscape-card:hover,
.landscape-card:focus-visible { transform: translateY(-.55rem); outline: none; }
.landscape-card img {
  width: 100%;
  padding: 5px;
  aspect-ratio: 16 / 21;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 18px 44px rgba(9,43,37,.17);
}
.landscape-card:hover img,
.landscape-card:focus-visible img { box-shadow: 0 24px 54px rgba(9,43,37,.25); }
.landscape-card:focus-visible img { outline: 3px solid var(--evergreen); outline-offset: 4px; }
.landscape-card > span {
  display: block;
  max-width: 15rem;
  margin: 1rem auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.landscape-card small {
  display: block;
  margin-bottom: .32rem;
  color: var(--fern);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.centered-actions { justify-content: center; }

.section-paper-deep {
  background:
    linear-gradient(rgba(240,234,214,.95), rgba(240,234,214,.95)),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(18,63,53,.04) 33px 34px);
}
.home-specimens.section {
  padding-top: clamp(2.4rem, 4vw, 3.6rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.5rem);
}
.home-specimens .showcase-intro > .eyebrow {
  margin-bottom: .7rem;
  font-size: clamp(.92rem, 1.7vw, 1.15rem);
  letter-spacing: .18em;
}
.home-specimens .showcase-intro { margin-bottom: 1.15rem; }
.home-specimens .page-fan { margin-bottom: 0; }
.home-page .page-fan { width: min(100%, 700px); gap: clamp(.75rem, 2vw, 1.3rem); }
.home-page .fan-card {
  display: grid;
  gap: .45rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.home-page .fan-card:hover,
.home-page .fan-card:focus-visible { box-shadow: none; }
.home-page .fan-card img {
  padding: 4px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(9, 43, 37, .16);
}
.fan-label {
  margin: 0;
  color: var(--evergreen-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
}

.home-activities {
  position: relative;
  border-top: 3px double rgba(217,189,121,.72);
  border-bottom: 3px double rgba(217,189,121,.72);
  background:
    radial-gradient(circle at 50% -12%, rgba(45,106,88,.58), transparent 38rem),
    linear-gradient(180deg, var(--evergreen-deep), #061f1b);
}
.home-activities.section {
  padding-top: clamp(2.4rem, 4vw, 3.7rem);
  padding-bottom: clamp(2.8rem, 5vw, 4.5rem);
}
.activity-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  width: min(100%, 790px);
  margin: 0 auto;
  align-items: center;
  text-align: center;
}
.activity-intro h2 {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: clamp(2.4rem, 5.4vw, 4.7rem);
}
.activity-intro > p {
  max-width: 610px;
  margin: 0 auto;
  color: rgba(255,255,255,.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}
.activity-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(.75rem, 2vw, 1.35rem);
  margin: clamp(3rem, 6vw, 5.25rem) auto 3rem;
}
.activity-stack {
  min-width: 0;
  padding: 1rem .2rem .2rem;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}
.activity-sheet {
  position: relative;
  display: block;
  width: calc(100% - 10px);
  aspect-ratio: 2400 / 3150;
  margin: 0 auto;
}
.activity-sheet img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}
.activity-answer {
  opacity: .58;
  transform: translate(10px, -10px) rotate(1.7deg);
  filter: sepia(.12);
}
.activity-page {
  transform: translate(-3px, 4px) rotate(-.45deg);
  transition: transform .22s ease, box-shadow .22s ease;
}
.activity-stack:hover .activity-page,
.activity-stack:focus-visible .activity-page {
  box-shadow: 0 24px 46px rgba(0,0,0,.42);
  transform: translate(-5px, -4px) rotate(-1deg);
}
.activity-stack:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 5px; }
.activity-label {
  display: block;
  margin-top: 1.15rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
}
.activity-label small {
  display: block;
  margin-bottom: .34rem;
  color: var(--gold-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.activity-totals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 640px);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  border-top: 1px solid rgba(217,189,121,.52);
  border-bottom: 1px solid rgba(217,189,121,.26);
}
.activity-totals p {
  display: grid;
  grid-template-columns: 1fr;
  gap: .42rem;
  align-items: center;
  justify-items: center;
  margin: 0;
  padding: 1.15rem 1.35rem 1.25rem;
  text-align: center;
}
.activity-totals p + p { border-left: 1px solid rgba(255,255,255,.18); }
.activity-totals strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}
.activity-totals span {
  max-width: 14rem;
  color: rgba(255,255,255,.76);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-color-story .showcase-intro { max-width: 800px; }
.home-color-story .swamp-tupelo-pair { max-width: 790px; }

.home-future .section-inner {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.home-future-visual {
  position: relative;
  min-height: 520px;
  width: min(100%, 500px);
  justify-self: center;
}
.home-future-visual img {
  position: absolute;
  width: 57%;
  padding: 5px;
  aspect-ratio: 16 / 21;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
}
.home-future-visual img:first-child { top: 0; left: 2%; transform: rotate(-4deg); }
.home-future-visual img:last-child { right: 2%; bottom: 0; transform: rotate(4deg); }
.home-future-copy p:not(.eyebrow) {
  max-width: 610px;
  color: #375149;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}
.home-future-copy .button-row { margin-top: 1.7rem; gap: 1.15rem; }
.text-link {
  padding: .55rem .1rem .35rem;
  color: var(--evergreen);
  border-bottom: 2px solid var(--gold);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover,
.text-link:focus-visible { color: var(--evergreen-deep); border-bottom-color: var(--evergreen); }

.home-closing {
  padding: clamp(2.6rem, 5vw, 4rem) 0;
  color: var(--white);
  background: var(--evergreen-deep);
  border-top: 3px double var(--gold-light);
}
.home-closing .section-inner {
  display: grid;
  min-height: clamp(5.5rem, 12vw, 8rem);
  align-items: center;
  justify-items: center;
  text-align: center;
}
.home-closing p {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-style: italic;
  letter-spacing: .045em;
  line-height: 1.3;
}
.home-closing a {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}
.home-closing a span { margin-left: .4rem; color: var(--gold-light); }

.trees-hero-actions { margin-top: -.35rem; }
.tree-contact-closing .section-inner { gap: 1.15rem; }
.tree-closing-invitation {
  display: grid;
  justify-items: center;
}
.tree-field-note-link {
  display: grid;
  gap: .28rem;
  padding: .25rem .5rem .32rem;
  color: var(--white);
  border-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}
.home-closing .tree-field-note-link span {
  margin-left: 0;
  color: inherit;
}
.home-closing .tree-field-note-link span:last-child { color: var(--gold-light); }
.tree-field-note-link:hover span:first-child,
.tree-field-note-link:focus-visible span:first-child { color: var(--gold-light); }

.color-reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.swamp-tupelo-pair {
  max-width: 740px;
  gap: clamp(1rem, 3vw, 1.75rem);
}
.page-preview {
  display: block;
  width: 100%;
  padding: 6px;
  cursor: default;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
  text-align: center;
}
.page-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 21;
  max-height: 680px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}
.color-reveal { appearance: none; cursor: pointer; }
.color-reveal-stack {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 21;
  overflow: hidden;
  background: #fff;
}
.color-reveal-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.color-reveal-layer {
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.color-reveal:hover .color-reveal-layer,
.color-reveal:focus .color-reveal-layer,
.color-reveal:focus-visible .color-reveal-layer { opacity: 1; }
.color-reveal:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.static-preview { cursor: default; }

.divider-section { padding-top: 2rem; }
.divider-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.divider-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: .8rem;
  height: 100%;
  padding: 8px 8px 1rem;
  cursor: zoom-in;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  box-shadow: 0 12px 32px rgba(9, 43, 37, .1);
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
}
.divider-card:hover,
.divider-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(9, 43, 37, .18);
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}
.divider-card img { width: 100%; aspect-ratio: 16 / 21; object-fit: contain; background: #fff; }
.divider-card span { padding: 0 .35rem; font-size: .9rem; font-weight: 700; line-height: 1.35; }
.divider-card b { margin-right: .35rem; color: var(--fern); font-family: Georgia, "Times New Roman", serif; }

.mini-color-pair {
  position: relative;
  min-height: 470px;
  width: min(100%, 470px);
  justify-self: center;
}
.mini-color-pair img {
  position: absolute;
  top: 0;
  width: 55%;
  aspect-ratio: 16 / 21;
  object-fit: contain;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
}
.mini-color-pair img:first-child { left: 4%; transform: rotate(-6deg); }
.mini-color-pair img:last-child { right: 4%; top: 2rem; transform: rotate(6deg); }

.image-lightbox {
  width: min(96vw, 82svh, 900px);
  max-height: 96svh;
  padding: 5px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 0;
  box-shadow:
    0 0 0 1px rgba(217, 189, 121, .45),
    0 18px 48px rgba(0, 0, 0, .32),
    0 6px 18px rgba(9, 43, 37, .2);
}
.image-lightbox::backdrop { background: rgba(4, 18, 16, .84); backdrop-filter: blur(4px); }
.lightbox-shell { display: grid; grid-template-rows: minmax(0, 1fr) auto; max-height: calc(96svh - 10px); }
.lightbox-stage { display: flex; min-height: 0; overflow: hidden; align-items: center; justify-content: center; padding: 0; text-align: center; background: #fff; }
.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(96svh - 12px);
  margin: 0 auto;
  object-fit: contain;
  cursor: pointer;
  background: #fff;
  border: 2px solid var(--gold);
}
.image-lightbox.has-actions .lightbox-stage img { max-height: calc(96svh - 72px); }
.image-lightbox.is-divider {
  width: fit-content;
  max-width: calc(100vw - 16px);
  max-height: calc(100dvh - 16px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.image-lightbox.is-divider:focus,
.image-lightbox.is-divider:focus-visible {
  outline: 0;
}
.image-lightbox.is-divider .lightbox-shell {
  width: fit-content;
  max-width: 100%;
  max-height: none;
}
.image-lightbox.is-divider .lightbox-stage {
  width: fit-content;
  max-width: 100%;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
}
.image-lightbox.is-divider .lightbox-stage img {
  display: block;
  width: auto;
  max-width: calc(100vw - 24px);
  height: auto;
  max-height: calc(100dvh - 24px);
  margin: 0;
  padding: 2px;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--gold);
  outline: 0;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .36);
}
.image-lightbox.is-divider .lightbox-stage img:focus,
.image-lightbox.is-divider .lightbox-stage img:focus-visible {
  outline: 0;
  box-shadow: none;
}
.lightbox-actions { display: flex; justify-content: center; padding: .55rem .75rem; border-top: 1px solid var(--line); }
.lightbox-actions[hidden] { display: none; }
.lightbox-color-toggle[hidden] { display: none; }

.page-hero-inner { padding: clamp(3.5rem, 8vw, 6.5rem) 0 3rem; }
.page-hero-inner p { max-width: 46rem; }

.section-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .75rem 2rem;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: sections;
  list-style: none;
}
.section-list li {
  counter-increment: sections;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.section-list li::before {
  content: counter(sections, decimal-leading-zero);
  color: var(--fern);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.quote {
  margin: 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 4px solid var(--gold);
  color: var(--evergreen-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
}

.series-hero .page-hero-inner {
  padding: clamp(1.8rem, 4vw, 3.2rem) 0 clamp(.8rem, 1.5vw, 1.2rem);
  text-align: center;
}
.series-hero .page-hero-inner p { margin-right: auto; margin-left: auto; }
.series-hero h1 { margin-bottom: .9rem; font-size: clamp(3.2rem, 8vw, 6.2rem); }
.series-hero .lede { margin-bottom: 0; }
.series-showcase { padding: .45rem 0 0; }
.series-showcase .series-volume-fan { width: min(100%, 540px); margin: 0 auto; transform: translateY(-9px); }
.series-introduction { padding: 1.75rem 0 clamp(1.7rem, 3vw, 2.4rem); }
.series-introduction-copy { max-width: 800px; text-align: center; }
.series-introduction h2 { margin-bottom: 1.4rem; }
.series-principles { padding: clamp(2.4rem, 5vw, 4rem) 0; }
.series-principles .grid-3 { align-items: stretch; }
.series-principles .card { text-align: center; }
.series-principles .card h3 { color: var(--gold-light); }
.series-footer { border-bottom: 3px double var(--gold-light); }
.series-footer .footer-inner {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
}
.series-footer .footer-note {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.92rem, 3.5vw, 1.18rem);
  letter-spacing: .055em;
}
.series-footer .footer-contact { margin-top: .15rem; }
.series-volume-fan {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1.9 / 1;
  justify-self: center;
}
.series-volume-fan img {
  position: absolute;
  bottom: 4%;
  width: 31%;
  aspect-ratio: 16 / 21;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 22px 40px rgba(9, 43, 37, .34), 0 4px 10px rgba(9, 43, 37, .24);
  transform-origin: 50% 100%;
}
.series-volume-fan img:nth-child(1) { left: 1%; transform: rotate(-16deg); }
.series-volume-fan img:nth-child(2) { left: 14%; transform: rotate(-10deg); }
.series-volume-fan img:nth-child(3) { left: 27%; transform: rotate(-4deg); }
.series-volume-fan img:nth-child(4) { left: 40%; transform: rotate(4deg); }
.series-volume-fan img:nth-child(5) { left: 53%; transform: rotate(10deg); }
.series-volume-fan img:nth-child(6) { left: 66%; transform: rotate(16deg); }

.volume-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; }
.volume-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
}
.volume-card.featured { min-height: 540px; color: var(--white); background: var(--evergreen-deep); }
.volume-card.featured > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
  filter: contrast(1.1);
}
.volume-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,43,37,.1), rgba(9,43,37,.96));
}
.volume-card-content { position: relative; z-index: 1; }
.future-feature { min-height: 0; }
.future-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.65rem, 2vw, 1rem);
  margin-top: 1.5rem;
}
.future-preview {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  line-height: 0;
}
.future-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 21;
  object-fit: contain;
  background: var(--white);
}
.future-preview:hover,
.future-preview:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}
.status-pill {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .28rem .6rem;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-panel {
  max-width: 760px;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--evergreen);
  box-shadow: var(--shadow);
}
.contact-row { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row strong { display: block; color: var(--evergreen); }

.contact-hero {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(204, 228, 235, .8), transparent 32rem),
    var(--paper);
}
.contact-hero .page-hero-inner {
  max-width: 790px;
  padding: clamp(2.4rem, 5vw, 4rem) 0 1.35rem;
}
.contact-hero h1 { margin-bottom: .65rem; }
.contact-hero .lede { max-width: 680px; margin: 0 auto; }
.contact-curator-note strong { color: var(--evergreen-deep); }
.contact-section { padding-top: clamp(.75rem, 1.5vw, 1.25rem); }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, .8fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
}
.field-note-form {
  padding: clamp(1.35rem, 4vw, 2.8rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--evergreen);
  box-shadow: var(--shadow);
}
.form-heading { margin-bottom: 1.5rem; text-align: center; }
.form-heading h2 {
  margin: .15rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: .01em;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  margin-bottom: .35rem;
  color: var(--evergreen-deep);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .72rem .78rem;
  color: var(--ink);
  background: #fffef9;
  border: 1px solid rgba(18, 63, 53, .38);
  border-radius: 2px;
  font: inherit;
  line-height: 1.35;
}
.form-field textarea { min-height: 250px; resize: vertical; }
.field-note-form textarea::placeholder {
  color: #61736c;
  opacity: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(217, 189, 121, .62);
  outline-offset: 2px;
  border-color: var(--evergreen);
}
.field-note-submit {
  display: block;
  width: 180px;
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
  border-color: var(--gold);
}
.form-preview-message {
  margin-top: 1rem;
  padding: .9rem 1rem;
  color: var(--evergreen-deep);
  background: rgba(217, 189, 121, .18);
  border-left: 4px solid var(--gold);
  font-size: .88rem;
  line-height: 1.5;
}
.form-preview-message strong,
.form-preview-message span { display: block; }
.form-preview-message a { color: var(--evergreen); font-weight: 750; }
.contact-aside {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  color: rgba(255,255,255,.86);
  text-align: center;
  background: var(--evergreen-deep);
  border: 1px solid var(--gold);
  box-shadow: 0 18px 45px rgba(9, 43, 37, .18);
}
.contact-side-column {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  height: 100%;
}
.contact-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  align-self: end;
  margin: 0;
}
.contact-image-pair img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 30px rgba(9, 43, 37, .15);
}
.contact-aside .eyebrow { color: var(--gold-light); }
.contact-aside h2 { margin: .15rem 0 .7rem; color: var(--white); }
.contact-email-link {
  display: inline-block;
  white-space: nowrap;
  overflow-wrap: normal;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.9rem, 1.35vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -.015em;
}
.contact-email-link:hover,
.contact-email-link:focus-visible { color: var(--white); }
.contact-reassurance { margin: 1.5rem 0; font-size: .92rem; }
.contact-quote {
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  color: var(--white);
  border-top: 1px solid rgba(217, 189, 121, .5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-style: italic;
}
.contact-footer { border-bottom: 3px double var(--gold-light); }
.contact-footer .footer-inner {
  flex-direction: column;
  gap: .15rem;
  align-items: center;
  text-align: center;
}
.contact-footer .footer-note { margin: 0; }
.contact-footer .footer-contact { margin-top: .45rem; }

.site-footer {
  padding: 2.4rem 0;
  color: rgba(255,255,255,.78);
  background: var(--evergreen-deep);
  border-top: 3px double var(--gold-light);
}
.footer-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}
.footer-mark { color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; letter-spacing: .08em; }
.footer-note { margin: .35rem 0 0; font-size: .83rem; }
.tree-footer { padding: 1.8rem 0 2rem; }
.tree-footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: .48rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-feedback {
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.footer-feedback:hover,
.footer-feedback:focus-visible { color: var(--white); }
.footer-contact {
  color: rgba(255,255,255,.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  letter-spacing: .06em;
  text-decoration: none;
}
.footer-contact:hover,
.footer-contact:focus-visible { color: var(--gold-light); }

.return-to-canopy {
  position: fixed;
  right: .45rem;
  bottom: calc(.65rem + env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 4px;
  align-items: center;
  justify-items: center;
  cursor: pointer;
  color: var(--white);
  background: rgba(9, 43, 37, .96);
  border: 1px solid rgba(217, 189, 121, .92);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(4, 18, 16, .28), inset 0 0 0 1px rgba(255, 254, 249, .08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.96);
  transition: opacity .24s ease, transform .24s ease, background .2s ease, box-shadow .2s ease;
  visibility: hidden;
}
.return-to-canopy.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}
.return-to-canopy:hover,
.return-to-canopy:focus-visible {
  background: rgba(18, 63, 53, .99);
  box-shadow: 0 18px 42px rgba(4, 18, 16, .36), 0 0 0 3px rgba(217, 189, 121, .18);
  outline: 0;
  transform: translateY(-2px);
}
.return-to-canopy-progress {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}
.return-to-canopy-progress svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}
.return-to-canopy-progress circle {
  fill: none;
  stroke-width: 1.8;
}
.return-to-canopy-track { stroke: rgba(255, 254, 249, .18); }
.return-to-canopy-meter {
  stroke: var(--gold-light);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  transition: stroke-dashoffset .12s linear;
}
.return-to-canopy-arrow {
  position: relative;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-1px);
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: .75rem 1rem 1rem;
    background: var(--evergreen-deep);
    border-bottom: 3px double var(--gold-light);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: .8rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-copy .button-row { justify-content: center; }
  .cover-frame { max-width: 390px; transform: none; }
  .hero-loop { max-width: 380px; }
  .home-page .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .home-page .hero-copy { width: 100%; }
  .home-page .hero-loop { margin-top: 0; }
  .home-introduction .section-inner { grid-template-columns: 1fr; align-items: start; }
  .activity-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2rem; }
  .home-future .section-inner { grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: 2.5rem; }
  .home-future-visual { min-height: 440px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .divider-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .trees-volume-page .home-introduction.section { padding-top: 1.55rem; padding-bottom: 1.55rem; }
  .hero-inner, .page-hero-inner, .section-inner { width: min(100% - 1.5rem, 1120px); }
  .header-inner { width: min(100% - 1.25rem, 1180px); min-height: 68px; }
  .site-nav { top: 68px; }
  .brand-note { font-size: .61rem; }
  .grid-2, .volume-grid, .section-list { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 120px; }
  .hero-loop { max-width: 292px; }
  .home-page .hero-inner { gap: .7rem; padding: .85rem 0 1.15rem; }
  .home-page .hero h1 {
    max-width: 100%;
    margin-top: .7rem;
    margin-bottom: .75rem;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.65rem, 6.7vw, 2.05rem);
  }
  .home-page .hero .lede { margin-bottom: 0; font-size: 1.02rem; line-height: 1.45; }
  .hero-definition { margin-top: .05rem; font-size: .72rem; letter-spacing: .07em; }
  .hero-choices { gap: .45rem; }
  .hero-choices .button {
    min-width: 0;
    min-height: 46px;
    padding: .6rem .7rem;
    font-size: .82rem;
  }
  .hero-choice-separator { font-size: .8rem; }
  .home-page .hero-loop { width: min(100%, clamp(220px, 34svh, 292px)); margin-top: 0; }
  .trees-page .trees-hero .hero-inner { padding: .85rem 0 1.15rem; }
  .trees-page .trees-hero h1 {
    margin-top: .2rem;
    margin-bottom: .45rem;
    font-size: clamp(2.45rem, 10vw, 3rem);
  }
  .trees-page .trees-hero .lede { margin-bottom: .45rem; }
  .trees-page .trees-hero .trees-hero-note { margin-bottom: .8rem; font-size: .92rem; line-height: 1.4; }
  .trees-page .trees-hero .button { min-height: 42px; padding: .55rem .85rem; font-size: .86rem; }
  .collection-counts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-count:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding-top: 1rem; }
  .collection-count:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); padding-top: 1rem; }
  .trees-volume-page .home-landscapes { padding-top: calc(4.2rem - 5px); }
  .landscape-triptych { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .55rem; margin-top: 2rem; }
  .landscape-category-list { grid-template-columns: 1fr; }
  .landscape-category-button { grid-template-columns: 2.1rem minmax(0, 1fr) 32px; min-height: 60px; padding: .42rem .25rem; font-size: .9rem; }
  .landscape-category-button img { width: 32px; }
  .landscape-card-first { transform: translateY(.9rem) rotate(-1deg); }
  .landscape-card-last { transform: translateY(.75rem) rotate(1deg); }
  .landscape-card > span { margin-top: .7rem; font-size: .75rem; }
  .landscape-card small { font-size: .56rem; letter-spacing: .07em; }
  .home-page .page-fan { gap: .55rem; }
  .home-page .fan-card { gap: .35rem; padding: 0; }
  .fan-label { font-size: .875rem; }
  .activity-intro { grid-template-columns: 1fr; gap: 1.25rem; }
  .activity-intro h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .activity-intro > p { font-size: 1.02rem; }
  .activity-gallery { gap: .7rem; row-gap: 1.8rem; margin-top: 2.5rem; }
  .trees-volume-page .home-activities.section { padding-bottom: .9rem; }
  .trees-volume-page .activity-gallery { margin-bottom: .9rem; }
  .activity-stack { padding-top: .7rem; }
  .activity-answer { transform: translate(6px, -7px) rotate(1.5deg); }
  .activity-label { margin-top: .85rem; font-size: .875rem; }
  .activity-label small { font-size: .75rem; letter-spacing: .07em; }
  .activity-totals { grid-template-columns: 1fr; }
  .activity-totals p { padding: .95rem .65rem; }
  .activity-totals p + p { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .home-future .section-inner { grid-template-columns: 1fr; }
  .home-future-visual { min-height: 425px; width: min(100%, 410px); }
  .home-future-copy { text-align: center; }
  .home-future-copy .button-row { justify-content: center; }
  .home-closing .section-inner { display: grid; gap: 1rem; text-align: center; }
  .footer-inner { display: block; }
  .footer-inner > :last-child { margin-top: 1rem; }
  .contact-page .contact-hero .page-hero-inner { padding: 1.25rem 0 1.5rem; }
  .contact-page .contact-hero .eyebrow { margin-bottom: .35rem; font-size: .72rem; }
  .contact-page .contact-hero h1 { margin-bottom: .45rem; font-size: clamp(2.2rem, 11vw, 3.1rem); }
  .contact-page .contact-hero .lede { font-size: 1.03rem; line-height: 1.45; }
  .contact-page .contact-section { padding-top: 1rem; padding-bottom: 3rem; }
  .contact-page .field-note-form {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }
  .contact-page .field-note-form::before {
    content: "";
    position: absolute;
    inset: -1.5rem -1rem;
    z-index: 0;
    pointer-events: none;
    background: url("/assets/contact-ten-worlds-border.png") center / 100% 100% no-repeat;
    mix-blend-mode: multiply;
    opacity: .18;
  }
  .contact-page .field-note-form::after {
    content: "";
    position: absolute;
    inset: -1.5rem -1rem;
    z-index: 2;
    pointer-events: none;
    background: url("/assets/contact-ten-worlds-border.png") center / 100% 100% no-repeat;
    mix-blend-mode: multiply;
    opacity: .1;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 13%, transparent 29%, transparent 71%, #000 87%, #000 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 13%, transparent 29%, transparent 71%, #000 87%, #000 100%);
  }
  .contact-page .field-note-form > * {
    position: relative;
    z-index: 1;
  }
  .contact-page .form-field input,
  .contact-page .form-field select,
  .contact-page .form-field textarea {
    background: rgba(255, 254, 249, .92);
  }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .field-note-submit { width: 100%; }
  .contact-footer .footer-inner { display: flex; }
  .contact-footer .footer-inner > :last-child { margin-top: .45rem; }
  .color-reference-grid { grid-template-columns: 1fr; }
  .color-reference-grid.swamp-tupelo-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
  .page-preview img { height: auto; max-height: 75vh; }
  .color-reveal-stack img { height: 100%; max-height: none; }
  .divider-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
  .divider-card span { font-size: .78rem; }
  .page-fan { gap: .55rem; width: min(100%, 500px); }
  .fan-card { padding: 3px; }
  .fan-card:hover,
  .fan-card:focus-visible { transform: translateY(-4px); }
  .mini-color-pair { min-height: 390px; }
  .return-to-canopy {
    right: .3rem;
    bottom: calc(.55rem + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    padding: 3px;
  }
  .return-to-canopy-progress { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .color-reveal-layer { transition: none; }
  .activity-page { transition: none; }
  .landscape-hover-preview { transition: none; }
  .return-to-canopy,
  .return-to-canopy-meter { transition: none; }
}

/* Future volumes — compact cover-led trail */
.future-page .future-hero {
  padding-top: clamp(2rem, 5vw, 3.6rem);
  padding-bottom: clamp(1.9rem, 4.5vw, 3.2rem);
  text-align: center;
}

.future-page .future-hero .page-hero-inner { max-width: 860px; padding: 0; }
.future-page .future-hero .eyebrow { margin-bottom: .3rem; }
.future-page .future-hero h1 { margin-bottom: .65rem; }
.future-page .future-hero .lede { max-width: 760px; margin: 0 auto .55rem; }

.future-timing-note {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: .94rem;
}

.future-volume-section { padding-block: clamp(2rem, 5vw, 4rem); }

.future-volume-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 1040px;
  margin: 0 auto;
}

.future-volume-card {
  display: grid;
  grid-template-columns: minmax(112px, 34%) 1fr;
  align-items: center;
  gap: clamp(.9rem, 2.3vw, 1.45rem);
  min-width: 0;
  padding: clamp(.8rem, 2vw, 1.15rem);
  color: var(--ink);
  background: rgba(255, 254, 249, .86);
  border: 1px solid rgba(182, 138, 60, .55);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(9, 43, 37, .12);
  text-decoration: none;
}

.future-volume-card:nth-child(even) .future-volume-cover {
  grid-column: 2;
  grid-row: 1;
}

.future-volume-card:nth-child(even) .future-volume-copy {
  grid-column: 1;
  grid-row: 1;
}

.future-volume-card-live {
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(9, 43, 37, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.future-volume-card-live:hover,
.future-volume-card-live:focus-visible {
  outline: 3px solid rgba(182, 138, 60, .35);
  outline-offset: 3px;
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(9, 43, 37, .22);
}

.future-volume-cover {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 21;
  background: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 10px 24px rgba(9, 43, 37, .2);
}

.future-volume-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.future-card-color {
  opacity: 0;
  animation: future-volume-reveal 18s ease-in-out infinite;
}

.future-volume-card:nth-child(2) .future-card-color { animation-delay: 3s; }
.future-volume-card:nth-child(3) .future-card-color { animation-delay: 6s; }
.future-volume-card:nth-child(4) .future-card-color { animation-delay: 9s; }
.future-volume-card:nth-child(5) .future-card-color { animation-delay: 12s; }
.future-volume-card:nth-child(6) .future-card-color { animation-delay: 15s; }

@keyframes future-volume-reveal {
  0%, 11%, 100% { opacity: 0; }
  20%, 35% { opacity: 1; }
  45% { opacity: 0; }
}

.future-volume-copy {
  display: grid;
  gap: .35rem;
  min-width: 0;
  text-align: center;
}

.future-volume-status {
  color: #98630b;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.future-volume-copy strong {
  color: var(--evergreen-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.1;
}

.future-volume-copy strong span {
  display: block;
  margin-bottom: .18rem;
  color: var(--fern);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.future-volume-copy > span:last-child {
  color: var(--muted);
  font-size: clamp(.88rem, 1.45vw, 1rem);
  line-height: 1.5;
}

.future-closing { text-align: center; }
.future-closing .section-inner { max-width: 820px; }
.future-closing h2 { margin-bottom: .7rem; }
.future-closing .section-inner > p:last-child { max-width: 690px; margin: 0 auto; }

@media (max-width: 800px) {
  .future-volume-grid { grid-template-columns: 1fr; max-width: 600px; }
  .future-volume-card { grid-template-columns: minmax(108px, 31%) 1fr; }
}

@media (max-width: 430px) {
  .future-page .future-hero { padding-top: 1.45rem; padding-bottom: 1.4rem; }
  .future-volume-section { padding-block: 1.25rem; }
  .future-volume-grid { gap: .8rem; }
  .future-volume-card {
    grid-template-columns: minmax(102px, 34%) 1fr;
    gap: .72rem;
    padding: .68rem;
  }
  .future-volume-copy { gap: .22rem; }
  .future-volume-copy > span:last-child { font-size: .82rem; line-height: 1.38; }
  .future-volume-copy strong { font-size: 1.12rem; }
}

@media (prefers-reduced-motion: reduce) {
  .future-card-color { animation: none; }
  .future-volume-card-live { transition: none; }
}

@media (hover: none) {
  .landscape-hover-preview { display: none; }
}

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

/* Public domain landing page — six-volume museum foyer */
.domain-home {
  background:
    radial-gradient(circle at 50% 8%, rgba(204, 228, 235, .7), transparent 32rem),
    linear-gradient(180deg, var(--paper) 0%, #f5f0df 100%);
}

.domain-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 63, 53, .16);
}

.domain-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(204, 228, 235, .48), transparent 46%),
    repeating-linear-gradient(135deg, transparent 0 32px, rgba(18,63,53,.025) 33px 34px);
}

.domain-hero-inner {
  display: grid;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(1.8rem, 3.5vw, 3.2rem) 0;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  text-align: left;
}

.domain-hero .eyebrow {
  margin-bottom: .7rem;
  color: var(--evergreen);
}

.domain-hero h1 {
  display: grid;
  gap: .16em;
  margin: 0 0 .65rem;
  line-height: .92;
}

.domain-title-primary {
  font-size: clamp(3.2rem, 7.2vw, 5.9rem);
  letter-spacing: -.05em;
}

.domain-title-secondary {
  font-size: clamp(1.85rem, 3.8vw, 3.15rem);
  letter-spacing: -.025em;
}

.domain-definition {
  margin: 0 0 .75rem;
  color: #a66b08;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.domain-hero .lede {
  max-width: 700px;
  margin: 0 0 .95rem;
}

.domain-hero-actions { justify-content: flex-start; }
.domain-hero-actions .button {
  min-height: 44px;
  padding: .38rem .68rem;
  border-width: 1px;
  font-size: .84rem;
}

.domain-hero-tree {
  width: min(100%, 360px);
  justify-self: end;
}
.tree-page-cover-link {
  width: min(100%, 360px);
  justify-self: center;
}
.domain-hero-tree .volume-art,
.tree-page-cover-link .volume-art {
  box-shadow: 0 26px 62px rgba(9, 43, 37, .24);
}
.domain-hero-tree .volume-card-meta strong { color: var(--evergreen-deep); }
.domain-hero-tree .volume-status { color: #98630b; }

.domain-volume-gateway {
  padding: clamp(.8rem, 1.5vw, 1.2rem) 0 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 12%, rgba(45, 106, 88, .34), transparent 36rem),
    linear-gradient(180deg, #0d352d 0%, var(--evergreen-deep) 100%);
  border-top: 3px double var(--gold-light);
  border-bottom: 3px double var(--gold-light);
}

.domain-volume-intro {
  display: grid;
  gap: .1rem;
  max-width: 760px;
  margin: 0 auto clamp(.5rem, 1vw, .75rem);
  text-align: center;
}

.domain-volume-intro .domain-volume-title {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.05;
  text-transform: uppercase;
}

.domain-volume-intro > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.volume-pyramid {
  display: grid;
  row-gap: 0;
}

.volume-row {
  display: flex;
  justify-content: center;
  gap: clamp(.6rem, 1vw, .75rem);
}

.volume-row-featured { display: none; }
.volume-row-featured,
.volume-row-two,
.volume-row-three { margin: 0 0 15px; }
.volume-row-four { margin: 0; }

.volume-row-featured .volume-card { width: min(100%, 312px); }
.volume-row-two .volume-card { width: min(34%, 225px); }
.volume-row-three .volume-card { width: min(23%, 188px); }
.volume-row-four .volume-card { width: min(23%, 188px); }

.volume-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 0;
  flex-direction: column;
  appearance: none;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  text-decoration: none;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.volume-card::after {
  display: none;
}

.volume-card-live:hover,
.volume-card-live:focus-visible {
  outline: 3px solid rgba(217,189,121,.55);
  outline-offset: 4px;
  transform: translateY(-7px);
}

.volume-art {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 21;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 24px 54px rgba(0,0,0,.3);
}

.volume-art img,
.volume-art video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.volume-art img {
  position: absolute;
  inset: 0;
}

.volume-color {
  opacity: 0;
  animation: volume-color-cycle 14s ease-in-out infinite;
}

.volume-row-two .volume-card-upcoming:nth-child(1) .volume-color { animation-delay: 1s; }
.volume-row-two .volume-card-upcoming:nth-child(2) .volume-color { animation-delay: 3.8s; }
.volume-row-three .volume-card-upcoming:nth-child(1) .volume-color { animation-delay: 6.6s; }
.volume-row-three .volume-card-upcoming:nth-child(2) .volume-color { animation-delay: 9.4s; }
.volume-row-four .volume-card-upcoming:nth-child(1) .volume-color { animation-delay: 12.2s; }

@keyframes volume-color-cycle {
  0%, 12%, 100% { opacity: 0; }
  22%, 36% { opacity: 1; }
  46% { opacity: 0; }
}

.volume-card-meta {
  position: relative;
  z-index: 4;
  display: grid;
  gap: .12rem;
  padding: .55rem .2rem 0;
  text-align: center;
}

.volume-card-meta strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.9rem, 1.7vw, 1.08rem);
  line-height: 1.25;
}

.volume-number-line,
.volume-name-line { display: block; }

.volume-card-meta > span:last-child {
  color: var(--fern);
  font-size: .8rem;
  font-weight: 800;
}

.volume-status {
  justify-self: center;
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.volume-status-live { color: var(--gold-light); }

.volume-color-instruction {
  margin: clamp(2rem, 4vw, 3.4rem) auto 0;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  letter-spacing: .04em;
  text-align: center;
}

.domain-closing {
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(204, 228, 235, .48), transparent 30rem),
    var(--paper);
}

.domain-closing p {
  margin: 0 0 .85rem;
  color: var(--evergreen-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3.5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.domain-closing .button {
  min-height: 44px;
  padding: .42rem .82rem;
  border-width: 1px;
  font-size: .88rem;
}

.domain-home .site-footer {
  padding: 1.1rem 0 1.3rem;
  border-bottom: 3px double var(--gold-light);
}
.domain-home .footer-inner {
  flex-direction: column;
  gap: .14rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.domain-home .footer-feedback,
.domain-home .footer-contact { display: block; }
.domain-home .footer-contact {
  position: relative;
  top: -5px;
}

@media (max-width: 920px) {
  .domain-hero-inner {
    display: block;
    width: min(920px, calc(100% - 2.5rem));
    padding: clamp(1.6rem, 3vw, 2.5rem) 0 clamp(1.15rem, 2vw, 1.6rem);
    text-align: center;
  }
  .domain-hero h1 { margin-right: auto; margin-left: auto; }
  .domain-hero .lede { margin-right: auto; margin-left: auto; }
  .domain-hero-actions { justify-content: center; }
  .domain-hero-tree { display: none; }
  .tree-page-cover-link { width: min(64vw, 272px); }
  .tree-page-cover-link .volume-art { box-shadow: 0 24px 54px rgba(0,0,0,.3); }
  .volume-row-featured { display: flex; }
}

@media (max-width: 700px) {
  .series-introduction { padding: 1.6rem 0 1.35rem; }
  .series-principles { padding: 2rem 0; }
  .series-volume-fan { width: min(100%, 360px); }
  .domain-hero-inner {
    width: min(100% - 1.5rem, 920px);
    padding: 1.25rem 0 1rem;
  }
  .domain-hero h1 {
    gap: .2em;
    max-width: none;
  }
  .domain-title-primary {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }
  .domain-title-secondary {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }
  .domain-definition {
    margin-top: 1.1rem;
    font-size: .82rem;
    letter-spacing: .085em;
  }
  .domain-hero .lede {
    max-width: 34rem;
    font-size: 1.02rem;
    line-height: 1.5;
  }
  .domain-hero-actions {
    display: flex;
    width: auto;
    margin: 0 auto;
  }
  .domain-hero-actions .button { width: auto; }
  .domain-volume-gateway {
    padding-top: .7rem;
    padding-bottom: 30px;
  }
  .domain-volume-intro { margin-bottom: .55rem; }
  .volume-pyramid { row-gap: 0; }
  .volume-row-featured,
  .volume-row-two,
  .volume-row-three { margin-bottom: 15px; }
  .volume-row-four { margin-bottom: 0; }
  .volume-row-two,
  .volume-row-three {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: .65rem;
    row-gap: 0;
  }
  .volume-row-two .volume-card,
  .volume-row-three .volume-card {
    justify-self: center;
    width: min(100%, 150px);
  }
  .volume-row-four .volume-card { width: min(100%, 150px); }
  .volume-row-featured .volume-card { width: min(64vw, 272px); }
  .volume-card { padding: 0; }
  .volume-card-meta { padding: .48rem .15rem 0; }
  .volume-card-meta strong { font-size: clamp(.75rem, 3vw, .9rem); }
  .volume-status { font-size: .75rem; letter-spacing: .09em; }
  .volume-card-live:hover,
  .volume-card-live:focus-visible { transform: translateY(-3px); }
  .domain-closing p { margin-bottom: 0; font-size: clamp(1.35rem, 7vw, 2.15rem); }
}

@media (prefers-reduced-motion: reduce) {
  .volume-card,
  .volume-color { transition: none; }
  .volume-color { animation: none; }
}

/* Shared closing signature across every public page. */
.site-footer.brand-footer {
  padding: 2.1rem 0 2.2rem;
  border-top: 3px double var(--gold-light);
  border-bottom: 3px double var(--gold-light);
}
.site-footer.brand-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
}
.site-footer.brand-footer .footer-mark {
  color: var(--white);
  letter-spacing: .08em;
}
.site-footer.brand-footer .footer-note {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.92rem, 3.5vw, 1.18rem);
  letter-spacing: .055em;
}
.site-footer.brand-footer .footer-feedback { margin-top: .05rem; }

/* Home and contact refinements — September review pass. */
.domain-hero .eyebrow { margin-bottom: 1rem; }
.domain-hero h1 {
  gap: .24em;
  margin-bottom: 1rem;
  line-height: .95;
}
.domain-definition { margin-bottom: 1rem; }
.domain-hero .lede {
  margin-bottom: 1.15rem;
  line-height: 1.62;
}
.volume-art,
.domain-hero-tree .volume-art,
.tree-page-cover-link .volume-art,
.contact-image-pair img {
  box-shadow: none;
}

.contact-aside { text-align: left; }
.contact-aside h2,
.contact-aside > p:first-of-type { text-align: center; }
.contact-email-link {
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.site-footer.brand-footer {
  padding: .8rem 0 .9rem;
}
.site-footer.brand-footer .footer-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 500px) 1fr;
  gap: 1rem;
  width: min(1180px, calc(100% - 2.5rem));
}
.site-footer.brand-footer .footer-mark {
  justify-self: start;
  font-size: .92rem;
}
.site-footer.brand-footer .footer-note {
  position: relative;
  width: 100%;
  padding: .46rem 2.5rem;
  color: var(--evergreen-deep);
  background: var(--gold-light);
  border-radius: 50% / 18%;
  box-shadow: inset 0 0 0 1px rgba(166,107,8,.38);
  font-size: clamp(.88rem, 1.6vw, 1.08rem);
  font-weight: 700;
  letter-spacing: .035em;
}
.site-footer.brand-footer .footer-note::before,
.site-footer.brand-footer .footer-note::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 0;
  width: 2rem;
  height: 72%;
  background: #caa85f;
  transform: translateY(-50%);
}
.site-footer.brand-footer .footer-note::before {
  left: -.7rem;
  clip-path: polygon(0 0, 100% 14%, 100% 86%, 0 100%, 28% 50%);
}
.site-footer.brand-footer .footer-note::after {
  right: -.7rem;
  clip-path: polygon(0 14%, 100% 0, 72% 50%, 100% 100%, 0 86%);
}
.site-footer.brand-footer .footer-feedback {
  justify-self: end;
  margin-top: 0;
  font-size: .7rem;
}
.domain-home .site-footer.brand-footer { padding: .8rem 0 .9rem; }
.domain-home .site-footer.brand-footer .footer-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 500px) 1fr;
  gap: 1rem;
}

@media (max-width: 760px) {
  .site-footer.brand-footer .footer-inner,
  .domain-home .site-footer.brand-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .site-footer.brand-footer .footer-mark,
  .site-footer.brand-footer .footer-feedback { justify-self: center; }
  .site-footer.brand-footer .footer-note {
    width: min(100% - 1.25rem, 500px);
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/* Curator page: a personal field-guide portrait rather than a biography card. */
.curator-story { padding-top: clamp(1.7rem, 3vw, 2.6rem); }
.curator-story h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.05rem, 4.4vw, 3.45rem);
}
.curator-story .quote {
  display: flex;
  flex-direction: column;
  padding: 1.65rem 1.25rem;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 5px solid var(--gold);
  text-align: left;
}
.curator-letter-close p { margin: 0; }
.curator-signature {
  align-self: flex-end;
  width: max-content;
  margin: .45rem .2rem 0 0;
  color: var(--evergreen);
  font-family: "Bradley Hand", "Segoe Print", "Apple Chancery", cursive;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
}
.curator-footer-markline {
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
  gap: clamp(.8rem, 2.5vw, 1.5rem);
  align-items: center;
  width: min(620px, 100%);
  margin-bottom: .25rem;
}
.curator-footer-markline span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.curator-footer-markline span:last-child {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.curator-footer-markline img {
  width: clamp(72px, 10vw, 94px);
  height: clamp(72px, 10vw, 94px);
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 9px 18px rgba(0,0,0,.28);
}
.curator-footer .footer-note {
  font-size: clamp(.98rem, 3.7vw, 1.28rem);
  letter-spacing: .07em;
}
.curator-footer .footer-feedback {
  color: var(--white);
  font-size: .88rem;
}

@media (max-width: 700px) {
  .curator-story { padding-top: 1.35rem; }
  .curator-story .quote { padding: 1.35rem .85rem; }
}

/* Color Companion — exact colors sampled from approved artwork. */
.companion-hero {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(204, 228, 235, .82), transparent 33rem),
    var(--paper);
}
.companion-hero .page-hero-inner {
  max-width: 860px;
  padding: clamp(1.35rem, 3vw, 2.2rem) 0 clamp(1rem, 2.2vw, 1.5rem);
}
.companion-hero h1 { margin-bottom: 0; }
.companion-hero .lede { margin: 0 auto; }
.companion-tool-section { padding-top: clamp(1rem, 2vw, 1.5rem); }
.companion-action-prompt {
  max-width: 760px;
  margin: 0 auto 1rem;
  padding: .72rem 1rem;
  color: var(--evergreen-deep);
  background: linear-gradient(135deg, #f8e9ad, #dfbd62);
  border: 1px solid var(--gold);
  box-shadow: 0 8px 20px rgba(97, 74, 24, .14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.2vw, 1.28rem);
  line-height: 1.3;
  text-align: center;
}
.companion-selector-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.companion-selector-heading h2 { margin: 0; }
.companion-selector-heading > p {
  max-width: 630px;
  margin: .55rem auto 0;
  color: #375149;
  font-family: Georgia, "Times New Roman", serif;
}
.companion-page-picker {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .65rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.companion-page-choice {
  display: grid;
  gap: .5rem;
  min-width: 0;
  padding: .38rem .38rem .62rem;
  cursor: pointer;
  color: var(--evergreen-deep);
  background: rgba(255, 254, 249, .76);
  border: 1px solid rgba(18, 63, 53, .18);
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(9, 43, 37, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.companion-page-choice img {
  width: 100%;
  aspect-ratio: 16 / 21;
  object-fit: cover;
  background: var(--white);
}
.companion-page-choice span {
  overflow: hidden;
  font-size: .75rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
}
.companion-page-choice:hover,
.companion-page-choice:focus-visible,
.companion-page-choice[aria-pressed="true"] {
  border-color: var(--gold);
  box-shadow: 0 11px 28px rgba(9, 43, 37, .15), 0 0 0 2px rgba(182, 138, 60, .18);
  outline: 0;
  transform: translateY(-3px);
}
.companion-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  gap: clamp(1.5rem, 4vw, 3.4rem);
  align-items: start;
}
.companion-stage-column { min-width: 0; }
.companion-mobile-title { display: none; }
.companion-canvas-shell {
  position: relative;
  width: min(100%, 690px);
  margin: 0 auto;
  padding: 8px;
  background: var(--paper);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}
.companion-canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
  background: var(--white);
  outline: 0;
  touch-action: pan-y pinch-zoom;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.companion-canvas:focus-visible { box-shadow: 0 0 0 4px rgba(182, 138, 60, .32); }
.companion-pointer-label {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: .42rem;
  align-items: center;
  min-width: 112px;
  padding: .38rem .55rem;
  color: var(--white);
  background: rgba(9, 43, 37, .94);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .24);
  font-size: .74rem;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.companion-pointer-label[hidden] { display: none; }
.companion-pointer-label span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
}
.companion-instruction {
  margin: .8rem auto 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 750;
  text-align: center;
}
.touch-instruction { display: none; }
.companion-panel {
  position: sticky;
  top: 108px;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: rgba(255, 254, 249, .88);
  border: 1px solid rgba(18, 63, 53, .2);
  border-top: 4px solid var(--gold);
  box-shadow: 0 18px 42px rgba(9, 43, 37, .12);
}
.companion-panel h2 { margin-bottom: 1rem; font-size: clamp(2rem, 3.4vw, 3rem); }
.companion-view-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.2rem;
  border: 1px solid var(--evergreen);
}
.companion-view-toggle button {
  min-height: 44px;
  padding: .5rem .7rem;
  cursor: pointer;
  color: var(--evergreen);
  background: transparent;
  border: 0;
  font-size: .83rem;
  font-weight: 850;
}
.companion-view-toggle button + button { border-left: 1px solid var(--evergreen); }
.companion-view-toggle button[aria-pressed="true"] { color: var(--white); background: var(--evergreen); }
.companion-color-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  align-items: center;
  padding: .9rem;
  background: var(--paper-deep);
  border: 1px solid rgba(18, 63, 53, .16);
}
.companion-selected-swatch {
  width: 82px;
  height: 82px;
  background: #3f4730;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(18, 63, 53, .3);
}
.companion-card-label,
.companion-color-card strong,
.companion-color-card div > span:last-child { display: block; }
.companion-card-label {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.companion-color-card strong {
  margin: .08rem 0 .12rem;
  color: var(--evergreen-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.1;
}
.companion-color-card div > span:last-child { color: var(--muted); font-size: .82rem; }
.companion-pencil-match {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.companion-pencil-match span,
.companion-pencil-match strong { display: block; }
.companion-pencil-match span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.companion-pencil-match strong {
  margin-top: .15rem;
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}
.companion-key-palette { padding-top: 1rem; }
.companion-key-palette h3 { font-size: 1.05rem; }
.companion-palette-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5rem;
}
.companion-palette-color {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: .32rem .2rem .38rem;
  cursor: pointer;
  color: var(--evergreen-deep);
  background: transparent;
  border: 1px solid transparent;
}
.companion-palette-color > span {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border: 1px solid rgba(18, 63, 53, .25);
}
.companion-palette-color b { margin-top: .2rem; font-size: .66rem; letter-spacing: .08em; }
.companion-palette-color small { font-size: .61rem; }
.companion-palette-color:hover,
.companion-palette-color:focus-visible,
.companion-palette-color.is-selected { border-color: var(--gold); outline: 0; }
.companion-method-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.5;
}
.tree-companion-callout {
  background:
    radial-gradient(circle at 82% 18%, rgba(204, 228, 235, .56), transparent 26rem),
    var(--paper);
  border-top: 3px double var(--gold-light);
}
.tree-companion-inner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, .7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.tree-companion-inner p:not(.eyebrow) { max-width: 650px; }
.tree-companion-inner .button { margin-top: .55rem; }
.tree-companion-pair {
  position: relative;
  min-height: 450px;
}
.tree-companion-pair img {
  position: absolute;
  width: min(62%, 245px);
  border: 1px solid var(--gold);
  box-shadow: 0 18px 38px rgba(9, 43, 37, .2);
}
.tree-companion-pair img:first-child { top: 0; left: 8%; transform: rotate(-3.5deg); }
.tree-companion-pair img:last-child { right: 8%; bottom: 0; transform: rotate(3.5deg); }

@media (max-width: 1080px) {
  .companion-page-picker { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 921px) and (max-width: 1120px) {
  .header-inner { gap: .7rem; }
  .site-nav a { padding-right: .42rem; padding-left: .42rem; font-size: .8rem; }
}

@media (max-width: 920px) {
  .companion-workbench { grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: 1.35rem; }
  .tree-companion-inner { grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); }
}

@media (max-width: 760px) {
  .companion-hero .page-hero-inner { padding: .9rem 0 .72rem; }
  .companion-tool-section { padding-top: .7rem; }
  .companion-action-prompt { margin-bottom: .7rem; padding: .58rem .7rem; }
  .companion-workbench,
  .tree-companion-inner { grid-template-columns: 1fr; }
  .companion-page-picker {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: .5rem;
    margin-bottom: .65rem;
  }
  .companion-page-choice { grid-column: span 2; }
  .companion-page-choice:nth-child(1) { grid-column: 2 / span 2; }
  .companion-page-choice:nth-child(2) { grid-column: 4 / span 2; }
  .companion-page-choice:nth-child(3) { grid-column: 6 / span 2; }
  .companion-page-choice:nth-child(4) { grid-column: 1 / span 2; }
  .companion-page-choice:nth-child(5) { grid-column: 3 / span 2; }
  .companion-page-choice:nth-child(6) { grid-column: 5 / span 2; }
  .companion-page-choice:nth-child(7) { grid-column: 7 / span 2; }
  .companion-page-choice { align-content: start; }
  .companion-page-choice span { font-size: .68rem; }
  .companion-mobile-title {
    display: block;
    margin: 0 0 .45rem;
    scroll-margin-top: 92px;
    text-align: center;
  }
  .companion-mobile-title h2 { margin: 0; font-size: clamp(1.65rem, 8vw, 2.15rem); }
  .companion-panel > h2 { display: none; }
  .companion-panel { position: static; }
  .tree-companion-pair { min-height: 390px; }
}

@media (hover: none), (pointer: coarse) {
  .desktop-instruction { display: none; }
  .touch-instruction { display: inline; }
}

@media (max-width: 460px) {
  .companion-page-picker { gap: .35rem; }
  .companion-page-choice { padding: .25rem .25rem .42rem; }
  .companion-page-choice span { font-size: .61rem; line-height: 1.15; }
  .companion-color-card { grid-template-columns: 64px 1fr; }
  .companion-selected-swatch { width: 64px; height: 64px; }
  .companion-palette-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .companion-palette-color small { font-size: .55rem; }
  .tree-companion-pair { min-height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  .companion-page-choice { transition: none; }
}
