:root {
  --green-600: #1e381c;
  --green-500: #345b2c;
  --green-100: #eef4e8;
  --gold-500: #f8d311;
  --gold-300: #fae07b;
  --gold-100: #fff7d1;
  --blue-900: #1e381c;
  --blue-800: #142513;
  --gray-900: #231f20;
  --gray-600: #50533f;
  --gray-200: #e3dec2;
  --surface: #fffdf4;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(30, 56, 28, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-900);
  background: var(--surface);
  line-height: 1.6;
}

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

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

a:hover,
a:focus-visible {
  color: var(--green-600);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--gold-500);
  color: var(--green-600);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  z-index: 100;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(30, 56, 28, 0.08);
  border-bottom: 1px solid rgba(248, 211, 17, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--green-600);
}

.logo img {
  width: clamp(72px, 6vw, 96px);
  height: auto;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--green-600);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: inline-block;
  padding: 0.25rem 0;
}

.main-nav .nav-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
}

.main-nav .nav-social svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.main-nav li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 3px;
  width: 0%;
  background: var(--gold-500);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.main-nav li.active::after,
.main-nav li:hover::after,
.main-nav li:focus-within::after {
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(248, 211, 17, 0.24), transparent 32%),
    linear-gradient(130deg, var(--green-600), var(--green-500));
  color: var(--white);
  padding: clamp(4rem, 6vw + 1rem, 7rem) 0;
  border-bottom: 4px solid var(--gold-500);
}

.home-welcome {
  min-height: min(46vh, 420px);
  display: grid;
  align-items: center;
}

.home-welcome-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-welcome-copy {
  max-width: 720px;
}

.home-welcome h1 {
  margin-bottom: 1rem;
}

.home-welcome .lead {
  max-width: 640px;
  margin-bottom: 0;
}

.anniversary-info {
  display: grid;
  gap: 0.18rem;
  width: min(100%, 460px);
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border-left: 5px solid #EEDD7C;
  border-radius: var(--radius-sm);
  background: #EEDD7C;
  color: var(--green-600);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.anniversary-info:hover,
.anniversary-info:focus-visible {
  color: var(--green-600);
  background: #EEDD7C;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.anniversary-info-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.anniversary-info-main {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
}

.anniversary-info-action {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.home-welcome-logo {
  width: min(100%, 520px);
  justify-self: end;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.24));
}

.hero-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero-copy .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-300);
  opacity: 1;
  margin: 0 0 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
}

.lead {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: rgba(250, 224, 123, 0.16);
  border: 1px solid rgba(250, 224, 123, 0.42);
  color: var(--gold-100);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-logo {
  width: clamp(380px, 42vw, 620px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.28));
}

.home-hero {
  gap: clamp(2rem, 4vw, 4rem);
}

.home-hero-compact {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.hero-side {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.hero-side-compact {
  align-self: center;
}

.hero-facts {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hero-facts li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(250, 224, 123, 0.3);
  backdrop-filter: blur(6px);
}

.hero-facts strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero-panel {
  width: min(100%, 360px);
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(250, 224, 123, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.hero-panel .eyebrow {
  margin-bottom: 1rem;
}

.hero-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.hero-panel-list li {
  display: grid;
  gap: 0.35rem;
}

.hero-panel-list strong {
  color: var(--gold-300);
}

.section {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
}

.section.highlight {
  background: linear-gradient(180deg, var(--gold-100), var(--white));
}

#news {
  scroll-margin-top: 6rem;
}

.section-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jubilee-section {
  padding-top: clamp(4.5rem, 7vw, 7rem);
}

.jubilee-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.jubilee-intro h2,
.notices-section h2 {
  margin: 0 0 0.8rem;
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
}

.jubilee-intro p:last-child {
  margin-bottom: 0;
  color: var(--gray-600);
}

.anniversary-gallery {
  display: grid;
  gap: 1.25rem;
}

.gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--green-600);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gallery-overlay {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.1rem;
  min-width: min(260px, calc(100% - 2.5rem));
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(20, 37, 19, 0.84);
  color: var(--white);
  text-align: left;
}

.gallery-overlay strong {
  color: var(--gold-300);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-overlay:has([data-gallery-title]:empty) {
  display: none;
}

.gallery-caption {
  margin: 0;
  color: var(--gray-600);
}

.gallery-caption:empty {
  display: none;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.gallery-control {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(30, 56, 28, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-600);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(30, 56, 28, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-500);
  background: var(--gold-100);
}

.gallery-control-toggle {
  width: 48px;
}

.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 37, 19, 0.82);
  cursor: zoom-out;
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

.gallery-lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 4rem);
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox-close {
  position: absolute;
  top: -0.9rem;
  right: -0.9rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-600);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.gallery-timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.gallery-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-500), var(--green-600));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
}

.timeline-stop {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-600);
  cursor: pointer;
}

.timeline-stop::before {
  content: "";
  grid-column: 2;
  z-index: 1;
  display: block;
  width: 26px;
  height: 26px;
  justify-self: center;
  border-radius: 999px;
  border: 4px solid var(--white);
  background: var(--gold-500);
  box-shadow: 0 12px 28px rgba(30, 56, 28, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}

.timeline-card {
  display: grid;
  gap: 0.6rem;
  width: min(100%, 360px);
  padding: 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(248, 211, 17, 0.35);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-item.is-left .timeline-card {
  grid-column: 1;
  justify-self: end;
}

.timeline-item.is-right .timeline-card {
  grid-column: 3;
  justify-self: start;
}

.timeline-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-sm);
}

.timeline-card span {
  font-weight: 700;
}

.timeline-card span:empty {
  display: none;
}

.timeline-stop:hover .timeline-card,
.timeline-stop:focus-visible .timeline-card,
.timeline-stop.is-active .timeline-card {
  border-color: var(--gold-500);
}

.timeline-stop:hover .timeline-card,
.timeline-stop:focus-visible .timeline-card,
.timeline-stop.is-active .timeline-card {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(30, 56, 28, 0.18);
}

.timeline-stop:hover::before,
.timeline-stop:focus-visible::before,
.timeline-stop.is-active::before {
  background: var(--green-600);
  transform: scale(1.05);
}

.notices-grid {
  display: grid;
  gap: 1.5rem;
}

.notice-item {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(248, 211, 17, 0.35);
  box-shadow: var(--shadow-soft);
}

.notice-item > img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  background: var(--gold-100);
  border-radius: var(--radius-md);
}

.notice-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notice-copy .feature-tag {
  width: fit-content;
  margin-bottom: 0.9rem;
}

.notice-copy h3 {
  margin: 0 0 0.65rem;
  color: var(--green-600);
}

.read-more.is-disabled {
  color: var(--gray-600);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
}

.section-header p {
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
}

.section-top {
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(248, 211, 17, 0.35);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(30, 56, 28, 0.18);
}

.card h3,
.card h2 {
  margin-top: 0;
  color: var(--green-600);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.shortcut-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shortcut-card .read-more {
  margin-top: auto;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: var(--green-600);
  box-shadow: 0 18px 40px rgba(111, 94, 0, 0.22);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(111, 94, 0, 0.3);
}

.btn.secondary {
  border: 2px solid var(--gold-300);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(248, 211, 17, 0.12);
  transform: translateY(-2px);
}

.btn.link {
  background: none;
  color: var(--green-600);
  padding: 0;
  box-shadow: none;
}

.btn.link::after {
  content: "\2192";
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn.link:hover::after {
  transform: translateX(4px);
}

.btn.light {
  background: var(--white);
  color: var(--green-600);
  border: 1px solid rgba(248, 211, 17, 0.45);
  box-shadow: 0 14px 30px rgba(30, 56, 28, 0.12);
}

.btn.outline {
  border: 2px solid var(--gold-300);
  color: var(--white);
}

.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.news-card time,
.home-news-meta time {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.home-news-list {
  display: grid;
  gap: 1.25rem;
}

.home-news-item {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.home-news-item.has-no-media {
  grid-template-columns: 1fr;
}

.home-news-media {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 1rem;
  border-radius: calc(var(--radius-lg) - 4px);
  background: var(--green-100);
}

.home-news-media img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.home-news-copy h3 {
  margin-bottom: 0.7rem;
}

.home-news-copy p {
  margin-bottom: 0.9rem;
}

.home-news-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.65rem;
}

.home-news-meta span {
  color: var(--green-600);
  font-weight: 600;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--green-600);
}

.read-more::after {
  content: "\203A";
  transition: transform 0.2s ease;
}

.read-more:hover::after {
  transform: translateX(4px);
}

.cta {
  background:
    radial-gradient(circle at top left, rgba(248, 211, 17, 0.2), transparent 26%),
    linear-gradient(120deg, var(--green-600), var(--green-500));
  color: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: clamp(3.5rem, 6vw, 6rem) 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(248, 211, 17, 0.18), transparent 30%),
    var(--blue-900);
  color: var(--white);
  border-bottom: 4px solid var(--gold-500);
}

.page-hero .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-300);
  opacity: 1;
  margin: 0 0 0.75rem;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-family: "Merriweather", Georgia, serif;
}

.story-columns {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.story-columns .card,
.timeline .card {
  height: 100%;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stats-grid article {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  border: 1px solid rgba(248, 211, 17, 0.35);
  box-shadow: var(--shadow-soft);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}

.values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.values-list li {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  border-left: 4px solid var(--gold-500);
  box-shadow: 0 12px 32px rgba(30, 56, 28, 0.1);
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-year {
  margin: 0 0 0.65rem;
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card .meta {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.meta {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--gray-600);
}

.bullet-list li + li {
  margin-top: 0.5rem;
}

.schedule-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.schedule-table .table-head,
.schedule-table .table-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.1rem 1.5rem;
}

.schedule-table .table-head {
  background: var(--green-600);
  color: var(--gold-100);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-table .table-row:nth-child(even) {
  background: rgba(250, 224, 123, 0.22);
}

.news-list {
  display: grid;
  gap: 1.5rem;
}

.news-entry time {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.news-entry .meta {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.article-hero time {
  display: inline-block;
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-content {
  max-width: 980px;
}

.article-layout.has-images {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.article-gallery {
  display: grid;
  gap: 1.25rem;
}

.article-gallery figure {
  margin: 0;
}

.article-gallery img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.article-gallery figcaption {
  margin-top: 0.6rem;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.article-body {
  font-size: 1.08rem;
}

.article-body p {
  margin: 0 0 1.2rem;
}

.article-source {
  margin-top: 0.4rem;
}

.article-back-link {
  display: flex;
  width: fit-content;
  margin-top: 1.5rem;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-info address {
  font-style: normal;
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.contact-board {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-board a {
  color: var(--green-600);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 211, 17, 0.35);
  box-shadow: var(--shadow-soft);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(248, 211, 17, 0.28);
}

.privacy-hint {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

.section-note {
  margin: 2rem 0 0;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  background: var(--gold-100);
  color: var(--gray-900);
}

.site-footer {
  background: var(--blue-800);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0;
  border-top: 4px solid var(--gold-500);
}

.site-footer .container {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-address {
  display: grid;
  gap: 0.15rem;
  margin: 0 0 1rem;
  font-style: normal;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--gold-300);
}

.footer-note {
  margin: 0.75rem 0 0;
  color: var(--gold-300);
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

.legal-content {
  display: grid;
  gap: 2rem;
  max-width: 860px;
}

.legal-content section {
  display: grid;
  gap: 0.75rem;
}

.legal-content h2 {
  margin: 0;
  font-family: "Merriweather", Georgia, serif;
  color: var(--green-600);
}

.legal-content p {
  margin: 0;
}

.legal-content address {
  display: grid;
  gap: 0.2rem;
  font-style: normal;
}

.legal-content a {
  color: var(--green-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

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

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: var(--white);
    border: 1px solid rgba(248, 211, 17, 0.35);
    border-radius: var(--radius-md);
    box-shadow: 0 22px 55px rgba(30, 56, 28, 0.18);
    padding: 1rem 1.25rem;
    transform-origin: top right;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

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

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

  .home-news-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .home-welcome-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }

  .home-welcome-logo {
    order: -1;
    width: min(72vw, 320px);
    justify-self: center;
    transform: none;
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  .site-header .container {
    padding: 0.5rem 0;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logo img {
    width: 68px;
  }

  .home-welcome {
    padding: 2.5rem 0 3rem;
  }

  .home-welcome-inner {
    gap: 1.25rem;
  }

  .home-welcome-logo {
    width: min(78vw, 280px);
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    width: 100%;
  }

  .gallery-overlay {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: calc(100% - 1.6rem);
  }

  .gallery-controls {
    justify-content: center;
  }

  .gallery-timeline {
    gap: 1rem;
  }

  .gallery-timeline::before {
    left: 24px;
    transform: none;
  }

  .timeline-stop {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.9rem;
  }

  .timeline-year-badge {
    grid-column: 1;
    width: 48px;
    height: 48px;
    border-width: 3px;
    font-size: 0.78rem;
  }

  .timeline-item.is-left .timeline-card,
  .timeline-item.is-right .timeline-card {
    grid-column: 2;
    width: 100%;
    justify-self: stretch;
  }

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

  .schedule-table .table-head,
  .schedule-table .table-row {
    grid-template-columns: 1fr;
  }
}
