:root {
  --bg: #f6f2e8;
  --paper: rgba(255, 252, 246, 0.88);
  --paper-strong: #fffaf0;
  --ink: #1f2a1f;
  --muted: #5f685d;
  --line: rgba(31, 42, 31, 0.12);
  --accent: #8d6e3a;
  --accent-soft: #e7d6ae;
  --plum: #5b3b6f;
  --forest: #295042;
  --forest-soft: #dbe6e0;
  --shadow: 0 18px 50px rgba(31, 42, 31, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-sm: 12px;
  --max: 1160px;
  --font-sans: "Avenir Next", "Avenir", "Segoe UI", "Gill Sans", "Trebuchet MS", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(141, 110, 58, 0.18), transparent 32%),
    radial-gradient(circle at right 18%, rgba(41, 80, 66, 0.15), transparent 28%),
    linear-gradient(180deg, #f7f3e8 0%, #efe8d7 100%);
  line-height: 1.62;
}

p,
li {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.name-accent {
  color: var(--plum);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 242, 232, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-wrap,
.content-wrap,
.footer-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 3.1rem;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-mark {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.05;
}

.brand-subtitle {
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nav-links a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition: 160ms ease;
}

.nav-links a:hover,
.nav-links a.current {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(31, 42, 31, 0.08);
}

.hero {
  padding: 4rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.panel,
.card,
.timeline-item {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.panel {
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-serif);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-title {
  font-size: clamp(1.55rem, 2.9vw, 2.65rem);
  line-height: 1.1;
  text-wrap: balance;
}

.asymmetric-title {
  font-size: clamp(1.55rem, 2.9vw, 2.65rem);
  line-height: 1.1;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-line-offset {
  padding-left: 2.3rem;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.28rem;
  line-height: 1.14;
}

.lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 52rem;
  text-wrap: pretty;
}

.statement {
  margin-top: 1.6rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
  font-size: 1.15rem;
  max-width: 58rem;
  text-wrap: pretty;
}

.main-copy {
  margin-top: 1.2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
}

.plain-copy {
  padding-left: 0;
  border-left: 0;
}

.main-copy p,
.main-copy li {
  font-size: 1.03rem;
}

.main-copy > :first-child {
  margin-top: 0;
}

.main-copy > :last-child {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 160ms ease;
}

.button.primary {
  background: var(--forest);
  color: #fff;
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(41, 80, 66, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.construction-wrap {
  display: flex;
  justify-content: center;
}

.construction-sign {
  width: min(42rem, 100%);
  padding: 2.4rem 2rem;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(31, 42, 31, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 248, 227, 0.92), rgba(255, 253, 246, 0.96));
  box-shadow: var(--shadow);
  text-align: center;
}

.construction-kicker {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.construction-text {
  margin: 1rem auto 0;
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.mini-label {
  margin: 0 0 0.55rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.section {
  padding: 1rem 0 2.4rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

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

.section-grid.equal-cards {
  align-items: stretch;
}

.section-grid.equal-cards > .card {
  height: 100%;
}

.balanced-columns {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
}

.stack-column {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-stack {
  justify-items: start;
}

.about-stack > .card {
  width: min(100%, 31rem);
}

.about-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr);
}

.list {
  margin: 0;
  padding-left: 1.9rem;
  color: var(--muted);
}

.list li + li {
  margin-top: 0.45rem;
}

.sublist {
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.band {
  margin: 1rem 0 2.5rem;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(41, 80, 66, 0.95), rgba(22, 40, 34, 0.96));
  color: #f7f4ec;
  box-shadow: var(--shadow);
}

.band p {
  margin: 0.6rem 0 0;
  color: rgba(247, 244, 236, 0.86);
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  border-radius: var(--radius-lg);
  padding: 1.05rem 1.2rem;
}

.timeline-item strong {
  display: block;
  font-size: 1rem;
}

.timeline-detail {
  display: block;
  margin-top: 0.22rem;
}

.footer {
  margin-top: 3rem;
  padding: 1.5rem 0 2.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-intro {
  padding: 4rem 0 2.2rem;
}

.page-intro .panel {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(255, 250, 240, 0.86));
}

.measure {
  max-width: 64rem;
  text-wrap: pretty;
}

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

.note {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.subtle-link {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(95, 104, 93, 0.35);
  text-underline-offset: 0.18em;
}

.subtle-link:hover {
  color: var(--ink);
  text-decoration-color: rgba(31, 42, 31, 0.55);
}

.member-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.member-card-head h3 {
  margin-bottom: 0;
}

.member-card-head + .list {
  margin-top: 0;
}

.member-card-head + .muted {
  margin-top: 0;
}

.member-card-head .subtle-link {
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
}

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

.document-card {
  padding: 1.7rem;
}

.document-text-card {
  width: min(100%, 64rem);
  margin: 0 auto;
}

.document-list {
  margin-top: 0.8rem;
}

.legal-copy {
  color: var(--ink);
}

.legal-copy h2,
.legal-copy h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

.legal-copy h2:first-child,
.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy ul,
.legal-copy ol {
  margin-top: 0;
  margin-bottom: 1rem;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.5rem;
}

.legal-copy strong {
  color: var(--ink);
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1rem;
}

.profile-links a {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.profile-links a:hover {
  color: var(--ink);
}

.profile-links a.pending-link {
  opacity: 0.7;
}

.inline-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(160, 117, 72, 0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.inline-link:hover {
  color: var(--accent);
  text-decoration-color: rgba(160, 117, 72, 0.95);
}

.inline-link.pending-link {
  text-decoration-style: dotted;
}

@media (max-width: 920px) {
  .hero-grid,
  .section-grid,
  .section-grid.two {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 2.85rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.4rem;
  }

  .panel,
  .card,
  .band,
  .timeline-item {
    padding: 1.2rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .title-line {
    white-space: normal;
  }

  .title-line-offset {
    padding-left: 0.9rem;
  }
}
