:root {
  --green: #0b6b43;
  --green-dark: #06442c;
  --green-soft: #e2eee7;
  --red: #8f2f38;
  --arg-blue: #4fa3d9;
  --arg-blue-soft: #d8edf6;
  --ink: #24211d;
  --muted: #686158;
  --line: #dfd7ca;
  --paper: #f7f4ef;
  --white: #ffffff;
  --soft: #eee7dc;
  --warm-white: #fffaf2;
  --shadow: 0 22px 60px rgba(58, 45, 32, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(11, 107, 67, 0.08), transparent 270px),
    radial-gradient(circle at 86% 14%, rgba(143, 47, 56, 0.065), transparent 300px),
    linear-gradient(135deg, rgba(11, 107, 67, 0.035) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.88), transparent 460px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 30;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  clip: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.62rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(11, 107, 67, 0.14);
  background:
    linear-gradient(90deg, rgba(11, 107, 67, 0.1), rgba(247, 244, 239, 0.96) 18%, rgba(247, 244, 239, 0.96) 82%, rgba(79, 163, 217, 0.1)),
    rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(190px, 48vw);
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.5rem, 1.4vw, 1.1rem);
  font-size: 0.84rem;
  font-weight: 650;
}

.site-nav a {
  padding: 0.42rem 0;
  text-decoration: none;
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--green);
}

.site-nav a.active {
  box-shadow: inset 0 -2px 0 var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.8rem, 5vw, 4.7rem) 0;
  scroll-margin-top: 96px;
}

.section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 220px);
  height: 1px;
  background: linear-gradient(90deg, rgba(11, 107, 67, 0.45), rgba(143, 47, 56, 0.18), transparent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(1.4rem, 3.4vw, 3rem);
  min-height: min(620px, calc(70vh - 60px));
  padding-top: clamp(1.25rem, 2.8vw, 2.8rem);
  padding-bottom: clamp(1.8rem, 3.6vw, 3.2rem);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 17ch;
  margin-bottom: 1.05rem;
  font-size: clamp(1.75rem, 3.55vw, 3.05rem);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: 0;
}

h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(1.72rem, 3.2vw, 2.85rem);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.34;
}

.hero-lede,
.section-heading p,
.split p,
.story p,
.join p,
.contact p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}

.button.secondary {
  border-color: rgba(11, 107, 67, 0.34);
  background: var(--green-soft);
  color: var(--green-dark);
}

.button.ghost {
  border-color: rgba(143, 47, 56, 0.24);
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(0.75rem, 2vw, 1rem);
  border: 1px solid rgba(11, 107, 67, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 107, 67, 0.12), rgba(255, 250, 242, 0.76) 46%, rgba(143, 47, 56, 0.08)),
    var(--warm-white);
  box-shadow: 0 16px 42px rgba(58, 45, 32, 0.09);
}

.visual-frame,
.avatar-frame,
.community-visual {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.2rem;
  border: 1px dashed rgba(15, 107, 68, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 107, 67, 0.1), rgba(143, 47, 56, 0.07)),
    var(--soft);
  color: var(--green-dark);
  text-align: center;
}

.visual-frame span,
.avatar-frame,
.community-visual span {
  font-weight: 650;
}

.visual-frame small,
.community-visual small {
  max-width: 34ch;
  color: var(--muted);
}

.community-visual {
  position: relative;
  min-height: clamp(260px, 34vw, 360px);
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(30deg, transparent 0 42%, rgba(11, 107, 67, 0.12) 42% 44%, transparent 44%),
    linear-gradient(150deg, transparent 0 52%, rgba(143, 47, 56, 0.1) 52% 54%, transparent 54%),
    radial-gradient(circle at 18% 22%, rgba(11, 107, 67, 0.82) 0 9px, transparent 10px),
    radial-gradient(circle at 72% 28%, rgba(79, 163, 217, 0.72) 0 10px, transparent 11px),
    radial-gradient(circle at 48% 68%, rgba(143, 47, 56, 0.72) 0 10px, transparent 11px),
    linear-gradient(135deg, rgba(11, 107, 67, 0.13), rgba(255, 250, 242, 0.5) 48%, rgba(143, 47, 56, 0.11)),
    var(--soft);
}

.community-visual::before {
  content: "";
  position: absolute;
  inset: 17% 12% 22%;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 999px;
  transform: rotate(-10deg);
}

.community-visual::after {
  content: "";
  position: absolute;
  inset: 28% 18% 16%;
  border: 1px solid rgba(15, 107, 68, 0.26);
  border-radius: 999px;
  transform: rotate(14deg);
}

.community-visual span,
.community-visual small {
  position: relative;
  z-index: 1;
}

.stats-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: -0.9rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.stat-card {
  min-height: 132px;
  padding: 1.1rem;
  border: 1px solid rgba(222, 219, 212, 0.9);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(23, 23, 23, 0.07);
}

.stat-card:nth-child(2) {
  border-top-color: var(--arg-blue);
}

.stat-card:nth-child(3) {
  border-top-color: var(--red);
}

.stat-card:nth-child(4) {
  border-top-color: var(--green-dark);
}

.stat-card span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.stats-message {
  grid-column: 1 / -1;
  min-height: 112px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(11, 107, 67, 0.18);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(11, 107, 67, 0.08), rgba(255, 250, 242, 0.9)),
    var(--warm-white);
  box-shadow: 0 14px 36px rgba(58, 45, 32, 0.07);
}

.stats-message span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stats-message strong {
  display: block;
  max-width: 44ch;
  color: var(--ink);
  font-size: clamp(1.22rem, 2.2vw, 1.68rem);
  font-weight: 650;
  line-height: 1.32;
}

.split,
.story,
.join,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: clamp(1.8rem, 4.8vw, 4rem);
  align-items: start;
}

.story,
.join {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  align-items: center;
}

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

.feature-list article,
.cards article,
.mission-grid article,
.role-grid article,
.event-list article,
.contact-form,
.benefits {
  border: 1px solid rgba(11, 107, 67, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 8px 24px rgba(58, 45, 32, 0.04);
}

.feature-list article {
  padding: 1.25rem;
}

.feature-list strong,
.role-grid span,
.event-list time {
  display: block;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-list span,
.person-card small,
.event-list p {
  color: var(--muted);
}

.notice {
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--green);
  background: linear-gradient(90deg, rgba(11, 107, 67, 0.1), rgba(255, 250, 242, 0.72));
  color: var(--ink) !important;
}

.institutional-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
  padding-left: 1rem;
}

.institutional-timeline::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green), var(--red));
}

.institutional-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(11, 107, 67, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.8);
  box-shadow: 0 12px 30px rgba(58, 45, 32, 0.05);
}

.institutional-timeline article::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: -1.28rem;
  width: 12px;
  height: 12px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
}

.institutional-timeline article:nth-child(2)::before {
  background: var(--green);
}

.institutional-timeline article:nth-child(3)::before {
  background: var(--red);
}

.institutional-timeline time {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
}

.institutional-timeline h3 {
  margin-bottom: 0.25rem;
}

.institutional-timeline p {
  margin: 0;
}

.section-heading {
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  max-width: 18ch;
}

.section-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, var(--green), rgba(143, 47, 56, 0.45));
}

.cards,
.mission-grid,
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cards article,
.mission-grid article,
.role-grid article {
  padding: 1.35rem;
}

.founders-grid .person-card {
  display: block;
}

.founders-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(11, 107, 67, 0.28);
  border-bottom: 1px solid rgba(11, 107, 67, 0.18);
}

.founders-grid .person-card {
  min-height: 0;
  padding: 0.8rem 1.1rem;
  border: 0;
  border-bottom: 1px solid rgba(11, 107, 67, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.founders-grid .person-card:nth-child(odd) {
  border-right: 1px solid rgba(11, 107, 67, 0.13);
  padding-left: 0;
}

.founders-grid .person-card:nth-child(even) {
  padding-right: 0;
}

.founders-grid .person-card h3 {
  margin-bottom: 0.15rem;
  font-size: 1.02rem;
}

.founders-grid .person-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.avatar-frame {
  min-height: 180px;
  font-size: 0.82rem;
}

.board-layout,
.event-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 1rem;
}

.role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(11, 107, 67, 0.28);
  border-bottom: 1px solid rgba(11, 107, 67, 0.18);
}

.role-grid strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.35;
}

.role-grid article {
  padding: 0.78rem 0.95rem;
  border: 0;
  border-bottom: 1px solid rgba(11, 107, 67, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.role-grid article:nth-child(odd) {
  border-right: 1px solid rgba(11, 107, 67, 0.13);
  padding-left: 0;
}

.role-grid article:nth-child(even) {
  padding-right: 0;
}

.board-message {
  grid-template-columns: 1fr;
}

.mission {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(143, 47, 56, 0.14), transparent 36%),
    linear-gradient(45deg, rgba(255, 250, 242, 0.04) 0 1px, transparent 1px 30px),
    var(--green-dark);
  color: var(--white);
}

.mission .eyebrow,
.mission .section-heading p,
.mission-grid article p,
.mission-grid li {
  color: rgba(255, 255, 255, 0.78);
}

.mission-grid article {
  border: 0;
  border-left: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mission-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.mission-grid article:last-child {
  padding-right: 0;
}

.mission-grid ul,
.requirements ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

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

.action-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.requirements {
  margin: 1.5rem 0;
}

.event-list {
  display: grid;
  gap: 0.75rem;
}

.event-list article {
  padding: 1rem;
}

.event-list h3 {
  margin-top: 0.35rem;
}

.event-list .upcoming {
  border-color: rgba(15, 107, 68, 0.42);
  background: linear-gradient(135deg, rgba(11, 107, 67, 0.1), rgba(255, 250, 242, 0.86));
}

.benefits {
  padding: clamp(2.8rem, 5vw, 4.7rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.benefits .section-heading {
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.contact-list a {
  color: var(--green);
  font-weight: 650;
}

.contact-list span {
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0.4rem 0.7rem 0.4rem 0.45rem;
  border: 1px solid rgba(11, 107, 67, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.72);
  color: var(--green-dark);
  font-weight: 650;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(11, 107, 67, 0.42);
  background: var(--green-soft);
  transform: translateY(-1px);
}

.social-links span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 107, 67, 0.16);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  background: rgba(255, 250, 242, 0.88);
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(15, 107, 68, 0.28);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(11, 107, 67, 0.14);
  background:
    linear-gradient(90deg, rgba(11, 107, 67, 0.06), transparent 42%, rgba(143, 47, 56, 0.045)),
    var(--warm-white);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 0.3rem;
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.9rem !important;
  justify-items: end;
}

.footer-links a {
  color: var(--green);
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--red);
  text-decoration: underline;
}

.site-footer img {
  max-width: 150px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero,
  .split,
  .story,
  .join,
  .contact,
  .board-layout,
  .event-layout {
    grid-template-columns: 1fr;
  }

  .story .visual-frame,
  .join .visual-frame {
    order: 2;
  }

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

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .brand {
    width: min(136px, 38vw);
  }

  .section {
    width: min(100% - 1.25rem, var(--max));
    padding: 2.45rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 1.35rem;
    padding-bottom: 1.55rem;
    gap: 1rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.16;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 2.05rem);
    line-height: 1.2;
  }

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

  .footer-links {
    justify-content: flex-start;
    justify-items: start;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding-right: 0.45rem;
    padding-left: 0.45rem;
    font-size: 0.88rem;
  }

  .cards,
  .mission-grid,
  .role-grid,
  .action-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

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

  .founders-grid .person-card,
  .founders-grid .person-card:nth-child(odd),
  .founders-grid .person-card:nth-child(even),
  .role-grid article,
  .role-grid article:nth-child(odd),
  .role-grid article:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .mission-grid article,
  .mission-grid article:first-child,
  .mission-grid article:last-child {
    padding: 1.05rem 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 242, 0.18);
  }

  .mission-grid article:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .social-links a {
    flex: 1 1 auto;
  }

  .visual-frame {
    min-height: 220px;
  }

  .community-visual {
    min-height: 165px;
  }

  .institutional-timeline article {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
