:root {
  --bg: #f7f3ed;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --text: #1f261f;
  --muted: #5b6458;
  --line: rgba(35, 48, 31, 0.1);
  --brand: #4a8b35;
  --brand-dark: #2e5f21;
  --accent: #7d1d12;
  --shadow: 0 24px 60px rgba(25, 31, 23, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --wide-container: 1840px;
  --landing-container: 1660px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(74, 139, 53, 0.72) #f4efe7;
  scrollbar-width: thin;
  max-width: 100%;
  overflow-x: clip;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f4efe7;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border: 3px solid #f4efe7;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5a9d40 0%, #254d1c 100%);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(122, 54, 16, 0.12), transparent 35%),
    linear-gradient(180deg, #fcfbf8 0%, #ffffff 100%);
  overflow-x: clip;
  max-width: 100%;
}

main {
  background: #ffffff;
  max-width: 100%;
  overflow-x: clip;
}

@media (min-width: 1081px) {
  .home-page {
    overflow-x: clip;
  }

  .home-page .page-shell {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    min-height: 100vh;
    overflow: visible;
  }

  .home-page main {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .topbar .container,
  .site-header .container,
  .hero .container,
  .home-footer .container {
    width: min(calc(100vw - 8rem), var(--wide-container));
  }

  .stats .container,
  .landing-cards .container {
    width: min(calc(100vw - 18rem), var(--landing-container));
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  overflow: visible;
  max-width: 100%;
}

.topbar {
  background: linear-gradient(90deg, #7f170f 0%, #5e130e 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
}

.topbar__inner,
.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__inner {
  min-height: 2.15rem;
}

.topbar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar__tagline {
  margin: 0;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(93, 100, 88, 0.08);
}

.site-header__inner {
  min-height: 4.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 82px;
  flex: none;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand__copy strong {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #1f2621;
}

.brand__copy strong span {
  color: var(--brand);
  margin-left: 0.22rem;
}

.brand__copy small {
  font-size: 0.72rem;
  font-weight: 600;
  color: #5d645e;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #263027;
}

.site-nav a {
  position: relative;
  padding: 0.3rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 3px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(74, 139, 53, 0.1);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-dark);
  margin: 0.3rem 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  position: relative;
  min-height: 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(17, 21, 17, 0.78) 0%, rgba(17, 21, 17, 0.55) 42%, rgba(17, 21, 17, 0.24) 66%, rgba(17, 21, 17, 0.1) 100%),
    url("assets/images/hero.jpg") center/cover no-repeat;
}

.landing-screen {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  height: 100%;
  min-height: 0;
  background: #ffffff;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 68%, rgba(255, 255, 255, 0.02) 100%);
}

.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  height: 100%;
  padding: 0.75rem 0 3.7rem;
}

.hero__copy {
  max-width: 54rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero__eyebrow-spacer {
  min-height: 1.25rem;
}

.hero h1,
.section-heading h2,
.story__copy h2,
.contact__card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  color: #69b54e;
}

.hero__lead {
  max-width: 28rem;
  margin: 0.65rem 0 0;
  font-size: clamp(0.92rem, 1vw, 0.98rem);
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 10rem;
  padding: 0.82rem 1.15rem;
  border-radius: 0.45rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button__arrow {
  font-size: 1.15em;
  line-height: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: white;
  background: linear-gradient(180deg, #5a9d40 0%, var(--brand) 100%);
  box-shadow: 0 12px 24px rgba(56, 112, 39, 0.26);
}

.button--ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.stats {
  margin-top: -2.55rem;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0 49%, #ffffff 49% 100%);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-radius: 0.55rem;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(25, 31, 23, 0.15);
  overflow: hidden;
}

.stat {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  padding: 1.05rem 1.55rem;
  border-radius: 0;
  background: transparent;
  min-width: 0;
  position: relative;
}

.stat + .stat {
  border-left: 0;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  width: 1px;
  height: 52%;
  background: rgba(35, 48, 31, 0.12);
}

.stat__icon {
  flex: none;
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 0;
  color: var(--brand);
  background: transparent;
}

.stat__icon img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
}

.stat strong {
  display: block;
  font-size: 1.95rem;
  letter-spacing: 0;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.2;
}

.landing-cards {
  padding: 1rem 0 clamp(1.35rem, 2vh, 2rem);
  background: #ffffff;
}

.section {
  padding: 3.5rem 0 4rem;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(241, 236, 227, 0.95));
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.story__copy h2,
.contact__card h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  color: #243021;
}

.section-heading p:last-child,
.story__copy p,
.detail p,
.contact__card p,
.contact__list {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

.feature-card {
  display: block;
  position: relative;
  min-height: clamp(9.5rem, 20vh, 13rem);
  border-radius: 0.55rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.feature-card img {
  position: absolute;
  inset: 0;
}

.feature-card img,
.gallery__item img,
.story__media img,
.contact__map img,
.contact__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.04) 20%, rgba(12, 12, 12, 0.78) 100%);
}

.feature-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.95rem;
  color: white;
}

.feature-card__badge {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  background: transparent;
  border: 0;
  font-weight: 700;
  font-size: 0.84rem;
}

.feature-card__badge img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3,
.detail h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.26;
  color: rgba(255, 255, 255, 0.88);
}

.feature-card__link {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(105, 181, 78, 0.7);
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.feature-card:hover .feature-card__link,
.feature-card:focus-visible .feature-card__link {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

.home-footer {
  color: #4e6a48;
  background: #fbfdf9;
  border-top: 1px solid rgba(74, 139, 53, 0.08);
  font-size: 0.78rem;
}

.home-footer__inner {
  min-height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-footer p {
  margin: 0;
}

.home-footer a {
  color: rgba(78, 106, 72, 0.32);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 0.22rem;
  transition: color 180ms ease, text-decoration-color 180ms ease;
  text-decoration-color: rgba(78, 106, 72, 0.18);
}

.home-footer a:hover,
.home-footer a:focus-visible {
  color: var(--brand-dark);
  text-decoration-color: var(--brand-dark);
}

.subpage-main {
  background: #ffffff;
}

.subpage-hero {
  padding: 5rem 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(17, 21, 17, 0.78), rgba(17, 21, 17, 0.35)),
    url("assets/images/hero.jpg") center/cover no-repeat;
}

.subpage-hero--plant {
  background:
    linear-gradient(90deg, rgba(17, 21, 17, 0.78), rgba(17, 21, 17, 0.35)),
    url("assets/images/plant-card.jpg") center/cover no-repeat;
}

.subpage-hero--animal {
  background:
    linear-gradient(90deg, rgba(17, 21, 17, 0.78), rgba(17, 21, 17, 0.35)),
    url("assets/images/animal-card.jpg") center/cover no-repeat;
}

.subpage-hero h1 {
  max-width: 48rem;
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.subpage-hero p:last-child {
  max-width: 44rem;
  margin: 1rem 0 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.subpage-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.subpage .page-shell {
  overflow: visible;
}

.story,
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.contact--stacked {
  grid-template-columns: 1fr;
}

.contact,
.contact__card,
.contact-tabs,
.contact-tab-panel,
.contact-overview,
.contact-overview__table,
.contact-overview__row,
.contact-panel,
.contact-entry,
.contact-priority__item {
  min-width: 0;
}

.contact-overview__row > *,
.contact-entry > *,
.contact-priority__item > * {
  min-width: 0;
}

.story__copy,
.contact__card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(114, 120, 104, 0.08);
}

.contact__card h2 {
  max-width: 32rem;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.contact-overview {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(35, 48, 31, 0.08);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(245, 247, 240, 0.92), rgba(255, 255, 255, 0.92));
}

.contact-overview__head {
  margin-bottom: 0.9rem;
}

.contact-overview__head h3 {
  margin: 0.15rem 0 0;
  font-size: 1.25rem;
}

.contact-overview__table {
  display: grid;
  gap: 0.55rem;
}

.contact-overview__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr 1.35fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 48, 31, 0.07);
}

.contact-overview__row--head {
  background: rgba(63, 89, 39, 0.08);
  color: #314126;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-overview__row strong {
  color: #243021;
  font-size: 1rem;
}

.contact-overview__row a {
  color: #253021;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-overview__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  align-items: center;
}

.contact-tabs {
  margin-top: 1.5rem;
}

.contact-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.contact-tabs__button {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(63, 89, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #314126;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-tabs__button:hover,
.contact-tabs__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(63, 89, 39, 0.28);
}

.contact-tabs__button.is-active {
  background: linear-gradient(135deg, #47772d, #2f5220);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(41, 72, 27, 0.18);
}

.contact-tab-panel {
  animation: contactTabFade 220ms ease;
}

@keyframes contactTabFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-priority {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-priority__item,
.contact-entry {
  padding: 1.15rem;
  border: 1px solid rgba(35, 48, 31, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
}

.contact-priority__item {
  background: linear-gradient(145deg, rgba(83, 140, 55, 0.13), rgba(255, 255, 255, 0.95));
  box-shadow: 0 14px 28px rgba(35, 48, 31, 0.08);
}

.contact-priority__label,
.contact-entry span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-priority__item strong,
.contact-entry strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #243021;
  font-size: 1.08rem;
}

.contact-priority__item p,
.contact-entry p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-priority__item a,
.contact-entry a {
  display: inline-flex;
  color: #253021;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-priority__item a:hover,
.contact-priority__item a:focus-visible,
.contact-entry a:hover,
.contact-entry a:focus-visible {
  color: var(--brand);
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.contact__ext {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: rgba(63, 89, 39, 0.09);
  color: #314126;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-sections {
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
}

.contact-panel {
  padding: 1.2rem;
  border: 1px solid rgba(35, 48, 31, 0.08);
  border-radius: 1rem;
  background: rgba(247, 244, 235, 0.55);
}

.contact-panel__head {
  margin-bottom: 1rem;
}

.contact-panel__head h3 {
  margin: 0.15rem 0 0;
  font-size: 1.35rem;
}

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

.contact-entry--accent {
  background: linear-gradient(145deg, rgba(83, 140, 55, 0.12), rgba(255, 255, 255, 0.96));
}

.story__media,
.contact__map {
  min-height: 27rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #eef1e9;
}

.contact__map--inline {
  min-height: 30rem;
}

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

.detail {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.documents {
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(35, 48, 31, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(74, 139, 53, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(250, 248, 242, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), var(--shadow);
}

.documents__intro {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.documents__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.documents__intro p:last-child {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.documents__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 1.25rem;
  align-items: start;
}

.documents__feature,
.documents__side {
  padding: 1.35rem;
  border: 1px solid rgba(35, 48, 31, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.documents__head span,
.documents__side > span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.documents__head h3,
.documents__side h3 {
  margin: 0;
  font-size: 1.45rem;
}

.documents__head p,
.documents__side p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.documents__notice {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--brand);
  border-radius: 0.85rem;
  background: rgba(74, 139, 53, 0.08);
}

.documents__notice p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.document-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.document-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.35rem 0.85rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid rgba(35, 48, 31, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.document-link:hover,
.document-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(63, 89, 39, 0.28);
  box-shadow: 0 12px 24px rgba(35, 48, 31, 0.1);
}

.document-link span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  min-height: 3.1rem;
  border-radius: 0.75rem;
  background: rgba(125, 29, 18, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.document-link strong {
  color: #243021;
  font-size: 1rem;
  line-height: 1.25;
}

.document-link small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.document-link--large {
  margin-top: 1.2rem;
}

.detail__list,
.contact__list {
  padding-left: 1.2rem;
  margin: 1.25rem 0 0;
}

.detail__list li,
.contact__list li {
  margin-bottom: 0.7rem;
}

.gallery-shell {
  display: grid;
  gap: 0.9rem;
}

.gallery-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.15rem;
}

.gallery-category {
  border: 1px solid rgba(63, 89, 39, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #263027;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.62rem 1.05rem;
  box-shadow: 0 10px 20px rgba(35, 48, 31, 0.07);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gallery-category:hover,
.gallery-category:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(35, 48, 31, 0.12);
}

.gallery-category.is-active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

.gallery-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.gallery-stage__frame {
  margin: 0;
  padding: 0.8rem;
  border: 1px solid rgba(63, 89, 39, 0.14);
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background:
    radial-gradient(circle at top left, rgba(105, 145, 68, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 244, 235, 0.98));
  box-shadow: 0 22px 50px rgba(35, 48, 31, 0.14);
}

.gallery-stage__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(18rem, 44vh, 34rem);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.82);
}

.gallery-stage__media img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  cursor: zoom-in;
}

.gallery-stage__caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  padding: 0.7rem 0 0.1rem;
}

.gallery-stage__caption h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.65vw, 1.4rem);
}

.gallery-stage__caption p {
  margin: 0;
}

.gallery-stage__meta {
  margin-top: 0.2rem;
  color: rgba(35, 48, 31, 0.72);
  font-size: 0.84rem;
}

.gallery-stage__eyebrow {
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.gallery-stage__arrow {
  width: 3.3rem;
  height: 3.3rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #3d6826, #29481b);
  color: #fff;
  box-shadow: 0 12px 25px rgba(41, 72, 27, 0.25);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gallery-stage__arrow span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-0.08rem);
}

.gallery-stage__arrow:hover,
.gallery-stage__arrow:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(41, 72, 27, 0.3);
  background: linear-gradient(180deg, #47772d, #2f5220);
}

.gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(4.7rem, 5.9rem);
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.25rem;
  scrollbar-width: thin;
}

.gallery-thumb {
  padding: 0.28rem;
  border: 1px solid rgba(63, 89, 39, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 22px rgba(35, 48, 31, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.8rem;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(63, 89, 39, 0.28);
  box-shadow: 0 14px 24px rgba(35, 48, 31, 0.12);
}

.gallery-thumb.is-active {
  border-color: rgba(63, 89, 39, 0.52);
  box-shadow: 0 16px 30px rgba(35, 48, 31, 0.16);
}

body.is-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(12, 18, 13, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.gallery-lightbox__frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.85rem;
  width: 100%;
  height: min(88vh, 62rem);
  margin: 0;
  min-width: 0;
}

.gallery-lightbox__frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

.gallery-lightbox__frame figcaption {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__arrow {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #24331e;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__arrow:hover,
.gallery-lightbox__arrow:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
}

.gallery-lightbox__close {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1.5rem);
  right: clamp(0.8rem, 2vw, 1.5rem);
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox__arrow {
  width: clamp(2.8rem, 5vw, 4rem);
  height: clamp(2.8rem, 5vw, 4rem);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 0.8;
}

.contact__note {
  margin-top: 1.4rem;
}

.contact__map iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 27rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(90deg, #1f3716 0%, #2c4b21 100%);
}

.site-footer__inner {
  min-height: 4.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1081px) and (max-height: 920px) {
  .landing-screen {
    min-height: 0;
  }

  .topbar__inner {
    min-height: 1.9rem;
  }

  .site-header__inner {
    min-height: 3.8rem;
  }

  .brand img {
    width: 74px;
  }

  .hero__content {
    padding: 0.65rem 0 3.15rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 3.5vw, 2.9rem);
  }

  .hero__lead {
    font-size: 0.84rem;
    margin-top: 0.55rem;
  }

  .hero__actions {
    margin-top: 0.75rem;
  }

  .stats {
    margin-top: -2.3rem;
  }

  .stats__grid {
    padding: 0;
  }

  .stat {
    padding: 0.85rem 0.9rem;
  }

  .stat__icon {
    width: 2.7rem;
    height: 2.7rem;
  }

  .stat__icon img {
    width: 1.7rem;
    height: 1.7rem;
  }

  .stat strong {
    font-size: 1.3rem;
  }

  .stat span {
    font-size: 0.86rem;
  }

  .landing-cards {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }

  .feature-card {
    min-height: 11.6rem;
  }

  .feature-card p {
    font-size: 0.71rem;
  }
}

@media (min-width: 1081px) and (max-height: 760px) {
  .hero__content {
    padding: 0.45rem 0 2.65rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
  }

  .hero__lead {
    max-width: 26rem;
    font-size: 0.78rem;
    line-height: 1.24;
  }

  .button {
    padding: 0.68rem 1rem;
    font-size: 0.78rem;
  }

  .stats {
    margin-top: -2rem;
  }

  .stat {
    gap: 0.7rem;
    padding: 0.65rem 1rem;
  }

  .stat__icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .stat__icon img {
    width: 1.45rem;
    height: 1.45rem;
  }

  .stat strong {
    font-size: 1.08rem;
  }

  .stat span {
    font-size: 0.74rem;
  }

  .landing-cards {
    padding-top: 0.55rem;
    padding-bottom: 0.75rem;
  }

  .feature-card {
    min-height: 9.4rem;
  }

  .feature-card__content {
    padding: 0.72rem;
  }

  .feature-card__badge,
  .feature-card__link {
    font-size: 0.64rem;
  }

  .feature-card h3 {
    font-size: 0.88rem;
  }

  .feature-card p {
    font-size: 0.66rem;
  }
}

@media (max-width: 1080px) {
  .landing-screen {
    height: auto;
    min-height: auto;
    display: block;
    overflow: visible;
  }

  .site-header__inner {
    min-height: 3.95rem;
  }

  .brand img {
    width: 78px;
  }

  .site-nav {
    gap: 1.2rem;
    font-size: 0.9rem;
  }

  .hero {
    background-position: 58% center;
  }

  .feature-cards,
  .details-grid,
  .stats__grid,
  .story,
  .contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:last-child,
  .story__copy,
  .story__media,
  .contact__card,
  .contact__map {
    grid-column: 1 / -1;
  }

  .contact-overview__row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-overview__row--head {
    display: none;
  }

  .gallery-stage {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .gallery-stage__arrow {
    position: absolute;
    top: calc(50% - 2.2rem);
    z-index: 2;
  }

  .gallery-stage__arrow--prev {
    left: 1rem;
  }

  .gallery-stage__arrow--next {
    right: 1rem;
  }

  .stat + .stat::before {
    display: none;
  }

  .stats__grid .stat:nth-child(even)::before {
    display: block;
    top: 18%;
    height: 64%;
  }

  .stats__grid .stat:nth-child(n + 3) {
    border-top: 1px solid rgba(35, 48, 31, 0.1);
  }
}

@media (max-width: 920px) {
  .section {
    padding: 4.25rem 0;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 21rem;
  }

  .feature-card img {
    position: absolute;
    inset: 0;
  }

  .feature-card .feature-card__badge img {
    position: static;
    inset: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

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

  .story,
  .contact {
    grid-template-columns: 1fr;
  }

  .story__media,
  .contact__map {
    min-height: 22rem;
  }
}

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

  .site-header__inner {
    min-height: 3.95rem;
  }

  .brand img {
    width: 112px;
  }

  .brand__copy strong {
    font-size: 1.02rem;
  }

  .brand__copy small {
    font-size: 0.65rem;
  }

  .nav-toggle {
    display: inline-block;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0.48rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border-radius: 1.25rem;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav a {
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(74, 139, 53, 0.08);
  }

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

  .hero,
  .hero__content {
    min-height: 34rem;
  }

  .hero {
    background-position: 60% center;
  }

  .hero__content {
    padding: 1.65rem 0 4.5rem;
    gap: 1rem;
    min-height: 34rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.55rem);
  }

  .hero__lead {
    max-width: 28rem;
    font-size: 0.98rem;
  }

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

  .button {
    width: 100%;
  }

  .details-grid,
  .story,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .stat + .stat::before {
    display: none;
  }

  .stat {
    gap: 0.8rem;
    padding: 1rem;
  }

  .stats__grid .stat:nth-child(even)::before {
    display: block;
    top: 18%;
    height: 64%;
  }

  .stats__grid .stat:nth-child(n + 3) {
    border-top: 1px solid rgba(35, 48, 31, 0.1);
  }

  .subpage-hero {
    padding: 4rem 0;
    background-position: 58% center;
  }

  .subpage-hero h1 {
    font-size: clamp(2.25rem, 9vw, 3rem);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .story__copy,
  .contact__card {
    padding: 1.6rem;
  }

  .contact-priority,
  .contact-panel__grid,
  .documents__layout {
    grid-template-columns: 1fr;
  }

  .documents__feature,
  .documents__side {
    padding: 1rem;
  }

  .contact-overview {
    padding: 0.85rem;
  }

  .contact-overview__row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .contact-tabs {
    margin-top: 1rem;
  }

  .contact-tabs__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.55rem;
    margin: 0 0 0.75rem;
    padding: 0;
    overflow: visible;
  }

  .contact-tabs__button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    padding: 0.72rem 0.7rem;
    font-size: 0.84rem;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .contact-overview__phones {
    gap: 0.45rem 0.6rem;
  }

  .contact-panel {
    padding: 1rem;
  }

  .gallery-stage__frame {
    padding: 0.7rem;
  }

  .gallery-stage__caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-thumbs {
    grid-auto-columns: minmax(4.15rem, 5rem);
  }

  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .gallery-stage__media {
    height: clamp(16rem, 54vh, 27rem);
  }

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

  .gallery-lightbox__frame {
    height: min(76vh, 42rem);
  }

  .gallery-lightbox__arrow {
    position: fixed;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
  }

  .gallery-lightbox__arrow:hover,
  .gallery-lightbox__arrow:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }

  .gallery-lightbox__arrow--prev {
    left: 0.65rem;
  }

  .gallery-lightbox__arrow--next {
    right: 0.65rem;
  }

  .gallery-stage__arrow {
    width: 2.85rem;
    height: 2.85rem;
    top: calc(50% - 1.95rem);
  }

  .gallery-stage__arrow--prev {
    left: 0.65rem;
  }

  .gallery-stage__arrow--next {
    right: 0.65rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .site-header__inner {
    min-height: 3.8rem;
  }

  .brand img {
    width: 104px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand__copy strong {
    font-size: 0.94rem;
  }

  .brand__copy small {
    font-size: 0.6rem;
  }

  .hero,
  .hero__content {
    min-height: auto;
  }

  .hero {
    background-position: 62% center;
  }

  .hero__content {
    padding: 1.35rem 0 3.8rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.2vw, 3.1rem);
    line-height: 1.02;
  }

  .stats {
    margin-top: -2.35rem;
  }

  .stat {
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 0.8rem;
  }

  .stat__icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .stat__icon img {
    width: 2rem;
    height: 2rem;
  }

  .stat strong {
    font-size: 1.55rem;
  }

  .stat span {
    font-size: 0.92rem;
  }

  .feature-card {
    min-height: 17.5rem;
  }

  .feature-card__content {
    padding: 1rem;
    bottom: 0.2rem;
  }

  .feature-card__badge {
    width: 3.1rem;
    height: 3.1rem;
    margin-bottom: 0.55rem;
  }

  .feature-card h3 {
    font-size: 1.16rem;
    margin-bottom: 0.35rem;
  }

  .feature-card p {
    font-size: 0.84rem;
    line-height: 1.25;
    max-width: 21rem;
  }

  .feature-card__overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.08) 18%, rgba(12, 12, 12, 0.42) 48%, rgba(12, 12, 12, 0.9) 100%);
  }

  .feature-card__link {
    margin-top: 0.65rem;
  }

  .feature-card:nth-child(1) > img {
    object-position: 48% center;
  }

  .feature-card:nth-child(2) > img {
    object-position: 54% center;
  }

  .feature-card:nth-child(3) > img {
    object-position: 62% center;
  }

  .subpage-hero {
    padding: 3.3rem 0;
  }

  .subpage-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.65rem);
  }

  .story__copy,
  .contact__card,
  .detail {
    padding: 1.25rem;
  }

  .story__media,
  .contact__map {
    min-height: 18rem;
  }

  .contact__map iframe {
    min-height: 18rem;
  }
}
