:root {
  --bg: #ebebeb;
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: rgba(255, 255, 255, 0.92);
  --text: #123;
  --muted: rgba(0, 0, 0, 0.6);
  --accent: #1f6f5b;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --max: 980px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  background: #d4d8d2;
  background-attachment: fixed;
}

.site {
  min-height: 100%;
  padding: 32px 16px 60px;
}

.site::before {
  content: '';
  display: block;
  height: 4px;
  max-width: var(--max);
  margin: 0 auto 16px;
  background: var(--accent);
  border-radius: 2px;
}

.breadcrumb {
  max-width: var(--max);
  margin: 0 auto 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--accent);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.page-header,
.hero,
.meeting,
.home-nav,
.page-content {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 18px;
}

.hero-image {
  width: 100%;
  max-width: 780px;
  min-height: 120px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(31,111,91,0.15), rgba(31,111,91,0.06));
  padding: 10px;
}

.meeting {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px;
  text-align: center;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.meeting-eyebrow {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.meeting-title {
  margin: 6px 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.meeting-date {
  margin: 0 0 10px;
  font-weight: 600;
}

.meeting-location {
  margin: 0 0 18px;
  color: var(--muted);
}

.meeting-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--card-strong);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.button.primary {
  background: var(--accent);
  color: white;
  border-color: rgba(0, 0, 0, 0.08);
}

.button.primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.button.secondary:hover {
  text-decoration: none;
  filter: brightness(1.02);
}

.home-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.nav-tile {
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
  transition: transform 120ms ease, filter 120ms ease;
}

.nav-tile:hover {
  transform: translateY(-2px);
  text-decoration: none;
  filter: brightness(1.02);
}

.nav-tile img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31,111,91,0.15), rgba(31,111,91,0.08));
}

/* Placeholder style when image fails to load */
.nav-tile img[src=""],
.nav-tile img:not([src]) {
  background: linear-gradient(135deg, rgba(31,111,91,0.18), rgba(31,111,91,0.08));
}

.nav-tile span {
  font-weight: 700;
  color: var(--text);
  text-align: center;
  font-size: 13px;
}

.page-header {
  margin-top: 12px;
  margin-bottom: 14px;
}

.page-header h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.page-content {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
}

.content-figure {
  margin: 18px 0;
}

.content-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.document-list {
  padding-left: 18px;
}

.document-list li {
  margin: 8px 0;
}

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

.org-grid--one {
  grid-template-columns: minmax(0, 1fr);
  max-width: 280px;
}

.org-card {
  display: grid;
  gap: 8px;
  text-align: center;
  transition: transform 120ms ease, filter 120ms ease;
}

.org-card:hover {
  transform: translateY(-2px);
  text-decoration: none;
  filter: brightness(1.04);
}

.org-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.org-card span {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

@media (min-width: 720px) {
  .site {
    padding-top: 44px;
  }

  .meeting-actions {
    grid-template-columns: 1fr 1fr;
  }

  .home-nav {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .nav-tile img {
    width: 92px;
    height: 92px;
  }

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