:root {
  --saffron: #e36b12;
  --green: #0d5c34;
  --green-deep: #084427;
  --navy: #14263d;
  --maroon: #7a1f2b;
  --ink: #1d2430;
  --muted: #5d6773;
  --gold: #c9a227;
  --line: #e4dccf;
  --paper: #fffdf9;
  --cream: #f4efe6;
  --max: 1120px;
  --shadow: 0 12px 36px rgba(20, 38, 61, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(180deg, #ece7dc, #d8d1c4);
}

img { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--saffron); }
.container { width: 100%; margin: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}
.skip-link:focus { left: 8px; }

.site-frame {
  width: min(var(--max), calc(100% - 24px));
  margin: 14px auto 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.tricolor {
  height: 8px;
  background: linear-gradient(90deg, #ff9933 0 33.33%, #fff 33.33% 66.66%, #138808 66.66%);
}

.topbar {
  background: #1b3354;
  color: #dce6f2;
  font-size: 12.5px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 7px 16px;
  flex-wrap: wrap;
}
.topbar a { color: #f3d78a; }
.meta-pills, .quick-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 3px 9px;
  border-radius: 999px;
}

.brand {
  background: linear-gradient(90deg, #0a3d26 0%, #0f6b3c 42%, #b45309 100%);
  color: #fff;
  padding: 16px 18px;
}
.brand-inner {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
}
.emblem {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}
.brand h1 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: .02em;
}
.brand .board {
  margin: 0;
  font-size: 12.5px;
  color: #f6e7c5;
  max-width: 720px;
}
.brand-badges { display: flex; flex-direction: column; gap: 6px; }
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 10px;
  min-width: 150px;
}
.badge b { display: block; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #f4e4b2; }
.badge span { font-weight: 700; }

.nav-wrap { background: #073422; position: relative; z-index: 40; }
.nav {
  display: flex;
  align-items: stretch;
  padding: 0 6px;
}
.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: space-between;
}
.menu > li { position: relative; flex: 1 1 auto; text-align: center; }
.menu > li > a,
.menu > li > button {
  display: block;
  width: 100%;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  font: 650 13px/1 "Segoe UI", Tahoma, Arial, sans-serif;
  padding: 12px 6px;
  white-space: nowrap;
}
.menu > li > a:hover,
.menu > li > button:hover,
.menu > li.active > a,
.menu > li.active > button {
  background: #0f6b3c;
  color: #fff;
}
.dropdown {
  display: none;
  position: absolute;
  left: 0;
  min-width: 220px;
  text-align: left;
  background: #fff;
  z-index: 30;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.menu > li:hover > .dropdown,
.menu > li:focus-within > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  color: var(--navy);
  border-bottom: 1px solid #f0ebe3;
  font-size: 13.5px;
}
.dropdown a:hover { background: #f7f1e6; color: var(--green-deep); }
.nav-cta { display: none; }
.menu-toggle {
  display: none;
  margin: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 12px;
}

.photo-slider {
  position: relative;
  height: 360px;
  background: #102418;
  overflow: hidden;
}
.photo-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.photo-slider .slide.is-active { opacity: 1; z-index: 1; }
.photo-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 34px 18px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  font-weight: 700;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
}
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.slider-dots {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
}
.slider-dots button.is-active { background: #f4c95d; }

.ticker {
  display: flex;
  background: #fff6e8;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.ticker-label {
  background: var(--saffron);
  color: #fff;
  font-weight: 700;
  padding: 9px 14px;
  white-space: nowrap;
}
.ticker-track { flex: 1; overflow: hidden; padding: 9px 0; }
.ticker-track p {
  margin: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
  font-weight: 650;
  color: var(--navy);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.home-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  padding: 18px 18px 28px;
  background: #fbf8f2;
}
.home-side, .home-main { min-width: 0; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  overflow: hidden;
}
.panel h2 {
  margin: 0;
  padding: 9px 12px;
  background: linear-gradient(#0d5c34, #084427);
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.panel-body { padding: 12px; }
.notice-box { height: 210px; overflow: hidden; }
.notice-track { animation: rise 18s linear infinite; }
.notice-track:hover { animation-play-state: paused; }
.notice-track a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--navy);
  font-weight: 650;
  font-size: 14px;
}
@keyframes rise {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.leader { text-align: center; }
.leader img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: 50% 12%;
  margin-bottom: 8px;
}
.leader strong { display: block; color: var(--green-deep); }
.welcome-title {
  margin: 0 0 12px;
  padding: 10px 12px;
  background: linear-gradient(90deg, #7a1f2b, #b45309);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}
.prose p { margin: 0 0 12px; }
.prose ol, .prose ul { padding-left: 18px; }
.disclosure-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ead9a8;
  background: #fff8e6;
  font-weight: 700;
  color: #1b3354;
}
.home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px;
}
.stat b { display: block; color: var(--green-deep); font-size: 1.05rem; }
.stat span { color: var(--muted); font-size: 12px; }
.video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: #111;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(8,68,39,.88), rgba(20,38,61,.72)),
    url("../assets/images/slider-01-assembly.jpg") center / cover;
  color: #fff;
  padding: 28px 18px;
}
.page-hero h1, .section h2, .page-body h1 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 6px;
  color: inherit;
}
.page-body h1, .section h2 { color: var(--green-deep); }
.page-hero p { margin: 0; color: #f3eee6; max-width: 760px; }
.crumb { color: #f4e4b2; font-size: 13px; margin-bottom: 6px; }
.crumb a { color: #fff; }
.page-body { padding: 24px 18px 40px; background: #fbf8f2; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
}
.split { display: grid; grid-template-columns: 1.5fr .8fr; gap: 18px; align-items: start; }
.side-stack { display: grid; gap: 14px; }
.lede { color: var(--muted); margin-bottom: 16px; }
.news a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--navy);
  font-weight: 650;
}
.section { padding: 28px 18px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.icon-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px;
}
.icon-card .mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #e9f5ee;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  background: var(--saffron);
  color: #fff;
}
.btn:hover { color: #fff; background: #c45208; }
.btn-ghost { background: #1b3354; }
.table-wrap { overflow: auto; border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--green-deep); color: #fff; }
tr:nth-child(even) td { background: #fbf7f0; }
.progress { height: 12px; background: #ece5d8; overflow: hidden; }
.progress > span { display: block; height: 100%; width: 80.6%; background: #0d5c34; }
.note { background: #fff7ea; border-left: 4px solid var(--saffron); padding: 12px 14px; }
.empty { padding: 24px; text-align: center; color: var(--muted); background: #fff; border: 1px dashed var(--line); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid a {
  display: block;
  background: #111;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  padding: 8px 10px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; }
.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
}

.footer {
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto 18px;
  background: #14263d;
  color: #d7e0ea;
  padding: 28px 18px 14px;
}
.footer a { color: #f4e4b2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}
.footer h3 { margin: 0 0 10px; color: #fff; font-size: 15px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 0 0 7px; }
.legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
  font-size: 12.5px;
  color: #9aabbe;
}

@media (max-width: 980px) {
  .brand-inner, .home-layout, .split, .home-stats, .grid-4, .grid-3, .footer-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .photo-slider { height: 230px; }
  .menu-toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .nav.open .menu { display: flex; }
  .dropdown { position: static; box-shadow: none; }
  .menu > li.open > .dropdown { display: block; }
  .brand-badges { display: none; }
  .gallery-grid img { height: 180px; }
}
