:root {
  --ink: #161410;
  --forest: #1f4d38;
  --leaf: #2f6b4d;
  --gold: #c9a227;
  --peach: #d98b5a;
  --cream: #f7f1e6;
  --paper: #fffdf8;
  --line: #e4d8c4;
  --muted: #5d564c;
  --shadow: 0 18px 50px rgba(22, 20, 16, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 241, 230, 0.92), rgba(255, 253, 248, 0.96)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(31, 77, 56, 0.035) 11px,
      rgba(31, 77, 56, 0.035) 12px
    );
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--forest);
  color: white;
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner,
.hero-grid,
.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img,
.footer-brand img,
.logo-ring img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.brand small,
.footer-brand p,
.hero-mark p,
.partner-note,
.contact-form p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.nav-cta,
.btn-primary {
  background: var(--forest);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 162, 39, 0.18), transparent 28%),
    radial-gradient(circle at 0% 80%, rgba(31, 77, 56, 0.12), transparent 30%);
}

.hero-grid {
  position: relative;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--leaf);
  margin: 0 0 10px;
}

h1,
h2,
h3,
.president-card h3,
.board-grid h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

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

.hero-meta div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero-meta dt {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-meta dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.hero-mark {
  text-align: center;
  width: min(320px, 100%);
}

.logo-ring {
  width: 260px;
  height: 260px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: var(--shadow);
  border: 10px solid rgba(201, 162, 39, 0.28);
}

.logo-ring img {
  width: 180px;
  height: 180px;
}

.section {
  padding: 84px 0;
  scroll-margin-top: 96px;
}

.section-alt {
  background: linear-gradient(180deg, #f3ebe0, #f8f3ea);
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.president-card,
.board-grid li,
.partner-card,
.contact-card,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.president-card,
.board-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.president-card {
  gap: 28px;
  padding: 28px;
  margin-bottom: 24px;
}

.avatar {
  width: 200px;
  height: 200px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--forest), var(--leaf));
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
}

img.avatar {
  padding: 0;
  border: 3px solid rgba(31, 77, 56, 0.18);
  background: #d9cbb3;
}

.avatar-president {
  width: 250px;
  height: 250px;
  font-size: 2.2rem;
}

.role,
.partner-tag {
  margin: 0 0 6px;
  color: var(--peach);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-grid,
.partner-grid,
.contact-cards {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

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

.board-grid li,
.contact-card {
  padding: 20px;
}

.board-grid h3 {
  font-size: 1.55rem;
}

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

.partner-card {
  padding: 0;
  overflow: hidden;
}

.partner-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.partner-card summary:hover {
  background: rgba(31, 77, 56, 0.04);
}

.partner-card summary:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: -2px;
}

.partner-card summary::-webkit-details-marker {
  display: none;
}

.partner-card summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.partner-card[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 6px;
}

.partner-card h3 {
  font-size: 1.45rem;
  margin: 0;
}

.partner-card ul {
  margin: 0;
  padding: 16px 22px 20px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.partner-card li {
  padding-left: 14px;
  position: relative;
  color: var(--ink);
  font-size: 0.95rem;
}

.partner-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
}

.contact-layout {
  align-items: stretch;
  margin-bottom: 28px;
}

.contact-cards {
  flex: 1;
}

.contact-card a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.map-wrap {
  flex: 1.15;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: white;
}

.contact-form .btn {
  width: fit-content;
}

.site-footer {
  background: var(--ink);
  color: #efe7d8;
  padding: 32px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand p {
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-grid,
  .footer-inner,
  .president-card,
  .board-grid li {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .contact-layout {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .contact-cards,
  .contact-card,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .board-grid,
  .audit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .board-grid li {
    padding: 10px;
    gap: 10px;
    align-items: stretch;
  }

  .board-grid h3 {
    font-size: 1.05rem;
    margin-bottom: 0;
  }

  .board-grid .role {
    font-size: 0.64rem;
  }

  .avatar {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: none;
    border-radius: 14px;
  }

  .president-card .avatar:not(.avatar-president) {
    width: 72%;
    max-width: 240px;
  }

  .avatar-president {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: none;
  }

  .header-inner {
    align-items: center;
  }

  .brand span {
    max-width: 210px;
  }

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

  .map-wrap,
  .map-wrap iframe {
    width: 100%;
  }
}
