:root {
  --ink: #181814;
  --paper: #f8f4eb;
  --paper-deep: #ede5d6;
  --magenta: #b61f68;
  --magenta-dark: #7e1244;
  --gold: #d79f2b;
  --olive: #69702f;
  --white: #fffdf8;
  --line: rgba(24, 24, 20, 0.16);
  --shadow: 0 24px 70px rgba(34, 25, 19, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(215, 159, 43, 0.12), transparent 25rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.23;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cpath d='M48 8l10 16-10 16-10-16L48 8zm0 48l10 16-10 16-10-16 10-16zM8 48l16-10 16 10-16 10L8 48zm48 0l16-10 16 10-16 10-16-10z' fill='none' stroke='%2369702f' stroke-width='1' opacity='.22'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--magenta-dark);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: rgba(24, 24, 20, 0.96);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.wordmark-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: -0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.7rem 0.8rem;
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

main { overflow: clip; }

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8rem;
  width: min(42vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid rgba(182, 31, 104, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(215, 159, 43, 0.06), 0 0 0 7rem rgba(105,112,47,.04);
}

.hero-grid,
.page-shell,
.footer-grid {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  color: var(--magenta-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.1rem;
  height: 3px;
  background: var(--gold);
}

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

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 0.7rem;
  font-size: clamp(4rem, 9vw, 7.8rem);
  font-weight: 500;
}

.full-name {
  max-width: 31rem;
  margin-bottom: 1.75rem;
  color: #4c463c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}

.motto {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 2rem;
  padding: 0.7rem 0;
  border-block: 1px solid var(--line);
  color: var(--olive);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motto span:not(:last-child)::after {
  content: "•";
  margin-left: 0.45rem;
  color: var(--gold);
}

.hero-copy {
  max-width: 33rem;
  color: #575044;
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--magenta-dark);
  border-color: var(--magenta-dark);
  outline: none;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible { color: var(--white); }

.collage {
  position: relative;
  min-height: 36rem;
}

.collage::before {
  content: "";
  position: absolute;
  inset: 2.5rem 2.8rem 1.7rem 0;
  background: var(--gold);
  transform: rotate(-2.5deg);
}

.collage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
  background: #d6c7b2;
}

.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage .photo-one { inset: 0 4rem 7rem 0; transform: rotate(-1deg); }
.collage .photo-one img { object-position: 51% 50%; }
.collage .photo-two { z-index: 2; right: 0; bottom: 0; width: 38%; height: 64%; transform: rotate(3deg); }
.collage .photo-two img { object-position: 50% 40%; }
.collage .photo-three { z-index: 3; left: -1.5rem; bottom: 0; width: 43%; height: 34%; transform: rotate(-4deg); }
.collage .photo-three img { object-position: 47% 46%; }

.section-band {
  color: var(--white);
  background: var(--magenta-dark);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.value {
  min-height: 12rem;
  padding: 2.3rem;
  border-right: 1px solid rgba(255,255,255,.18);
}

.value:last-child { border-right: 0; }
.value-index { color: var(--gold); font-size: .75rem; font-weight: 850; letter-spacing: .15em; }
.value h2 { margin: .75rem 0 .5rem; font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 500; }
.value p { margin: 0; color: rgba(255,253,248,.74); }

.page-hero {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0 clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  font-weight: 500;
}

.page-hero .intro {
  max-width: 43rem;
  margin: 1.4rem 0 0;
  color: #5a5246;
  font-size: 1.15rem;
}

.content-section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.content-grid { display: grid; grid-template-columns: minmax(12rem, .42fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); }
.section-label { color: var(--magenta-dark); font-size: .78rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.prose { max-width: 48rem; }
.prose > p { margin-bottom: 1.4rem; }
.prose .lead { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.45; }

.mission-list { display: grid; gap: 1rem; margin-top: 2.5rem; }
.mission-item { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.1rem; padding: 1.35rem 0; border-top: 1px solid var(--line); }
.mission-number { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; }
.mission-item h2 { margin-bottom: .35rem; font-size: 1.55rem; }
.mission-item p { margin: 0; color: #5b5449; }

.statutes-tools { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.text-button { padding: .65rem .9rem; border: 1px solid var(--line); color: var(--ink); background: transparent; font: inherit; font-size: .9rem; font-weight: 750; cursor: pointer; }
.text-button:hover, .text-button:focus-visible { color: var(--white); background: var(--magenta-dark); outline: none; }

.statutes { display: grid; gap: .75rem; }
.statutes details { border: 1px solid var(--line); background: rgba(255,253,248,.5); }
.statutes summary { position: relative; padding: 1.2rem 3.6rem 1.2rem 1.25rem; cursor: pointer; list-style: none; font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; font-weight: 700; }
.statutes summary::-webkit-details-marker { display: none; }
.statutes summary::after { content: "+"; position: absolute; top: 50%; right: 1.2rem; color: var(--magenta-dark); font-family: Inter, sans-serif; font-size: 1.5rem; transform: translateY(-50%); }
.statutes details[open] summary::after { content: "–"; }
.statute-body { padding: 0 1.25rem 1.4rem; border-top: 1px solid var(--line); color: #4f493f; }
.statute-body p:first-child { padding-top: 1.2rem; }
.statute-body p { margin-bottom: .9rem; }
.statute-body ol, .statute-body ul { padding-left: 1.3rem; }
.statute-body li { margin-bottom: .55rem; }

.board-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.board-card { position: relative; min-height: 14rem; padding: 1.7rem; border: 1px solid var(--line); background: rgba(255,253,248,.62); overflow: hidden; }
.board-card::after { content: attr(data-initials); position: absolute; right: -0.2rem; bottom: -1.7rem; color: rgba(182,31,104,.075); font-family: Georgia, serif; font-size: 7.5rem; font-weight: 700; line-height: 1; }
.board-role { color: var(--magenta-dark); font-size: .75rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.board-card h2 { position: relative; z-index: 1; max-width: 10ch; margin: 3.2rem 0 0; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 1rem; }
.contact-panel { min-height: 22rem; padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--line); background: rgba(255,253,248,.65); }
.contact-panel-dark { color: var(--white); background: var(--ink); }
.contact-panel h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; }
.contact-list { display: grid; gap: 1.4rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.contact-label { display: block; margin-bottom: .25rem; color: var(--gold); font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-list a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.people-list { display: grid; gap: 0; margin-top: 1.5rem; }
.contact-person { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.contact-person strong { display: block; }
.contact-person span { color: #6b6357; font-size: .9rem; }
.contact-person a { align-self: center; color: var(--magenta-dark); font-weight: 800; text-decoration: none; }
.contact-person a:hover, .contact-person a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.site-footer { padding: 3rem 0 2rem; color: rgba(255,253,248,.75); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.footer-brand { margin-bottom: .7rem; color: var(--white); font-family: Georgia, serif; font-size: 1.5rem; }
.footer-meta { margin: 0; font-size: .88rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; }
.footer-nav a { color: rgba(255,253,248,.75); font-size: .86rem; text-underline-offset: 4px; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--white); }
.footer-bottom { width: min(calc(100% - 2rem), var(--max)); margin: 2.2rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; padding: .8rem 1rem 1.2rem; flex-direction: column; align-items: stretch; color: var(--white); background: var(--ink); box-shadow: 0 14px 25px rgba(0,0,0,.2); }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: .85rem 1rem; border-radius: 0; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy-block { max-width: 42rem; }
  .collage { min-height: min(80vw, 39rem); }
  .values { grid-template-columns: 1fr; }
  .value { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .value:last-child { border-bottom: 0; }
  .content-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .nav-shell, .hero-grid, .page-shell, .footer-grid, .footer-bottom { width: min(calc(100% - 1.25rem), var(--max)); }
  .wordmark-mark { width: 2.4rem; height: 2.4rem; font-size: 1rem; }
  .hero h1 { font-size: clamp(3.8rem, 20vw, 5.8rem); }
  .collage { min-height: 30rem; }
  .collage::before { inset: 2rem 1.5rem 1rem .5rem; }
  .collage .photo-one { inset: 0 1.8rem 7rem 0; }
  .collage .photo-two { width: 44%; height: 59%; }
  .collage .photo-three { left: 0; width: 53%; height: 33%; }
  .board-grid { grid-template-columns: 1fr; }
  .contact-person { grid-template-columns: 1fr; gap: .4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
