@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f0e7;
  --bg-soft: #efe6d8;
  --surface: rgba(255, 251, 245, 0.96);
  --surface-strong: #fffdf8;
  --surface-dark: #233128;
  --line: rgba(36, 49, 40, 0.2);
  --line-strong: rgba(36, 49, 40, 0.36);
  --text: #1d231f;
  --muted: #49534b;
  --accent: #35523c;
  --accent-deep: #253a2b;
  --accent-soft: #dce4d7;
  --moss: #617a5b;
  --sage: #cad6c7;
  --earth: #91765b;
  --earth-soft: #e7d5c0;
  --gold-soft: #dcc59e;
  --shadow-soft: 0 24px 54px rgba(24, 31, 26, 0.12);
  --shadow-card: 0 14px 30px rgba(24, 31, 26, 0.09);
  --shadow-header: 0 16px 38px rgba(24, 31, 26, 0.11);
  --panel-border: rgba(36, 49, 40, 0.14);
  --panel-border-strong: rgba(36, 49, 40, 0.18);
  --panel-surface: linear-gradient(180deg, rgba(255, 252, 247, 0.97), rgba(244, 237, 227, 0.92));
  --panel-surface-soft: linear-gradient(180deg, rgba(250, 246, 239, 0.98), rgba(242, 235, 225, 0.94));
  --panel-shadow: 0 18px 34px rgba(24, 31, 26, 0.08);
  --panel-padding: clamp(1.35rem, 1.9vw, 1.65rem);
  --panel-padding-lg: clamp(1.75rem, 2.9vw, 2.35rem);
  --radius-lg: 10px;
  --radius-md: 6px;
  --radius-sm: 0px;
  --max-width: 1360px;
  --content-width: 760px;
  --shell-width: 1360px;
  --band-width: 1580px;
  --band-width-wide: 1720px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 213, 192, 0.82), transparent 28%),
    radial-gradient(circle at top right, rgba(230, 214, 192, 0.72), transparent 22%),
    radial-gradient(circle at 50% 18%, rgba(255, 248, 238, 0.6), transparent 22%),
    linear-gradient(180deg, #f7f3eb 0%, #f2ebde 100%);
  font-family: var(--font-sans);
  line-height: 1.68;
  min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow,
.tag,
.button-link,
.menu-button,
.search-chip,
.brand-link::after,
.nav-list a,
.footer-nav a,
.stat-label,
.stat-value {
  font-family: var(--font-sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0, transparent 20%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.1) 0, transparent 24%);
  opacity: 0.8;
}

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

a {
  color: var(--accent);
  text-decoration-color: rgba(53, 82, 60, 0.35);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--accent-deep);
  text-decoration-color: currentColor;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(53, 82, 60, 0.28);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--surface-strong);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
  z-index: 20;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.72rem 0 0.4rem;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.97) 0%, rgba(247, 243, 235, 0.9) 76%, rgba(247, 243, 235, 0) 100%);
  transition: padding 0.28s ease, background-color 0.28s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 49, 40, 0.18), transparent);
  opacity: 0.78;
}

body.header-scrolled .site-header {
  padding: 0.36rem 0 0.18rem;
}

.header-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  min-height: 5.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.88rem 1.1rem 0.88rem 1.28rem;
  border: 1px solid rgba(36, 49, 40, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.97), rgba(244, 238, 229, 0.94)),
    linear-gradient(135deg, rgba(220, 228, 215, 0.12), rgba(231, 213, 192, 0.08));
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(22px) saturate(140%);
  transition:
    min-height 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

body.header-scrolled .header-inner {
  min-height: 5.35rem;
  border-color: rgba(36, 49, 40, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(246, 240, 231, 0.96)),
    linear-gradient(135deg, rgba(220, 228, 215, 0.14), rgba(231, 213, 192, 0.08));
  box-shadow: 0 18px 42px rgba(24, 31, 26, 0.14);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0.95rem;
  padding: 0.2rem 0.15rem 0.2rem 0;
}

.brand-link img {
  width: clamp(220px, 30vw, 356px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(36, 49, 40, 0.08));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-link:hover img,
.brand-link:focus-visible img {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 12px 22px rgba(36, 49, 40, 0.12));
}

.brand-link::after {
  content: "Field notes, guides, and mushroom profiles";
  display: inline-flex;
  align-items: center;
  padding-left: 0.95rem;
  min-height: 2.1rem;
  border-left: 1px solid rgba(36, 49, 40, 0.18);
  color: var(--muted);
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-button {
  border: 2px solid rgba(37, 58, 43, 0.78);
  background: transparent;
  color: var(--accent-deep);
  padding: 0.84rem 1.08rem;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-deep);
  color: #fffaf4;
  border-color: var(--accent-deep);
}

body.nav-open .menu-button {
  color: #fffaf4;
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.menu-icon {
  display: inline-grid;
  gap: 0.22rem;
}

.menu-icon span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .menu-icon span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-icon span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 6.55rem 1rem auto 1rem;
  padding: 1rem;
  border: 1px solid rgba(36, 49, 40, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(244, 238, 229, 0.97)),
    linear-gradient(135deg, rgba(220, 228, 215, 0.08), rgba(231, 213, 192, 0.06));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(140%);
  transform: translateY(-0.75rem) scale(0.985);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.nav-open .site-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-list,
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list {
  display: grid;
  gap: 0.38rem;
}

.nav-list a,
.footer-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 0.96rem;
  border-radius: 0;
  text-decoration: none;
  color: var(--accent-deep);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.nav-list a {
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(37, 58, 43, 0);
  color: rgba(29, 35, 31, 0.92);
  line-height: 1;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"] {
  transform: translateY(-1px);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(53, 82, 60, 0.1);
  color: var(--accent-deep);
  border-color: rgba(53, 82, 60, 0.2);
  box-shadow: none;
}

.nav-list a[aria-current="page"] {
  background: var(--accent-deep);
  color: #fefbf5;
  border-color: rgba(37, 58, 43, 0.92);
  box-shadow: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.search-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.82rem 1.08rem;
  border-radius: 0;
  border: 2px solid rgba(37, 58, 43, 0.84);
  color: var(--accent-deep);
  background: transparent;
  text-decoration: none;
  font-size: 0.74rem;
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.search-chip:hover,
.search-chip:focus-visible {
  transform: translateY(-1px);
  color: #fffdf8;
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow: none;
}

.nav-list a,
.search-chip,
.button-link,
.button-link.secondary,
.cluster-list a,
.post-card,
.category-card,
.mission-card {
  will-change: transform;
}

.shell {
  width: min(calc(100% - 2.8rem), 1240px);
  margin: 0 auto;
}

.page {
  padding: 2rem 0 4.35rem;
}

.page-header {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

main.page:not(.page-home) .page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-content: center;
  min-height: clamp(12.25rem, 17vw, 14.6rem);
  padding: clamp(1.45rem, 2.4vw, 1.9rem) clamp(1.45rem, 2.9vw, 2.2rem);
  border: 1px solid var(--panel-border-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(244, 237, 227, 0.96));
  box-shadow: 0 18px 36px rgba(24, 31, 26, 0.08);
}

main.page:not(.page-home) .page-header::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  bottom: 1rem;
  width: min(34%, 320px);
  border-radius: 6px;
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    url("assets/img/category-mushrooms.svg") center / contain no-repeat;
}

main.page:not(.page-home) .page-header > * {
  position: relative;
  z-index: 1;
}

main.page:not(.page-home) .page-header > :not(.breadcrumb-list) {
  max-width: min(42rem, calc(100% - 19rem));
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.76rem;
  color: var(--accent-deep);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  font-weight: 700;
  border: 1px solid rgba(53, 82, 60, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-family: "Avenir Next Condensed", "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--accent-deep);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.55rem, 5.1vw, 4.85rem);
  line-height: 1.03;
}

h2 {
  font-size: clamp(1.76rem, 2.7vw, 2.5rem);
}

h3 {
  font-size: clamp(1.18rem, 1.45vw, 1.34rem);
  line-height: 1.16;
}

p {
  margin: 0 0 1.05rem;
}

.lede,
.lead {
  font-size: clamp(1.06rem, 1.65vw, 1.22rem);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.68;
}

.hero {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: stretch;
}

.page-home .hero {
  margin-top: 0.25rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.panel,
.post-card,
.category-card,
.footer-panel,
.sidebar-card,
.article-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.hero-copy {
  padding: clamp(1.75rem, 3vw, 3.15rem);
  display: grid;
  gap: 1.08rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 231, 0.94));
  border-top: 6px solid rgba(145, 118, 91, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    var(--shadow-card);
}

.hero-copy h1 {
  max-width: 11.7ch;
}

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

.stat-card {
  padding: 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 49, 40, 0.18);
  border-top: 4px solid rgba(53, 82, 60, 0.34);
  box-shadow: none;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
}

.stat-value {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.12rem;
  font-weight: 700;
  font-family: "Avenir Next Condensed", "Avenir Next", "Trebuchet MS", sans-serif;
}

.hero-visual {
  overflow: hidden;
  min-height: 472px;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 31, 26, 0.02), rgba(24, 31, 26, 0.18)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 26%);
  pointer-events: none;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 22rem;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(36, 49, 40, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 28px rgba(24, 31, 26, 0.14);
  z-index: 2;
}

.hero-note p:last-child {
  margin-bottom: 0;
}

.section {
  margin-top: 2.3rem;
}

.page-home .section {
  margin-top: 2.8rem;
}

.section-frame {
  position: relative;
  padding: 1.7rem;
  border: 1px solid rgba(36, 49, 40, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(243, 237, 228, 0.9));
  box-shadow: 0 16px 36px rgba(24, 31, 26, 0.08);
  overflow: hidden;
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: clamp(110px, 18vw, 200px);
  height: 4px;
  background: linear-gradient(90deg, var(--accent-deep), var(--earth));
  pointer-events: none;
}

.section-frame > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  margin-bottom: 0.25rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.section-grid {
  display: grid;
  gap: 1.2rem;
}

.section-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.page-home .section-mission .section-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.page-home .section-mission .mission-card {
  grid-column: span 4;
}

.page-home .section-mission .mission-card:first-child {
  grid-column: span 7;
  background:
    linear-gradient(135deg, rgba(37, 58, 43, 0.99), rgba(70, 93, 73, 0.96));
  border-color: rgba(37, 58, 43, 0.7);
  box-shadow: 0 18px 34px rgba(24, 31, 26, 0.16);
  min-height: 18rem;
}

.page-home .section-mission .mission-card:nth-child(2) {
  grid-column: span 5;
}

.page-home .section-mission .mission-card:first-child h3,
.page-home .section-mission .mission-card:first-child p {
  color: #f7f2e8;
}

.page-home .section-mission .mission-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.9), rgba(233, 222, 206, 0.85));
}

.page-home .section-mission .mission-card:last-child {
  grid-column: span 8;
}

.page-home .section-categories .section-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.page-home .section-categories .category-card {
  grid-column: span 3;
}

.page-home .section-categories .category-card:first-child {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
}

.page-home .section-categories .category-card:first-child img {
  height: 100%;
  aspect-ratio: auto;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.page-home .section-categories .category-card:first-child .category-card-content {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: 1.55rem;
}

.page-home .section-featured {
  background:
    linear-gradient(135deg, rgba(37, 58, 43, 0.99), rgba(54, 74, 59, 0.98));
  border-color: rgba(37, 58, 43, 0.72);
  box-shadow: 0 20px 42px rgba(24, 31, 26, 0.18);
}

.page-home .section-featured::before {
  inset: 0 auto auto 0;
  width: clamp(110px, 18vw, 200px);
  height: 4px;
  background: linear-gradient(90deg, #ffffff, rgba(220, 197, 158, 0.88));
}

.page-home .section-featured .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f1e8;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.page-home .section-featured .section-heading h2,
.page-home .section-featured .section-heading p {
  color: #f7f1e8;
}

.page-home .section-featured .section-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.page-home .section-featured .post-card {
  grid-column: span 4;
  background: rgba(255, 251, 245, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.page-home .section-featured .post-card h3 a {
  color: #fffaf4;
  text-decoration: none;
}

.page-home .section-featured .post-card h3 a:hover,
.page-home .section-featured .post-card h3 a:focus-visible {
  color: #ffffff;
}

.page-home .section-featured .post-card p {
  color: rgba(255, 247, 239, 0.78);
}

.page-home .section-featured .tag {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fffaf4;
}

.page-home .section-featured .button-link.secondary,
.page-home .section-featured .button-link.secondary:visited {
  border-color: rgba(255, 255, 255, 0.88);
  color: #fffdf8;
}

.page-home .section-featured .button-link.secondary:hover,
.page-home .section-featured .button-link.secondary:focus-visible {
  background: #ffffff;
  color: var(--accent-deep);
  border-color: #ffffff;
}

.page-home .section-featured .post-card:first-child,
.page-home .section-featured .post-card:nth-child(2) {
  grid-column: span 6;
}

.page-home .section-featured .post-card:first-child {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(239, 230, 216, 0.94));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 24px rgba(16, 22, 18, 0.12);
}

.page-home .section-featured .post-card:first-child h3 a,
.page-home .section-featured .post-card:first-child p {
  color: var(--text);
}

.page-home .section-featured .post-card:first-child h3 a:hover,
.page-home .section-featured .post-card:first-child h3 a:focus-visible {
  color: var(--accent-deep);
}

.page-home .section-featured .post-card:first-child .tag {
  background: rgba(53, 82, 60, 0.1);
  color: var(--accent);
}

.page-home .section-featured .post-card:first-child .button-link.secondary,
.page-home .section-featured .post-card:first-child .button-link.secondary:visited {
  color: var(--accent-deep);
  border-color: rgba(37, 58, 43, 0.78);
  background: transparent;
}

.page-home .section-reading {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(243, 235, 224, 0.88));
}

.page-home .section-reading .section-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.page-home .section-reading .post-card {
  grid-column: span 4;
}

.page-home .section-reading .post-card:last-child {
  grid-column: span 8;
}

.page-home .section-home-story {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(238, 233, 224, 0.88));
}

.page-home .section-home-story .article-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(240, 245, 236, 0.92));
}

.page-home .section-home-story .article-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: clamp(110px, 18vw, 200px);
  height: 4px;
  background: linear-gradient(90deg, var(--accent-deep), var(--earth));
}

.page-home .section-home-story .article-card::after {
  content: "";
  display: block;
  min-height: 100%;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(24, 31, 26, 0.06), rgba(24, 31, 26, 0.16)),
    url("assets/img/hero-editorial.svg") center / cover no-repeat;
}

.page-home .section-home-story .article-body {
  position: relative;
  z-index: 1;
  align-self: center;
}

.page-home .section-home-story .sidebar-card:first-child {
  background:
    linear-gradient(135deg, rgba(37, 58, 43, 0.98), rgba(70, 95, 74, 0.95));
  border-color: rgba(37, 58, 43, 0.78);
  box-shadow: 0 22px 48px rgba(24, 31, 26, 0.18);
}

.page-home .section-home-story .sidebar-card:first-child .eyebrow,
.page-home .section-home-story .sidebar-card:first-child h3,
.page-home .section-home-story .sidebar-card:first-child p {
  color: #f7f2e8;
}

.page-home .section-home-story .sidebar-card:first-child .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.mission-card,
.category-card,
.post-card,
.contact-card {
  padding: 1.35rem;
}

.mission-card {
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 231, 0.9));
  border: 1px solid rgba(36, 49, 40, 0.16);
}

.mission-card,
.category-card,
.post-card,
.sidebar-card,
.article-card,
.contact-card,
.footer-panel,
.cluster-list a {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background-color 0.32s ease;
}

.mission-card:hover,
.category-card:hover,
.post-card:hover,
.sidebar-card:hover,
.contact-card:hover,
.cluster-list a:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 82, 60, 0.28);
  box-shadow: 0 18px 32px rgba(24, 31, 26, 0.12);
}

.category-card {
  overflow: hidden;
  padding: 0;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 0.42s ease;
}

.category-card:hover img {
  transform: scale(1.03);
}

.category-card-content {
  padding: 1.25rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.66rem;
  border-radius: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  border: 1px solid rgba(53, 82, 60, 0.14);
  background: rgba(53, 82, 60, 0.08);
  color: var(--accent);
}

.post-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    var(--shadow-card);
}

.post-card h3 {
  margin-bottom: 0.4rem;
}

.post-card h3 a,
.post-card h2 a,
.category-card h3 a,
.category-card h2 a {
  color: inherit;
  text-decoration: none;
}

.post-card h3 a:hover,
.post-card h3 a:focus-visible,
.post-card h2 a:hover,
.post-card h2 a:focus-visible,
.category-card h3 a:hover,
.category-card h3 a:focus-visible,
.category-card h2 a:hover,
.category-card h2 a:focus-visible {
  color: var(--accent);
}

.post-card p {
  color: var(--muted);
}

.button-link,
.button-link:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: start;
  flex: 0 0 auto;
  gap: 0.45rem;
  min-height: 2.15rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.44rem 0.88rem;
  border-radius: 0;
  background: transparent;
  color: var(--accent-deep);
  text-decoration: none;
  font-size: 0.7rem;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  border: 2px solid rgba(37, 58, 43, 0.9);
  box-shadow: none;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.button-link:hover,
.button-link:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fefbf5;
}

.button-link.secondary,
.button-link.secondary:visited {
  color: var(--accent);
  border: 2px solid rgba(37, 58, 43, 0.68);
}

.button-link.secondary:hover,
.button-link.secondary:focus-visible {
  background: var(--accent-deep);
  color: #fefbf5;
  border-color: var(--accent-deep);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: auto;
  gap: 0.55rem;
}

.post-card .button-link,
.category-card .button-link,
.article-card .button-link,
.mission-card .button-link,
.sidebar-card .button-link,
.promo-panel .button-link,
.reading-feature-panel .button-link {
  width: fit-content;
  max-width: fit-content;
  justify-self: start;
  align-self: start;
}

.split-layout,
.article-layout,
.contact-layout {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, 0.86fr);
  align-items: start;
}

.sidebar-stack {
  display: grid;
  gap: 1.2rem;
}

.sidebar-card,
.footer-panel {
  padding: var(--panel-padding);
}

.sidebar-card.sidebar-card-visual,
.contact-card.contact-card-visual {
  padding: 0;
  overflow: hidden;
}

.sidebar-card.sidebar-card-visual img,
.contact-card.contact-card-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sidebar-card p,
.footer-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.article-card {
  overflow: hidden;
  background: var(--panel-surface);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    var(--panel-shadow);
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.article-body {
  padding: var(--panel-padding-lg);
}

.article-body h2 {
  margin-top: 1.6rem;
  margin-bottom: 0.55rem;
  font-size: clamp(1.56rem, 2.2vw, 2.05rem);
  line-height: 1.1;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  padding: 0;
  margin: 0 0 1.05rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb-list a {
  text-decoration: none;
  color: inherit;
}

.breadcrumb-list a:hover,
.breadcrumb-list a:focus-visible {
  color: var(--accent-deep);
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  color: rgba(92, 101, 93, 0.7);
}

.disclaimer-box {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(145, 118, 91, 0.3);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.82), rgba(231, 213, 192, 0.28));
}

.cluster-list {
  display: grid;
  gap: 0.95rem;
}

.cluster-list a {
  display: block;
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  box-shadow: none;
}

.cluster-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-family: "Avenir Next Condensed", "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  line-height: 1.18;
}

.cluster-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.article-body ul {
  margin: 0 0 1.35rem 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.article-body li {
  padding-left: 0.15rem;
  color: var(--muted);
}

.about-story {
  display: grid;
  gap: 1.15rem;
}

.quote-panel {
  padding: var(--panel-padding);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(220, 228, 215, 0.52), rgba(231, 213, 192, 0.54));
  border: 1px solid var(--panel-border);
  box-shadow: 0 14px 26px rgba(24, 31, 26, 0.08);
}

.contact-layout .contact-card {
  min-height: 100%;
}

.contact-card h2 {
  margin-bottom: 0.75rem;
}

.contact-meta {
  display: grid;
  gap: 0.8rem;
}

.contact-meta div {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

main.page:not(.page-home) .page-header h1 {
  max-width: 15ch;
  font-size: clamp(2.18rem, 3.45vw, 3.8rem);
  line-height: 1.02;
  text-wrap: balance;
}

main.page:not(.page-home) .page-header .lead {
  max-width: 33rem;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

main.page:not(.page-home) :is(.page-header, .sidebar-card, .quote-panel, .contact-card) > .eyebrow {
  display: flex;
  margin-bottom: 0.9rem;
}

main.page:not(.page-home) .section-grid {
  gap: 1.4rem;
}

main.page:not(.page-home) :is(.post-card, .category-card, .sidebar-card, .contact-card) {
  border: 1px solid var(--panel-border);
  background: var(--panel-surface-soft);
  box-shadow: var(--panel-shadow);
}

main.page:not(.page-home) .post-card,
main.page:not(.page-home) .sidebar-card,
main.page:not(.page-home) .contact-card {
  padding: var(--panel-padding);
}

main.page:not(.page-home) .category-card-content {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: var(--panel-padding);
  background: var(--panel-surface-soft);
}

main.page:not(.page-home) :is(.post-card h2, .category-card h2, .sidebar-card h2, .quote-panel h2, .contact-card h2) {
  margin-bottom: 0.1rem;
  font-size: clamp(1.58rem, 2.1vw, 2.02rem);
  line-height: 1.08;
  text-wrap: balance;
}

main.page:not(.page-home) :is(.post-card p, .category-card p) {
  max-width: 60ch;
  font-size: 0.98rem;
  line-height: 1.76;
}

main.page:not(.page-home) :is(.sidebar-card p, .quote-panel p, .contact-card p) {
  max-width: 40ch;
  font-size: 0.98rem;
  line-height: 1.74;
}

main.page:not(.page-home) .article-body p {
  max-width: 68ch;
  font-size: 1.01rem;
  line-height: 1.82;
}

main.page:not(.page-home) .tag-list {
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

main.page:not(.page-home) .tag {
  padding: 0.38rem 0.62rem;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
}

.site-footer {
  position: relative;
  margin-top: 2.2rem;
  padding: 2.05rem 1.4rem 2.9rem;
  border: 1px solid rgba(36, 49, 40, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(239, 233, 223, 0.92));
  box-shadow: 0 16px 32px rgba(24, 31, 26, 0.1);
}

.footer-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 228px;
}

.footer-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.45rem 1.2rem;
}

.footer-grid > .footer-panel:not(:first-child) {
  border-left: 1px solid rgba(36, 49, 40, 0.12);
}

.footer-panel:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.footer-nav {
  display: grid;
  gap: 0.24rem;
}

.footer-nav a {
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 650;
  padding: 0.6rem 0.76rem;
}

.site-credit {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(36, 49, 40, 0.1);
  color: var(--muted);
  font-size: 0.94rem;
}

.archive-comment {
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 0.6rem;
}

.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;
}

@media (min-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.3rem;
  }

  .site-nav {
    position: static;
    inset: auto;
    padding: 0.32rem;
    border: 1px solid rgba(36, 49, 40, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    justify-self: center;
    backdrop-filter: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    justify-content: center;
  }

  .menu-button {
    display: none;
  }

  .header-tools {
    justify-self: end;
  }
}

@media (max-width: 700px) {
  .brand-link::after {
    display: none;
  }
}

@media (max-width: 899px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    width: min(calc(100% - 1.25rem), var(--max-width));
    padding: 0.78rem 0.85rem;
    min-height: 5.25rem;
    border-radius: 8px;
  }

  .brand-link {
    min-width: 0;
    width: auto;
    overflow: visible;
  }

  .brand-link img {
    width: clamp(156px, 34vw, 256px);
    max-width: 100%;
  }

  .brand-link::after {
    display: inline-flex;
    content: "Field notes and guides";
    min-height: 1.95rem;
    padding-left: 0.78rem;
    font-size: 0.52rem;
    letter-spacing: 0.13em;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-list a {
    width: 100%;
    justify-content: space-between;
    padding: 0.92rem 1rem;
    background: rgba(255, 255, 255, 0.42);
  }

  .section-frame {
    padding: 1.35rem;
  }
}

@media (max-width: 860px) {
  .hero,
  .split-layout,
  .article-layout,
  .contact-layout,
  .footer-grid,
  .section-grid.three-up,
  .section-grid.two-up {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  .page-home .section-mission .mission-card:first-child,
  .page-home .section-mission .mission-card:nth-child(2),
  .page-home .section-mission .mission-card:last-child,
  .page-home .section-featured .post-card:first-child,
  .page-home .section-featured .post-card:nth-child(2),
  .page-home .section-reading .post-card:last-child,
  .page-home .section-categories .category-card:first-child {
    grid-column: auto;
  }

  .page-home .section-categories .section-grid,
  .page-home .section-featured .section-grid,
  .page-home .section-reading .section-grid {
    grid-template-columns: 1fr;
  }

  .page-home .section-categories .category-card:first-child {
    display: block;
  }

  .page-home .section-categories .category-card:first-child img {
    height: auto;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-home .section-home-story .article-card {
    grid-template-columns: 1fr;
  }

  .page-home .section-home-story .article-card::after {
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    gap: 1rem;
  }

  .footer-grid > .footer-panel:not(:first-child) {
    border-left: 0;
    border-top: 1px solid rgba(36, 49, 40, 0.12);
    padding-top: 1.1rem;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 1.2rem;
  }

  .shell,
  .header-inner {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .site-header {
    padding-top: 0.55rem;
  }

  .header-inner {
    min-height: 5rem;
    padding: 0.72rem 0.78rem;
  }

  .brand-link img {
    width: clamp(148px, 46vw, 216px);
  }

  .header-tools {
    gap: 0.55rem;
  }

  .search-chip {
    padding: 0.74rem 0.9rem;
    font-size: 0.72rem;
  }

  .menu-button {
    padding: 0.76rem 0.88rem;
    gap: 0.62rem;
  }

  .section-frame {
    padding: 1.05rem;
    border-radius: 8px;
  }

  main.page:not(.page-home) .page-header {
    min-height: auto;
    padding: 1.15rem 1.05rem;
    border-radius: 8px;
  }

  main.page:not(.page-home) .page-header::after {
    top: 0.85rem;
    right: 0.9rem;
    bottom: 0.85rem;
    width: min(32%, 210px);
    opacity: 0.13;
  }

  main.page:not(.page-home) .page-header > :not(.breadcrumb-list) {
    max-width: min(32rem, calc(100% - 11rem));
  }

  .hero-copy,
  .article-body,
  .post-card,
  .mission-card,
  .sidebar-card,
  .footer-panel,
  .contact-card {
    padding: 1.1rem;
  }

  .button-row {
    width: auto;
  }

  .button-link,
  .button-link.secondary {
    width: auto;
  }

  .site-footer {
    padding: 1.6rem 1rem 2.2rem;
    border-radius: 8px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0.62rem;
  }

  .brand-link::after {
    display: none;
  }

  .site-nav {
    inset: 8.2rem 0.7rem auto 0.7rem;
  }

  main.page:not(.page-home) .page-header::after {
    display: none;
  }

  main.page:not(.page-home) .page-header > :not(.breadcrumb-list) {
    max-width: 100%;
  }
}

/* Full-width homepage and shared layout refactor */

.shell {
  width: min(calc(100% - 2.8rem), 1240px);
}

.site-header {
  padding: 0;
  background: rgba(247, 243, 235, 0.94);
  border-bottom: 1px solid rgba(36, 49, 40, 0.12);
  overflow: visible;
}

.site-header::after {
  display: none;
}

body.header-scrolled .site-header {
  padding: 0;
}

.header-main {
  border-bottom: 1px solid rgba(36, 49, 40, 0.1);
  background:
    linear-gradient(180deg, rgba(249, 245, 238, 0.985), rgba(246, 239, 229, 0.955));
  overflow: visible;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.36);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--band-width));
  min-height: 6.35rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2.35rem;
  padding: 1.22rem 0 1.14rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.header-scrolled .header-inner {
  min-height: 5.95rem;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand-link {
  min-width: 0;
  min-height: 0;
  width: auto;
  flex: 0 1 auto;
  padding: 0.08rem 0 0.14rem;
  align-self: center;
  line-height: 0;
  overflow: visible;
}

.brand-link img {
  width: clamp(270px, 31vw, 388px);
  height: auto;
  max-width: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: left center;
  vertical-align: middle;
  filter: none;
}

.brand-link:hover img,
.brand-link:focus-visible img {
  transform: none;
}

.brand-link::after {
  min-height: 2.55rem;
  padding-left: 1rem;
  align-self: center;
  color: rgba(73, 83, 75, 0.9);
  border-left-color: rgba(36, 49, 40, 0.22);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.header-tools {
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-self: end;
  justify-content: flex-end;
  gap: 0;
  min-height: 100%;
}

.header-nav-row {
  background: rgba(255, 252, 247, 0.9);
  border-bottom: 1px solid rgba(36, 49, 40, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: visible;
}

.header-nav-inner {
  width: min(calc(100% - 2rem), var(--band-width));
  margin: 0 auto;
  min-height: 3.9rem;
  display: flex;
  align-items: center;
}

.search-chip {
  min-height: 2.95rem;
  padding: 0.82rem 1.08rem;
}

.button-link,
.button-link.secondary {
  min-height: 2.15rem;
  padding: 0.44rem 0.88rem;
}

.page {
  padding: 2rem 0 4rem;
}

.page.page-home {
  padding: 0 0 4rem;
}

.page-home {
  overflow: clip;
}

.home-band {
  position: relative;
  width: 100%;
  padding: clamp(3.45rem, 5.6vw, 6.2rem) 0;
}

.home-band + .home-band {
  border-top: 1px solid rgba(36, 49, 40, 0.1);
}

.home-container {
  width: min(calc(100% - 2rem), var(--band-width));
  margin: 0 auto;
}

.home-container-wide {
  width: min(calc(100% - 0.6rem), var(--band-width-wide));
}

.section-heading.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: end;
  gap: 2.35rem;
  margin-bottom: 2.2rem;
}

.section-heading.section-heading-wide > div {
  display: grid;
  gap: 0.3rem;
}

.section-heading.section-heading-wide h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 3.1vw, 3rem);
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading.section-heading-wide p {
  max-width: 34rem;
  font-size: clamp(0.99rem, 1.14vw, 1.05rem);
  line-height: 1.78;
  color: rgba(73, 83, 75, 0.9);
}

.home-hero-band {
  padding-top: clamp(2.4rem, 4.2vw, 3.5rem);
  padding-bottom: clamp(1.6rem, 2.4vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(35, 49, 40, 0.99) 0%, rgba(39, 54, 44, 0.97) 52%, rgba(104, 88, 68, 0.9) 100%);
}

.hero-layout {
  display: grid;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(34rem, 48vw, 42rem);
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #172019;
  box-shadow: 0 30px 72px rgba(10, 14, 11, 0.18);
}

.hero-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 16, 13, 0.84) 0%, rgba(12, 16, 13, 0.78) 34%, rgba(12, 16, 13, 0.28) 66%, rgba(12, 16, 13, 0.54) 100%),
    linear-gradient(180deg, rgba(12, 16, 13, 0.44) 0%, rgba(12, 16, 13, 0.16) 32%, rgba(12, 16, 13, 0.48) 100%);
  pointer-events: none;
}

.hero-layout::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 16, 13, 0) 0%, rgba(12, 16, 13, 0.48) 100%);
  pointer-events: none;
}

.page-home .home-hero-band .hero-copy {
  position: relative;
  z-index: 2;
  min-height: inherit;
  max-width: 44rem;
  padding: clamp(2.6rem, 4.4vw, 4.8rem) clamp(1.9rem, 3.6vw, 3.6rem);
  align-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .home-hero-band .hero-copy h1,
.page-home .home-hero-band .hero-copy p,
.page-home .home-hero-band .hero-copy .lead {
  color: #f7f2e8;
}

.page-home .home-hero-band .hero-copy .lead {
  color: rgba(247, 242, 232, 0.9);
}

.page-home .home-hero-band .hero-copy h1 {
  max-width: 10.8ch;
  font-size: clamp(3.2rem, 6.2vw, 6rem);
}

.page-home .home-hero-band .eyebrow {
  color: #f7f2e8;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.page-home .home-hero-band .button-link,
.page-home .home-hero-band .button-link.secondary {
  min-height: 2.5rem;
  padding: 0.58rem 1.08rem;
  color: #fffdf8;
  border-color: rgba(255, 255, 255, 0.9);
}

.page-home .home-hero-band .button-link:hover,
.page-home .home-hero-band .button-link:focus-visible,
.page-home .home-hero-band .button-link.secondary:hover,
.page-home .home-hero-band .button-link.secondary:focus-visible {
  background: #ffffff;
  color: var(--accent-deep);
  border-color: #ffffff;
}

.page-home .home-hero-band .hero-visual {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-home .home-hero-band .hero-note {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: min(100%, 24rem);
  max-width: 24rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.16), rgba(255, 251, 245, 0.08));
  box-shadow: 0 20px 40px rgba(8, 11, 9, 0.14);
  backdrop-filter: blur(14px);
}

.page-home .home-hero-band .hero-note p {
  color: #f7f2e8;
}

.page-home .home-hero-band .hero-note .archive-comment {
  color: rgba(247, 242, 232, 0.76);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border: 1px solid rgba(36, 49, 40, 0.14);
  border-top: 0;
  background: rgba(255, 251, 245, 0.94);
}

.page-home .hero-metrics .stat-card {
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(36, 49, 40, 0.12);
  box-shadow: none;
}

.page-home .hero-metrics .stat-card:last-child {
  border-right: 0;
}

.page-home .hero-metrics .stat-label,
.page-home .hero-metrics .stat-value {
  color: var(--accent-deep);
}

.home-mission-band {
  background:
    linear-gradient(180deg, rgba(244, 237, 227, 0.94), rgba(248, 243, 235, 0.9));
}

.home-dual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.promo-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.6rem, 2.8vw, 2.4rem);
  border: 1px solid rgba(36, 49, 40, 0.16);
  background: rgba(255, 252, 247, 0.94);
}

.promo-panel-dark {
  background:
    linear-gradient(135deg, rgba(37, 58, 43, 0.99), rgba(61, 84, 66, 0.98));
  border-color: rgba(37, 58, 43, 0.78);
}

.promo-panel-dark h2,
.promo-panel-dark p {
  color: #f7f2e8;
}

.promo-panel-dark .eyebrow {
  color: #f7f2e8;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.promo-panel-dark .button-link,
.promo-panel-dark .button-link.secondary {
  color: #fffdf8;
  border-color: rgba(255, 255, 255, 0.88);
}

.promo-panel-dark .button-link:hover,
.promo-panel-dark .button-link:focus-visible,
.promo-panel-dark .button-link.secondary:hover,
.promo-panel-dark .button-link.secondary:focus-visible {
  background: #ffffff;
  color: var(--accent-deep);
  border-color: #ffffff;
}

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

.page-home .mission-card {
  min-height: 14rem;
  border-radius: 0;
  box-shadow: none;
}

.home-categories-band {
  background:
    linear-gradient(180deg, rgba(250, 246, 239, 0.94), rgba(239, 233, 223, 0.9));
}

.category-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.category-feature-grid .category-card {
  grid-column: span 3;
  border-radius: 0;
  box-shadow: none;
}

.category-feature-grid .category-card-feature {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
}

.category-feature-grid .category-card-feature img {
  height: 100%;
  aspect-ratio: auto;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.category-feature-grid .category-card-content {
  padding: 1.6rem;
}

.category-feature-grid .category-card-feature .category-card-content {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 2rem;
}

.home-featured-band {
  background:
    linear-gradient(135deg, rgba(35, 49, 40, 1) 0%, rgba(42, 57, 46, 0.98) 55%, rgba(74, 66, 53, 0.96) 100%);
}

.home-featured-band .section-heading h2,
.home-featured-band .section-heading p {
  color: #f7f2e8;
}

.home-featured-band .eyebrow {
  color: #f7f2e8;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.featured-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.featured-editorial-grid .post-card {
  grid-column: span 3;
  min-height: 100%;
  border-radius: 0;
  background: rgba(255, 251, 245, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.featured-editorial-grid .post-card h3 a,
.featured-editorial-grid .post-card p {
  color: #f7f2e8;
}

.featured-editorial-grid .post-card .tag {
  color: #fffdf8;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.home-featured-band .featured-editorial-grid .post-card .button-link.secondary {
  color: #fffdf8;
  border-color: rgba(255, 255, 255, 0.88);
}

.home-featured-band .featured-editorial-grid .post-card .button-link.secondary:hover,
.home-featured-band .featured-editorial-grid .post-card .button-link.secondary:focus-visible {
  background: #ffffff;
  color: var(--accent-deep);
  border-color: #ffffff;
}

.featured-editorial-grid .feature-primary {
  grid-column: span 7;
  min-height: 22rem;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(240, 231, 217, 0.94));
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-editorial-grid .feature-primary h3 a,
.featured-editorial-grid .feature-primary p {
  color: var(--text);
}

.featured-editorial-grid .feature-primary .tag {
  color: var(--accent);
  border-color: rgba(53, 82, 60, 0.16);
  background: rgba(53, 82, 60, 0.08);
}

.home-featured-band .featured-editorial-grid .feature-primary .button-link.secondary {
  color: var(--accent-deep);
  border-color: rgba(37, 58, 43, 0.84);
}

.home-featured-band .featured-editorial-grid .feature-primary .button-link.secondary:hover,
.home-featured-band .featured-editorial-grid .feature-primary .button-link.secondary:focus-visible {
  background: var(--accent-deep);
  color: #fffdf8;
  border-color: var(--accent-deep);
}

.featured-editorial-grid .feature-secondary {
  grid-column: span 5;
  min-height: 22rem;
}

.home-reading-band {
  background:
    linear-gradient(180deg, rgba(247, 242, 233, 0.94), rgba(234, 240, 231, 0.88));
}

.home-reading-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: start;
}

.reading-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.88fr);
  align-items: stretch;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(36, 49, 40, 0.16);
  background:
    linear-gradient(180deg, rgba(250, 246, 239, 0.98), rgba(242, 235, 225, 0.94));
  box-shadow: 0 18px 34px rgba(18, 25, 20, 0.06);
}

.reading-feature-copy {
  padding: clamp(1.7rem, 2.6vw, 2.4rem);
  align-self: center;
}

.reading-feature-visual {
  margin: 0;
  min-height: 0;
  height: 100%;
  max-height: clamp(24rem, 33vw, 31rem);
  aspect-ratio: 4 / 5;
  align-self: stretch;
  justify-self: stretch;
}

.reading-feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: cover;
  border-left: 0;
}

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

.reading-post-grid .post-card {
  border-radius: 0;
  box-shadow: none;
}

.reading-post-grid .post-card:last-child {
  grid-column: span 2;
}

.home-story-band {
  background:
    linear-gradient(180deg, rgba(239, 233, 223, 0.92), rgba(248, 243, 235, 0.96));
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  border-radius: 0;
  box-shadow: none;
}

.story-card .article-body {
  align-self: center;
}

.story-visual {
  min-height: 100%;
}

.story-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-left: 1px solid var(--line);
}

.story-support .sidebar-card {
  border-radius: 0;
  box-shadow: none;
}

.story-support .sidebar-card:first-child {
  background:
    linear-gradient(135deg, rgba(37, 58, 43, 0.98), rgba(68, 90, 72, 0.96));
  border-color: rgba(37, 58, 43, 0.78);
}

.story-support .sidebar-card:first-child .eyebrow,
.story-support .sidebar-card:first-child h3,
.story-support .sidebar-card:first-child p {
  color: #f7f2e8;
}

.story-support .sidebar-card:first-child .eyebrow {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.post-card,
.category-card,
.mission-card,
.sidebar-card,
.article-card,
.contact-card,
.reading-feature-panel {
  border-radius: 0;
}

.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 3rem 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(239, 233, 223, 0.98), rgba(231, 226, 217, 1));
  box-shadow: none;
}

.footer-grid {
  width: min(calc(100% - 2rem), var(--band-width));
  margin: 0 auto;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 0;
}

.footer-panel {
  padding: 0 1.8rem;
}

.footer-grid > .footer-panel:first-child {
  padding-left: 0;
}

.footer-grid > .footer-panel:last-child {
  padding-right: 0;
}

.footer-grid > .footer-panel:not(:first-child) {
  border-left: 1px solid rgba(36, 49, 40, 0.12);
}

@media (min-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2.2rem;
  }

  .header-nav-inner {
    width: min(calc(100% - 2rem), var(--band-width));
  }

  .site-nav {
    position: static;
    width: 100%;
    justify-self: stretch;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-list {
    display: flex;
    gap: 0.42rem;
    justify-content: center;
  }

  .nav-list a {
    padding: 0.98rem 1.08rem 0.94rem;
  }

  .menu-button {
    display: none;
  }
}

@media (max-width: 1180px) {
  .home-container,
  .header-inner,
  .footer-grid,
  .header-nav-inner {
    width: min(calc(100% - 1.4rem), var(--band-width));
  }

  .home-container-wide {
    width: min(calc(100% - 0.35rem), var(--band-width-wide));
  }

  .section-heading.section-heading-wide {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-layout,
  .home-dual-grid,
  .home-reading-layout,
  .home-story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .category-feature-grid .category-card,
  .featured-editorial-grid .post-card {
    grid-column: span 6;
  }

  .category-feature-grid .category-card-feature,
  .featured-editorial-grid .feature-primary,
  .featured-editorial-grid .feature-secondary {
    grid-column: span 12;
  }
}

@media (max-width: 899px) {
  .site-header {
    padding: 0;
  }

  .header-inner {
    width: min(calc(100% - 1.1rem), var(--band-width));
    min-height: 5.95rem;
    padding: 1.05rem 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
  }

  .header-nav-inner {
    width: min(calc(100% - 1.1rem), var(--band-width));
  }

  .brand-link img {
    width: clamp(190px, 44vw, 274px);
    max-width: 100%;
    max-height: none;
  }

  .site-nav {
    inset: 6.15rem 0.9rem auto 0.9rem;
  }

  .hero-metrics,
  .mission-panel-grid,
  .reading-post-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-feature-grid,
  .featured-editorial-grid {
    grid-template-columns: 1fr;
  }

  .category-feature-grid .category-card,
  .category-feature-grid .category-card-feature,
  .featured-editorial-grid .post-card,
  .featured-editorial-grid .feature-primary,
  .featured-editorial-grid .feature-secondary {
    grid-column: auto;
  }

  .reading-post-grid .post-card:last-child {
    grid-column: auto;
  }

  .category-feature-grid .category-card-feature,
  .story-card,
  .reading-feature-panel {
    grid-template-columns: 1fr;
  }

  .category-feature-grid .category-card-feature img {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    height: auto;
  }

  .story-visual img {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 16rem;
  }

  .reading-feature-visual img {
    border-left: 0;
    border-top: 0;
  }

  .footer-grid {
    gap: 1rem;
  }

  .site-footer .footer-grid > .footer-panel:not(:first-child) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.2rem;
  }

  .site-footer .footer-panel,
  .site-footer .footer-grid > .footer-panel:first-child,
  .site-footer .footer-grid > .footer-panel:last-child {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .shell,
  .home-container,
  .footer-grid,
  .header-nav-inner {
    width: min(calc(100% - 0.9rem), var(--band-width));
  }

  .home-container-wide {
    width: min(calc(100% - 0.2rem), var(--band-width-wide));
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0.65rem;
    min-height: 5.6rem;
  }

  .page {
    padding-top: 1.3rem;
  }

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

  .home-band {
    padding: 2.2rem 0;
  }

  .page-home .home-hero-band .hero-copy,
  .promo-panel,
  .reading-feature-copy,
  .post-card,
  .mission-card,
  .category-card-content,
  .article-body,
  .sidebar-card,
  .contact-card {
    padding: 1.2rem;
  }

  .page-home .home-hero-band .hero-copy {
    min-height: 0;
  }

  .page-home .home-hero-band .hero-visual {
    min-height: 18rem;
  }

  .page-home .home-hero-band .hero-note {
    padding: 1.1rem 1.15rem;
  }

  .brand-link img {
    width: clamp(170px, 47vw, 236px);
    max-width: 100%;
    max-height: none;
  }

  .button-row,
  .search-chip {
    width: auto;
  }

  .button-link,
  .button-link.secondary {
    width: auto;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
  }

  .site-nav {
    inset: 8.35rem 0.7rem auto 0.7rem;
  }

  .site-footer {
    padding: 2.2rem 0;
  }
}

/* Homepage imagery and transparent header refinement */

body.home-page {
  --home-card-border: rgba(36, 49, 40, 0.14);
  --home-card-border-strong: rgba(36, 49, 40, 0.18);
  --home-card-bg: linear-gradient(180deg, rgba(250, 246, 239, 0.98), rgba(242, 235, 225, 0.94));
  --home-card-bg-soft: linear-gradient(180deg, rgba(247, 243, 235, 0.98), rgba(239, 233, 223, 0.94));
  --home-card-shadow: 0 18px 34px rgba(18, 25, 20, 0.06);
  --home-card-padding: clamp(1.4rem, 2vw, 1.65rem);
  --home-card-padding-lg: clamp(1.75rem, 3vw, 2.35rem);
  --home-card-gap: 0.85rem;
}

body.home-page .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease,
    transform 0.3s ease;
}

body.home-page .header-main,
body.home-page .header-nav-row,
body.home-page .brand-link img,
body.home-page .brand-link::after,
body.home-page .nav-list a,
body.home-page .search-chip,
body.home-page .menu-button {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.2s ease;
}

body.home-page.header-at-top .header-main {
  background: linear-gradient(180deg, rgba(13, 18, 15, 0.58), rgba(13, 18, 15, 0.18));
  border-bottom-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

body.home-page.header-at-top .header-nav-row {
  background: rgba(13, 18, 15, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

body.home-page.header-at-top .brand-link img {
  filter: none;
}

body.home-page.header-at-top .brand-link::after {
  color: rgba(247, 242, 232, 0.9);
  border-left-color: rgba(255, 255, 255, 0.22);
}

body.home-page.header-at-top .nav-list a,
body.home-page.header-at-top .search-chip,
body.home-page.header-at-top .menu-button {
  color: rgba(255, 248, 240, 0.98);
}

body.home-page.header-at-top .search-chip,
body.home-page.header-at-top .menu-button {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

body.home-page.header-at-top .nav-list a:hover,
body.home-page.header-at-top .nav-list a:focus-visible,
body.home-page.header-at-top .nav-list a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
  color: #fffdf8;
  border-color: rgba(255, 255, 255, 0.22);
}

body.home-page.header-at-top .search-chip:hover,
body.home-page.header-at-top .search-chip:focus-visible,
body.home-page.header-at-top .menu-button:hover,
body.home-page.header-at-top .menu-button:focus-visible {
  background: #fffdf8;
  color: var(--accent-deep);
  border-color: #fffdf8;
}

body.home-page.header-scrolled .site-header {
  background: rgba(247, 243, 235, 0.94);
  border-bottom-color: rgba(36, 49, 40, 0.12);
  box-shadow: 0 10px 28px rgba(24, 31, 26, 0.12);
  backdrop-filter: blur(18px);
}

body.home-page.header-scrolled .header-main {
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.98), rgba(246, 239, 229, 0.94));
  border-bottom-color: rgba(36, 49, 40, 0.1);
}

body.home-page.header-scrolled .header-nav-row {
  background: rgba(255, 252, 247, 0.78);
  border-bottom-color: rgba(36, 49, 40, 0.08);
}

body.home-page .home-hero-band {
  padding-top: 0;
  padding-bottom: clamp(1.6rem, 2.4vw, 2.4rem);
}

body.home-page .home-hero-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(10rem, 16vw, 14rem);
  background: linear-gradient(180deg, rgba(11, 15, 12, 0.58), rgba(11, 15, 12, 0));
  pointer-events: none;
}

body.home-page .hero-layout,
body.home-page .hero-metrics {
  position: relative;
  z-index: 1;
}

body.home-page .hero-layout {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  background: #172019;
  box-shadow: none;
  grid-template-columns: minmax(0, 1fr);
}

body.home-page .hero-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 16, 13, 0.82) 0%, rgba(12, 16, 13, 0.76) 32%, rgba(12, 16, 13, 0.24) 66%, rgba(12, 16, 13, 0.52) 100%),
    linear-gradient(180deg, rgba(12, 16, 13, 0.52) 0%, rgba(12, 16, 13, 0.16) 28%, rgba(12, 16, 13, 0.46) 100%);
  pointer-events: none;
}

body.home-page .hero-layout::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 86%, rgba(12, 16, 13, 0.48) 0%, rgba(12, 16, 13, 0.12) 26%, transparent 48%),
    linear-gradient(180deg, rgba(12, 16, 13, 0) 62%, rgba(12, 16, 13, 0.4) 100%);
  pointer-events: none;
}

body.home-page .hero-overlay-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2.4rem), var(--band-width-wide));
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding-top: clamp(1.2rem, 1.8vw, 1.8rem);
}

.page-home .home-hero-band .hero-copy {
  gap: 0.95rem;
  position: relative;
  z-index: 2;
  min-height: 100%;
  max-width: 45rem;
  padding: clamp(10.1rem, 14vw, 11.8rem) clamp(0.35rem, 1vw, 0.8rem) clamp(5.3rem, 7vw, 6.1rem);
  align-content: center;
  border: 0;
  background: transparent;
}

.page-home .home-hero-band .hero-copy h1 {
  max-width: 11.4ch;
  margin-bottom: 0.08rem;
  font-size: clamp(1.95rem, 3.1vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.page-home .home-hero-band .hero-copy .hero-heading-line {
  display: block;
}

.page-home .home-hero-band .hero-copy .hero-heading-line + .hero-heading-line {
  margin-top: 0.11em;
}

.page-home .home-hero-band .hero-copy .lead {
  max-width: 33rem;
  margin-bottom: 0.04rem;
  font-size: clamp(1.04rem, 1.3vw, 1.12rem);
  line-height: 1.68;
  color: rgba(247, 242, 232, 0.93);
}

.page-home .home-hero-band .hero-copy > p:not(.eyebrow):not(.lead) {
  max-width: 33rem;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(247, 242, 232, 0.8);
}

.page-home .home-hero-band .button-row {
  margin-top: 0.65rem;
  gap: 0.7rem;
}

.page-home .home-hero-band .hero-visual::before {
  display: none;
}

.page-home .home-hero-band .hero-visual img,
.category-feature-grid .category-card img,
.reading-feature-visual img,
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-hero-band .hero-visual img {
  filter: saturate(0.86) contrast(1.04) brightness(0.58);
}

.page-home .home-hero-band .hero-note {
  width: min(100%, 22.75rem);
  max-width: 22.75rem;
  padding: 1.08rem 1.16rem;
  color: #f7f2e8;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.16), rgba(255, 251, 245, 0.08));
  box-shadow: 0 20px 40px rgba(8, 11, 9, 0.14);
  backdrop-filter: blur(14px);
}

.page-home .home-hero-band .hero-note p {
  margin-bottom: 0.7rem;
  line-height: 1.64;
}

.page-home .home-hero-band .hero-note p:last-child {
  margin-bottom: 0;
}

.page-home .home-hero-band .hero-note .archive-comment {
  font-size: 0.92rem;
  line-height: 1.56;
  color: rgba(247, 242, 232, 0.72);
}

.page-home .home-hero-band .button-link,
.page-home .home-hero-band .button-link.secondary {
  min-height: 2.5rem;
  padding: 0.58rem 1.08rem;
}

body.home-page .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 100%;
  border: 0;
  pointer-events: none;
}

.page-home .home-hero-band .hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(0.6rem, 1.3vw, 1rem);
  bottom: clamp(1.4rem, 2.3vw, 2.2rem);
  pointer-events: auto;
}

.page-home .home-hero-band .hero-visual img {
  object-fit: cover;
  object-position: center center;
}

body.home-page .hero-metrics {
  width: 100%;
  max-width: none;
  gap: 0;
  margin-top: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(28, 43, 34, 0.92) 0%, rgba(48, 69, 52, 0.88) 48%, rgba(102, 85, 63, 0.84) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(36, 49, 40, 0.16);
}

body.home-page .hero-metrics .stat-card {
  border: 0;
  min-height: 7.7rem;
  padding: 1.6rem clamp(1.3rem, 3vw, 2.3rem);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(248, 242, 233, 0.82));
}

body.home-page .hero-metrics .stat-card:last-child {
  border-right: 0;
}

body.home-page .hero-metrics .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(37, 58, 43, 0.76);
}

body.home-page .hero-metrics .stat-value {
  margin-top: 0.5rem;
  font-size: clamp(1.32rem, 1.8vw, 1.78rem);
  line-height: 1.22;
  max-width: 14ch;
}

.home-dual-grid,
.category-feature-grid,
.featured-editorial-grid,
.home-reading-layout,
.home-story-grid {
  gap: 1.35rem;
}

.promo-panel {
  gap: var(--home-card-gap);
  padding: var(--home-card-padding-lg);
  border: 1px solid var(--home-card-border);
  box-shadow: var(--home-card-shadow);
}

.mission-panel-grid {
  gap: 1.15rem;
}

.category-feature-grid .category-card img {
  min-height: 18.5rem;
  border-bottom: 1px solid var(--line);
}

.category-feature-grid .category-card-feature img {
  min-height: 100%;
  border-bottom: 0;
}

.category-feature-grid .category-card-content {
  display: grid;
  align-content: start;
  gap: var(--home-card-gap);
  padding: var(--home-card-padding);
  background: var(--home-card-bg);
}

.category-feature-grid .category-card-feature .category-card-content {
  gap: 0.9rem;
  padding: var(--home-card-padding-lg);
}

.category-feature-grid .category-card h3 {
  margin-bottom: 0;
}

.category-feature-grid .category-card p {
  margin-bottom: 0;
  max-width: 37ch;
  font-size: 0.98rem;
  line-height: 1.72;
}

body.home-page .mission-card,
body.home-page .post-card,
body.home-page .story-support .sidebar-card,
body.home-page .story-support .cluster-list a {
  border: 1px solid var(--home-card-border);
  box-shadow: var(--home-card-shadow);
}

body.home-page .mission-card {
  min-height: 13.5rem;
  display: grid;
  align-content: start;
  gap: var(--home-card-gap);
  padding: var(--home-card-padding);
  background: var(--home-card-bg);
}

body.home-page .mission-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.16rem, 1.4vw, 1.3rem);
  line-height: 1.14;
}

body.home-page .mission-card p {
  margin-bottom: 0;
  font-size: 0.97rem;
  line-height: 1.72;
  max-width: 34ch;
}

body.home-page .post-card {
  grid-template-rows: auto auto 1fr auto;
  gap: var(--home-card-gap);
  padding: var(--home-card-padding);
  border-color: var(--home-card-border);
}

body.home-page .post-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.16rem, 1.42vw, 1.34rem);
  line-height: 1.15;
}

body.home-page .post-card p {
  margin-bottom: 0;
  max-width: 38ch;
  font-size: 0.965rem;
  line-height: 1.72;
}

body.home-page .post-card .button-link {
  margin-top: 0.2rem;
}

body.home-page .home-reading-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 242, 233, 0.92), rgba(232, 239, 231, 0.88));
}

body.home-page .home-reading-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
  background:
    linear-gradient(90deg, rgba(247, 242, 233, 0.96) 0%, rgba(247, 242, 233, 0.9) 22%, rgba(240, 236, 227, 0.72) 48%, rgba(234, 240, 231, 0.84) 100%),
    url("assets/img/categories/category-food-photo.jpg") left center / cover no-repeat;
}

body.home-page .home-reading-layout {
  position: relative;
  z-index: 1;
  align-items: start;
}

.featured-editorial-grid .post-card {
  padding: var(--home-card-padding);
}

.featured-editorial-grid .feature-primary,
.featured-editorial-grid .feature-secondary,
.featured-editorial-grid .post-card,
.reading-feature-panel,
body.home-page .story-card .article-body,
body.home-page .story-support .sidebar-card,
body.home-page .story-support .cluster-list a {
  border-color: var(--home-card-border);
}

.featured-editorial-grid .feature-primary {
  box-shadow: var(--home-card-shadow);
}

.reading-feature-visual {
  background: var(--accent-deep);
}

.reading-feature-panel {
  border: 1px solid var(--home-card-border);
  background: var(--home-card-bg);
  box-shadow: var(--home-card-shadow);
}

.reading-feature-copy {
  display: grid;
  align-content: start;
  gap: var(--home-card-gap);
  padding: var(--home-card-padding-lg);
}

.reading-feature-copy h2 {
  font-size: clamp(1.8rem, 2.35vw, 2.55rem);
  line-height: 1.08;
  max-width: 10ch;
}

.reading-feature-copy p {
  max-width: 34ch;
  font-size: 0.985rem;
  line-height: 1.72;
}

.reading-post-grid {
  gap: 1.15rem;
}

.reading-feature-visual img {
  filter: saturate(0.9) contrast(1.01) brightness(0.94);
}

.story-visual {
  background: var(--accent-deep);
}

.story-visual img {
  filter: saturate(0.92) brightness(0.95);
}

body.home-page .home-story-band {
  background:
    linear-gradient(180deg, rgba(240, 235, 225, 0.94), rgba(247, 243, 235, 0.98));
}

body.home-page .home-story-grid {
  gap: 1.25rem;
  align-items: start;
}

body.home-page .story-card {
  overflow: hidden;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  align-self: start;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.home-page .story-card .article-body {
  display: grid;
  align-content: start;
  gap: var(--home-card-gap);
  padding: var(--home-card-padding-lg);
  border: 1px solid var(--home-card-border);
  border-right: 0;
  background: var(--home-card-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

body.home-page .story-card .article-body h2,
body.home-page .story-support .sidebar-card h3 {
  line-height: 1.1;
}

body.home-page .story-support .sidebar-card > .eyebrow {
  margin-bottom: 1rem;
}

body.home-page .story-support .sidebar-card h3 {
  margin-bottom: 0.85rem;
}

body.home-page .story-card .article-body p,
body.home-page .story-support .sidebar-card p,
body.home-page .story-support .cluster-list span {
  font-size: 0.975rem;
  line-height: 1.72;
}

body.home-page .story-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0;
  min-height: 0;
  height: auto;
  align-self: stretch;
  box-shadow: none;
}

body.home-page .story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

body.home-page .story-support {
  gap: 1.2rem;
}

body.home-page .story-support .sidebar-card {
  padding: var(--home-card-padding);
  background: var(--home-card-bg-soft);
  box-shadow: 0 14px 30px rgba(18, 25, 20, 0.05);
}

body.home-page .story-support .sidebar-card:first-child {
  min-height: 16rem;
  justify-content: start;
  background:
    linear-gradient(135deg, rgba(37, 58, 43, 0.98), rgba(70, 92, 74, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  box-shadow: 0 20px 40px rgba(20, 28, 22, 0.12);
}

body.home-page .story-support .sidebar-card:last-child {
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.98), rgba(239, 233, 223, 0.94));
}

body.home-page .story-support .cluster-list {
  gap: 0.85rem;
}

body.home-page .story-support .cluster-list a {
  padding: 1.15rem 1.08rem;
  border-radius: 0;
  border-color: var(--home-card-border);
  background: rgba(255, 255, 255, 0.72);
}

body.home-page .story-support .cluster-list strong {
  font-size: 1.03rem;
  line-height: 1.18;
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 3.4rem 0 2.8rem;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(24, 36, 29, 1) 0%, rgba(34, 53, 42, 0.98) 52%, rgba(74, 90, 74, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(14, 20, 16, 0.26);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(220, 197, 158, 0.9), rgba(220, 197, 158, 0.2) 46%, rgba(220, 197, 158, 0.7) 100%);
}

.site-footer .footer-grid {
  width: min(calc(100% - 2rem), var(--band-width));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.78fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: start;
}

.site-footer .footer-panel {
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-footer .footer-grid > .footer-panel:first-child {
  display: flex;
  flex-direction: column;
  padding-right: 1.5rem;
}

.site-footer .footer-grid > .footer-panel:last-child {
  padding-right: 0;
}

.site-footer .footer-grid > .footer-panel:not(:first-child) {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .footer-brand {
  margin-bottom: 1.2rem;
}

.site-footer .footer-brand img {
  width: clamp(220px, 22vw, 260px);
  filter: none;
}

.site-footer .eyebrow {
  color: rgba(247, 242, 232, 0.82);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-footer .footer-panel p,
.site-footer .site-credit {
  color: rgba(247, 242, 232, 0.8);
}

.site-footer .footer-nav {
  display: grid;
  gap: 0.35rem;
}

.site-footer .footer-nav a {
  display: inline-flex;
  width: 100%;
  padding: 0.52rem 0;
  color: #f7f2e8;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.site-footer .footer-nav a:hover,
.site-footer .footer-nav a:focus-visible {
  color: #ffffff;
  border-bottom-color: rgba(220, 197, 158, 0.72);
  background: transparent;
}

.site-footer .site-credit {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .site-footer .footer-grid > .footer-panel:first-child {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer .footer-grid > .footer-panel:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 2.2rem 0 2.1rem;
  }

  .site-footer .footer-grid {
    width: min(calc(100% - 1.25rem), var(--band-width));
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer .footer-grid > .footer-panel:first-child,
  .site-footer .footer-grid > .footer-panel:last-child {
    padding-right: 0;
  }

  .site-footer .footer-grid > .footer-panel:not(:first-child) {
    padding-left: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .site-footer .footer-brand img {
    width: min(100%, 210px);
  }

  .site-footer .footer-panel p,
  .site-footer .site-credit {
    max-width: none;
  }
}

@media (max-width: 899px) {
  body.home-page .home-hero-band {
    padding-top: 0;
  }

  body.home-page .hero-layout {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
  }

  body.home-page .hero-layout::before {
    background:
      linear-gradient(180deg, rgba(12, 16, 13, 0.78) 0%, rgba(12, 16, 13, 0.6) 38%, rgba(12, 16, 13, 0.44) 100%);
  }

  body.home-page .hero-overlay-shell {
    width: min(calc(100% - 1.4rem), var(--band-width-wide));
    padding-top: 0.9rem;
  }

  .page-home .home-hero-band .hero-copy {
    padding: 8.8rem 0.25rem 6.8rem;
    max-width: 35rem;
  }

  .page-home .home-hero-band .hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(1.95rem, 5vw, 3rem);
  }

  .page-home .home-hero-band .hero-copy .lead,
  .page-home .home-hero-band .hero-copy > p:not(.eyebrow):not(.lead) {
    max-width: 31rem;
  }

  body.home-page .header-main {
    backdrop-filter: blur(12px);
  }

  body.home-page.header-at-top .header-nav-row {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .page-home .home-hero-band .hero-note {
    width: auto;
    max-width: none;
    right: 0.2rem;
    left: 0.2rem;
    bottom: 1.2rem;
  }

  body.home-page .hero-metrics {
    grid-template-columns: 1fr;
  }

  body.home-page .hero-metrics .stat-card {
    border-right: 0;
    border-bottom: 1px solid rgba(36, 49, 40, 0.12);
  }

  body.home-page .hero-metrics .stat-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  body.home-page .home-hero-band {
    padding-top: 0;
  }

  .page-home .home-hero-band .hero-copy {
    max-width: 100%;
    padding: 8rem 0.2rem 7rem;
  }

  .page-home .home-hero-band .hero-copy h1 {
    max-width: 10.4ch;
    font-size: clamp(1.82rem, 6vw, 2.45rem);
  }

  .page-home .home-hero-band .button-link,
  .page-home .home-hero-band .button-link.secondary {
    min-height: 2.35rem;
    padding: 0.56rem 0.94rem;
  }

  .reading-feature-visual {
    max-height: 20rem;
    aspect-ratio: 16 / 10;
  }

  .category-feature-grid .category-card img {
    min-height: 14rem;
  }
}
