:root {
  --paper: #f4ebde;
  --paper-soft: #fbf6ef;
  --paper-strong: #fffaf4;
  --soil: #6f4630;
  --soil-soft: #8d6043;
  --leaf: #345b3b;
  --leaf-soft: #5d825c;
  --sage: #90aa7d;
  --tomato: #c75b39;
  --tomato-soft: #f0b195;
  --sun: #e2b557;
  --ink: #1d251c;
  --ink-soft: #516054;
  --line: rgba(52, 91, 59, 0.16);
  --shadow: 0 24px 70px rgba(83, 58, 36, 0.12);
  --shadow-soft: 0 10px 30px rgba(83, 58, 36, 0.08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1240px, calc(100vw - 32px));
  --font-body: "Alegreya Sans", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-display: "Literata", "Iowan Old Style", "Palatino Linotype", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(226, 181, 87, 0.18), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(144, 170, 125, 0.15), transparent 26%),
    linear-gradient(180deg, #f7efe2 0%, #f2e6d8 100%);
  text-rendering: optimizeLegibility;
}

body.has-sections-sheet {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(95, 67, 48, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 67, 48, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.3;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

input,
textarea,
select {
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(52, 91, 59, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

textarea {
  min-height: 152px;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199, 91, 57, 0.36);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 200;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(52, 91, 59, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  padding-block: 12px;
}

.header-theses {
  display: grid;
  gap: 12px;
  padding: 0 0 16px;
}

.header-theses__intro {
  display: grid;
  gap: 4px;
}

.header-theses__intro p,
.header-theses__intro span {
  margin: 0;
}

.header-theses__intro p {
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header-theses__intro span {
  color: var(--ink-soft);
  line-height: 1.4;
}

.header-theses__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.header-thesis {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: 0 8px 20px rgba(83, 58, 36, 0.06);
  color: var(--leaf);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.header-thesis[aria-current="page"] {
  background: rgba(52, 91, 59, 0.1);
  border-color: rgba(52, 91, 59, 0.18);
}

.brand {
  display: grid;
  grid-template-columns: max-content minmax(180px, 1fr);
  grid-template-areas:
    "mark copy"
    "name copy";
  column-gap: 16px;
  row-gap: 2px;
  align-items: end;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  grid-area: mark;
  color: var(--tomato);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-name,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

.brand-name {
  grid-area: name;
  font-size: 1.95rem;
  line-height: 1;
}

.brand-copy {
  grid-area: copy;
  align-self: end;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.2;
}

body[data-page="home"] .brand {
  column-gap: 18px;
  row-gap: 1px;
}

body[data-page="home"] .brand-name {
  display: block;
  font-size: clamp(2.9rem, 5.2vw, 4.8rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
}

body[data-page="home"] .brand-copy {
  max-width: 20ch;
  margin: 0 0 4px;
}

body[data-page="home"] .header-bar {
  min-height: 106px;
}

body[data-page="home"] .page-tag {
  display: none;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-nav a,
.button {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.top-nav a {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(52, 91, 59, 0.08);
}

.top-nav a:hover,
.button:hover {
  transform: translateY(-2px);
}

.sections-toggle {
  min-height: 50px;
  padding-inline: 20px;
  border-radius: 999px;
  border: 1px solid rgba(52, 91, 59, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 239, 229, 0.9));
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.sections-toggle::after {
  content: "▾";
  margin-left: 10px;
  font-size: 0.9rem;
}

.sections-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(29, 37, 28, 0.24);
  backdrop-filter: blur(4px);
}

.sections-sheet {
  position: absolute;
  top: calc(100% + 12px);
  right: 16px;
  z-index: 120;
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100svh - 108px);
  overflow: auto;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid rgba(52, 91, 59, 0.1);
  box-shadow: 0 32px 80px rgba(52, 34, 22, 0.18);
}

.sections-sheet__header {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.sections-sheet__header p {
  margin: 0;
  color: var(--tomato);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sections-sheet__header strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.sections-sheet__groups {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sections-sheet__group {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(52, 91, 59, 0.08);
}

.sections-sheet__group-head {
  display: grid;
  gap: 6px;
}

.sections-sheet__group-head p,
.sections-sheet__group-head span {
  margin: 0;
}

.sections-sheet__group-head p {
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sections-sheet__group-head span {
  color: var(--ink-soft);
  line-height: 1.45;
}

.sections-sheet__group-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sections-sheet__grid,
.portal-grid,
.page-related-grid,
.page-mini-grid {
  display: grid;
  gap: 14px;
}

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

.sections-link-card,
.portal-card,
.page-card,
.page-mini-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 241, 231, 0.92));
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.sections-link-card:hover,
.portal-card:hover,
.page-card:hover,
.page-mini-card:hover {
  transform: translateY(-3px);
}

.sections-link-card.is-current {
  border-color: rgba(52, 91, 59, 0.22);
  box-shadow: 0 12px 28px rgba(83, 58, 36, 0.11);
}

.sections-link-card small,
.portal-card small,
.page-card small,
.page-mini-card small {
  color: var(--tomato);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sections-link-card strong,
.portal-card strong,
.page-card strong,
.page-mini-card strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.08;
}

.sections-link-card span,
.portal-card span,
.page-card span,
.page-mini-card span {
  color: var(--ink-soft);
  line-height: 1.45;
}

.sections-link-card__topics {
  color: var(--leaf-soft);
  font-style: normal;
  line-height: 1.4;
}

.hero,
.section-panel,
.section-strip,
.site-footer {
  position: relative;
  scroll-margin-top: 112px;
}

.hero {
  padding: 42px 0 56px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), transparent 45%),
    radial-gradient(circle at 82% 20%, rgba(226, 181, 87, 0.24), transparent 24%),
    radial-gradient(circle at 16% 8%, rgba(144, 170, 125, 0.18), transparent 24%);
  pointer-events: none;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero-copy,
.hero-media,
.art-card,
.route-card,
.rule-card,
.season-card,
.crop-card,
.orchard-intro-card,
.orchard-rule-card,
.tree-card,
.orchard-support-card,
.knowledge-card,
.diagnostic-card,
.prevention-card,
.companion-card,
.special-card,
.harvest-card,
.thread-list-panel,
.thread-view-panel,
.new-thread-panel,
.source-card {
  animation: rise-in 640ms ease both;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.season-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tomato);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.lead {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 2vw, 1.4rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: linear-gradient(135deg, var(--leaf) 0%, #456f42 100%);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(52, 91, 59, 0.12);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-notes strong {
  display: block;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-photo-card {
  position: absolute;
  inset: 26px 0 auto 68px;
  aspect-ratio: 0.92;
  overflow: hidden;
  border-radius: 44px;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.hero-photo-card::after,
.photo-tone::after,
.calendar-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(52, 91, 59, 0.18)),
    linear-gradient(135deg, rgba(231, 197, 140, 0.22), rgba(84, 127, 84, 0.12));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-photo-card img,
.photo-tone img,
.calendar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-illustration {
  position: absolute;
  right: 14px;
  bottom: 24px;
  width: min(92%, 640px);
  border-radius: 30px;
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  left: 10px;
  bottom: 54px;
  max-width: 18rem;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.92);
  border: 1px solid rgba(52, 91, 59, 0.1);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  line-height: 1.45;
}

.hero-badge strong {
  display: block;
  margin-top: 6px;
  color: var(--leaf);
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 84px);
  padding: 0 0 22px;
  overflow: clip;
}

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

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

.home-hero__veil {
  background:
    linear-gradient(90deg, rgba(17, 23, 16, 0.84) 0%, rgba(17, 23, 16, 0.66) 34%, rgba(17, 23, 16, 0.22) 68%, rgba(17, 23, 16, 0.56) 100%),
    radial-gradient(circle at 16% 12%, rgba(226, 181, 87, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(17, 23, 16, 0.12), rgba(17, 23, 16, 0.34));
}

.home-hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: 34px;
  align-items: end;
  min-height: calc(100svh - 84px);
  padding: 52px 0 34px;
}

.home-hero__shell::before,
.home-hero__shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-hero__shell::before {
  top: 72px;
  right: min(2vw, 28px);
  z-index: -1;
  width: clamp(240px, 28vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 42px;
  background:
    linear-gradient(140deg, rgba(255, 250, 244, 0.16), rgba(255, 250, 244, 0.02)),
    radial-gradient(circle at 32% 32%, rgba(226, 181, 87, 0.18), transparent 56%);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 244, 0.04);
  transform: rotate(45deg);
  opacity: 0.9;
}

.home-hero__shell::after {
  right: clamp(10px, 7vw, 110px);
  bottom: 52px;
  z-index: -1;
  width: clamp(240px, 36vw, 500px);
  height: clamp(120px, 16vw, 210px);
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  background:
    radial-gradient(circle at 32% 50%, rgba(255, 250, 244, 0.16), transparent 58%),
    linear-gradient(90deg, rgba(226, 181, 87, 0.12), rgba(255, 250, 244, 0.02));
  opacity: 0.65;
}

.home-hero__copy {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 40rem;
  padding: 26px 30px 22px;
  align-self: center;
  isolation: isolate;
}

.home-hero__copy::before,
.home-hero__copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-hero__copy::before {
  inset: -16px -20px -18px -24px;
  z-index: -2;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: 40px;
  background:
    linear-gradient(155deg, rgba(18, 25, 20, 0.84), rgba(18, 25, 20, 0.54)),
    radial-gradient(circle at top left, rgba(226, 181, 87, 0.16), transparent 30%);
  box-shadow: 0 24px 70px rgba(8, 12, 10, 0.22);
  clip-path: polygon(0 0, calc(100% - 76px) 0, 100% 76px, 100% 100%, 0 100%);
}

.home-hero__copy::after {
  top: -26px;
  right: -54px;
  z-index: -1;
  width: 146px;
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.14), rgba(255, 250, 244, 0.02)),
    radial-gradient(circle at 36% 36%, rgba(226, 181, 87, 0.14), transparent 60%);
  transform: rotate(45deg);
  opacity: 0.9;
}

.home-hero__copy > * {
  position: relative;
  z-index: 1;
}

.home-hero .eyebrow {
  margin: 0;
  width: fit-content;
  padding-left: 70px;
  color: #f2c49a;
  position: relative;
}

.home-hero .eyebrow::before,
.home-hero .eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
}

.home-hero .eyebrow::before {
  left: 0;
  width: 52px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.home-hero .eyebrow::after {
  left: 56px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(242, 196, 154, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.home-hero .home-hero-subtitle {
  max-width: 16ch;
  color: #eef4ea;
}

.home-hero .page-lead {
  max-width: 36rem;
  color: rgba(255, 250, 244, 0.9);
}

.home-hero .button-secondary {
  background: rgba(255, 250, 244, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
}

.home-topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-topic-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(52, 91, 59, 0.08);
  color: var(--leaf);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.home-topic-cloud a:hover {
  transform: translateY(-2px);
}

.home-hero .page-tag,
.home-hero .home-topic-cloud a {
  background: rgba(255, 250, 244, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fffaf4;
  backdrop-filter: blur(10px);
}

.home-hero .page-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  width: fit-content;
  gap: 14px 16px;
}

.home-hero .page-tag-row {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  width: fit-content;
  gap: 12px 16px;
}

.home-hero .page-tag-row .page-tag {
  --hero-tag-shift: 0px;
  transform: translateY(var(--hero-tag-shift));
}

.home-hero .page-tag-row .page-tag:nth-child(2) {
  --hero-tag-shift: 10px;
}

.home-hero .page-tag-row .page-tag:nth-child(3) {
  grid-column: 1 / -1;
  --hero-tag-shift: -2px;
}

.home-hero .home-topic-cloud {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  width: fit-content;
  gap: 14px 14px;
  align-items: start;
}

.home-hero__aside {
  position: relative;
  display: grid;
  gap: 12px;
  align-self: end;
  padding: 24px 24px 18px;
  border-radius: 30px;
  background: rgba(247, 239, 229, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(17, 23, 16, 0.18);
  isolation: isolate;
  overflow: hidden;
}

.home-hero__aside::before,
.home-hero__aside::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-hero__aside::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.12), transparent 46%),
    radial-gradient(circle at top right, rgba(226, 181, 87, 0.16), transparent 30%);
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 0 100%);
  z-index: -2;
}

.home-hero__aside::after {
  top: 16px;
  right: 18px;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 22px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  transform: rotate(45deg);
  opacity: 0.7;
  z-index: -1;
}

.home-hero__aside > * {
  position: relative;
  z-index: 1;
}

.home-hero__aside-kicker {
  margin: 0;
  color: #f2c49a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero__aside-link {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fffaf4;
  text-decoration: none;
}

.home-hero__aside-link:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.home-hero__aside-link strong {
  font-family: var(--font-display);
  font-size: 1.34rem;
  line-height: 1.04;
}

.home-hero__aside-link span {
  color: rgba(255, 250, 244, 0.76);
  line-height: 1.45;
}

.subhero {
  padding: 34px 0 14px;
}

.subhero .shell,
.page-section .shell {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.subhero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: center;
}

.subhero__copy {
  display: grid;
  gap: 16px;
}

.subhero .eyebrow {
  display: none;
}

.home-subhero__copy {
  gap: 10px;
}

.subhero__copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.home-hero-title {
  max-width: 14ch;
  margin: 0;
  color: #fffaf4;
  font-size: clamp(2.55rem, 4.4vw, 3.85rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 28px rgba(8, 12, 10, 0.4);
}

.home-hero-subtitle {
  margin: 0;
  max-width: 18ch;
  color: var(--leaf);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-lead {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.55;
}

.page-tag-row,
.page-actions,
.page-link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-tag,
.page-link-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(52, 91, 59, 0.08);
  color: var(--leaf);
  font-weight: 700;
  text-decoration: none;
}

.subhero__art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.page-section {
  padding: 16px 0;
}

.article-body {
  max-width: 72ch;
}

.article-body h2 {
  margin: 22px 0 10px;
  font-family: var(--font-display);
  font-size: 1.62rem;
  line-height: 1.08;
}

.article-body h3 {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.12;
}

.article-body p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: 1.06rem;
}

.article-body ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.article-body li {
  margin: 0 0 6px;
}

.article-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(52, 91, 59, 0.08);
  border: 1px solid rgba(52, 91, 59, 0.12);
  color: var(--ink-soft);
  line-height: 1.6;
}

.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.article-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(52, 91, 59, 0.08);
  color: var(--leaf);
  font-weight: 700;
  text-decoration: none;
}

.page-panel-grid,
.page-two-grid {
  display: grid;
  gap: 18px;
}

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

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

.page-card {
  text-decoration: none;
}

.page-card p,
.page-card li,
.page-mini-card p,
.page-mini-card li {
  color: var(--ink-soft);
  line-height: 1.5;
}

.page-card ul,
.page-mini-card ul {
  margin: 0;
  padding-left: 18px;
}

.page-card a,
.page-mini-card a {
  color: var(--leaf);
  font-weight: 700;
}

.page-card--art img,
.portal-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.portal-card__image {
  background: rgba(255, 255, 255, 0.82);
}

.portal-card__top {
  display: grid;
  gap: 6px;
}

.portal-card__top strong {
  font-size: 1.44rem;
}

.page-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-visual-grid,
.home-feature-grid,
.rubric-stack,
.home-guides-grid,
.home-service-grid {
  display: grid;
  gap: 18px;
}

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

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

.editorial-visual-card,
.home-feature-card,
.guide-card,
.home-service-card,
.rubric-band {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.editorial-visual-card:hover,
.home-feature-card:hover,
.guide-card:hover,
.home-service-card:hover,
.rubric-band:hover {
  transform: translateY(-3px);
}

.editorial-visual-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 231, 0.92));
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
}

.editorial-visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.editorial-visual-card__copy {
  display: grid;
  gap: 8px;
}

.home-feature-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 30px;
  color: #fffaf4;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.home-feature-card--wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.home-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 11, 0.18), rgba(12, 18, 11, 0.78));
}

.home-feature-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: end;
  height: 100%;
  padding: 26px;
}

.home-feature-card small,
.editorial-visual-card small,
.guide-card small,
.home-service-card small {
  color: #f2c49a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-visual-card small {
  color: var(--tomato);
}

.editorial-visual-card strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.06;
}

.editorial-visual-card span {
  color: var(--ink-soft);
  line-height: 1.48;
}

.home-feature-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.02;
}

.home-feature-card span {
  max-width: 34rem;
  color: rgba(255, 250, 244, 0.82);
  line-height: 1.45;
}

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

.rubric-band {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.72fr);
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 231, 0.92));
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.rubric-band__copy {
  display: grid;
  gap: 14px;
}

.rubric-band__copy p,
.rubric-band__copy h3 {
  margin: 0;
}

.rubric-band__eyebrow {
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rubric-band__copy h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.02;
}

.rubric-band__copy > p:last-of-type {
  color: var(--ink-soft);
  line-height: 1.52;
}

.rubric-band__links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.rubric-band__links a {
  display: block;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(52, 91, 59, 0.08);
  color: var(--leaf);
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.home-guides-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-service-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.guide-card,
.home-service-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 231, 0.92));
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.guide-card h3,
.home-service-card strong {
  font-family: var(--font-display);
  font-size: 1.54rem;
  line-height: 1.05;
}

.guide-card h3,
.guide-card p,
.home-service-card strong,
.home-service-card span {
  margin: 0;
}

.guide-card p,
.home-service-card span {
  color: var(--ink-soft);
  line-height: 1.5;
}

.guide-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.guide-card__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(52, 91, 59, 0.08);
  color: var(--leaf);
  font-weight: 700;
  text-decoration: none;
}

.home-service-card {
  text-decoration: none;
}

.section-panel,
.section-strip {
  padding: 26px 0 26px;
}

.section-panel .shell,
.section-strip .shell {
  position: relative;
}

.section-panel .shell::before,
.section-strip .shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.section-panel .shell {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.section-strip .shell {
  padding: 10px 0;
}

.section-head {
  max-width: 62rem;
  margin-bottom: 26px;
}

.section-head.compact {
  margin-bottom: 18px;
}

h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head p:last-child {
  max-width: 50rem;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.5;
}

.route-grid,
.rule-grid,
.art-grid,
.crop-grid,
.orchard-rule-grid,
.tree-grid,
.orchard-support-grid,
.knowledge-grid,
.special-grid,
.harvest-grid,
.source-grid {
  display: grid;
  gap: 18px;
}

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

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

.art-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.art-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.route-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 241, 230, 0.95));
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.route-card:hover,
.crop-card:hover,
.rule-card:hover,
.art-card:hover,
.orchard-rule-card:hover,
.tree-card:hover,
.orchard-support-card:hover,
.special-card:hover,
.harvest-card:hover,
.source-card:hover,
.season-card:hover {
  transform: translateY(-3px);
}

.route-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(199, 91, 57, 0.12);
  color: var(--tomato);
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 1.46rem;
  line-height: 1.1;
}

.route-card p,
.route-card li,
.rule-card p,
.art-card p,
.season-card li,
.crop-card dd,
.orchard-rule-card p,
.tree-card p,
.tree-card li,
.orchard-support-card li,
.knowledge-copy li,
.prevention-card li,
.companion-card li,
.special-card li,
.harvest-card li,
.source-card li,
.panel-head p,
.empty-state,
.noscript-note {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.45;
}

.route-card ul,
.season-card ul,
.companion-card ul,
.tree-card ul,
.orchard-support-card ul,
.special-card ul,
.harvest-card ul,
.source-card ul,
.check-list {
  margin: 0;
  padding-left: 18px;
}

.route-card a {
  margin-top: auto;
  color: var(--leaf);
  font-weight: 800;
}

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

.rule-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.rule-card h3 {
  margin-bottom: 10px;
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
}

.calendar-rail {
  display: grid;
  gap: 14px;
}

.season-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(244, 236, 221, 0.92));
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.season-time {
  font-size: 0.8rem;
}

.calendar-visual {
  display: grid;
  align-content: start;
  gap: 20px;
}

.calendar-visual img:first-child {
  display: block;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.6);
}

.calendar-photo,
.photo-tone {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

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

.orchard {
  overflow: clip;
}

.orchard-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 20px;
  align-items: center;
}

.orchard-intro-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 240, 229, 0.92));
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.orchard-main-art img {
  display: block;
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.8);
}

.orchard-rule-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 18px;
}

.orchard-rule-card,
.tree-card,
.orchard-support-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.orchard-rule-card {
  display: grid;
  gap: 10px;
}

.tree-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.tree-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.tree-card p {
  margin: 0;
}

.orchard-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.orchard-support-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.orchard-support-card img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.pruning-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  margin-top: 18px;
  align-items: stretch;
}

.pruning-visual__media {
  position: relative;
  min-height: 560px;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
  background: #131914;
}

.pruning-visual__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.pruning-visual__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 12, 0.18), rgba(12, 16, 12, 0.62)),
    radial-gradient(circle at 42% 46%, rgba(255, 250, 244, 0.08), transparent 24%),
    radial-gradient(circle at 74% 24%, rgba(226, 181, 87, 0.16), transparent 22%);
  z-index: -1;
}

.pruning-visual__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(17, 23, 16, 0.52);
  border: 1px solid rgba(255, 250, 244, 0.14);
  backdrop-filter: blur(14px);
  color: #fffaf4;
}

.pruning-visual__caption p,
.pruning-visual__caption strong {
  margin: 0;
}

.pruning-visual__caption p {
  color: #f2c49a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pruning-visual__caption strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  line-height: 1.06;
  max-width: 18ch;
}

.pruning-hotspot {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: start;
  color: #fffaf4;
  text-shadow: 0 8px 22px rgba(8, 12, 10, 0.42);
}

.pruning-hotspot span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.94);
  color: var(--leaf);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(8, 12, 10, 0.22);
}

.pruning-hotspot em {
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.pruning-hotspot--1 {
  top: 16%;
  left: 14%;
}

.pruning-hotspot--2 {
  top: 36%;
  left: 47%;
}

.pruning-hotspot--3 {
  top: 19%;
  right: 29%;
}

.pruning-hotspot--4 {
  top: 54%;
  left: 29%;
}

.pruning-visual__legend {
  display: grid;
  gap: 14px;
  align-content: start;
}

.pruning-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px 14px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.pruning-note small,
.pruning-note strong,
.pruning-note span {
  margin: 0;
}

.pruning-note small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(199, 91, 57, 0.12);
  color: var(--tomato);
  font-size: 1rem;
  font-weight: 900;
}

.pruning-note strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.05;
}

.pruning-note span {
  color: var(--ink-soft);
  line-height: 1.5;
}

.pruning-carousel-block {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.pruning-carousel-block__head {
  margin-bottom: 0;
}

.pruning-carousel {
  display: grid;
  gap: 16px;
}

.pruning-carousel__viewport {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.pruning-carousel__track {
  display: flex;
  transition: transform 360ms ease;
  will-change: transform;
}

.pruning-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 20px;
  padding: 20px;
  align-items: stretch;
}

.pruning-slide__media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248, 241, 230, 0.96), rgba(239, 228, 210, 0.96));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.pruning-slide__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pruning-slide__media::after {
  display: none;
}

.pruning-slide__copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 10px 4px;
}

.pruning-diagram {
  transform-origin: center;
}

.pruning-diagram--ring {
  transform: scale(1.72);
  object-position: 54% 50%;
}

.pruning-diagram--watersprout {
  transform: scale(1.54);
  object-position: 53% 38%;
}

.pruning-diagram--lateral {
  transform: scale(1.7);
  object-position: 69% 36%;
}

.pruning-diagram--inward {
  transform: scale(1.72);
  object-position: 55% 34%;
}

.pruning-diagram--crossing {
  transform: scale(1.46);
  object-position: 51% 45%;
}

.pruning-diagram--deadwood {
  transform: scale(1.56);
  object-position: 60% 40%;
}

.pruning-slide__copy small {
  color: var(--tomato);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pruning-slide__copy h3,
.pruning-slide__copy p,
.pruning-slide__copy ul {
  margin: 0;
}

.pruning-slide__copy h3 {
  font-size: clamp(1.9rem, 2.9vw, 2.5rem);
  line-height: 0.98;
}

.pruning-slide__copy p,
.pruning-slide__copy li {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
}

.pruning-slide__copy ul {
  padding-left: 18px;
}

.pruning-marker {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fffaf4;
}

.pruning-marker::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 12px 26px rgba(8, 12, 10, 0.24);
}

.pruning-marker span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 23, 16, 0.6);
  border: 1px solid rgba(255, 250, 244, 0.14);
  backdrop-filter: blur(12px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 10px 24px rgba(8, 12, 10, 0.32);
}

.pruning-marker--ring {
  left: 12%;
  bottom: 16%;
}

.pruning-marker--watersprout {
  top: 16%;
  left: 42%;
}

.pruning-marker--lateral {
  left: 10%;
  bottom: 28%;
}

.pruning-marker--inward {
  top: 40%;
  left: 34%;
}

.pruning-marker--crossing {
  top: 28%;
  left: 18%;
}

.pruning-marker--deadwood {
  top: 16%;
  right: 12%;
}

.pruning-carousel__footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.pruning-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pruning-carousel__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(144, 170, 125, 0.34);
  box-shadow: inset 0 0 0 1px rgba(52, 91, 59, 0.1);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.pruning-carousel__dot[aria-current="true"] {
  background: var(--leaf);
  transform: scale(1.12);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 244, 0.2);
}

.pruning-carousel__count {
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
  white-space: nowrap;
}

.crop-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.crop-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.crop-card dl div {
  padding-top: 12px;
  border-top: 1px dashed rgba(52, 91, 59, 0.18);
}

.crop-card dt {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tomato);
}

.crop-card dd {
  margin: 6px 0 0;
}

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

.knowledge-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.knowledge-art {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.knowledge-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.knowledge-copy {
  padding: 22px 22px 24px;
}

.protection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.diagnostic-card,
.prevention-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.symptom-table {
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(52, 91, 59, 0.1);
}

.symptom-row {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.25fr;
}

.symptom-row span {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(52, 91, 59, 0.08);
  border-bottom: 1px solid rgba(52, 91, 59, 0.08);
}

.symptom-row span:last-child {
  border-right: 0;
}

.symptom-head span {
  background: rgba(52, 91, 59, 0.08);
  color: var(--leaf);
  font-weight: 800;
}

.prevention-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.prevention-card img {
  border-radius: 24px;
}

.companion-layout {
  display: grid;
  gap: 6px;
}

.companion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.companion-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.companion-card img {
  border-radius: 24px;
}

.callout {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(144, 170, 125, 0.14);
  color: var(--leaf);
  font-weight: 700;
  line-height: 1.45;
}

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

.special-card,
.harvest-card,
.source-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.forum-shell {
  display: grid;
  gap: 22px;
}

.forum-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 20px;
  align-items: center;
}

.forum-hero img {
  justify-self: end;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.forum-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(180px, 0.9fr)) auto;
  gap: 18px;
  align-items: end;
}

.forum-mode-note {
  margin: -2px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(144, 170, 125, 0.14);
  color: var(--leaf);
  font-weight: 700;
  line-height: 1.45;
}

.forum-search,
.forum-select {
  display: grid;
  gap: 10px;
}

.forum-search span,
.forum-select span,
.new-thread-form label span,
.reply-form label span {
  font-weight: 800;
  color: var(--leaf);
}

.forum-select select,
.forum-search input {
  width: 100%;
}

.forum-refresh {
  min-width: 180px;
}

.forum-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.thread-list-panel,
.thread-view-panel,
.new-thread-panel {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.thread-list,
.thread-posts {
  display: grid;
  gap: 12px;
}

.panel-head {
  margin-bottom: 18px;
}

.ogorodnik-thread-list__item {
  appearance: none;
  width: 100%;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  text-align: left;
  border: 1px solid rgba(52, 91, 59, 0.08);
  background: linear-gradient(135deg, rgba(250, 244, 236, 0.92), rgba(255, 255, 255, 0.88));
  color: var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.ogorodnik-thread-list__item:hover {
  transform: translateY(-3px);
}

.ogorodnik-thread-list__item.is-selected {
  border-color: rgba(52, 91, 59, 0.26);
  box-shadow: 0 12px 28px rgba(83, 58, 36, 0.09);
}

.ogorodnik-thread-list__header {
  display: grid;
  gap: 6px;
}

.ogorodnik-thread-list__header strong {
  font-size: 1.12rem;
  line-height: 1.35;
}

.ogorodnik-thread-list__meta,
.post-card__meta,
.ogorodnik-thread-detail__top,
.ogorodnik-thread-reply header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.ogorodnik-thread-list__section,
.ogorodnik-thread-list__status,
.ogorodnik-thread-list__author,
.ogorodnik-thread-list__count {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.ogorodnik-thread-list__section {
  background: rgba(226, 181, 87, 0.16);
  color: #7b5a13;
}

.ogorodnik-thread-list__status {
  background: rgba(199, 91, 57, 0.12);
  color: var(--tomato);
}

.ogorodnik-thread-list__author,
.ogorodnik-thread-list__count {
  background: rgba(144, 170, 125, 0.14);
  color: var(--leaf);
}

.thread-current {
  margin-bottom: 20px;
}

.ogorodnik-thread-detail {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(250, 244, 236, 0.72);
  border: 1px solid rgba(52, 91, 59, 0.08);
}

.ogorodnik-thread-detail__top,
.ogorodnik-thread-detail__meta,
.ogorodnik-thread-detail__author,
.ogorodnik-thread-detail__description,
.ogorodnik-thread-reply span,
.ogorodnik-thread-reply p {
  color: var(--ink-soft);
  line-height: 1.5;
}

.ogorodnik-thread-detail__title {
  margin: 0;
  font-size: 1.65rem;
}

.ogorodnik-thread-detail__author {
  margin: 0;
}

.ogorodnik-thread-detail__description {
  margin: 0;
  font-size: 1.08rem;
}

.ogorodnik-thread-reply {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(250, 244, 236, 0.7);
  border: 1px solid rgba(52, 91, 59, 0.08);
}

.ogorodnik-thread-reply strong {
  color: var(--ink);
}

.ogorodnik-thread-reply p {
  margin: 10px 0 0;
}

.reply-form,
.new-thread-form {
  display: grid;
  gap: 16px;
}

.reply-form {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed rgba(52, 91, 59, 0.18);
}

.new-thread-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.new-thread-form label,
.reply-form label {
  display: grid;
  gap: 10px;
}

.new-thread-form .wide {
  grid-column: 1 / -1;
}

.empty-state,
.noscript-note,
.status-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(199, 91, 57, 0.08);
}

.status-note:empty {
  display: none;
}

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

.source-card a {
  color: var(--leaf);
  font-weight: 700;
}

.site-footer {
  padding: 26px 0 42px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 30px;
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.88);
  border: 1px solid rgba(52, 91, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.footer-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.footer-bar p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1180px) {
  .route-grid,
  .rule-grid,
  .art-grid,
  .source-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stage,
  .calendar-layout,
  .orchard-hero-grid,
  .subhero__grid,
  .forum-hero,
  .home-hero__shell,
  .rubric-band {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 540px;
  }

  .crop-grid,
  .tree-grid,
  .orchard-support-grid,
  .knowledge-grid,
  .special-grid,
  .harvest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rubric-stack,
  .sections-sheet__groups {
    grid-template-columns: 1fr;
  }

  .editorial-visual-grid,
  .home-guides-grid,
  .home-service-grid,
  .sections-sheet__group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sections-sheet__grid,
  .portal-grid,
  .page-related-grid,
  .page-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__shell::before {
    top: 36px;
    right: -28px;
    width: 260px;
  }

  .home-hero__shell::after {
    right: -12px;
    bottom: 24px;
    width: 280px;
    height: 144px;
  }
}

@media (max-width: 900px) {
  .header-bar,
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .header-theses {
    padding-bottom: 14px;
  }

  .header-theses__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .header-theses__list::-webkit-scrollbar {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-notes,
  .route-grid,
  .rule-grid,
  .art-grid,
  .editorial-visual-grid,
  .home-feature-grid,
  .home-guides-grid,
  .home-service-grid,
  .rubric-stack,
  .companion-grid,
  .forum-grid,
  .source-grid,
  .orchard-rule-grid,
  .tree-grid,
  .orchard-support-grid,
  .special-grid,
  .harvest-grid,
  .crop-grid,
  .sections-sheet__groups,
  .sections-sheet__group-grid,
  .sections-sheet__grid,
  .portal-grid,
  .page-related-grid,
  .page-panel-grid,
  .knowledge-grid,
  .protection-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 440px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__shell {
    min-height: auto;
    padding: 40px 0 26px;
  }

  .home-hero__shell::before,
  .home-hero__shell::after {
    display: none;
  }

  .home-hero__copy {
    padding: 24px 24px 20px;
  }

  .home-hero__copy::before {
    inset: -12px -10px -14px -12px;
  }

  .home-hero__copy::after {
    top: -16px;
    right: -18px;
    width: 92px;
  }

  .home-hero .page-actions,
  .home-hero .page-tag-row,
  .home-hero .home-topic-cloud {
    display: flex;
    flex-wrap: wrap;
    width: auto;
  }

  .home-hero .page-tag-row .page-tag,
  .home-hero .home-topic-cloud a {
    transform: none;
  }

  .home-feature-card--wide {
    grid-column: auto;
  }

  .home-hero__aside {
    width: min(100%, 42rem);
  }

  .hero-photo-card {
    inset: 0 42px auto 0;
  }

  .hero-illustration {
    width: min(100%, 580px);
  }

  .new-thread-form {
    grid-template-columns: 1fr;
  }

  .forum-toolbar {
    grid-template-columns: 1fr;
  }

  .page-two-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100vw - 18px, 100%);
  }

  .site-header {
    position: static;
  }

  .header-bar {
    min-height: auto;
    padding-block: 16px;
  }

  .header-theses {
    gap: 10px;
    padding-bottom: 12px;
  }

  .header-theses__intro span {
    display: none;
  }

  .header-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-name {
    font-size: 1.58rem;
  }

  .brand {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mark"
      "name"
      "copy";
    row-gap: 2px;
  }

  body[data-page="home"] .brand-name {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  body[data-page="home"] .brand-copy {
    margin: 2px 0 0;
    max-width: 24ch;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .sections-toggle {
    width: 100%;
  }

  .sections-sheet {
    right: 9px;
    left: 9px;
    width: auto;
    padding: 18px 14px;
  }

  .subhero .shell,
  .page-section .shell {
    padding: 22px 16px;
  }

  .hero,
  .section-panel,
  .section-strip,
  .site-footer {
    scroll-margin-top: 24px;
  }

  .section-panel .shell {
    padding: 22px 16px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.88rem;
  }

  .lead,
  .section-head p:last-child,
  .page-lead {
    font-size: 1.05rem;
  }

  .home-hero-title {
    font-size: clamp(2.1rem, 8.4vw, 3rem);
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 16px;
  }

  .home-hero__shell {
    gap: 22px;
    padding: 30px 0 18px;
  }

  .home-hero__copy {
    padding: 20px 18px 18px;
  }

  .home-hero__copy::before {
    inset: -10px -8px -10px;
    border-radius: 28px;
    clip-path: polygon(0 0, calc(100% - 52px) 0, 100% 52px, 100% 100%, 0 100%);
  }

  .home-hero__copy::after {
    top: -10px;
    right: -12px;
    width: 76px;
    opacity: 0.55;
  }

  .home-hero .eyebrow {
    padding-left: 60px;
  }

  .home-hero .eyebrow::before {
    width: 44px;
  }

  .home-hero .eyebrow::after {
    left: 48px;
  }

  .home-hero__aside {
    padding: 20px 16px 16px;
    border-radius: 24px;
  }

  .home-feature-card,
  .home-feature-card--wide {
    min-height: 280px;
  }

  .editorial-visual-card,
  .home-feature-card__copy,
  .guide-card,
  .home-service-card,
  .rubric-band {
    padding: 20px 16px;
  }

  .rubric-band {
    grid-template-columns: 1fr;
  }

  .rubric-band__links a {
    padding: 14px 16px;
  }

  .guide-card h3,
  .home-service-card strong {
    font-size: 1.34rem;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-photo-card {
    inset: 0 18px auto 0;
    border-radius: 28px;
  }

  .hero-illustration {
    right: 0;
    bottom: 18px;
    border-radius: 20px;
  }

  .hero-badge {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .thread-list-panel,
  .thread-view-panel,
  .new-thread-panel {
    padding: 20px 16px;
  }

  .art-card,
  .tree-card,
  .orchard-support-card,
  .orchard-intro-card,
  .orchard-rule-card {
    padding: 18px 16px;
  }

  .symptom-row {
    grid-template-columns: 1fr;
  }

  .symptom-row span {
    border-right: 0;
  }
}

@media (max-width: 1100px) {
  .pruning-slide {
    grid-template-columns: 1fr;
  }

  .pruning-slide__media {
    min-height: 440px;
  }
}

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

  .pruning-carousel__dots {
    grid-column: 1 / -1;
    order: 3;
  }

  .pruning-carousel__count {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .pruning-slide {
    padding: 14px;
  }

  .pruning-slide__media {
    min-height: 320px;
    border-radius: 24px;
  }

  .pruning-slide__copy h3 {
    font-size: 1.7rem;
  }

  .pruning-slide__copy p,
  .pruning-slide__copy li {
    font-size: 1rem;
  }

  .pruning-marker span {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.92rem;
  }

  .pruning-carousel__footer {
    grid-template-columns: 1fr;
  }

  .pruning-carousel__count {
    justify-self: start;
  }

  .pruning-carousel__arrow {
    width: 100%;
    justify-content: center;
  }
}
