:root {
  --paper: #fdfefb;
  --canvas: #f4f8f1;
  --sage-50: #eef8f1;
  --sage-100: #dcefe3;
  --sage-200: #b9dfc7;
  --sage-300: #8cc9a3;
  --sage-500: #1bae70;
  --sage-650: #06752e;
  --forest: #0b4a32;
  --ink: #14261c;
  --muted: #55665c;
  --sky: #dcebf0;
  --sun: #eadfbd;
  --rose: #eedfd9;
  --white: #ffffff;
  --line: rgba(60, 91, 68, 0.14);
  --line-strong: rgba(60, 91, 68, 0.24);
  --shadow: 0 20px 55px rgba(77, 108, 82, 0.13);
  --shadow-hover: 0 26px 65px rgba(77, 108, 82, 0.18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

h1,
h2,
h3,
.eyebrow,
.section-kicker,
.nav a,
.brand strong,
.button,
.text-link,
.card-meta,
.event-day,
.event-time,
.filter-button,
.message-tab,
.lang-switch a {
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(113, 147, 112, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 147, 112, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(120, 155, 120, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 200;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: var(--sage-300);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-bottom: 1px solid transparent;
  background: rgba(253, 254, 251, 0.88);
  padding: 0 4vw;
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-color: var(--line);
  box-shadow: 0 12px 38px rgba(73, 103, 78, 0.09);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-500);
  transition: transform 220ms ease, background 220ms ease;
}

.brand:hover .brand-mark {
  background: var(--sage-650);
  transform: rotate(-3deg) scale(1.03);
}

.brand-mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--forest);
  font-size: 1rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 720;
  padding: 0.6rem 0.72rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.nav a[aria-current="page"]::after {
  position: absolute;
  right: 0.72rem;
  bottom: 0.35rem;
  left: 0.72rem;
  height: 2px;
  border-radius: 2px;
  background: var(--sage-500);
  content: "";
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.4rem;
  padding-left: 0.7rem;
  border-left: 1px solid var(--line-strong);
}

.lang-switch a {
  min-height: 30px;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.lang-switch a.is-active {
  background: var(--sage-100);
  color: var(--forest);
}

.lang-switch a:hover {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--sage-100);
  cursor: pointer;
}

.nav-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

main {
  overflow: clip;
}

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

.section {
  padding-block: 6.5rem;
}

.section.compact {
  padding-block: 4.5rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--sage-650);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--forest);
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 5rem;
  line-height: 0.94;
}

h2 {
  font-size: 3rem;
  line-height: 1.06;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.25;
}

.lead {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.section-head > p {
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
}

.button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.78rem 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.86rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after,
.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

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

.button:hover::after,
.text-link:hover::after {
  transform: translateX(4px);
}

.button.primary {
  background: var(--sage-650);
  box-shadow: 0 14px 30px rgba(88, 119, 93, 0.2);
  color: var(--white);
}

.button.primary:hover {
  background: var(--forest);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
  color: var(--forest);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest);
}

.text-link {
  color: var(--sage-650);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 90svh;
  align-items: end;
  overflow: hidden;
  padding: 9rem 1rem 4rem;
  background: var(--sage-100);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 42%;
  transform: translateY(-5%);
  animation: hero-breathe 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-shade {
  background: linear-gradient(180deg, rgba(3, 8, 6, 0.78) 0%, rgba(3, 8, 6, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100%);
  margin-inline: auto;
}

.hero-content .eyebrow {
  color: var(--sage-300);
}

.hero-content h1 {
  max-width: 58rem;
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.hero-content .lead {
  max-width: 39rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-chip {
  position: absolute;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  bottom: 4rem;
  z-index: 3;
  width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(253, 254, 251, 0.84);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  backdrop-filter: blur(14px);
  animation: gentle-float 4.5s ease-in-out infinite;
}

.hero-chip span,
.hero-chip small {
  display: block;
  color: var(--muted);
}

.hero-chip strong {
  display: block;
  margin: 0.15rem 0;
  color: var(--forest);
  font-size: 1.1rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--sage-50);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem 0;
  animation: ticker-move 28s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  color: var(--sage-650);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  color: var(--sage-300);
  content: "✦";
}

.feature-grid,
.card-grid,
.article-grid,
.announcement-grid,
.agenda-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.content-card,
.article-card,
.event-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 38px rgba(77, 108, 82, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.content-card:hover,
.article-card:hover,
.event-card:hover,
.contact-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.feature-card {
  display: grid;
  min-height: 390px;
  grid-template-rows: 230px minmax(0, 1fr);
}

.feature-card img,
.article-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover img,
.article-card:hover img {
  transform: scale(1.045);
}

.feature-card div,
.article-card .article-body {
  padding: 1.2rem;
}

.feature-card p,
.content-card p,
.article-card p,
.event-card p,
.contact-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--sage-650);
  font-size: 0.77rem;
  font-weight: 850;
  text-transform: uppercase;
}

.story-grid,
.split-grid,
.encourage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.story-copy {
  padding: 2rem 3rem 2rem 0;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.story-media {
  position: relative;
  min-height: 560px;
}

.story-media .image-main,
.story-media .image-float {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media .image-main {
  inset: 0 12% 11% 0;
}

.story-media .image-float {
  right: 0;
  bottom: 0;
  width: 47%;
  aspect-ratio: 4 / 5;
  border: 8px solid var(--paper);
}

.story-media img,
.page-hero img,
.image-panel img,
.gallery-item img,
.announcement-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice-band {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto 6.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sage-100);
  padding: 2.2rem;
}

.notice-band-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 2rem;
  align-items: center;
}

.notice-band .date-block {
  border-right: 1px solid var(--line-strong);
  color: var(--sage-650);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.notice-band .date-block strong {
  display: block;
  color: var(--forest);
  font-size: 2.1rem;
  line-height: 1.05;
}

.notice-band h3 {
  font-size: 1.5rem;
}

.notice-band p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  align-items: end;
  overflow: hidden;
  background: var(--sage-100);
  padding: 10rem 1rem 4rem;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 8, 6, 0.78) 0%, rgba(3, 8, 6, 0.95) 100%);
  content: "";
}

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

.page-hero .eyebrow {
  color: var(--sage-300);
}

.page-hero h1 {
  max-width: 53rem;
  font-size: 4.35rem;
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.page-hero .lead {
  max-width: 41rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero.page-hero-center::after {
  background: linear-gradient(180deg, rgba(3, 8, 6, 0.82), rgba(3, 8, 6, 0.9));
}

.page-hero.page-hero-center .container {
  text-align: center;
}

.page-hero.page-hero-center h1,
.page-hero.page-hero-center .lead {
  margin-inline: auto;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.stat-strip div {
  min-height: 150px;
  border-right: 1px solid var(--line);
  padding: 2.2rem 4vw;
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  color: var(--forest);
  font-size: 1.5rem;
}

.stat-strip span {
  color: var(--muted);
}

.content-card {
  min-height: 260px;
  padding: 1.45rem;
}

.content-card .card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 3rem;
  border-radius: var(--radius);
  background: var(--sage-100);
  color: var(--sage-650);
  font-weight: 900;
}

.content-card.sky .card-icon {
  background: var(--sky);
}

.content-card.sun .card-icon {
  background: var(--sun);
}

.content-card.rose .card-icon {
  background: var(--rose);
}

.quote-band {
  background: var(--sage-100);
  padding: 6.5rem 1rem;
  text-align: center;
}

.quote-band blockquote {
  max-width: 62rem;
  margin: 0 auto;
  color: var(--forest);
  font-size: 2.25rem;
  font-weight: 760;
  line-height: 1.25;
}

.quote-band cite {
  display: block;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 145px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--sage-100);
  cursor: zoom-in;
  padding: 0;
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 3;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.gallery-item::after {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(253, 254, 251, 0.88);
  color: var(--forest);
  content: "+";
  font-size: 1.25rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.pathway-list {
  display: grid;
  gap: 1rem;
}

.pathway-row {
  display: grid;
  min-height: 330px;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pathway-row:nth-child(even) {
  grid-template-columns: 1.15fr 0.85fr;
}

.pathway-row:nth-child(even) .pathway-copy {
  order: 2;
}

.pathway-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.3rem;
}

.pathway-copy span {
  color: var(--sage-650);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pathway-copy h2 {
  margin-top: 0.5rem;
  font-size: 2.15rem;
}

.pathway-copy p {
  color: var(--muted);
}

.pathway-image {
  min-height: 330px;
  overflow: hidden;
}

.pathway-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(-5%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.step {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 2rem;
}

.step:last-child {
  border-right: 0;
}

.step span {
  color: var(--sage-500);
  font-size: 2rem;
  font-weight: 850;
}

.step h3 {
  margin-top: 3rem;
}

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

.agenda-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.event-card {
  min-height: 310px;
  padding: 1.45rem;
}

.event-card.featured {
  background: var(--sage-100);
}

.event-day {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--sage-650);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 0.35rem 0.7rem;
  text-transform: uppercase;
}

.event-card h3 {
  margin-top: 4rem;
}

.event-time {
  display: block;
  margin-top: 1.5rem;
  color: var(--forest);
  font-size: 1.15rem;
  font-weight: 850;
}

.calendar-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.calendar-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
}

.calendar-image img,
.calendar-image iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.calendar-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--sky);
  padding: 3rem;
}

.calendar-copy p {
  color: var(--muted);
}

.filter-bar,
.message-tabs {
  display: inline-flex;
  gap: 0.25rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0.25rem;
}

.filter-button,
.message-tab {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.45rem 0.8rem;
  white-space: nowrap;
}

.filter-button.is-active,
.message-tab.is-active {
  background: var(--sage-100);
}

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

.article-card {
  display: grid;
  min-height: 290px;
  grid-template-columns: 0.85fr 1.15fr;
}

.article-card.is-hidden {
  display: none;
}

.article-card .article-media {
  min-height: 290px;
  overflow: hidden;
}

.article-card .article-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.reading-time {
  color: var(--sage-650);
  font-size: 0.84rem;
  font-weight: 800;
}

.featured-article {
  display: grid;
  min-height: 530px;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-100);
}

.featured-article .featured-media {
  min-height: 530px;
}

.featured-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article .featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.featured-copy p {
  color: var(--muted);
}

.announcement-grid {
  align-items: start;
}

.announcement-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(77, 108, 82, 0.08);
}

.announcement-card button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
}

.announcement-card img {
  aspect-ratio: 4 / 5;
  transition: transform 520ms ease;
}

.announcement-card:hover img {
  transform: scale(1.025);
}

.announcement-card div {
  padding: 1.1rem;
}

.announcement-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.brand-poster {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-100);
  padding: 2rem;
  text-align: center;
}

.brand-poster::before {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 54px solid rgba(120, 155, 120, 0.12);
  border-radius: 50%;
  content: "";
}

.brand-poster .poster-content {
  position: relative;
  z-index: 1;
}

.brand-poster img {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.4rem;
  border-radius: var(--radius);
  background: var(--sage-500);
  object-fit: contain;
  padding: 1rem;
}

.brand-poster h2 {
  font-size: 2.5rem;
}

.brand-poster p {
  color: var(--muted);
}

.encourage-layout {
  align-items: stretch;
}

.encourage-intro,
.message-composer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.encourage-intro {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.encourage-intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.encourage-intro div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(248, 251, 246, 0.92);
  padding: 1.5rem;
  backdrop-filter: blur(14px);
}

.encourage-intro p {
  margin-bottom: 0;
  color: var(--muted);
}

.message-composer {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: 2.4rem;
}

.message-preview {
  position: relative;
  margin: 1.5rem 0 0;
  border-left: 3px solid var(--sage-300);
  background: var(--sage-50);
  padding: 1.4rem;
}

.message-preview p {
  margin: 0;
  color: var(--forest);
  font-size: 1.08rem;
}

.message-preview small {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
}

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

.contact-card {
  min-height: 280px;
  padding: 1.6rem;
}

.contact-card .card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 4rem;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-650);
  font-weight: 900;
}

.visit-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-100);
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.visit-copy p {
  color: var(--muted);
}

.visit-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.visit-list li {
  display: flex;
  align-items: start;
  gap: 0.7rem;
}

.visit-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-650);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.visit-image {
  min-height: 520px;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto 6.5rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-650);
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 42rem;
  margin-bottom: 0;
  opacity: 0.82;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.footer-inner {
  display: grid;
  width: min(var(--container), calc(100% - 2rem));
  min-height: 220px;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-inline: auto;
  padding-block: 3rem;
}

.footer-brand p,
.footer-column a,
.footer-column span {
  color: var(--muted);
}

.footer-brand p {
  max-width: 24rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--forest);
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0.3rem 0;
}

.footer-column a:hover {
  color: var(--sage-650);
}

.footer-bottom {
  display: flex;
  width: min(var(--container), calc(100% - 2rem));
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.lightbox {
  width: min(1040px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 35px 90px rgba(46, 73, 56, 0.3);
  padding: 0;
}

.lightbox::backdrop {
  background: rgba(46, 73, 56, 0.6);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 7rem);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(253, 254, 251, 0.9);
  color: var(--forest);
  cursor: pointer;
  font-size: 1.45rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.from-left {
  transform: translateX(-26px);
}

.reveal.from-right {
  transform: translateX(26px);
}

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

@keyframes hero-breathe {
  from {
    transform: translateY(-5%) scale(1.01);
  }
  to {
    transform: translateY(-5%) scale(1.06);
  }
}

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

@keyframes ticker-move {
  to {
    transform: translateX(-50%);
  }
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes page-out {
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 1rem;
  }

  .nav a {
    font-size: 0.82rem;
    padding-inline: 0.58rem;
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0.75rem;
    left: 0.75rem;
    display: grid;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(253, 254, 251, 0.98);
    box-shadow: var(--shadow);
    padding: 0.55rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav a {
    min-height: 46px;
    padding-inline: 0.8rem;
  }

  .nav a[aria-current="page"]::after {
    display: none;
  }

  .lang-switch {
    justify-content: center;
    margin: 0.35rem 0 0;
    padding: 0.6rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-hero {
    min-height: 86svh;
    padding-bottom: 3rem;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(249, 252, 246, 0.9), rgba(249, 252, 246, 0.72) 52%, rgba(249, 252, 246, 0.86));
  }

  .hero-chip {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: min(var(--container), calc(100% - 2rem));
    margin: 1rem auto 0;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .page-hero h1 {
    font-size: 3.7rem;
  }

  .feature-grid,
  .card-grid,
  .agenda-grid,
  .announcement-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid,
  .split-grid,
  .encourage-layout,
  .calendar-note,
  .visit-panel,
  .featured-article {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-right: 0;
  }

  .notice-band-inner {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .notice-band .button {
    grid-column: 1 / -1;
  }

  .pathway-row,
  .pathway-row:nth-child(even) {
    grid-template-columns: 1fr 1fr;
  }

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

  .step:nth-child(2) {
    border-right: 0;
  }

  .step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .featured-article .featured-media,
  .visit-image {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .section {
    padding-block: 4.5rem;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .home-hero {
    min-height: 82svh;
    padding-top: 8rem;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .page-hero {
    min-height: 66svh;
    padding-top: 8rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .feature-grid,
  .card-grid,
  .agenda-grid,
  .announcement-grid,
  .contact-grid,
  .stat-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .stat-strip div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip div:last-child {
    border-bottom: 0;
  }

  .story-media {
    min-height: 430px;
  }

  .notice-band {
    padding: 1.4rem;
  }

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

  .notice-band .date-block {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 1rem;
  }

  .pathway-row,
  .pathway-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .pathway-row:nth-child(even) .pathway-copy {
    order: initial;
  }

  .pathway-image {
    min-height: 270px;
  }

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

  .step {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-card .article-media {
    min-height: 230px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .message-composer {
    padding: 1.5rem;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem;
  }

  .footer-inner {
    min-height: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 0.92rem;
  }

  h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-chip {
    width: calc(100% - 1rem);
  }

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

  .story-media .image-main {
    inset: 0 8% 10% 0;
  }

  .story-media .image-float {
    width: 48%;
  }

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

  .gallery-item:nth-child(n),
  .gallery-item:first-child {
    grid-column: span 1;
  }

  .filter-bar,
  .message-tabs {
    width: 100%;
  }

  .visit-copy,
  .calendar-copy,
  .featured-article .featured-copy {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
