:root {
  --paper: #f5efe3;
  --paper-deep: #ece2d1;
  --card: #fffdf8;
  --line: rgba(88, 79, 61, 0.12);
  --ink: #31452d;
  --ink-soft: #746f66;
  --green: #4b7840;
  --green-deep: #396033;
  --shadow: 0 16px 34px rgba(79, 62, 37, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.94), transparent 28%),
    linear-gradient(180deg, #f9f5ee 0%, var(--paper) 52%, var(--paper-deep) 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.hero__eyebrow,
.hero__badges,
.hero__actions,
.about__facts {
  display: none;
}

.hero__button {
  display: none;
}

.page {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 48px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  margin-bottom: 20px;
  padding: 0 40px;
  border: 1px solid rgba(126, 111, 85, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96) 0%, rgba(248, 241, 230, 0.96) 100%);
  box-shadow: 0 10px 20px rgba(79, 62, 37, 0.05);
}

.site-header__brand {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__brand-mobile {
  display: none;
}

.page-home .site-header {
  min-height: 56px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(11, 37, 22, 0.98) 0%, rgba(19, 58, 34, 0.98) 58%, rgba(8, 31, 18, 0.98) 100%);
  box-shadow: 0 12px 26px rgba(22, 35, 24, 0.18);
}

.page-home .site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #fffdf8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.page-home .site-header__brand-text {
  display: none;
}

.page-home .site-header__brand-mobile {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.page-home .site-header__brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: rgba(255, 253, 248, 0.92);
}

.page-home .site-header__brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .site-header__brand-lockup {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-transform: uppercase;
}

.page-home .site-header__brand-name {
  color: #fffdf8;
  font-size: clamp(1rem, 1.8vw, 1.34rem);
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 0.88;
}

.page-home .site-header__brand-subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c8d884;
  font-family: Arial, sans-serif;
  font-size: clamp(0.46rem, 0.9vw, 0.6rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
}

.page-home .site-header__brand-subtitle::before,
.page-home .site-header__brand-subtitle::after {
  content: "";
  flex: 1 1 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.82;
}

.page-home .site-header__nav-link,
.page-home .site-header__nav-dropdown-toggle {
  min-height: 32px;
  padding: 0.34rem 0.7rem;
  font-size: 0.86rem;
}

.page-home .site-header__nav-link,
.page-home .site-header__nav-dropdown-toggle {
  color: rgba(255, 253, 248, 0.82);
}

.page-home .site-header__nav-link:hover,
.page-home .site-header__nav-link:focus-visible,
.page-home .site-header__nav-dropdown-toggle:hover,
.page-home .site-header__nav-dropdown-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf8;
}

.page-home .site-header__nav-link--active,
.page-home .site-header__nav-dropdown--active .site-header__nav-dropdown-toggle,
.page-home .site-header__nav-dropdown[open] .site-header__nav-dropdown-toggle {
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf8;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
  margin: 0 auto;
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: rgba(49, 69, 45, 0.84);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
  background: rgba(75, 120, 64, 0.08);
  color: var(--green-deep);
}

.site-header__nav-link--active {
  background: rgba(75, 120, 64, 0.12);
  color: var(--green-deep);
}

.site-header__nav-form,
.site-header__menu-form {
  margin: 0;
}

.site-header__nav-button,
.site-header__menu-button {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-header__nav-dropdown {
  position: relative;
}

.site-header__nav-dropdown-toggle {
  list-style: none;
  cursor: pointer;
}

.site-header__nav-dropdown-toggle::-webkit-details-marker {
  display: none;
}

.site-header__nav-dropdown-toggle::marker {
  content: "";
}

.site-header__nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 0.38rem;
  font-size: 0.7em;
  opacity: 0.6;
}

.site-header__nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(126, 111, 85, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(79, 62, 37, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  z-index: 30;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header__nav-dropdown[open] .site-header__nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header__nav-dropdown-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0.62rem 0.8rem;
  border-radius: 9px;
  color: rgba(49, 69, 45, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-header__nav-dropdown-link:hover,
.site-header__nav-dropdown-link:focus-visible {
  background: rgba(75, 120, 64, 0.08);
  color: var(--green-deep);
}

.site-header__nav-dropdown-link--active {
  background: rgba(75, 120, 64, 0.12);
  color: var(--green-deep);
}

.site-header__language {
  position: relative;
  flex: 0 0 auto;
}

.site-header__language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  padding: 0.28rem 0.54rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.site-header__language-toggle::-webkit-details-marker {
  display: none;
}

.site-header__language-toggle::marker {
  content: "";
}

.site-header__language-toggle::after {
  content: "▾";
  margin-left: 0.32rem;
  font-size: 0.68em;
  opacity: 0.7;
}

.site-header__language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 176px;
  padding: 8px;
  border: 1px solid rgba(126, 111, 85, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(79, 62, 37, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  z-index: 40;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header__language[open] .site-header__language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header__language-option {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0.44rem 0.56rem;
  border-radius: 8px;
  color: rgba(49, 69, 45, 0.86);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.site-header__language-option:hover,
.site-header__language-option:focus-visible,
.site-header__language-option--active {
  background: rgba(75, 120, 64, 0.1);
  color: var(--green-deep);
}

.site-header__language-mobile {
  display: none;
}

.site-header__menu {
  position: relative;
  flex-shrink: 0;
}

.site-header__toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(126, 111, 85, 0.14);
  border-radius: 10px;
  background: rgba(255, 252, 246, 0.82);
  cursor: pointer;
  flex-shrink: 0;
}

.site-header__toggle::-webkit-details-marker {
  display: none;
}

.site-header__toggle::marker {
  content: "";
}

.site-header__toggle:hover,
.site-header__toggle:focus-visible,
.site-header__menu[open] .site-header__toggle {
  background: rgba(244, 238, 226, 0.96);
  box-shadow: 0 8px 18px rgba(79, 62, 37, 0.08);
}

.site-header__toggle span {
  width: 16px;
  height: 1.7px;
  border-radius: 999px;
  background: var(--green-deep);
}

.site-header__menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(126, 111, 85, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(248, 241, 230, 0.98) 100%);
  box-shadow: 0 18px 34px rgba(79, 62, 37, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  z-index: 9999;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header__menu[open] .site-header__menu-panel {
  gap: 4px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header__menu-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  color: rgba(49, 69, 45, 0.84);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-header__menu-link:hover,
.site-header__menu-link:focus-visible {
  background: rgba(75, 120, 64, 0.08);
  color: var(--green-deep);
}

.site-header__menu-link--active {
  background: rgba(75, 120, 64, 0.12);
  color: var(--green-deep);
}

.site-header__menu-group {
  display: grid;
  gap: 4px;
  padding: 4px 0;
}

.site-header__menu-label {
  padding: 0.45rem 0.9rem 0.1rem;
  color: rgba(49, 69, 45, 0.62);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__menu-label--active {
  color: rgba(49, 69, 45, 0.82);
}

.site-header__menu-link--sub {
  min-height: 36px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 1.35rem;
}

.hero {
  padding: 18px;
  border: 1px solid rgba(126, 111, 85, 0.18);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.74);
  box-shadow: var(--shadow);
}

.hero__frame {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  border-radius: 4px;
  background-image: url("images/hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 33, 23, 0.12), rgba(25, 33, 23, 0.3));
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: #fffdf8;
}

.hero__content h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.6vw, 3.85rem);
  line-height: 1.02;
  text-shadow: 0 3px 10px rgba(16, 16, 16, 0.26);
}

.hero__content h2 {
  margin: 0.75rem 0 0;
  padding: 0.35rem 1rem 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.28;
  color: rgba(255, 253, 248, 0.9);
  text-shadow: 0 2px 8px rgba(16, 16, 16, 0.22);
}

.hero__lead {
  margin: 0.65rem 0 0;
  padding: 0.1rem 1rem 0.9rem;
  max-width: 40rem;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(16, 16, 16, 0.22);
}

.updates {
  margin-top: 24px;
  padding: 4px 6px;
  scroll-margin-top: 20px;
}

.updates__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.updates__heading span {
  height: 1px;
  background: rgba(108, 98, 79, 0.24);
}

.updates__heading h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  text-align: center;
}

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

.update-card {
  padding: 14px 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  box-shadow: 0 7px 15px rgba(93, 76, 48, 0.07);
  text-align: center;
}

.update-card__content {
  display: block;
}

.update-card__image {
  width: 56px;
  height: 56px;
  margin: 0 auto 9px;
}

.update-card h3 {
  margin: 0;
  min-height: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.24;
}

.update-card__date {
  margin: 6px 0 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.update-card__excerpt {
  display: none;
  margin: 0;
  color: var(--ink-soft);
}

.update-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.update-card__link::after {
  content: "›";
  margin-left: 8px;
  font-size: 1.1rem;
}

.about,
.quick-links {
  margin-top: 30px;
}

.about__card,
.quick-links {
  padding: 28px 24px;
  border: 1px solid rgba(126, 111, 85, 0.16);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.8);
  box-shadow: var(--shadow);
}

.about__card {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.about__image-frame {
  display: block;
  padding: 10px;
  border: 1px solid rgba(112, 96, 70, 0.16);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: 0 10px 22px rgba(90, 73, 45, 0.08);
  text-decoration: none;
}

.about__image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
}

.about__content h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.about__subtitle {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.5vw, 1.16rem);
  line-height: 1.45;
}

.about__divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 24px;
  background: rgba(108, 98, 79, 0.18);
}

.about__copy p {
  margin: 0;
  max-width: 34rem;
  color: #4b5647;
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  font-weight: 400;
  line-height: 1.72;
}

.about-extra {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.about-extra__section {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px 24px;
  border: 1px solid rgba(126, 111, 85, 0.16);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: var(--shadow);
}

.about-extra__section--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.about-extra__section--text-only,
.about-extra__section--reverse.about-extra__section--text-only {
  grid-template-columns: 1fr;
}

.about-extra__section--reverse .about-extra__image-frame {
  order: 2;
}

.about-extra__image-frame {
  padding: 10px;
  border: 1px solid rgba(112, 96, 70, 0.16);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: 0 10px 22px rgba(90, 73, 45, 0.08);
}

.about-extra__image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.about-extra__content h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.12;
}

.about-extra__divider {
  width: 100%;
  height: 1px;
  margin: 14px 0 18px;
  background: rgba(108, 98, 79, 0.16);
}

.about-extra__content p {
  margin: 0 0 12px;
  max-width: 42rem;
  color: #4b5647;
  font-size: clamp(0.9rem, 1.08vw, 1.02rem);
  line-height: 1.7;
}

.about-extra__content p:last-child {
  margin-bottom: 0;
}

.committee-overview {
  margin-top: 20px;
}

.committee-overview h2 {
  margin: 0 0 6px;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
  line-height: 1.16;
}

.committee-overview p {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.committee-group {
  margin-top: 20px;
}

.committee-group__title {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 14px;
  margin-top: 0;
  align-items: start;
}

.committee-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(126, 111, 85, 0.14);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 8px 20px rgba(89, 73, 45, 0.05);
}

.committee-card__image-frame {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 118px;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(126, 111, 85, 0.14);
  border-radius: 10px;
  background: rgba(246, 244, 236, 0.92);
}

.committee-card__image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
  object-position: center top;
  background: rgba(255, 255, 255, 0.9);
}

.committee-card--tad .committee-card__image-frame img {
  object-fit: cover;
  object-position: center center;
}

.committee-card__image-frame--empty span {
  display: none;
}

.committee-card__body {
  padding: 0;
}

.committee-card__body h3 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.25vw, 1.3rem);
  line-height: 1.24;
}

.committee-card__role {
  margin: 4px 0 8px !important;
  color: var(--green);
  font-size: 0.84rem !important;
  font-weight: 700;
  line-height: 1.35 !important;
}

.committee-card__body p:last-child {
  color: var(--ink-soft);
  font-size: clamp(0.88rem, 0.94vw, 0.96rem);
  line-height: 1.52;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-preview__item,
.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(126, 111, 85, 0.12);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 8px 18px rgba(89, 73, 45, 0.06);
}

.gallery-card--album {
  overflow: visible;
}

.gallery-card__media {
  position: relative;
  overflow: hidden;
}

.gallery-preview__image,
.gallery-card__image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.gallery-preview__meta,
.gallery-card__body {
  padding: 10px 12px 12px;
}

.gallery-preview__meta h3,
.gallery-card__body h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.28;
}

.gallery-preview__meta p,
.gallery-card__body p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.gallery-card__meta,
.gallery-page__meta {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gallery-card .content-interactions {
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
}

.gallery-card .content-comments {
  max-height: 150px;
  overflow: auto;
}

.gallery-card .content-comment {
  padding: 9px 10px;
  border-radius: 8px;
}

.gallery-card__action,
.detail-card__album-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 14px;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: rgba(76, 120, 41, 0.12);
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.gallery-card__action--overlay {
  position: absolute;
  left: 50%;
  bottom: 18px;
  gap: 6px;
  min-height: 30px;
  margin-top: 0;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 253, 248, 0.4);
  border-radius: 999px;
  background: rgba(19, 31, 22, 0.68);
  color: #fffdf8;
  box-shadow: 0 12px 28px rgba(14, 20, 13, 0.24);
  transform: translateX(-50%);
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.gallery-card__action-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.gallery-card__action:hover,
.gallery-card__action:focus-visible,
.detail-card__album-link:hover,
.detail-card__album-link:focus-visible {
  background: rgba(76, 120, 41, 0.18);
  transform: translateY(-1px);
}

.gallery-card__action--overlay:hover,
.gallery-card__action--overlay:focus-visible {
  background: rgba(19, 31, 22, 0.78);
  transform: translateX(-50%) translateY(-1px);
}

.gallery-empty {
  padding: 28px;
  border: 1px solid rgba(126, 111, 85, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.76);
  text-align: center;
}

.gallery-flash-modal {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}

.gallery-flash-modal__card {
  width: min(420px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid rgba(67, 105, 58, 0.2);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 24px 60px rgba(27, 40, 25, 0.22);
  text-align: center;
  pointer-events: auto;
}

.gallery-flash-modal__card p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.gallery-flash-modal__card--warning {
  border-color: rgba(196, 150, 70, 0.24);
}

.gallery-flash-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: #fffdf8;
  font-weight: 800;
  text-decoration: none;
}

.gallery-flash-modal__action:hover,
.gallery-flash-modal__action:focus-visible {
  background: var(--green-deep);
}

.gallery-empty h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.2rem;
}

.gallery-empty p {
  margin: 10px auto 0;
  max-width: 38rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.gallery-album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-photo-card {
  overflow: hidden;
  border: 1px solid rgba(126, 111, 85, 0.12);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 8px 18px rgba(89, 73, 45, 0.06);
}

.gallery-photo-card__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-photo-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 12px 12px 0 0;
  background: #fffdf8;
  object-fit: contain;
  object-position: center;
  transition: transform 0.18s ease;
}

.gallery-photo-card__trigger:hover .gallery-photo-card__image,
.gallery-photo-card__trigger:focus-visible .gallery-photo-card__image {
  transform: scale(1.02);
}

.gallery-photo-card__body {
  padding: 10px 12px 12px;
}

.gallery-photo-card__body h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.28;
}

.gallery-photo-card__body p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

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

.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: max(18px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom));
  background: rgba(10, 18, 12, 0.92);
}

.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.gallery-lightbox__image {
  display: block;
  max-width: 100vw;
  max-height: calc(100vh - 96px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.32);
  background: rgba(255, 253, 248, 0.1);
  color: #fffdf8;
  cursor: pointer;
}

.gallery-lightbox__close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox__controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 14px;
}

.gallery-lightbox__nav {
  width: 52px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.45rem;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  background: rgba(255, 253, 248, 0.22);
}

.detail-card__related-album {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(92, 125, 74, 0.14);
  border-radius: 12px;
  background: rgba(247, 250, 241, 0.66);
  box-shadow: 0 8px 20px rgba(30, 35, 39, 0.05);
}

.detail-card__album-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(214, 231, 196, 0.72);
  font-size: 1rem;
  line-height: 1;
}

.detail-card__album-copy {
  min-width: 0;
}

.detail-card__album-heading {
  margin: 0 0 2px;
  color: var(--green-deep);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.detail-card__related-album p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.35;
}

.detail-card__related-album .detail-card__album-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-height: 0;
  margin-top: 0;
  padding: 0;
  border: 1px solid rgba(76, 120, 41, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 250, 0.82);
  color: var(--green-deep);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(30, 35, 39, 0.06);
}

.detail-card__related-album .detail-card__album-link:hover,
.detail-card__related-album .detail-card__album-link:focus-visible {
  background: rgba(242, 248, 234, 0.95);
  border-color: rgba(76, 120, 41, 0.32);
  transform: translateY(-1px);
}

.gallery-preview__actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.gallery-preview__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.3rem;
  border-radius: 10px;
  background: var(--green);
  color: #fffdf8;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.gallery-preview__button:hover,
.gallery-preview__button:focus-visible {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-links__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(152, 129, 82, 0.16);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(241, 231, 201, 0.82) 0%, rgba(233, 217, 182, 0.92) 100%);
  color: #3f382d;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(96, 78, 45, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.quick-links__item:hover,
.quick-links__item:focus-visible {
  background: linear-gradient(180deg, #f4e7c6 0%, #e9d7b6 100%);
  transform: scale(1.03);
  box-shadow: 0 10px 22px rgba(96, 78, 45, 0.15);
}

.quick-links__icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: rgba(93, 126, 83, 0.1);
  box-shadow: inset 0 0 0 1px rgba(93, 126, 83, 0.08);
}

.quick-links__icon {
  width: 26px;
  height: 26px;
  display: block;
}

.quick-links__label {
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.22;
}

.home-contact {
  margin-top: 28px;
}

.home-contact__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 20px 24px;
  border: 1px solid rgba(126, 111, 85, 0.16);
  border-radius: 12px 12px 0 0;
  background: rgba(255, 252, 246, 0.88);
  box-shadow: 0 10px 20px rgba(79, 62, 37, 0.05);
}

.home-contact__column {
  padding: 0 18px;
}

.home-contact__column + .home-contact__column {
  border-left: 1px solid rgba(108, 98, 79, 0.2);
}

.home-contact__column h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.home-contact__divider {
  width: 100%;
  height: 1px;
  margin: 10px 0 12px;
  background: rgba(108, 98, 79, 0.18);
}

.home-contact__column p {
  margin: 0 0 8px;
  color: #4a4f49;
  font-size: 0.96rem;
  line-height: 1.45;
}

.home-contact__column p:last-child {
  margin-bottom: 0;
}

.home-contact__socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #9b6a3e 0%, #7b4f2d 100%);
}

.home-contact__social-list {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.home-contact__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(62, 101, 50, 0.98);
  box-shadow: 0 8px 18px rgba(42, 54, 24, 0.2);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.home-contact__social:hover,
.home-contact__social:focus-visible {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.home-contact__social img {
  width: 20px;
  height: 20px;
}

.home-contact__utility-link {
  display: grid;
  justify-items: end;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  text-align: right;
}

.home-contact__utility-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.home-contact__utility-logo {
  display: block;
  width: min(46vw, 164px);
  height: auto;
}

.home-contact__utility-anchor:hover,
.home-contact__utility-anchor:focus-visible {
  transform: translateY(-1px);
  opacity: 0.92;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 30px;
  padding: 16px 10px 4px;
  color: rgba(49, 69, 45, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer__copy {
  margin: 0;
}

.site-footer__separator {
  color: rgba(49, 69, 45, 0.44);
}

.site-footer__login {
  color: rgba(57, 96, 51, 0.68);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer__login:hover,
.site-footer__login:focus-visible {
  color: rgba(57, 96, 51, 0.84);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

@media (min-width: 821px) {
  body {
    background: #ffffff;
  }

  .page {
    position: relative;
    width: min(1320px, calc(100% - 54px));
    padding-top: 18px;
  }

  .site-header {
    min-height: 52px;
    margin-bottom: 8px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header__brand {
    color: var(--green-deep);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-left: 18px;
    text-shadow: none;
  }

  .site-header__nav {
    margin-left: auto;
    margin-right: 28px;
    gap: 1.15rem;
  }

  .site-header__nav-link {
    color: rgba(49, 69, 45, 0.72);
    min-height: 30px;
    padding: 0.2rem 0.55rem;
    border-radius: 0;
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .site-header__menu {
    display: none;
  }

  .site-header__nav-link:hover,
  .site-header__nav-link:focus-visible {
    color: rgba(49, 69, 45, 0.92);
  }

  .site-header__nav-link--active {
    background: transparent;
    color: rgba(49, 69, 45, 0.9);
    box-shadow: none;
  }

  .site-header__nav-dropdown-toggle {
    color: rgba(49, 69, 45, 0.72);
    min-height: 30px;
    padding: 0.2rem 0.55rem;
    border-radius: 0;
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .site-header__nav-dropdown--active .site-header__nav-dropdown-toggle,
  .site-header__nav-dropdown[open] .site-header__nav-dropdown-toggle {
    color: rgba(49, 69, 45, 0.9);
  }

  .site-header__nav-dropdown-menu {
    min-width: 220px;
    padding: 8px;
    border-color: rgba(126, 111, 85, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 28px rgba(79, 62, 37, 0.1);
  }

  .site-header__nav-dropdown-link {
    min-height: 34px;
    padding: 0.48rem 0.68rem;
    border-radius: 8px;
    color: rgba(49, 69, 45, 0.76);
    font-size: 0.92rem;
  }

  .site-header__nav-dropdown-link:hover,
  .site-header__nav-dropdown-link:focus-visible,
  .site-header__nav-dropdown-link--active {
    background: rgba(75, 120, 64, 0.08);
    color: rgba(49, 69, 45, 0.92);
  }

  .site-header__toggle {
    border-color: rgba(126, 111, 85, 0.14);
    border-radius: 12px;
    background: #ffffff;
  }

  .site-header__toggle:hover,
  .site-header__toggle:focus-visible,
  .site-header__menu[open] .site-header__toggle {
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(79, 62, 37, 0.08);
  }

  .site-header__toggle span {
    background: var(--green-deep);
  }

  .site-header__menu-panel {
    border-color: rgba(88, 57, 32, 0.24);
    background:
      linear-gradient(180deg, rgba(255, 252, 245, 0.98) 0%, rgba(245, 236, 219, 0.98) 100%);
    box-shadow: 0 18px 34px rgba(59, 39, 22, 0.18);
  }

  .hero {
    position: relative;
    margin-top: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .hero::before {
    content: none;
  }

  .hero::after {
    content: none;
  }

  .hero__frame {
    min-height: 420px;
    border-radius: 0;
    box-shadow: none;
    background-image: url("images/hero-desktop.jpg");
    background-position: center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(20, 27, 18, 0.18) 0%, rgba(20, 27, 18, 0.36) 100%);
  }

  .hero__content {
    align-items: center;
    justify-content: center;
    max-width: none;
    padding: 1.7rem 2rem;
    text-align: center;
  }

  .hero__eyebrow {
    display: none;
  }

  .hero__content h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 5vw, 4.65rem);
    line-height: 1;
  }

  .hero__content h2 {
    margin-top: 0.88rem;
    padding: 0;
    max-width: 34rem;
    font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  }

  .hero__lead {
    display: none;
  }

  .hero__actions {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 1.28rem;
  }

  .hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.82rem 1.8rem;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  }

  .hero__button:hover,
  .hero__button:focus-visible {
    transform: translateY(-1px);
  }

  .hero__button--primary {
    background: linear-gradient(180deg, #5c8b33 0%, #477124 100%);
    color: #fffdf7;
    box-shadow: 0 16px 28px rgba(34, 50, 21, 0.24);
  }

  .hero__button--secondary {
    display: none;
  }

  .hero__badges {
    display: none;
  }

  .updates {
    position: relative;
    width: min(800px, calc(100% - 220px));
    margin: 28px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .updates::before {
    content: none;
  }

  .updates__heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(133, 116, 82, 0.16);
  }

  .updates__heading span {
    display: none;
  }

  .updates__heading h2 {
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    color: var(--green-deep);
    text-align: left;
    font-size: clamp(1.45rem, 2vw, 1.85rem);
  }

  .updates__grid {
    grid-template-columns: repeat(3, minmax(0, 240px));
    justify-content: center;
    gap: 14px;
  }

  .updates .updates__grid > .update-card:nth-child(n + 4) {
    display: none;
  }

  .updates .update-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    padding: 0;
    border: 1px solid rgba(133, 116, 82, 0.18);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(89, 73, 45, 0.08);
    text-align: left;
    overflow: hidden;
  }

  .updates .update-card__image {
    width: 100%;
    height: 92px;
    margin: 0;
    background: #eef4e8;
    object-fit: cover;
    object-position: center;
  }

  .updates .update-card__image[src$=".svg"] {
    object-fit: contain;
    padding: 10px;
  }

  .updates .update-card__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 173px;
    padding: 10px 11px 11px;
  }

  .updates .update-card__meta {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }

  .updates .update-card h3 {
    margin: 0;
    min-height: 35px;
    font-size: 0.84rem;
    line-height: 1.24;
  }

  .updates .update-card__date {
    margin: 4px 0 7px;
    font-size: 0.72rem;
  }

  .updates .update-card__excerpt {
    display: block;
    margin: 0;
    min-height: 42px;
    padding-top: 6px;
    border-top: 1px solid rgba(133, 116, 82, 0.14);
    color: #555b53;
    font-size: 0.76rem;
    line-height: 1.34;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .updates .update-card__link {
    margin-top: auto;
    min-height: 32px;
    padding: 0.48rem 0.82rem;
    background: linear-gradient(180deg, #5c8b33 0%, #477124 100%);
    border-radius: 6px;
    color: #fffdf7;
    box-shadow: 0 10px 18px rgba(50, 77, 27, 0.16);
    align-self: stretch;
    justify-content: center;
    font-size: 0.82rem;
  }

  .updates .update-card__link::after {
    margin-left: 8px;
  }

  .about,
  .quick-links {
    margin-top: 34px;
  }

  .quick-links {
    display: none;
  }

  .about__card,
  .quick-links {
    border-color: rgba(129, 111, 80, 0.15);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 252, 246, 0.92) 0%, rgba(247, 239, 225, 0.92) 100%);
    box-shadow:
      0 18px 34px rgba(79, 62, 37, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .about__card {
    position: relative;
    gap: 38px;
    overflow: hidden;
  }

  .about__card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 151, 98, 0.1), rgba(118, 151, 98, 0) 70%);
    pointer-events: none;
  }

  .about__image-frame {
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(244, 236, 223, 0.96) 100%);
  }

  .about__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
  }

  .about__fact {
    display: grid;
    gap: 6px;
    padding: 14px 14px 15px;
    border: 1px solid rgba(130, 112, 80, 0.12);
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.8);
    box-shadow: 0 8px 18px rgba(89, 73, 45, 0.05);
  }

  .about__fact strong {
    color: var(--green-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
  }

  .about__fact span {
    color: #5d6257;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .quick-links {
    position: relative;
    overflow: hidden;
  }

  .quick-links::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 18%, rgba(176, 154, 112, 0.08), rgba(176, 154, 112, 0) 20%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .quick-links__grid {
    gap: 18px;
  }

  .quick-links__item {
    min-height: 122px;
    border-color: rgba(100, 66, 38, 0.18);
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(132, 87, 51, 0.98) 0%, rgba(95, 61, 35, 0.98) 100%),
      repeating-linear-gradient(90deg, rgba(255, 228, 188, 0.08) 0, rgba(255, 228, 188, 0.08) 2px, transparent 2px, transparent 56px),
      repeating-linear-gradient(0deg, rgba(63, 37, 18, 0.12) 0, rgba(63, 37, 18, 0.12) 1px, transparent 1px, transparent 8px);
    box-shadow:
      0 14px 26px rgba(69, 47, 25, 0.16),
      inset 0 1px 0 rgba(255, 230, 191, 0.18);
    color: #fff5e3;
  }

  .quick-links__item:hover,
  .quick-links__item:focus-visible {
    background:
      linear-gradient(180deg, rgba(142, 93, 54, 0.98) 0%, rgba(103, 66, 38, 0.98) 100%),
      repeating-linear-gradient(90deg, rgba(255, 228, 188, 0.08) 0, rgba(255, 228, 188, 0.08) 2px, transparent 2px, transparent 56px),
      repeating-linear-gradient(0deg, rgba(63, 37, 18, 0.12) 0, rgba(63, 37, 18, 0.12) 1px, transparent 1px, transparent 8px);
    transform: translateY(-2px);
  }

  .quick-links__icon-shell {
    width: 54px;
    height: 54px;
    margin-bottom: 0.6rem;
    background: rgba(255, 244, 224, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 232, 192, 0.2);
  }

  .quick-links__icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1) sepia(12%) saturate(350%) hue-rotate(341deg);
  }

  .quick-links__label {
    color: #fff4e2;
    font-size: 0.98rem;
    font-weight: 600;
  }

  .home-contact {
    width: min(980px, calc(100% - 120px));
    margin: 20px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(133, 116, 82, 0.16);
  }

  .home-contact__panel {
    padding: 0 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-contact__column {
    padding: 0 36px;
  }

  .home-contact__column:first-child {
    padding-left: 0;
  }

  .home-contact__column:last-child {
    padding-right: 0;
  }

  .home-contact__column + .home-contact__column {
    border-left: 1px solid rgba(108, 98, 79, 0.16);
  }

  .home-contact__column h2 {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }

  .home-contact__divider {
    margin: 11px 0 14px;
    background: rgba(108, 98, 79, 0.16);
  }

  .home-contact__column p {
    margin-bottom: 6px;
    color: #424941;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .home-contact__socials {
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(133, 116, 82, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-contact__social-list {
    gap: 14px;
  }

  .home-contact__social {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(180deg, #5a8631 0%, #446c22 100%);
    box-shadow: 0 10px 18px rgba(50, 77, 27, 0.12);
  }

  .home-contact__social img {
    width: 21px;
    height: 21px;
  }

  .home-contact__utility-link {
    flex: 0 1 auto;
  }

  .home-contact__utility-anchor {
    justify-content: flex-end;
  }

  .home-contact__utility-logo {
    width: auto;
    height: 58px;
    max-width: min(100%, 320px);
  }

  .site-footer {
    width: min(980px, calc(100% - 120px));
    margin: 16px auto 0;
    padding: 0;
    font-size: 0.88rem;
  }
}

.gallery-page {
  margin-top: 12px;
}

.updates-page,
.about-page {
  margin-top: 12px;
}

.updates__grid--page {
  margin-top: 22px;
}

.about-page .about__card {
  margin-top: 22px;
}

.gallery-page__intro {
  margin-bottom: 22px;
  padding: 28px 24px;
  border: 1px solid rgba(126, 111, 85, 0.16);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.84);
  box-shadow: var(--shadow);
}

.gallery-page__intro h1 {
  margin: 12px 0 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.gallery-page__lead {
  margin: 14px 0 0;
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.gallery-page__lead p {
  margin: 0 0 14px;
}

.gallery-page__lead p:last-child {
  margin-bottom: 0;
}

.detail-page {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  width: min(1440px, calc(100% - 40px));
  padding-top: 18px;
}

.detail-card {
  width: min(820px, 100%);
  margin-top: 24px;
  padding: 34px 30px;
  border: 1px solid rgba(126, 111, 85, 0.16);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.84);
  box-shadow: var(--shadow);
}

.detail-card__image-frame {
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(90, 73, 45, 0.1);
}

.detail-card__image {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.detail-card__label {
  margin: 0;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-card h1 {
  margin: 14px 0 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.detail-card__lead {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.6;
}

.detail-card__divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(108, 98, 79, 0.18);
}

.detail-card__body p {
  margin: 0 0 14px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.detail-card__section-title {
  margin: 22px 0 10px;
  color: var(--green-deep);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.3;
}

.detail-card__section-title:first-child {
  margin-top: 0;
}

.detail-card__list {
  margin: 0 0 18px;
  padding-left: 1.3rem;
}

.detail-card__list li {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.7;
}

.detail-card__documents {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(108, 98, 79, 0.18);
}

.detail-card__contact-form {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(108, 98, 79, 0.18);
}

.content-interactions {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(108, 98, 79, 0.14);
}

.content-interactions__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.content-interactions__like-chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 6px;
  width: fit-content;
  min-width: 58px;
  min-height: 34px;
  padding: 0 11px 0 7px;
  border: 1px solid rgba(67, 105, 58, 0.18);
  border-radius: 999px;
  background: #fffdf8;
  box-shadow: 0 6px 18px rgba(35, 35, 35, 0.08);
  white-space: nowrap;
}

.content-interactions__like-chip form {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  margin: 0;
  width: auto;
}

.content-interactions__like-count {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.content-interactions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(67, 105, 58, 0.32);
  border-radius: 10px;
  background: var(--green);
  color: #fffdf8;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.content-interactions__button:hover,
.content-interactions__button:focus-visible,
.content-interactions__button--active {
  border-color: rgba(49, 87, 44, 0.44);
  background: var(--green-deep);
}

.content-interactions__button--like {
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  font-size: 1.08rem;
  line-height: 1;
}

.content-interactions__button--like:hover,
.content-interactions__button--like:focus-visible,
.content-interactions__button--like.content-interactions__button--active {
  background: transparent;
  color: var(--green-deep);
  transform: none;
}

.content-interactions__button--comment {
  gap: 6px;
  min-height: 34px;
  padding: 0.4rem 0.76rem;
  border-radius: 999px;
  font-size: 0.86rem;
  line-height: 1;
  list-style: none;
  width: fit-content;
  user-select: none;
}

.content-interactions__button--comment::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M5%206.5C5%204.57%206.57%203%208.5%203h7C17.43%203%2019%204.57%2019%206.5v4.6c0%201.93-1.57%203.5-3.5%203.5H12l-4.5%203.4v-3.4C6.12%2014.6%205%2013.48%205%2012.1V6.5Z'%20fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M5%206.5C5%204.57%206.57%203%208.5%203h7C17.43%203%2019%204.57%2019%206.5v4.6c0%201.93-1.57%203.5-3.5%203.5H12l-4.5%203.4v-3.4C6.12%2014.6%205%2013.48%205%2012.1V6.5Z'%20fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  font-size: 1.56em;
  line-height: 1;
}

.content-interactions__comment-form {
  display: inline-flex;
  margin: 0 0 0 auto;
}

.content-interactions__button--comment::-webkit-details-marker {
  display: none;
}

.content-comments {
  display: grid;
  gap: 14px;
}

.content-comments__list {
  display: grid;
  gap: 10px;
}

.content-comment {
  padding: 12px 14px;
  border: 1px solid rgba(108, 98, 79, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.74);
}

.content-comment p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.content-comment__meta {
  margin-bottom: 6px !important;
  color: var(--ink-soft) !important;
  font-size: 0.86rem;
  font-weight: 800;
}

.content-comments__form {
  display: grid;
  gap: 10px;
}

.content-comment-popover {
  position: relative;
  z-index: 25;
  margin-left: auto;
  width: fit-content;
}

.content-comment-popover[open] {
  z-index: 1200;
}

.content-comment-popover__panel {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, calc(100vw - 48px));
  padding: 14px;
  border: 1px solid rgba(67, 105, 58, 0.2);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 16px 34px rgba(90, 73, 45, 0.18);
}

.content-comment-popover__panel textarea {
  min-height: 84px;
  resize: vertical;
}

.detail-card__documents p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.6;
}

.detail-card__document-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card__document-list a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(67, 105, 58, 0.18);
  border-radius: 12px;
  background: rgba(233, 239, 226, 0.62);
  color: var(--green-deep);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.detail-card__document-list a:hover,
.detail-card__document-list a:focus-visible {
  border-color: rgba(67, 105, 58, 0.34);
  background: rgba(222, 233, 215, 0.9);
  transform: translateY(-1px);
}

.detail-card__consider-list {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

.detail-card__consider-item {
  padding: 18px 20px;
  border: 1px solid rgba(108, 98, 79, 0.14);
  border-radius: 18px;
  background: rgba(246, 244, 236, 0.45);
}

.detail-card__consider-item-title {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.35;
}

.detail-card__consider-item p {
  margin: 0;
}

.detail-card__back {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.detail-card__back::before {
  content: "‹";
  margin-right: 8px;
  font-size: 1.1rem;
}

.admin-shell {
  min-height: 100vh;
}

.admin-shell--narrow {
  max-width: 680px;
}

.admin-shell--form {
  max-width: 860px;
}

.admin-card {
  margin-top: 0;
  padding: 28px;
  border: 1px solid rgba(63, 79, 55, 0.14);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 12px 28px rgba(44, 58, 38, 0.07);
}

.admin-card--auth {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.admin-sidebar {
  position: sticky;
  top: 18px;
  margin-top: 0;
  padding: 20px 16px;
  border: 1px solid rgba(32, 61, 31, 0.12);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 10px 22px rgba(44, 58, 38, 0.06);
}

.admin-sidebar__eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-sidebar__title {
  margin: 8px 0 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.15;
}

.admin-sidebar__nav {
  display: grid;
  gap: 0.28rem;
  margin-top: 18px;
}

.admin-sidebar__link {
  display: block;
  padding: 0.68rem 0.78rem;
  border-left: 3px solid transparent;
  border-radius: 8px;
  color: rgba(34, 51, 31, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.admin-sidebar__link:hover,
.admin-sidebar__link:focus-visible {
  background: rgba(75, 120, 64, 0.07);
  color: var(--green-deep);
}

.admin-sidebar__link--active {
  border-left-color: var(--green);
  background: rgba(75, 120, 64, 0.12);
  color: var(--green-deep);
}

.admin-sidebar__actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(63, 79, 55, 0.12);
}

.admin-title {
  margin: 8px 0 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.admin-lead {
  max-width: 780px;
  margin: 10px 0 0;
  color: rgba(34, 51, 31, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.admin-lead p {
  margin: 0 0 12px;
}

.admin-lead p:last-child {
  margin-bottom: 0;
}

.flash-stack {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.flash {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.flash--success {
  background: rgba(91, 139, 81, 0.14);
  border: 1px solid rgba(91, 139, 81, 0.18);
  color: #35592f;
}

.flash--error {
  background: rgba(175, 78, 64, 0.12);
  border: 1px solid rgba(175, 78, 64, 0.18);
  color: #7b3c32;
}

.flash--warning {
  background: rgba(196, 150, 70, 0.12);
  border: 1px solid rgba(196, 150, 70, 0.18);
  color: #6a5328;
}

.admin-topbar,
.admin-actions,
.admin-actions--form {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-actions {
  flex-wrap: wrap;
}

.admin-toolbar {
  margin: 26px 0 18px;
}

.admin-page-group {
  margin-bottom: 20px;
}

.admin-page-group__header {
  margin-bottom: 14px;
}

.admin-page-group__header h2 {
  margin: 0;
  font-size: 1.55rem;
  color: var(--green-deep);
}

.admin-page-group__header p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.admin-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.admin-section-card {
  padding: 18px;
  border: 1px solid rgba(63, 79, 55, 0.12);
  border-radius: 10px;
  background: #fffefb;
  box-shadow: 0 6px 14px rgba(44, 58, 38, 0.04);
}

.admin-section-card h2 {
  margin: 8px 0 8px;
  color: var(--green-deep);
  font-size: 1.18rem;
  line-height: 1.22;
}

.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--green);
  color: #fffdf8;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.admin-button:hover,
.admin-button:focus-visible {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.admin-button--ghost {
  border-color: rgba(88, 79, 61, 0.16);
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
}

.admin-button--ghost:hover,
.admin-button--ghost:focus-visible {
  background: #fffaf0;
}

.admin-button--danger {
  background: #9a4f42;
}

.admin-button--danger:hover,
.admin-button--danger:focus-visible {
  background: #803e33;
}

.admin-update-list {
  display: grid;
  gap: 16px;
}

.admin-update-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(63, 79, 55, 0.12);
  border-radius: 10px;
  background: #fffefb;
  box-shadow: 0 6px 14px rgba(44, 58, 38, 0.04);
}

.admin-update-card__meta,
.admin-update-card__slug {
  margin: 0;
  color: rgba(34, 51, 31, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-update-card h2 {
  margin: 8px 0 8px;
  color: var(--green-deep);
  font-size: 1.16rem;
  line-height: 1.3;
}

.admin-update-card__excerpt {
  margin: 0;
  color: rgba(34, 51, 31, 0.78);
  line-height: 1.55;
}

.admin-update-card__excerpt p {
  margin: 0 0 12px;
}

.admin-update-card__excerpt p:last-child {
  margin-bottom: 0;
}

.admin-update-card__actions {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-update-card__actions--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.admin-plot-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.admin-plot-card,
.admin-invitation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(63, 79, 55, 0.12);
  border-radius: 10px;
  background: #fffefb;
  box-shadow: 0 6px 14px rgba(44, 58, 38, 0.04);
}

.admin-plot-card__content h2,
.admin-invitation-card h3 {
  margin: 10px 0 8px;
  color: var(--green-deep);
  font-size: 1.32rem;
  line-height: 1.3;
}

.admin-plot-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.68rem;
  border: 1px solid rgba(98, 86, 62, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 800;
}

.admin-status--active,
.admin-status--account {
  background: rgba(91, 139, 81, 0.13);
  color: #31572c;
}

.admin-status--vacant,
.admin-status--invite {
  background: rgba(196, 150, 70, 0.14);
  color: #71572a;
}

.admin-status--inactive {
  background: rgba(96, 86, 76, 0.1);
  color: #62564c;
}

.admin-status--new {
  background: rgba(91, 139, 81, 0.14);
  color: #31572c;
}

.admin-status--reviewed {
  background: rgba(59, 130, 246, 0.14);
  color: #1e3a8a;
}

.admin-status--contacted {
  background: rgba(196, 150, 70, 0.16);
  color: #71572a;
}

.admin-status--closed {
  background: rgba(96, 86, 76, 0.1);
  color: #62564c;
}

.admin-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
}

.admin-filter-bar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(96, 86, 76, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.admin-filter-chip span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.admin-filter-chip--active {
  border-color: rgba(49, 87, 44, 0.38);
  background: rgba(91, 139, 81, 0.16);
  color: #31572c;
}

.application-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.admin-invite-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: 18px;
}

.admin-invitation-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-invitation-list-heading {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(98, 86, 62, 0.16);
}

.admin-invitation-list-heading h2 {
  margin: 0 0 6px;
}

.plot-holder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.admin-gallery-list {
  display: grid;
  gap: 16px;
}

.admin-gallery-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(63, 79, 55, 0.12);
  border-radius: 10px;
  background: #fffefb;
  box-shadow: 0 6px 14px rgba(44, 58, 38, 0.04);
}

.admin-gallery-card__image {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.admin-gallery-card__content h2 {
  margin: 10px 0 8px;
  font-size: 1.28rem;
  line-height: 1.3;
}

.admin-gallery-upload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(126, 111, 85, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.78);
}

.admin-gallery-upload h2 {
  margin: 10px 0 8px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.admin-gallery-upload__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}

.gallery-empty--admin {
  margin-top: 12px;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.admin-form__section {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(98, 86, 62, 0.16);
}

.admin-form__section h2 {
  margin: 8px 0 6px;
  color: var(--green-deep);
  font-size: 1.45rem;
}

.admin-fieldset {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(63, 79, 55, 0.14);
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.9);
}

.admin-fieldset legend {
  padding: 0 8px;
  color: var(--green-deep);
  font-weight: 800;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.admin-checkbox--danger {
  color: #8f3f35;
}

.admin-checkbox--danger input {
  accent-color: #9a4f42;
}

.admin-fieldset--new {
  border-color: rgba(75, 120, 64, 0.28);
  background: rgba(246, 250, 241, 0.78);
}

.admin-field span {
  font-weight: 700;
  color: rgba(34, 51, 31, 0.9);
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(63, 79, 55, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  outline: 2px solid rgba(75, 120, 64, 0.18);
  border-color: rgba(75, 120, 64, 0.28);
}

.admin-help {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

body:has(.admin-layout),
body:has(.admin-shell) {
  background: #ffffff;
  color: #111111;
}

.admin-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  width: min(1500px, calc(100% - 32px));
  padding-top: 16px;
  font-size: 16px;
}

.admin-card,
.admin-sidebar,
.admin-section-card,
.admin-update-card,
.admin-plot-card,
.admin-invitation-card,
.admin-gallery-card,
.admin-gallery-upload,
.admin-fieldset,
.admin-image-preview,
.admin-link-row {
  border: 1px solid #d7d7d7;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.admin-card {
  padding: 24px;
}

.admin-sidebar {
  top: 16px;
  padding: 18px;
}

.admin-sidebar__eyebrow,
.admin-sidebar__title,
.admin-title,
.admin-lead,
.admin-page-group__header h2,
.admin-page-group__header p,
.admin-section-card h2,
.admin-update-card h2,
.admin-update-card__meta,
.admin-update-card__slug,
.admin-update-card__excerpt,
.admin-plot-card__content h2,
.admin-invitation-card h3,
.admin-gallery-card__content h2,
.admin-form__section h2,
.admin-field span,
.admin-help {
  color: #111111;
}

.admin-sidebar__eyebrow,
.admin-update-card__meta,
.admin-update-card__slug {
  color: #555555;
}

.admin-sidebar__title,
.admin-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.admin-title {
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.15;
}

.admin-lead {
  max-width: 900px;
  font-size: 1rem;
  line-height: 1.5;
}

.admin-sidebar__nav {
  gap: 18px;
  margin-top: 20px;
}

.admin-sidebar__group {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid #d7d7d7;
}

.admin-sidebar__group:first-child {
  padding-top: 0;
  border-top: 0;
}

.admin-sidebar__group-title {
  margin: 0 0 2px;
  color: #555555;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-sidebar__link {
  min-height: 38px;
  padding: 0.56rem 0.68rem;
  border: 1px solid #d7d7d7;
  border-left: 4px solid transparent;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font-size: 0.94rem;
}

.admin-sidebar__link:hover,
.admin-sidebar__link:focus-visible {
  background: #f3f3f3;
  color: #111111;
}

.admin-sidebar__link--active {
  border-color: #111111;
  border-left-color: #111111;
  background: #eeeeee;
  color: #111111;
}

.admin-sidebar__actions {
  border-top: 1px solid #d7d7d7;
}

.admin-section-grid,
.admin-update-list,
.admin-plot-list,
.admin-gallery-list,
.admin-form {
  gap: 14px;
}

.admin-section-card,
.admin-update-card,
.admin-plot-card,
.admin-invitation-card,
.admin-gallery-card,
.admin-gallery-upload,
.admin-fieldset,
.admin-link-row {
  padding: 16px;
}

.admin-section-card h2,
.admin-update-card h2,
.admin-plot-card__content h2,
.admin-invitation-card h3,
.admin-gallery-card__content h2,
.admin-form__section h2 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.admin-button {
  min-height: 40px;
  padding: 0.62rem 0.92rem;
  border: 1px solid #111111;
  border-radius: 0;
  background: #111111;
  color: #ffffff;
  font-size: 0.92rem;
  transform: none;
}

.admin-button:hover,
.admin-button:focus-visible {
  background: #333333;
  transform: none;
}

.admin-button--ghost {
  border-color: #777777;
  background: #ffffff;
  color: #111111;
}

.admin-button--ghost:hover,
.admin-button--ghost:focus-visible {
  background: #f3f3f3;
}

.admin-button--danger {
  border-color: #8b1e1e;
  background: #8b1e1e;
  color: #ffffff;
}

.admin-button--danger:hover,
.admin-button--danger:focus-visible {
  background: #6f1717;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  border: 1px solid #777777;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  outline: 2px solid #111111;
  border-color: #111111;
}

.admin-status {
  border: 1px solid #777777;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
}

.admin-committee-editor {
  display: grid;
  gap: 14px;
}

.admin-committee-member__layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-committee-member__media,
.admin-committee-member__fields {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.admin-committee-member__media {
  align-content: start;
}

.admin-image-preview--committee {
  padding: 10px;
}

.admin-image-preview--committee .admin-image-preview__label {
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.admin-image-preview--committee img {
  width: 148px;
  height: 176px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.admin-image-preview--update {
  width: fit-content;
  max-width: 100%;
  padding: 12px;
}

.admin-image-preview--update .admin-image-preview__label {
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.admin-image-preview--update img {
  width: 180px;
  height: 140px;
  max-width: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

.admin-image-preview {
  padding: 16px;
  border: 1px solid rgba(126, 111, 85, 0.12);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.84);
}

.admin-image-preview__label {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.admin-image-preview img {
  width: min(100%, 520px);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(90, 73, 45, 0.08);
}

.admin-links-editor {
  display: grid;
  gap: 14px;
}

.admin-link-row {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(126, 111, 85, 0.12);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.84);
}

@media (max-width: 900px) {
  .update-card h3 {
    min-height: auto;
  }

  .about__card,
  .gallery-preview__grid,
  .gallery-album-grid,
  .admin-layout,
  .admin-gallery-card {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .admin-update-card,
  .admin-plot-card,
  .admin-invitation-card,
  .admin-invite-form,
  .admin-gallery-upload {
    grid-template-columns: 1fr;
  }

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

  .admin-gallery-upload__form {
    justify-content: flex-start;
  }

  .admin-section-grid,
  .admin-link-row,
  .plot-holder-grid {
    grid-template-columns: 1fr;
  }

  .admin-update-card__actions--inline {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-sidebar {
    padding: 20px 18px;
  }
}

@media (max-width: 820px) {
  body {
    background: #ffffff;
  }

  .page {
    width: min(100% - 24px, 1280px);
    padding: 10px 0 24px;
  }

  .site-header {
    min-height: 54px;
    margin-top: 0;
    margin-bottom: 8px;
    padding: 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header__brand {
    font-size: 1.42rem;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__toggle {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-header__toggle span {
    width: 21px;
    height: 2.2px;
  }

  .site-header__toggle:hover,
  .site-header__toggle:focus-visible,
  .site-header__menu[open] .site-header__toggle {
    background: transparent;
    box-shadow: none;
  }

  .site-header__menu-panel {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 68px);
    left: 12px;
    right: 12px;
    min-width: 0;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.99);
    box-shadow: 0 18px 34px rgba(79, 62, 37, 0.14);
  }

  .site-header__menu-link {
    min-height: 40px;
    padding: 0.74rem 0.88rem;
  }

  .hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero__frame {
    min-height: clamp(258px, 45vh, 314px);
    border-radius: 0;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(20, 27, 18, 0.18), rgba(20, 27, 18, 0.4));
  }

  .hero__content {
    justify-content: center;
    padding: 0.95rem 0.9rem 1.1rem;
  }

  .hero__content h1 {
    max-width: 9ch;
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 0.97;
    letter-spacing: -0.02em;
    white-space: normal;
  }

  .hero__content h2 {
    margin-top: 0.42rem;
    padding: 0;
    max-width: 18rem;
    font-size: clamp(0.9rem, 3.8vw, 1.05rem);
    line-height: 1.18;
  }

  .hero__lead {
    display: none;
  }

  .hero__actions {
    display: flex;
    justify-content: center;
    margin-top: 0.82rem;
  }

  .hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1.35rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    color: #fffdf7;
    background: linear-gradient(180deg, #5c8b33 0%, #477124 100%);
    box-shadow: 0 12px 24px rgba(34, 50, 21, 0.22);
  }

  .hero__button--secondary {
    display: none;
  }

  .updates,
  .about,
  .home-contact,
  .gallery-page,
  .updates-page,
  .about-page,
  .detail-page {
    margin-top: 18px;
  }

  .updates {
    padding: 0;
    width: min(100% - 2px, 1280px);
  }

  .about--home {
    display: none;
  }

  .updates__heading {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(133, 116, 82, 0.14);
  }

  .updates__heading span {
    display: none;
  }

  .updates__heading h2 {
    font-size: clamp(1.4rem, 5.4vw, 1.72rem);
    text-align: left;
  }

  .updates__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .updates .update-card:nth-child(n + 4) {
    display: none;
  }

  .updates .update-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: 100%;
    padding: 0 0 10px;
    border: 1px solid rgba(126, 111, 85, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(79, 62, 37, 0.08);
    text-align: left;
    overflow: hidden;
  }

  .updates .update-card__image {
    width: 100%;
    height: 82px;
    margin: 0;
    border-radius: 0;
    background: #eef4e8;
    object-fit: cover;
    object-position: center;
  }

  .updates .update-card__image[src$=".svg"] {
    object-fit: contain;
    padding: 10px;
  }

  .updates .update-card__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex: 1 1 auto;
    min-height: 0;
    padding: 8px 8px 0;
  }

  .updates .update-card__meta {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-self: auto;
    transform: none;
  }

  .updates .update-card h3 {
    min-height: 2.15em;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.18;
    color: #24331f;
  }

  .updates .update-card__date {
    margin: 0.16rem 0 0.32rem;
    font-size: 0.62rem;
    color: #5d6558;
  }

  .updates .update-card__excerpt {
    margin: 0.12rem 0 0;
    min-height: 2.7em;
    padding: 0;
    border-top: 0;
    font-size: 0.68rem;
    line-height: 1.32;
    color: #4b5148;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .updates .update-card__link {
    margin-top: 0.72rem;
    min-height: 30px;
    width: 100%;
    padding: 0.42rem 0.56rem;
    border-radius: 4px;
    background: linear-gradient(180deg, #5c8b33 0%, #477124 100%);
    color: #fffdf7;
    box-shadow: none;
    align-self: stretch;
    justify-content: center;
    font-size: 0.66rem;
    font-weight: 700;
    text-decoration: none;
  }

  .updates .update-card__link::after {
    margin-left: 6px;
    font-size: 0.88rem;
  }

  .about__card,
  .gallery-page__intro,
  .detail-card {
    padding: 18px 16px;
  }

  .quick-links {
    display: none;
  }

  .about__card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about__image-frame {
    padding: 8px;
  }

  .about__content h2 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .about__subtitle {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .about__divider {
    margin: 14px 0 16px;
  }

  .about__copy p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .about-extra {
    gap: 16px;
    margin-top: 18px;
  }

  .about-extra__section,
  .about-extra__section--reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
  }

  .about-extra__section--reverse .about-extra__image-frame {
    order: 0;
  }

  .about-extra__image-frame {
    padding: 8px;
  }

  .about-extra__content h2 {
    font-size: clamp(1.45rem, 5.8vw, 1.9rem);
  }

  .about-extra__divider {
    margin: 12px 0 14px;
  }

  .about-extra__content p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .committee-overview {
    margin-top: 16px;
  }

  .committee-overview h2 {
    font-size: clamp(1.28rem, 5vw, 1.6rem);
  }

  .committee-group {
    margin-top: 16px;
  }

  .committee-group__title {
    margin-bottom: 8px;
    font-size: 0.94rem;
  }

  .committee-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .committee-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 0;
    gap: 12px;
    padding: 12px;
  }

  .committee-card__image-frame {
    width: 104px;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .committee-card__body {
    padding: 0;
  }

  .home-contact {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(108, 98, 79, 0.16);
  }

  .home-contact__panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-contact__column {
    padding: 0 14px 0 0;
  }

  .home-contact__column + .home-contact__column {
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(108, 98, 79, 0.16);
    border-top: 0;
  }

  .home-contact__column h2 {
    color: #2f3a2b;
    font-size: 0.98rem;
  }

  .home-contact__divider {
    display: block;
    margin: 8px 0 10px;
    height: 1px;
    background: rgba(108, 98, 79, 0.16);
  }

  .home-contact__column p {
    color: #43463f;
    font-size: 0.82rem;
    line-height: 1.38;
    margin-bottom: 5px;
  }

  .home-contact__socials {
    justify-content: center;
    gap: 10px;
    width: auto;
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(108, 98, 79, 0.16);
    border-radius: 0;
    background: transparent;
  }

  .home-contact__social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .home-contact__social img {
    width: 16px;
    height: 16px;
  }

  .gallery-page__intro {
    margin-bottom: 16px;
  }

  .gallery-page__intro h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .gallery-page__lead {
    font-size: 0.94rem;
    line-height: 1.62;
  }

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

  .gallery-album-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-card__image {
    height: 180px;
  }

  .gallery-photo-card__image {
    aspect-ratio: 4 / 3;
  }

  .gallery-card__body {
    padding: 12px 12px 13px;
  }

  .gallery-card__body h2 {
    font-size: 0.94rem;
  }

  .gallery-card__body p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .detail-card {
    margin-top: 0;
  }

  .detail-card h1 {
    font-size: clamp(1.85rem, 6.4vw, 2.45rem);
  }

  .detail-card__lead {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .detail-card__divider {
    margin: 18px 0;
  }

  .detail-card__body p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .site-footer {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 14px;
    padding-top: 0;
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .home-contact__socials {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px 0;
    box-sizing: border-box;
  }

  .home-contact__social-list {
    justify-content: flex-start;
    gap: 8px;
    align-items: center;
  }

  .home-contact__social {
    width: 33px;
    height: 33px;
    border-radius: 999px;
  }

  .home-contact__social img {
    width: 14px;
    height: 14px;
  }

  .home-contact__utility-link {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: auto;
    justify-items: end;
    text-align: right;
  }

  .home-contact__utility-anchor {
    justify-content: flex-end;
  }

  .home-contact__utility-logo {
    width: auto;
    height: 38px;
    max-width: min(40vw, 144px);
  }
}

@media (min-width: 821px) and (max-width: 1040px) {
  .updates__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 821px) and (max-width: 1040px) {
  .gallery-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 1280px);
    padding: 8px 0 20px;
  }

  .site-header {
    min-height: 50px;
    padding: 0 2px;
    margin-top: 0;
    margin-bottom: 6px;
  }

  .site-header__brand {
    font-size: 1.34rem;
  }

  .site-header__toggle {
    width: 54px;
    height: 54px;
  }

  .site-header__toggle span {
    width: 21px;
    height: 2.2px;
  }

  .site-header__menu-panel {
    top: calc(env(safe-area-inset-top, 0px) + 64px);
    width: auto;
    padding: 16px;
  }

  .hero__frame {
    min-height: clamp(242px, 42vh, 277px);
  }

  .hero__content {
    padding: 0.82rem 0.78rem 1rem;
  }

  .hero__content h1 {
    max-width: 9.5ch;
    font-size: clamp(1.82rem, 7.4vw, 2.18rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    white-space: normal;
  }

  .hero__content h2 {
    margin-top: 0.36rem;
    font-size: clamp(0.86rem, 3.6vw, 0.98rem);
    line-height: 1.18;
  }

  .hero__lead {
    display: none;
  }

  .hero__actions {
    margin-top: 0.74rem;
  }

  .hero__button {
    min-height: 40px;
    padding: 0.68rem 1.2rem;
    font-size: 0.84rem;
  }

  .updates,
  .about,
  .home-contact,
  .gallery-page,
  .updates-page,
  .about-page,
  .detail-page {
    margin-top: 14px;
  }

  .updates .update-card {
    padding: 0 0 8px;
  }

  .updates .update-card__image {
    width: 100%;
    height: 72px;
  }

  .updates .update-card h3 {
    min-height: 2.1em;
    font-size: 0.72rem;
    color: #24331f;
  }

  .updates .update-card__date {
    font-size: 0.58rem;
    color: #5d6558;
  }

  .updates .update-card__excerpt {
    min-height: 2.6em;
    font-size: 0.62rem;
    line-height: 1.28;
    color: #4b5148;
  }

  .updates .update-card__link {
    min-height: 28px;
    margin-top: 0.62rem;
    padding: 0.36rem 0.5rem;
    font-size: 0.62rem;
  }

  .about__card,
  .gallery-card__body,
  .gallery-page__intro {
    padding: 16px 14px;
  }

  .about__card {
    gap: 14px;
  }

  .about__content h2 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .about__subtitle {
    margin-top: 10px;
    font-size: 0.88rem;
  }

  .about__copy p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .about-extra {
    gap: 14px;
    margin-top: 16px;
  }

  .about-extra__section,
  .about-extra__section--reverse {
    padding: 16px 14px;
  }

  .about-extra__content h2 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .about-extra__content p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .committee-overview {
    margin-top: 14px;
  }

  .committee-overview h2 {
    font-size: clamp(1.16rem, 5.5vw, 1.38rem);
  }

  .committee-group {
    margin-top: 14px;
  }

  .committee-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .committee-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 0;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  .committee-card__image-frame {
    align-self: start;
    width: 86px;
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 0;
  }

  .committee-card__image-frame img {
    object-fit: contain;
  }

  .committee-card__body h3 {
    font-size: 0.98rem;
  }

  .committee-card__role,
  .committee-card__body p:last-child {
    font-size: 0.8rem !important;
  }

  .home-contact {
    margin-top: 22px;
    padding-top: 14px;
  }

  .home-contact__column p {
    font-size: 0.74rem;
  }

  .home-contact__socials {
    margin-top: 10px;
    padding-top: 10px;
  }

  .home-contact__social {
    width: 33px;
    height: 33px;
    border-radius: 999px;
  }

  .home-contact__social img {
    width: 14px;
    height: 14px;
  }

  .gallery-card__body,
  .gallery-page__intro {
    padding: 14px 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-photo-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .gallery-photo-card__image {
    width: 100%;
    height: auto;
  }

  .gallery-card__image {
    height: 190px;
  }

  .gallery-page__lead {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .detail-card {
    padding: 18px 14px;
  }

  .detail-card h1 {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
  }

  .detail-card__lead {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .detail-card__body p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .detail-card__section-title {
    margin: 18px 0 8px;
    font-size: 1.02rem;
  }

  .detail-card__list {
    margin-bottom: 16px;
    padding-left: 1.1rem;
  }

  .detail-card__list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .detail-card__documents {
    margin-top: 20px;
    padding-top: 18px;
  }

  .detail-card__documents p {
    font-size: 0.9rem;
  }

  .detail-card__document-list {
    gap: 8px;
  }

  .detail-card__document-list a {
    min-height: 44px;
    padding: 0.7rem 0.82rem;
    font-size: 0.9rem;
  }

  .detail-card__consider-list {
    gap: 12px;
    margin-bottom: 18px;
  }

  .detail-card__consider-item {
    padding: 14px 14px;
    border-radius: 14px;
  }

  .detail-card__consider-item-title {
    margin-bottom: 6px;
    font-size: 0.96rem;
  }

  .detail-card__consider-item p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .site-footer {
    margin-top: 12px;
    font-size: 0.78rem;
  }

  .admin-card {
    padding: 24px 18px;
  }

  .admin-sidebar {
    margin-top: 18px;
  }

  .admin-layout {
    width: min(100% - 16px, 1280px);
    gap: 12px;
    padding-top: 8px;
  }

  .admin-sidebar {
    position: static;
    margin-top: 0;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 254, 250, 0.98);
  }

  .admin-sidebar__eyebrow {
    font-size: 0.68rem;
  }

  .admin-sidebar__title {
    margin-top: 4px;
    font-size: 1.08rem;
  }

  .admin-sidebar__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
  }

  .admin-sidebar__link {
    min-height: 42px;
    padding: 0.58rem 0.62rem;
    border-left-width: 0;
    border-bottom: 3px solid transparent;
    border-radius: 8px;
    background: rgba(246, 250, 241, 0.86);
    font-size: 0.86rem;
    line-height: 1.15;
  }

  .admin-sidebar__link--active {
    border-bottom-color: var(--green);
    background: rgba(75, 120, 64, 0.16);
  }

  .admin-sidebar__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .admin-sidebar__actions .admin-button {
    min-height: 40px;
    padding: 0.58rem 0.62rem;
    font-size: 0.84rem;
  }

  .admin-card {
    padding: 18px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(44, 58, 38, 0.06);
  }

  .admin-title {
    margin-top: 4px;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .admin-lead {
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .admin-toolbar {
    margin: 18px 0 14px;
  }

  .admin-section-card,
  .admin-update-card,
  .admin-plot-card,
  .admin-invitation-card,
  .admin-gallery-card,
  .admin-gallery-upload,
  .admin-fieldset,
  .admin-link-row {
    padding: 14px;
    border-radius: 9px;
  }

  .admin-section-card h2,
  .admin-update-card h2,
  .admin-plot-card__content h2,
  .admin-invitation-card h3,
  .admin-gallery-card__content h2,
  .admin-page-group__header h2,
  .admin-form__section h2 {
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .admin-update-card__excerpt,
  .admin-page-group__header p,
  .admin-help {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .admin-form {
    gap: 14px;
    margin-top: 18px;
  }

  .admin-field {
    gap: 6px;
  }

  .admin-field span {
    font-size: 0.92rem;
  }

  .admin-field input,
  .admin-field textarea,
  .admin-field select {
    min-height: 42px;
    padding: 0.66rem 0.76rem;
    font-size: 0.95rem;
  }

  .admin-actions,
  .admin-actions--form {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-button {
    width: 100%;
  }

  .admin-card,
  .admin-sidebar,
  .admin-section-card,
  .admin-update-card,
  .admin-plot-card,
  .admin-invitation-card,
  .admin-gallery-card,
  .admin-gallery-upload,
  .admin-fieldset,
  .admin-link-row {
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .admin-sidebar__nav {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .admin-sidebar__group {
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #d7d7d7;
  }

  .admin-sidebar__group:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .admin-sidebar__link {
    border: 1px solid #d7d7d7;
    border-left: 4px solid transparent;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    background: #ffffff;
    color: #111111;
  }

  .admin-sidebar__link--active {
    border-color: #111111;
    border-left-color: #111111;
    background: #eeeeee;
  }

  .admin-committee-member__layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .admin-committee-member__media {
    max-width: 180px;
  }

  .admin-image-preview--committee img {
    width: 120px;
    height: 144px;
  }

  .admin-image-preview--update img {
    width: 140px;
    height: 110px;
  }
}

@media (max-width: 420px) {
  .page {
    width: min(100% - 16px, 1280px);
    padding: 6px 0 14px;
  }

  .site-header {
    margin-top: 0;
    margin-bottom: 4px;
    min-height: 48px;
  }

  .site-header__brand {
    font-size: 1.28rem;
  }

  .site-header__toggle {
    width: 50px;
    height: 50px;
  }

  .site-header__toggle span {
    width: 19px;
    height: 2px;
  }

  .site-header__menu-panel {
    top: calc(env(safe-area-inset-top, 0px) + 62px);
    left: 8px;
    right: 8px;
    padding: 10px;
  }

  .hero__frame {
    min-height: clamp(216px, 40vh, 246px);
  }

  .hero__content {
    padding: 0.72rem 0.62rem 0.88rem;
  }

  .hero__content h1 {
    max-width: 9.4ch;
    font-size: clamp(1.58rem, 7vw, 1.86rem);
    line-height: 0.98;
    letter-spacing: -0.018em;
    white-space: normal;
  }

  .hero__content h2 {
    margin-top: 0.3rem;
    max-width: 16rem;
    font-size: 0.8rem;
    line-height: 1.16;
  }

  .hero__lead {
    display: none;
  }

  .hero__actions {
    margin-top: 0.66rem;
  }

  .hero__button {
    min-height: 38px;
    padding: 0.62rem 1.08rem;
    font-size: 0.78rem;
  }

  .updates__heading {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .updates__heading h2 {
    font-size: 1.18rem;
  }

  .updates .update-card {
    padding: 0 0 7px;
  }

  .updates .update-card__image {
    width: 100%;
    height: 60px;
  }

  .updates .update-card__image[src$=".svg"] {
    padding: 8px;
  }

  .updates .update-card__content {
    min-height: 0;
    padding: 7px 7px 0;
    align-items: stretch;
  }

  .updates .update-card h3 {
    min-height: 2em;
    font-size: 0.64rem;
    line-height: 1.18;
    color: #24331f;
  }

  .updates .update-card__date {
    font-size: 0.54rem;
    color: #5d6558;
  }

  .updates .update-card__excerpt {
    min-height: 2.45em;
    font-size: 0.56rem;
    line-height: 1.22;
    color: #474d45;
  }

  .updates .update-card__link {
    min-height: 24px;
    margin-top: 4px;
    padding: 0.24rem 0.4rem;
    font-size: 0.54rem;
  }

  .home-contact {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(108, 98, 79, 0.16);
  }

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

  .home-contact__column {
    padding: 0;
  }

  .home-contact__column + .home-contact__column {
    padding-top: 0;
    padding-left: 10px;
    margin-left: 10px;
    border-top: 0;
    border-left: 1px solid rgba(108, 98, 79, 0.16);
  }

  .home-contact__divider {
    margin: 7px 0 9px;
  }

  .home-contact__column h2 {
    font-size: 0.82rem;
  }

  .home-contact__column p {
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .home-contact__socials {
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
  }

  .home-contact__social {
    width: 31px;
    height: 31px;
    border-radius: 999px;
  }

  .home-contact__social img {
    width: 13px;
    height: 13px;
  }

  .gallery-card__body h2 {
    font-size: 0.9rem;
  }

  .gallery-card__body p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .gallery-card__image {
    height: 175px;
  }

  .site-footer {
    margin-top: 6px;
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .page {
    width: min(100% - 14px, 1280px);
  }

  .hero__content h1 {
    font-size: clamp(1.46rem, 6.8vw, 1.68rem);
  }

  .updates .update-card {
    padding-bottom: 6px;
  }

  .updates .update-card__image {
    width: 100%;
    height: 54px;
  }

  .updates .update-card__image[src$=".svg"] {
    padding: 7px;
  }

  .updates .update-card h3 {
    font-size: 0.6rem;
  }

  .updates .update-card__excerpt {
    font-size: 0.52rem;
  }

  .updates .update-card__link {
    font-size: 0.5rem;
  }
}

/* Stage 1 homepage visual polish: CSS-only colour, contrast and shadow refinements. */
:root {
  --paper: #f4efe4;
  --paper-deep: #e7ddca;
  --card: #fffdf7;
  --line: rgba(71, 91, 54, 0.16);
  --ink: #22331f;
  --ink-soft: #606a5a;
  --green: #356f2d;
  --green-deep: #1f4f23;
  --green-rich: #2f6b2f;
  --green-dark: #173f1d;
  --shadow: 0 18px 38px rgba(46, 58, 31, 0.11);
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(180deg, #faf7ef 0%, var(--paper) 50%, var(--paper-deep) 100%);
}

.site-header {
  border-color: rgba(49, 86, 39, 0.14);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(245, 239, 228, 0.98) 100%);
  box-shadow: 0 12px 26px rgba(46, 58, 31, 0.08);
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible,
.site-header__nav-link--active,
.site-header__nav-dropdown-link:hover,
.site-header__nav-dropdown-link:focus-visible,
.site-header__nav-dropdown-link--active {
  background: rgba(53, 111, 45, 0.11);
  color: var(--green-dark);
}

.hero {
  box-shadow: 0 20px 42px rgba(37, 52, 28, 0.12);
}

.hero__frame {
  background-color: #284823;
  filter: saturate(1.12) contrast(1.07) brightness(1.02);
}

.hero__overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(9, 22, 10, 0.28) 0%, rgba(9, 22, 10, 0.54) 100%);
}

.hero__content h1 {
  color: #fffdf7;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.42), 0 1px 2px rgba(0, 0, 0, 0.34);
}

.hero__content h2,
.hero__lead {
  color: rgba(255, 253, 247, 0.95);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38), 0 1px 2px rgba(0, 0, 0, 0.28);
}

.updates__heading {
  border-bottom-color: rgba(47, 85, 35, 0.2);
}

.updates__heading span {
  background: rgba(47, 85, 35, 0.24);
}

.updates__heading h2,
.home-contact__column h2 {
  color: var(--green-dark);
}

.update-card,
.quick-links__item,
.home-contact__panel {
  border-color: rgba(49, 86, 39, 0.14);
  box-shadow:
    0 14px 30px rgba(46, 58, 31, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.74) inset;
}

.update-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf5 100%);
}

.update-card h3 {
  color: #21341f;
}

.update-card__date,
.update-card__excerpt {
  color: var(--ink-soft);
}

.update-card__image {
  filter: saturate(1.08) contrast(1.04);
}

.update-card__link,
.hero__button,
.home-contact__social {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.updates .update-card__link,
.hero__button--primary,
.hero__button,
.home-contact__social {
  background: linear-gradient(180deg, var(--green-rich) 0%, var(--green-deep) 100%);
  color: #fffdf7;
}

.updates .update-card__link,
.hero__button--primary,
.hero__button {
  border-radius: 9px;
  box-shadow: 0 12px 24px rgba(21, 62, 25, 0.22);
}

.updates .update-card__link:hover,
.updates .update-card__link:focus-visible,
.hero__button:hover,
.hero__button:focus-visible {
  background: linear-gradient(180deg, #3b7a35 0%, #1f5626 100%);
  box-shadow: 0 15px 28px rgba(21, 62, 25, 0.28);
  transform: translateY(-1px);
}

.quick-links {
  border-color: rgba(49, 86, 39, 0.14);
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 16px 32px rgba(46, 58, 31, 0.08);
}

.quick-links__item {
  background: linear-gradient(180deg, rgba(239, 232, 207, 0.9) 0%, rgba(226, 216, 187, 0.96) 100%);
}

.quick-links__item:hover,
.quick-links__item:focus-visible {
  background: linear-gradient(180deg, #f3ebd0 0%, #e6d8b6 100%);
  box-shadow: 0 16px 30px rgba(46, 58, 31, 0.14);
}

.home-contact__divider,
.home-contact__column + .home-contact__column,
.home-contact,
.home-contact__socials {
  border-color: rgba(47, 85, 35, 0.18);
}

.home-contact__column p {
  color: #3e493b;
}

.home-contact__link:hover,
.home-contact__link:focus-visible {
  color: var(--green-dark);
}

.home-contact__social {
  box-shadow: 0 10px 20px rgba(21, 62, 25, 0.18);
}

.home-contact__social:hover,
.home-contact__social:focus-visible {
  background: linear-gradient(180deg, #3b7a35 0%, #1f5626 100%);
  box-shadow: 0 13px 24px rgba(21, 62, 25, 0.24);
}

.site-footer {
  color: rgba(34, 51, 31, 0.82);
}

.site-footer__separator {
  color: rgba(34, 51, 31, 0.34);
}

.site-footer__login {
  color: rgba(31, 79, 35, 0.82);
}

.site-footer__login:hover,
.site-footer__login:focus-visible {
  color: var(--green-dark);
}

@media (min-width: 821px) {
  .hero__overlay {
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 28%),
      linear-gradient(180deg, rgba(9, 22, 10, 0.24) 0%, rgba(9, 22, 10, 0.5) 100%);
  }

  .updates .update-card {
    border-color: rgba(49, 86, 39, 0.14);
    box-shadow:
      0 14px 30px rgba(46, 58, 31, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.74) inset;
  }

  .updates .update-card__image {
    background: #edf5e8;
  }

  .updates .update-card__excerpt {
    border-top-color: rgba(47, 85, 35, 0.16);
    color: #4a5547;
  }

  .updates .update-card__link {
    padding: 0.5rem 0.88rem;
    border-radius: 8px;
  }

  .home-contact__social {
    background: linear-gradient(180deg, var(--green-rich) 0%, var(--green-deep) 100%);
  }

  .site-footer {
    padding: 10px 0 2px;
    border-top: 1px solid rgba(47, 85, 35, 0.14);
  }
}

@media (max-width: 820px) {
  .hero__overlay {
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 28%),
      linear-gradient(180deg, rgba(9, 22, 10, 0.32) 0%, rgba(9, 22, 10, 0.62) 100%);
  }

  .hero__button {
    border-radius: 9px;
    box-shadow: 0 12px 24px rgba(21, 62, 25, 0.26);
  }

  .updates .update-card {
    border-color: rgba(49, 86, 39, 0.14);
    box-shadow:
      0 12px 24px rgba(46, 58, 31, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.74) inset;
  }

  .updates .update-card__image {
    background: #edf5e8;
  }

  .updates .update-card__link {
    border-radius: 7px;
  }

  .site-footer {
    padding-top: 10px;
    border-top: 1px solid rgba(47, 85, 35, 0.12);
  }
}

/* Footer polish: darker garden-toned finish without changing footer structure. */
.home-contact__socials {
  position: relative;
  overflow: hidden;
  border-color: rgba(214, 226, 196, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #1f4f27 0%, #153a1f 100%);
  box-shadow:
    0 18px 36px rgba(18, 45, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-contact__socials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(185, 214, 158, 0.16), rgba(185, 214, 158, 0) 36%),
    radial-gradient(circle at 92% 100%, rgba(107, 150, 88, 0.16), rgba(107, 150, 88, 0) 34%);
  pointer-events: none;
}

.home-contact__social-list,
.home-contact__utility-link {
  position: relative;
  z-index: 1;
}

.home-contact__social {
  border: 1px solid rgba(235, 246, 226, 0.16);
  background:
    linear-gradient(180deg, rgba(72, 132, 62, 0.95) 0%, rgba(37, 91, 42, 0.95) 100%);
  box-shadow:
    0 10px 20px rgba(6, 25, 11, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-contact__social:hover,
.home-contact__social:focus-visible {
  background:
    linear-gradient(180deg, rgba(88, 151, 73, 0.98) 0%, rgba(42, 101, 47, 0.98) 100%);
  box-shadow:
    0 13px 24px rgba(6, 25, 11, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.home-contact__social img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.home-contact__utility-anchor {
  padding: 0.42rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 22px rgba(6, 25, 11, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.home-contact__utility-anchor:hover,
.home-contact__utility-anchor:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.96);
}

.site-footer {
  color: rgba(239, 247, 232, 0.88);
  background:
    linear-gradient(180deg, #153a1f 0%, #102f1a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer__separator {
  color: rgba(239, 247, 232, 0.42);
}

.site-footer__login {
  color: rgba(232, 246, 219, 0.9);
}

.site-footer__login:hover,
.site-footer__login:focus-visible {
  color: #ffffff;
}

@media (min-width: 821px) {
  .home-contact__socials {
    margin-top: 2px;
    padding: 18px 20px;
    border: 1px solid rgba(214, 226, 196, 0.14);
    border-radius: 14px 14px 0 0;
  }

  .site-footer {
    margin-top: 0;
    padding: 13px 20px 14px;
    border: 1px solid rgba(214, 226, 196, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 14px 14px;
  }
}

@media (max-width: 820px) {
  .home-contact__socials {
    gap: 12px;
    padding: 15px 14px;
  }

  .home-contact__social-list {
    gap: 10px;
  }

  .home-contact__utility-anchor {
    padding: 0.36rem 0.48rem;
  }

  .site-footer {
    gap: 0.5rem;
    margin-top: 0;
    padding: 12px 10px 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 12px 12px;
    font-size: 0.82rem;
  }
}

/* Dark navigation and footer colour pass: no layout changes. */
:root {
  --charcoal-green: #101a19;
  --charcoal-green-soft: #172423;
  --charcoal-green-deep: #0b1212;
  --acid-leaf: #d8da38;
  --footer-line: rgba(232, 238, 224, 0.2);
}

.site-header {
  border-color: rgba(220, 224, 198, 0.08);
  background:
    radial-gradient(circle at 82% 0%, rgba(104, 126, 82, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 36%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, var(--charcoal-green-soft) 0%, var(--charcoal-green) 100%);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(4, 9, 8, 0.18);
}

.site-header__brand,
.site-header__nav-link,
.site-header__nav-dropdown-toggle {
  color: rgba(244, 248, 241, 0.9);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

.site-header__brand {
  color: #f6f1d9;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible,
.site-header__nav-dropdown-toggle:hover,
.site-header__nav-dropdown-toggle:focus-visible {
  background: rgba(216, 218, 56, 0.08);
  color: #f5f6d2;
}

.site-header__nav-link--active,
.site-header__nav-dropdown--active .site-header__nav-dropdown-toggle,
.site-header__nav-dropdown[open] .site-header__nav-dropdown-toggle {
  position: relative;
  background: rgba(216, 218, 56, 0.08);
  color: var(--acid-leaf);
}

.site-header__nav-link--active::after,
.site-header__nav-dropdown--active .site-header__nav-dropdown-toggle::before {
  content: "";
  position: absolute;
  right: 0.7rem;
  bottom: 0.1rem;
  left: 0.7rem;
  height: 3px;
  border-radius: 999px;
  background: var(--acid-leaf);
  box-shadow: 0 0 10px rgba(216, 218, 56, 0.34);
}

.site-header__nav-dropdown-menu,
.site-header__menu-panel {
  border-color: rgba(225, 232, 213, 0.12);
  background:
    linear-gradient(180deg, rgba(28, 43, 41, 0.98), rgba(13, 23, 22, 0.98));
  box-shadow: 0 18px 34px rgba(3, 8, 8, 0.34);
}

.site-header__nav-dropdown-link,
.site-header__menu-link,
.site-header__menu-label {
  color: rgba(246, 249, 241, 0.86);
}

.site-header__nav-dropdown-link:hover,
.site-header__nav-dropdown-link:focus-visible,
.site-header__nav-dropdown-link--active,
.site-header__menu-link:hover,
.site-header__menu-link:focus-visible,
.site-header__menu-link--active {
  background: rgba(216, 218, 56, 0.1);
  color: var(--acid-leaf);
}

.site-header__toggle {
  border-color: rgba(244, 248, 241, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.site-header__toggle span {
  background: rgba(244, 248, 241, 0.9);
}

.home-contact__panel {
  border-color: rgba(232, 238, 224, 0.12);
  background:
    radial-gradient(circle at 88% 0%, rgba(111, 135, 88, 0.2), transparent 32%),
    radial-gradient(circle at 18% 8%, rgba(55, 75, 56, 0.28), transparent 30%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #1a2927 0%, #101b1a 100%);
  box-shadow:
    0 18px 36px rgba(4, 9, 8, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-contact__column + .home-contact__column {
  border-left-color: rgba(232, 238, 224, 0.16);
}

.home-contact__column h2 {
  color: #f6f1d9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
}

.home-contact__column h2::first-letter {
  color: var(--acid-leaf);
}

.home-contact__divider {
  background: var(--footer-line);
}

.home-contact__column p,
.home-contact__link {
  color: rgba(246, 249, 241, 0.92);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.46);
}

.home-contact__link {
  text-decoration-color: rgba(246, 249, 241, 0.58);
}

.home-contact__link:hover,
.home-contact__link:focus-visible {
  color: #ffffff;
  text-decoration-color: var(--acid-leaf);
}

.home-contact__socials {
  border-color: rgba(232, 238, 224, 0.1);
  background:
    radial-gradient(circle at 82% 0%, rgba(111, 135, 88, 0.18), transparent 30%),
    linear-gradient(180deg, #172522 0%, #0d1715 100%);
}

.home-contact__social {
  border-color: rgba(246, 249, 241, 0.18);
  background:
    linear-gradient(180deg, rgba(76, 85, 81, 0.96) 0%, rgba(36, 45, 43, 0.98) 100%);
  box-shadow:
    0 10px 20px rgba(3, 8, 8, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.home-contact__social:hover,
.home-contact__social:focus-visible {
  background:
    linear-gradient(180deg, rgba(97, 107, 102, 0.98) 0%, rgba(46, 57, 54, 0.98) 100%);
}

.site-footer {
  color: rgba(246, 249, 241, 0.86);
  background:
    linear-gradient(180deg, #111d1b 0%, #0b1211 100%);
}

.site-footer__separator {
  color: rgba(246, 249, 241, 0.34);
}

.site-footer__login {
  color: rgba(246, 249, 241, 0.86);
}

.site-footer__login:hover,
.site-footer__login:focus-visible {
  color: var(--acid-leaf);
}

/* Full-width homepage pass using the supplied palette and hero artwork. */
:root {
  --palette-charcoal: #1e2327;
  --palette-green: #2e7d32;
  --palette-leaf: #a8c66c;
  --palette-gold: #fddb35;
  --palette-paper: #f5f2ee;
  --palette-mist: #e9ecef;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--palette-paper) 100%);
}

.page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.site-header,
.hero,
.updates,
.quick-links,
.home-contact,
.site-footer {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.site-header {
  margin-bottom: 0;
  border-top: 0;
  background:
    radial-gradient(circle at 86% 0%, rgba(168, 198, 108, 0.12), transparent 34%),
    linear-gradient(180deg, #23292d 0%, var(--palette-charcoal) 100%);
}

.site-header__brand,
.site-header__nav-link,
.site-header__nav-dropdown-toggle {
  color: rgba(245, 242, 238, 0.9);
}

.site-header__nav-link--active,
.site-header__nav-dropdown--active .site-header__nav-dropdown-toggle,
.site-header__nav-dropdown[open] .site-header__nav-dropdown-toggle {
  color: var(--palette-gold);
}

.site-header__nav-link--active::after,
.site-header__nav-dropdown--active .site-header__nav-dropdown-toggle::before {
  background: var(--palette-gold);
}

.hero {
  padding: 0;
  border: 0;
  background: #162015;
  box-shadow: none;
}

.hero__frame {
  min-height: min(66vw, 720px);
  border: 0;
  border-radius: 0;
  background-image: url("images/hero-style-reference.png");
  background-position: center center;
  background-size: cover;
  box-shadow: none;
}

.hero__overlay,
.hero__content {
  display: none;
}

.updates,
.quick-links {
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 100% 88%, rgba(168, 198, 108, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--palette-paper) 100%);
}

.updates {
  margin-top: 0;
  padding-top: clamp(28px, 4vw, 52px);
}

.quick-links {
  margin-top: 0;
}

.updates__heading h2 {
  color: var(--palette-charcoal);
}

.updates__heading span {
  background: rgba(30, 35, 39, 0.14);
}

.updates .update-card {
  background: rgba(255, 255, 255, 0.92);
}

.updates .update-card__link,
.hero__button,
.hero__button--primary {
  background: linear-gradient(180deg, #2f8b35 0%, var(--palette-green) 100%);
}

.home-contact,
.home-contact__panel,
.home-contact__socials,
.site-footer {
  border-radius: 0;
}

.home-contact {
  margin-top: 0;
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 88% 0%, rgba(168, 198, 108, 0.14), transparent 32%),
    linear-gradient(180deg, #1f2b2a 0%, var(--palette-charcoal) 100%);
}

.home-contact__panel,
.home-contact__socials,
.site-footer {
  background:
    radial-gradient(circle at 88% 0%, rgba(168, 198, 108, 0.12), transparent 32%),
    linear-gradient(180deg, #1f2b2a 0%, #12191b 100%);
}

@media (min-width: 821px) {
  .page,
  .home-contact,
  .site-footer {
    width: 100%;
    max-width: none;
  }

  .site-header,
  .hero,
  .updates,
  .quick-links,
  .home-contact,
  .site-footer {
    border-radius: 0;
  }
}

@media (max-width: 820px) {
  .page {
    width: 100%;
  }

  .hero__frame {
    min-height: 78vw;
    background-position: center center;
  }

  .updates,
  .quick-links,
  .home-contact {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Compact the supplied hero artwork and make its visual button clickable. */
.hero__frame {
  min-height: min(52vw, 560px);
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  padding: 0;
  pointer-events: none;
}

.hero__content h1,
.hero__content h2,
.hero__lead,
.hero__eyebrow,
.hero__badges {
  display: none;
}

.hero__actions {
  position: absolute;
  top: 59%;
  left: 50%;
  display: block;
  width: min(20vw, 300px);
  min-width: 210px;
  height: clamp(54px, 5vw, 82px);
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.hero__button--primary {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  color: transparent;
  text-indent: -9999px;
}

.hero__button--primary:hover,
.hero__button--primary:focus-visible {
  background: rgba(253, 219, 53, 0.08);
  box-shadow: 0 0 0 3px rgba(253, 219, 53, 0.42);
}

.hero__button--secondary {
  display: none;
}

@media (max-width: 820px) {
  .hero__frame {
    min-height: 62vw;
  }

  .hero__actions {
    top: 61%;
    width: min(42vw, 240px);
    min-width: 140px;
    height: clamp(40px, 9vw, 58px);
  }
}

/* Leaf paper middle section and refined update cards. */
.updates,
.quick-links {
  background-color: #f5f2ee;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 242, 238, 0.86)),
    url("images/leaf-paper-section.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.updates {
  padding-top: clamp(38px, 5vw, 72px);
  padding-bottom: clamp(46px, 6vw, 86px);
}

.quick-links {
  padding-top: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(38px, 5vw, 70px);
}

.updates__heading {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.updates__heading h2 {
  color: #1e2327;
}

.updates__heading span {
  background: rgba(30, 35, 39, 0.13);
}

.updates .updates__grid {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  gap: clamp(18px, 2.6vw, 34px);
}

.updates .update-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  overflow: hidden;
  padding: clamp(24px, 2.7vw, 34px) clamp(22px, 2.4vw, 32px) clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(146, 129, 88, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 22%, rgba(168, 198, 108, 0.1), transparent 26%),
    radial-gradient(circle at 92% 14%, rgba(168, 198, 108, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 245, 0.95), rgba(246, 239, 220, 0.95));
  box-shadow:
    0 18px 32px rgba(30, 35, 39, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
  text-align: center;
}

.updates .update-card::before,
.updates .update-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
  filter: saturate(0.8);
}

.updates .update-card::before {
  right: -24px;
  top: 42px;
  width: 140px;
  height: 180px;
  background:
    radial-gradient(ellipse at 34% 30%, rgba(168, 198, 108, 0.34) 0 12px, transparent 13px),
    radial-gradient(ellipse at 64% 44%, rgba(168, 198, 108, 0.28) 0 14px, transparent 15px),
    radial-gradient(ellipse at 28% 62%, rgba(168, 198, 108, 0.24) 0 12px, transparent 13px);
}

.updates .update-card::after {
  left: -26px;
  bottom: 36px;
  width: 150px;
  height: 190px;
  background:
    radial-gradient(ellipse at 62% 24%, rgba(168, 198, 108, 0.28) 0 13px, transparent 14px),
    radial-gradient(ellipse at 34% 46%, rgba(168, 198, 108, 0.22) 0 12px, transparent 13px),
    radial-gradient(ellipse at 70% 68%, rgba(168, 198, 108, 0.2) 0 13px, transparent 14px);
}

.updates .update-card__image {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  margin: 0 auto 26px;
  padding: 17px;
  border: 1px solid rgba(212, 166, 55, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(246, 234, 207, 0.92));
  box-shadow:
    0 10px 22px rgba(30, 35, 39, 0.12),
    inset 0 0 0 10px rgba(255, 248, 229, 0.7);
  filter: sepia(0.18) saturate(0.82) hue-rotate(18deg);
  object-fit: contain;
}

.updates .update-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.updates .update-card__meta {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.updates .update-card h3 {
  min-height: 0;
  margin: 0 auto;
  color: #246b2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
}

.updates .update-card__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 18px;
  color: #8b6b18;
  font-size: 1rem;
}

.updates .update-card__date::before,
.updates .update-card__date::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(212, 166, 55, 0.48);
}

.updates .update-card__excerpt {
  display: -webkit-box;
  margin: 0;
  padding-top: 18px;
  overflow: hidden;
  border-top: 1px solid rgba(30, 35, 39, 0.14);
  color: #1e2327;
  font-size: 0.98rem;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.updates .update-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  min-height: 56px;
  margin: 26px auto 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2e7d32 0%, #0f5e20 100%);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 14px 22px rgba(22, 80, 27, 0.26);
}

.updates .update-card__link:hover,
.updates .update-card__link:focus-visible {
  background: linear-gradient(180deg, #348c3a 0%, #116b25 100%);
  box-shadow: 0 16px 26px rgba(22, 80, 27, 0.32);
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .updates .update-card {
    min-height: 0;
  }

  .updates .update-card__image {
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
  }

  .updates .update-card h3 {
    font-size: 1.35rem;
  }
}

/* Swap hero artwork, restore real button, and tighten update/footer heights. */
.site-header {
  margin-bottom: 0;
}

.hero {
  margin-top: 0;
}

.hero__frame {
  background-image: url("images/hero-no-button.png");
}

.hero__content {
  display: block;
}

.hero__actions {
  top: 65%;
  width: auto;
  min-width: 0;
  height: auto;
}

.hero__button--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 230px;
  min-height: 58px;
  padding: 0.9rem 2.2rem;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #3ea52f 0%, #257a21 100%);
  box-shadow: 0 14px 26px rgba(10, 35, 10, 0.32);
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 700;
  text-indent: 0;
}

.hero__button--primary:hover,
.hero__button--primary:focus-visible {
  background: linear-gradient(180deg, #47b837 0%, #2d8a27 100%);
  box-shadow:
    0 16px 30px rgba(10, 35, 10, 0.38),
    0 0 0 3px rgba(253, 219, 53, 0.3);
}

.updates {
  padding-top: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(34px, 4.8vw, 66px);
}

.updates .update-card {
  min-height: 360px;
  padding: clamp(18px, 2vw, 25px) clamp(18px, 2vw, 25px) clamp(18px, 2vw, 24px);
}

.updates .update-card__image {
  width: 70px;
  height: 70px;
  margin-bottom: 17px;
  padding: 14px;
}

.updates .update-card h3 {
  font-size: clamp(1.14rem, 1.45vw, 1.42rem);
}

.updates .update-card__date {
  margin: 12px 0 12px;
  font-size: 0.92rem;
}

.updates .update-card__excerpt {
  padding-top: 13px;
  font-size: 0.92rem;
  line-height: 1.42;
  -webkit-line-clamp: 3;
}

.updates .update-card__link {
  min-height: 48px;
  margin-top: 18px;
  font-size: 0.96rem;
}

.home-contact__socials {
  min-height: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.home-contact__social {
  width: 36px;
  height: 36px;
}

.home-contact__social img {
  width: 17px;
  height: 17px;
}

.home-contact__utility-anchor {
  padding: 0.28rem 0.44rem;
}

.home-contact__utility-logo {
  width: min(40vw, 136px);
}

.site-footer {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (min-width: 821px) {
  .home-contact__socials {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

@media (max-width: 820px) {
  .hero__actions {
    top: 66%;
  }

  .hero__button--primary {
    min-width: 150px;
    min-height: 42px;
    padding: 0.65rem 1.15rem;
    font-size: 0.9rem;
  }

  .updates .update-card {
    min-height: 0;
  }
}

/* Sharper leaf page background and shorter botanical update cards. */
body {
  background-color: #f5f2ee;
}

.updates,
.quick-links,
.updates-page,
.about-page,
.gallery-page,
.detail-page {
  background-color: #f5f2ee;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(245, 242, 238, 0.5)),
    url("images/leaf-paper-section.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.updates-page,
.about-page,
.gallery-page,
.detail-page {
  margin-top: 0;
  padding: clamp(36px, 5vw, 72px) clamp(18px, 4vw, 56px) clamp(48px, 6vw, 88px);
}

.updates {
  padding-top: clamp(30px, 4vw, 54px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.updates .updates__grid,
.updates__grid--page {
  align-items: stretch;
}

.updates .update-card {
  min-height: 252px;
  padding: 15px 17px 16px;
  border: 1px solid rgba(154, 133, 82, 0.58);
  border-radius: 7px;
  background:
    radial-gradient(ellipse at 13% 70%, rgba(168, 198, 108, 0.16), transparent 32%),
    radial-gradient(ellipse at 90% 22%, rgba(168, 198, 108, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 244, 0.97), rgba(246, 239, 220, 0.97));
  box-shadow:
    0 10px 20px rgba(30, 35, 39, 0.13),
    inset 0 0 0 3px rgba(255, 255, 255, 0.52),
    inset 0 0 0 4px rgba(190, 168, 110, 0.18);
}

.updates .update-card::before {
  right: -14px;
  top: 20px;
  width: 96px;
  height: 130px;
  opacity: 0.24;
}

.updates .update-card::after {
  left: -18px;
  bottom: 18px;
  width: 104px;
  height: 130px;
  opacity: 0.22;
}

.updates .update-card__image {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  padding: 10px;
  border-color: rgba(188, 145, 37, 0.5);
  box-shadow:
    0 7px 14px rgba(30, 35, 39, 0.1),
    inset 0 0 0 7px rgba(255, 248, 229, 0.66);
}

.updates .update-card h3 {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.08;
}

.updates .update-card__date {
  gap: 9px;
  margin: 8px 0 9px;
  font-size: 0.83rem;
}

.updates .update-card__date::before,
.updates .update-card__date::after {
  width: 26px;
}

.updates .update-card__excerpt {
  padding-top: 9px;
  font-size: 0.84rem;
  line-height: 1.34;
  -webkit-line-clamp: 2;
}

.updates .update-card__link {
  min-height: 40px;
  width: min(100%, 190px);
  margin-top: 12px;
  font-size: 0.88rem;
  box-shadow: 0 9px 16px rgba(22, 80, 27, 0.22);
}

@media (min-width: 821px) {
  .updates .update-card {
    max-height: 285px;
  }

  .updates .update-card__content,
  .updates .update-card__meta {
    min-height: 0;
  }

  .updates .update-card__meta {
    flex: 1 1 auto;
    overflow: hidden;
  }

  .updates .update-card h3,
  .updates .update-card__date {
    flex-shrink: 0;
  }

  .updates .update-card h3 {
    font-size: clamp(0.98rem, 1.16vw, 1.12rem);
    line-height: 1.05;
  }

  .updates .update-card__date {
    margin: 3px 0;
    line-height: 1.12;
  }

  .updates .update-card__excerpt {
    flex-shrink: 1;
    max-height: 1.5em;
    padding-top: 6px;
    overflow: hidden;
    line-height: 1.22;
    -webkit-line-clamp: 1;
  }

  .updates .update-card__link {
    flex-shrink: 0;
    margin-top: auto;
  }
}

@media (max-width: 820px) {
  .updates .update-card {
    min-height: 0;
    padding: 18px;
  }
}

/* Header scale pass: slightly taller with proportional navigation. */
.site-header {
  min-height: 77px;
  padding-top: 0;
  padding-bottom: 0;
}

.site-header__brand {
  font-size: clamp(1.85rem, 2.88vw, 2.7rem);
  line-height: 1;
}

.site-header__nav {
  gap: clamp(1.35rem, 2.43vw, 2.43rem);
}

.site-header__nav-link,
.site-header__nav-dropdown-toggle {
  min-height: 47px;
  padding: 0.52rem 0.86rem;
  font-size: clamp(0.95rem, 1.19vw, 1.15rem);
}

.site-header__nav-link--active::after,
.site-header__nav-dropdown--active .site-header__nav-dropdown-toggle::before {
  right: 0.86rem;
  bottom: 0.32rem;
  left: 0.86rem;
  height: 4px;
}

.site-header__nav-dropdown-toggle::after {
  margin-left: 0.38rem;
  font-size: 0.77rem;
}

.site-header__nav-dropdown-menu {
  top: calc(100% + 9px);
}

@media (max-width: 820px) {
  .page-home .site-header {
    min-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .page-home .site-header__brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    margin-left: 0;
    color: #fffdf8;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  }

  .page-home .site-header__brand-text {
    display: none;
  }

  .page-home .site-header__brand-mobile {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    height: 44px;
  }

  .page-home .site-header__brand-mark {
    display: inline-flex;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    color: rgba(255, 253, 248, 0.92);
  }

  .page-home .site-header__brand-mark svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .page-home .site-header__brand-lockup {
    display: grid;
    gap: 2px;
    min-width: 0;
    text-transform: uppercase;
  }

  .page-home .site-header__brand-name {
    color: #fffdf8;
    font-size: clamp(0.9rem, 4.8vw, 1.2rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 0.86;
  }

  .page-home .site-header__brand-subtitle {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c8d884;
    font-family: Arial, sans-serif;
    font-size: clamp(0.44rem, 2.35vw, 0.62rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    line-height: 1;
  }

  .page-home .site-header__brand-subtitle::before,
  .page-home .site-header__brand-subtitle::after {
    content: "";
    flex: 1 1 12px;
    height: 1px;
    background: currentColor;
    opacity: 0.8;
  }

  .page-home .site-header__toggle {
    width: 38px;
    height: 38px;
  }

  .page-home .site-header__toggle span {
    width: 24px;
    height: 2px;
    background: #fffdf8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
  }
}

/* Footer link strip and full-width leaf sections refinement. */
.updates,
.quick-links,
.updates-page,
.about-page,
.gallery-page,
.detail-page {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  background-color: #f5f2ee;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(245, 242, 238, 0.46)),
    url("images/leaf-paper-section.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
}

.updates {
  margin-top: 0;
  padding-top: clamp(18px, 2.8vw, 36px);
}

.home-contact__socials {
  min-height: 0;
  padding-top: 7px;
  padding-bottom: 7px;
}

.home-contact__social {
  width: 32px;
  height: 32px;
}

.home-contact__social img {
  width: 15px;
  height: 15px;
}

.home-contact__utility-anchor {
  padding: 0.22rem 0.36rem;
}

.home-contact__utility-logo {
  width: min(34vw, 118px);
  height: auto;
}

@media (min-width: 821px) {
  .home-contact__socials {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 820px) {
  .updates {
    padding-top: 18px;
  }

  .home-contact__socials {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .home-contact__utility-logo {
    width: min(48vw, 116px);
  }
}

/* True full-bleed correction for the leaf-paper artwork. */
html,
body {
  overflow-x: hidden;
}

.updates,
.quick-links,
.updates-page,
.about-page,
.gallery-page,
.detail-page {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-right: -50vw;
  margin-left: -50vw;
  background-size: calc(100% + 92px) calc(100% + 72px);
  background-position: center center;
}

/* Match update listing cards to the homepage update cards. */
.updates-page .update-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 252px;
  overflow: hidden;
  padding: 15px 17px 16px;
  border: 1px solid rgba(154, 133, 82, 0.58);
  border-radius: 7px;
  background:
    radial-gradient(ellipse at 13% 70%, rgba(168, 198, 108, 0.16), transparent 32%),
    radial-gradient(ellipse at 90% 22%, rgba(168, 198, 108, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 244, 0.97), rgba(246, 239, 220, 0.97));
  box-shadow:
    0 10px 20px rgba(30, 35, 39, 0.13),
    inset 0 0 0 3px rgba(255, 255, 255, 0.52),
    inset 0 0 0 4px rgba(190, 168, 110, 0.18);
  text-align: center;
}

.updates-page .update-card::before,
.updates-page .update-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: saturate(0.8);
}

.updates-page .update-card::before {
  right: -14px;
  top: 20px;
  width: 96px;
  height: 130px;
  opacity: 0.24;
  background:
    radial-gradient(ellipse at 34% 30%, rgba(168, 198, 108, 0.34) 0 12px, transparent 13px),
    radial-gradient(ellipse at 64% 44%, rgba(168, 198, 108, 0.28) 0 14px, transparent 15px),
    radial-gradient(ellipse at 28% 62%, rgba(168, 198, 108, 0.24) 0 12px, transparent 13px);
}

.updates-page .update-card::after {
  left: -18px;
  bottom: 18px;
  width: 104px;
  height: 130px;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 62% 24%, rgba(168, 198, 108, 0.28) 0 13px, transparent 14px),
    radial-gradient(ellipse at 34% 46%, rgba(168, 198, 108, 0.22) 0 12px, transparent 13px),
    radial-gradient(ellipse at 70% 68%, rgba(168, 198, 108, 0.2) 0 13px, transparent 14px);
}

.updates-page .update-card__image {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  padding: 10px;
  border: 1px solid rgba(188, 145, 37, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(246, 234, 207, 0.92));
  box-shadow:
    0 7px 14px rgba(30, 35, 39, 0.1),
    inset 0 0 0 7px rgba(255, 248, 229, 0.66);
  filter: sepia(0.18) saturate(0.82) hue-rotate(18deg);
  object-fit: contain;
}

.updates-page .update-card__content,
.updates-page .update-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.updates-page .update-card h3 {
  min-height: 0;
  margin: 0 auto;
  color: #246b2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
}

.updates-page .update-card__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 8px 0 9px;
  color: #8b6b18;
  font-size: 0.83rem;
}

.updates-page .update-card__date::before,
.updates-page .update-card__date::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(212, 166, 55, 0.48);
}

.updates-page .update-card__excerpt {
  display: -webkit-box;
  margin: 0;
  padding-top: 9px;
  overflow: hidden;
  border-top: 1px solid rgba(30, 35, 39, 0.14);
  color: #1e2327;
  font-size: 0.84rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.updates-page .update-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 190px);
  min-height: 40px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2e7d32 0%, #0f5e20 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 9px 16px rgba(22, 80, 27, 0.22);
}

.updates-page .update-card__link:hover,
.updates-page .update-card__link:focus-visible {
  background: linear-gradient(180deg, #348c3a 0%, #116b25 100%);
  box-shadow: 0 12px 20px rgba(22, 80, 27, 0.3);
  transform: translateY(-1px);
}

@media (min-width: 821px) {
  .updates-page .update-card {
    max-height: 285px;
  }
}

@media (max-width: 820px) {
  .site-footer__plot-holder {
    display: none;
  }

  .updates-page .update-card {
    min-height: 0;
    padding: 18px;
  }
}

/* Mobile only: show homepage update cards as a wide vertical list. */
@media (max-width: 820px) {
  .page-home .updates {
    padding-right: 14px;
    padding-left: 14px;
  }

  .page-home .updates .updates__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .page-home .updates .update-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 14px;
    width: 100%;
    max-width: none;
    min-height: 124px;
    max-height: none;
    margin-right: 0;
    margin-left: 0;
    padding: 16px 14px;
    text-align: left;
  }

  .page-home .updates .update-card__image {
    width: clamp(56px, 16vw, 72px);
    height: clamp(56px, 16vw, 72px);
    margin: 0;
    padding: 12px;
  }

  .page-home .updates .update-card__content {
    display: contents;
  }

  .page-home .updates .update-card__meta {
    min-width: 0;
    overflow: visible;
  }

  .page-home .updates .update-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: clamp(1rem, 5vw, 1.32rem);
    line-height: 1.08;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .page-home .updates .update-card__date {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 7px;
    margin: 8px 0 9px;
    font-size: clamp(0.78rem, 3.3vw, 0.9rem);
    line-height: 1.2;
  }

  .page-home .updates .update-card__date::before,
  .page-home .updates .update-card__date::after {
    width: 18px;
  }

  .page-home .updates .update-card__excerpt {
    max-height: none;
    padding-top: 8px;
    font-size: clamp(0.82rem, 3.5vw, 0.96rem);
    line-height: 1.35;
    text-align: left;
    -webkit-line-clamp: 2;
  }

  .page-home .updates .update-card__link {
    align-self: center;
    width: auto;
    min-width: clamp(104px, 28vw, 136px);
    min-height: 44px;
    margin: 0;
    padding: 0 1rem;
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .page-home .updates .update-card {
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 12px;
  }

  .page-home .updates .update-card__link {
    grid-column: 2;
    justify-self: start;
  }
}

/* Final homepage header sizing override. */
.page-home .site-header {
  min-height: 52px;
  padding-top: 0;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(168, 198, 108, 0.12), transparent 32%),
    linear-gradient(180deg, #1f2b2a 0%, #12191b 100%);
}

.page-home .site-header__brand-mobile {
  gap: 8px;
}

.page-home .site-header__brand-mark {
  width: 40px;
  height: 40px;
}

.page-home .site-header__brand-lockup {
  gap: 2px;
}

.page-home .site-header__brand-name {
  font-size: clamp(0.96rem, 1.7vw, 1.26rem);
}

.page-home .site-header__brand-subtitle {
  gap: 5px;
  font-size: clamp(0.44rem, 0.82vw, 0.56rem);
}

.page-home .site-header__nav-link,
.page-home .site-header__nav-dropdown-toggle {
  min-height: 30px;
  padding: 0.3rem 0.66rem;
  font-size: 0.84rem;
}

.page-home .site-header__toggle {
  width: 36px;
  height: 36px;
}

.page-home .site-header__toggle span {
  width: 23px;
  height: 2px;
}

@media (max-width: 820px) {
  .page-home .site-header {
    min-height: 44px;
  }

  .page-home .site-header__brand-mobile {
    gap: 6px;
    height: 40px;
  }

  .page-home .site-header__brand-mark {
    width: 32px;
    height: 32px;
  }

  .page-home .site-header__brand-name {
    font-size: clamp(0.78rem, 4.1vw, 1.02rem);
  }

  .page-home .site-header__brand-subtitle {
    gap: 4px;
    font-size: clamp(0.38rem, 2vw, 0.52rem);
  }

  .page-home .site-header__toggle {
    width: 34px;
    height: 34px;
  }

  .page-home .site-header__toggle span {
    width: 22px;
    height: 2px;
  }
}

/* Mobile only: match Updates page card height to homepage cards. */
@media (max-width: 820px) {
  .updates-page .update-card {
    min-height: 0;
    max-height: none;
    padding: 8px 6px 9px;
  }

  .updates-page .update-card__image {
    width: clamp(34px, 9vw, 43px);
    height: clamp(34px, 9vw, 43px);
    margin-bottom: 6px;
    padding: 7px;
  }

  .updates-page .update-card h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
    line-height: 1.03;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .updates-page .update-card__date {
    gap: 4px;
    margin: 5px 0 6px;
    font-size: clamp(0.64rem, 2.7vw, 0.72rem);
    line-height: 1.12;
  }

  .updates-page .update-card__date::before,
  .updates-page .update-card__date::after {
    width: 12px;
  }

  .updates-page .update-card__excerpt {
    padding-top: 6px;
    font-size: clamp(0.64rem, 2.65vw, 0.72rem);
    line-height: 1.2;
    -webkit-line-clamp: 2;
  }

  .updates-page .update-card__link {
    width: 100%;
    min-height: 31px;
    margin-top: 8px;
    font-size: clamp(0.68rem, 2.85vw, 0.76rem);
  }
}

/* Final public header and mobile updates corrections. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  box-sizing: border-box;
  width: 100%;
  transform: none;
  min-height: 78px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 52px;
  padding-right: 52px;
  background:
    radial-gradient(circle at 88% 0%, rgba(168, 198, 108, 0.12), transparent 32%),
    linear-gradient(180deg, #1f2b2a 0%, #12191b 100%);
}

.page {
  padding-top: 78px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #fffdf8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.site-header__brand-text {
  display: none;
}

.site-header__brand-mobile {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-header__brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  color: rgba(255, 253, 248, 0.92);
}

.site-header__brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header__brand-lockup {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-transform: uppercase;
}

.site-header__brand-name {
  color: #fffdf8;
  font-size: clamp(1.25rem, 2.2vw, 1.64rem);
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 0.88;
}

.site-header__brand-subtitle {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c8d884;
  font-family: Arial, sans-serif;
  font-size: clamp(0.57rem, 1.07vw, 0.73rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
}

.site-header__brand-subtitle::before,
.site-header__brand-subtitle::after {
  content: "";
  flex: 1 1 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.82;
}

.site-header__nav-link,
.site-header__nav-dropdown-toggle {
  min-height: 39px;
  padding: 0.39rem 0.86rem;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.09rem;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible,
.site-header__nav-dropdown-toggle:hover,
.site-header__nav-dropdown-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf8;
}

.site-header__nav-link--active,
.site-header__nav-dropdown--active .site-header__nav-dropdown-toggle,
.site-header__nav-dropdown[open] .site-header__nav-dropdown-toggle {
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf8;
}

.site-header__toggle {
  width: 47px;
  height: 47px;
}

.site-header__toggle span {
  width: 23px;
  height: 2px;
}

@media (max-width: 820px) {
  .site-header {
    left: 0;
    width: 100%;
    transform: none;
    height: 68px;
    min-height: 68px;
    padding-right: 2px;
    padding-left: 2px;
  }

  .page {
    padding-top: 76px;
  }

  .site-header__brand-mobile {
    gap: 8px;
    height: 40px;
  }

  .site-header__brand-mark {
    width: 43px;
    height: 43px;
  }

  .site-header__brand-name {
    font-size: clamp(0.78rem, 4.1vw, 1.02rem);
  }

  .site-header__brand-subtitle {
    gap: 4px;
    font-size: clamp(0.38rem, 2vw, 0.52rem);
  }

  .site-header__toggle {
    width: 34px;
    height: 34px;
  }

  .site-header__toggle span {
    width: 22px;
    height: 2px;
  }

  .site-header__language--desktop {
    display: none;
  }

  .site-header__language-mobile {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 6px 4px;
    border-top: 1px solid rgba(126, 111, 85, 0.14);
  }

  .site-header__language-label {
    color: rgba(49, 69, 45, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .site-header__language-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .site-header__language-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid rgba(126, 111, 85, 0.18);
    border-radius: 8px;
    color: rgba(49, 69, 45, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
  }

  .site-header__language-chip--active {
    border-color: rgba(75, 120, 64, 0.34);
    background: rgba(75, 120, 64, 0.1);
    color: var(--green-deep);
  }

  .page-home .updates,
  .updates-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .page-home .updates .updates__grid,
  .updates-page .updates__grid--page {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .page-home .updates .update-card,
  .updates-page .update-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    width: 100%;
    max-width: none;
    min-height: 104px;
    max-height: none;
    margin-right: 0;
    margin-left: 0;
    padding: 12px;
    text-align: left;
  }

  .page-home .updates .update-card__image,
  .updates-page .update-card__image {
    width: clamp(46px, 13vw, 58px);
    height: clamp(46px, 13vw, 58px);
    margin: 0;
    padding: 9px;
  }

  .page-home .updates .update-card__content,
  .updates-page .update-card__content {
    display: contents;
  }

  .page-home .updates .update-card__meta,
  .updates-page .update-card__meta {
    min-width: 0;
    overflow: visible;
  }

  .page-home .updates .update-card h3,
  .updates-page .update-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: clamp(0.9rem, 4.1vw, 1.1rem);
    line-height: 1.08;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .page-home .updates .update-card__date,
  .updates-page .update-card__date {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    margin: 6px 0 7px;
    font-size: clamp(0.72rem, 3vw, 0.82rem);
    line-height: 1.2;
  }

  .page-home .updates .update-card__date::before,
  .page-home .updates .update-card__date::after,
  .updates-page .update-card__date::before,
  .updates-page .update-card__date::after {
    width: 14px;
  }

  .page-home .updates .update-card__excerpt,
  .updates-page .update-card__excerpt {
    max-height: none;
    padding-top: 6px;
    font-size: clamp(0.76rem, 3.2vw, 0.88rem);
    line-height: 1.3;
    text-align: left;
    -webkit-line-clamp: 2;
  }

  .page-home .updates .update-card__link,
  .updates-page .update-card__link {
    align-self: center;
    width: auto;
    min-width: clamp(88px, 24vw, 116px);
    min-height: 38px;
    margin: 0;
    padding: 0 0.78rem;
    font-size: clamp(0.74rem, 3vw, 0.86rem);
    white-space: nowrap;
  }
}

/* Homepage mobile update cards: match the more compact Updates section sizing. */
@media (min-width: 821px) {
  .page-home .updates .update-card:nth-child(n + 4) {
    display: flex;
  }
}

@media (max-width: 820px) {
  .page-home .updates .update-card:nth-child(n + 4) {
    display: none;
  }

  .page-home .updates .updates__grid {
    gap: 10px;
  }

  .page-home .updates .update-card {
    column-gap: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 0;
    padding: 8px 6px 9px;
  }

  .page-home .updates .update-card__image {
    width: clamp(34px, 9vw, 43px);
    height: clamp(34px, 9vw, 43px);
    padding: 7px;
  }

  .page-home .updates .update-card h3 {
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
    line-height: 1.03;
    -webkit-line-clamp: 3;
  }

  .page-home .updates .update-card__date {
    gap: 4px;
    margin: 5px 0 6px;
    font-size: clamp(0.64rem, 2.7vw, 0.72rem);
    line-height: 1.12;
  }

  .page-home .updates .update-card__date::before,
  .page-home .updates .update-card__date::after {
    width: 12px;
  }

  .page-home .updates .update-card__excerpt {
    padding-top: 6px;
    font-size: clamp(0.64rem, 2.65vw, 0.72rem);
    line-height: 1.2;
    -webkit-line-clamp: 2;
  }

  .page-home .updates .update-card__link {
    grid-column: auto;
    justify-self: end;
    min-width: clamp(78px, 22vw, 104px);
    min-height: 31px;
    padding: 0 0.68rem;
    font-size: clamp(0.68rem, 2.85vw, 0.76rem);
  }
}

/* Homepage fixed header must match the full-width hero on desktop. */
.page-home .site-header {
  left: 0;
  width: 100%;
  min-height: 78px;
  padding-right: 52px;
  padding-left: 52px;
  transform: none;
}

.page-home .page {
  padding-top: 78px;
}

.page-home .site-header__brand-mobile {
  gap: 12px;
}

.page-home .site-header__brand-mark {
  width: 70px;
  height: 70px;
}

.page-home .site-header__brand-lockup {
  gap: 3px;
}

.page-home .site-header__brand-name {
  font-size: clamp(1.25rem, 2.2vw, 1.64rem);
}

.page-home .site-header__brand-subtitle {
  gap: 7px;
  font-size: clamp(0.57rem, 1.07vw, 0.73rem);
}

.page-home .site-header__nav-link,
.page-home .site-header__nav-dropdown-toggle {
  min-height: 39px;
  padding: 0.39rem 0.86rem;
  font-size: 1.09rem;
}

.page-home .site-header__toggle {
  width: 47px;
  height: 47px;
}

@media (max-width: 820px) {
  .page-home .site-header {
    width: 100%;
    height: 68px;
    min-height: 68px;
    padding-right: 2px;
    padding-left: 2px;
  }

  .page-home .page {
    padding-top: 76px;
  }

  .page-home .site-header__brand-mobile {
    gap: 8px;
    height: 40px;
  }

  .page-home .site-header__brand-mark {
    width: 43px;
    height: 43px;
  }

  .page-home .site-header__brand-lockup {
    gap: 2px;
  }

  .page-home .site-header__brand-name {
    font-size: clamp(0.78rem, 4.1vw, 1.02rem);
  }

  .page-home .site-header__brand-subtitle {
    gap: 4px;
    font-size: clamp(0.38rem, 2vw, 0.52rem);
  }

  .page-home .site-header__toggle {
    width: 34px;
    height: 34px;
  }
}
