body {
  background:
    radial-gradient(circle at top left, rgba(249, 168, 37, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(27, 94, 32, 0.04), transparent 30%),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../img/pattern-bg.svg') top center / 420px repeat;
  opacity: 0.18;
  pointer-events: none;
}

.site-shell,
main,
header,
section,
div,
aside,
article,
nav {
  position: relative;
}

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

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

.page-stack {
  padding-block: 24px 56px;
  display: grid;
  gap: 24px;
}

.section-space {
  padding-block: 24px 8px;
}

.surface-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.page-hero,
.section-heading,
.stats-bar,
.spotlight-grid,
.member-grid,
.contact-list,
.tree-layout {
  width: 100%;
}

.compact-hero {
  padding-top: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
}

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

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-muted);
}

.text-link {
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .page-stack {
    padding-block: 32px 72px;
    gap: 28px;
  }

  .section-space {
    padding-block: 32px 8px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(calc(100% - 56px), var(--container-width));
  }

  .surface-card {
    border-radius: 24px;
  }
}
