:root {
  --green: #146b3a;
  --green-dark: #0c3424;
  --leaf: #78a943;
  --paper: #f7f3e8;
  --ink: #18201c;
  --muted: #647067;
  --blue: #1d5d77;
  --red: #b83a2d;
  --line: rgba(24, 32, 28, 0.14);
  --shadow: 0 18px 50px rgba(8, 30, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(12, 52, 36, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.brand span {
  font-size: 18px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 17, 0.88), rgba(9, 24, 17, 0.52) 46%, rgba(9, 24, 17, 0.2)),
    linear-gradient(0deg, rgba(9, 24, 17, 0.45), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 16px;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 8vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.news-card a,
.contact-panel a,
.link-list a,
.archive-links a,
.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.primary-action {
  padding: 0 20px;
  background: var(--leaf);
  color: #102215;
}

.secondary-action {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
}

.secondary-action.dark {
  border-color: var(--line);
  color: var(--green-dark);
}

.section {
  padding: clamp(58px, 8vw, 110px) 0;
}

.section-compact {
  padding: clamp(38px, 6vw, 76px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-light {
  background: var(--paper);
}

.section-green {
  color: #fff;
  background: var(--green-dark);
}

.section-blue {
  color: #fff;
  background: var(--blue);
}

.section-contact {
  color: #fff;
  background: #20251f;
}

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

.section-heading p,
.eyebrow,
.meta {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-green .eyebrow,
.section-blue .section-heading p,
.section-contact .eyebrow {
  color: #b8e37b;
}

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

.news-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.news-card.feature {
  grid-column: span 1;
}

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

.news-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 88px 20px 22px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(8, 22, 15, 0) 0%,
    rgba(8, 22, 15, 0.56) 34%,
    rgba(8, 22, 15, 0.94) 100%
  );
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.news-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
}

.news-card .meta {
  color: #c8f27c;
}

.news-card a {
  justify-content: flex-start;
  min-height: auto;
  color: #b8e37b;
  text-shadow: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

.split p {
  margin: 0 0 18px;
  font-size: 18px;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.quick-facts span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

.contact-panel {
  border-left: 4px solid var(--leaf);
  padding: 8px 0 8px 24px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel a {
  justify-content: flex-start;
  min-height: auto;
  color: #b8e37b;
}

.section-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.link-list a {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--green);
}

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

.event-list article {
  border-top: 3px solid #b8e37b;
  padding-top: 18px;
}

.event-list time {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
  color: #b8e37b;
}

.event-list p {
  color: rgba(255, 255, 255, 0.82);
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.archive-layout img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.archive-links {
  display: grid;
  gap: 12px;
}

.archive-links a {
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.archive-links small {
  color: var(--red);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 32px;
  align-items: center;
}

.contact-layout p {
  max-width: 720px;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.78);
  background: #111611;
  font-size: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.subpage {
  padding-top: 72px;
}

.sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: 520px;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 84px);
  color: #fff;
  background: var(--green-dark);
}

.sub-hero.sub-hero-wide {
  grid-template-columns: minmax(0, 900px);
}

.sub-hero h1 {
  margin: 8px 0 22px;
  font-size: clamp(42px, 7vw, 82px);
}

.sub-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.86);
}

.sub-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.content-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) 0;
}

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

.content-grid article,
.highlight-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.content-grid h2,
.highlight-band h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.content-grid p,
.highlight-band p {
  margin: 0 0 14px;
  color: var(--muted);
}

.content-grid p:last-child,
.highlight-band p:last-child {
  margin-bottom: 0;
}

.highlight-band {
  margin-top: 22px;
  background: #fffdf6;
}

.important-notice {
  margin: 0 0 22px;
  border-left: 5px solid var(--red);
}

.notice-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.notice-card h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.notice-card p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(260px, 0.42fr);
  gap: 22px;
  align-items: stretch;
}

.route-layout-modern {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.route-layout img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.map-embed,
.route-card {
  min-height: 420px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dfe8dc;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.route-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(24px, 4vw, 40px);
}

.route-card h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
}

.route-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.route-card .address {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.result-list {
  display: grid;
  gap: 12px;
}

.result-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.result-list small {
  color: var(--red);
  font-weight: 900;
}

.story-stack {
  display: grid;
  gap: 24px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 38px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.story-card-feature {
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
}

.story-card img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 8px;
}

.story-card-feature img {
  object-fit: contain;
  background: #f8f6ef;
}

.story-card h2 {
  font-size: clamp(28px, 4vw, 44px);
}

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

.story-gallery {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 10px;
}

.story-gallery img {
  flex: 0 0 min(78vw, 360px);
  aspect-ratio: 4 / 3;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
  background: #f8f6ef;
  scroll-snap-align: start;
}

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

.result-columns div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfaf4;
}

.result-columns h3 {
  font-size: 18px;
}

.result-columns ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.text-link {
  color: var(--green);
  font-weight: 900;
}

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

.contact-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-cards h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.contact-cards p {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.contact-cards a {
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border-radius: 8px;
    background: var(--green-dark);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .section-heading,
  .split,
  .split.reverse,
  .archive-layout,
  .contact-layout,
  .notice-card,
  .sub-hero,
  .content-grid,
  .route-layout,
  .story-card,
  .result-columns,
  .contact-cards {
    display: grid;
    grid-template-columns: 1fr;
  }

  .news-grid,
  .event-list {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 360px;
  }

  .archive-layout img {
    min-height: 280px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 16px;
  }

  .hero-actions a {
    width: 100%;
  }

  .route-actions a {
    width: 100%;
  }

  .story-gallery img {
    flex-basis: 82vw;
  }
}
