:root {
  --green-950: #183227;
  --green-900: #214132;
  --green-800: #2c5643;
  --green-700: #3b6a53;
  --sage-200: #d7e2d8;
  --sage-100: #ebf1ea;
  --cream-50: #f7f3e9;
  --cream-100: #efe8d8;
  --gold-400: #b68d55;
  --gold-500: #9f7745;
  --text-900: #24352c;
  --text-700: #53655c;
  --white: #ffffff;
  --border: rgba(33, 65, 50, 0.16);
  --shadow-sm: 0 10px 28px rgba(24, 50, 39, 0.08);
  --shadow-md: 0 18px 40px rgba(24, 50, 39, 0.12);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --max-width: 1180px;
  --font-heading: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Baskerville", "Palatino Linotype", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background:
    radial-gradient(circle at top left, rgba(182, 141, 85, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(59, 106, 83, 0.12), transparent 26%),
    linear-gradient(180deg, #faf7f1 0%, var(--cream-50) 42%, #f4efe4 100%);
  line-height: 1.65;
}

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

a {
  color: var(--green-800);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-900);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--green-950);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.2rem;
}

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

.site-header {
  position: relative;
  z-index: 10;
  padding: 1.15rem 0 0.8rem;
  background: linear-gradient(180deg, rgba(33, 65, 50, 0.97), rgba(24, 50, 39, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(24, 50, 39, 0.12);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.site-brand:hover,
.site-brand:focus-visible {
  color: var(--white);
}

.brand-mark {
  width: 48px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  padding: 3px;
  object-fit: contain;
}

.brand-text {
  max-width: 180px;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 0.95;
}

.nav-toggle {
  justify-self: end;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 0 0.25rem;
}

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

.site-nav a {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: #f3ddba;
}

.site-nav a:last-child {
  border-bottom: none;
}

.site-nav a.nav-cta {
  margin-top: 0.35rem;
  border: 1px solid rgba(243, 221, 186, 0.45);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-nav a,
.site-brand {
  align-self: center;
}

main {
  padding-bottom: 4rem;
}

.page-hero {
  padding: 1rem 0 0.75rem;
}

.page-hero .container {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  align-items: end;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(24, 50, 39, 0.95), rgba(44, 86, 67, 0.92)),
    var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}


.page-hero p,
.page-hero li,
.page-hero a {
  color: rgba(255, 255, 255, 0.92);
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.5rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 5vw, 4.4rem);
}

.hero-text {
  max-width: 700px;
}

.hero-text p {
  font-size: 0.97rem;
  margin-bottom: 0.7rem;
}

.hero-actions,
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 0.75rem;
}

.hero-chips {
  display: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-400);
  color: var(--green-950);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gold-500);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  border-color: var(--green-800);
  color: var(--green-900);
  background: transparent;
}

.section {
  padding: 1.25rem 0;
}

.section + .section {
  padding-top: 2.1rem;
}

.section-header {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-header p {
  font-size: 1.08rem;
  color: var(--text-700);
}

.surface-grid,
.card-grid,
.link-grid,
.profile-grid,
.committee-grid,
.bullet-grid,
.download-grid,
.contact-grid,
.form-grid,
.news-list,
.stats-grid {
  display: grid;
  gap: 1rem;
}

.surface-card,
.feature-card,
.link-card,
.profile-card,
.bullet-card,
.download-card,
.contact-card,
.info-panel,
.news-card,
.form-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.surface-card,
.feature-card,
.link-card,
.bullet-card,
.download-card,
.contact-card,
.news-card,
.info-panel {
  padding: 1.35rem;
}

.surface-card:hover,
.feature-card:hover,
.link-card:hover,
.download-card:hover,
.news-card:hover,
.profile-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.surface-card,
.feature-card,
.link-card,
.download-card,
.news-card,
.profile-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.carousel-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.carousel-card--home {
  max-width: 980px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius-md) - 6px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(235, 241, 234, 0.9), rgba(247, 243, 233, 0.95));
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.carousel-image-button {
  height: 100%;
}

.carousel-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.25s ease;
}

.carousel-image-button:hover img {
  transform: scale(1.02);
}

.carousel-image-region {
  position: relative;
  border-radius: calc(var(--radius-md) - 6px);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 0.9rem;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(33, 65, 50, 0.18);
  background: rgba(235, 241, 234, 0.88);
  color: var(--green-950);
  font-size: 1.1rem;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.carousel-arrow--prev,
.carousel-arrow--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-arrow--prev { left: 0.75rem; }
.carousel-arrow--next { right: 0.75rem; }

.carousel-arrow:hover {
  background: rgba(215, 226, 216, 0.98);
  box-shadow: var(--shadow-sm);
}

.carousel-counter {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-700);
  min-width: 4rem;
  text-align: center;
  user-select: none;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(24, 50, 39, 0.78);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0.9rem;
  border-radius: 26px;
  background: rgba(250, 247, 241, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 4.8rem);
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 50, 39, 0.88);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.surface-card h3,
.feature-card h3,
.link-card h3,
.profile-card h3,
.bullet-card h3,
.download-card h3,
.news-card h3,
.contact-card h2,
.info-panel h3,
.form-panel h3 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.news-list {
  max-width: 840px;
}

.news-card--featured {
  max-width: 840px;
}

.news-date {
  margin-bottom: 0.35rem;
  color: var(--gold-500);
  font-family: var(--font-heading);
  font-weight: 700;
}

.news-summary {
  color: var(--text-700);
  font-size: 1.08rem;
}

.news-card a {
  display: inline-flex;
  margin-top: 0.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.split-layout {
  display: grid;
  gap: 1rem;
}

.profile-card {
  overflow: hidden;
}

.profile-grid--staff {
  gap: 1.4rem;
}

.profile-card--staff {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 233, 0.88));
  border-color: rgba(33, 65, 50, 0.14);
}

.profile-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.4rem 1.1rem 0.35rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(182, 141, 85, 0.18), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(59, 106, 83, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(235, 241, 234, 0.96), rgba(247, 243, 233, 0.92));
}

.profile-card--staff .profile-media {
  padding: 1.55rem 1.35rem 0.7rem;
}

.profile-media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.1rem;
  width: 12.8rem;
  height: 12.8rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.profile-card--staff .profile-media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.4rem;
  width: 11.8rem;
  height: 11.8rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45));
  box-shadow: inset 0 0 0 1px rgba(33, 65, 50, 0.08);
}

.profile-card img {
  position: relative;
  z-index: 1;
  width: 10.8rem;
  height: 10.8rem;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(24, 50, 39, 0.12);
}

.profile-copy {
  padding: 1.1rem 1.1rem 1.3rem;
}

.profile-card--staff .profile-copy {
  padding: 1.25rem 1.35rem 1.45rem;
}

.profile-card--committee img {
  width: 8.8rem;
  height: 8.8rem;
  object-fit: cover;
  object-position: center 25%;
}

.committee-grid {
  gap: 1rem;
}

.profile-card--committee {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 236, 223, 0.9));
}

.profile-card--committee .profile-media {
  padding: 1.25rem 1rem 0.55rem;
}

.profile-card--committee .profile-media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.2rem;
  width: 9.7rem;
  height: 9.7rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(33, 65, 50, 0.07);
}

.profile-card--committee .profile-media::after {
  top: 1.05rem;
  width: 10.5rem;
  height: 10.5rem;
}

.profile-card--committee .profile-copy {
  text-align: center;
  padding-top: 0.9rem;
}

.profile-card--expandable .profile-copy {
  display: grid;
  gap: 0.75rem;
}

.profile-main {
  margin-bottom: 0;
}

.profile-extra[hidden] {
  display: none;
}

.profile-extra {
  display: grid;
  gap: 0.75rem;
  color: var(--text-700);
}

.profile-toggle {
  width: fit-content;
  margin-top: 0.1rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--green-800);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.profile-toggle:hover {
  color: var(--gold-500);
}

.profile-role {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--gold-500);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.bullet-grid {
  list-style: none;
  padding: 0;
}

.bullet-card {
  position: relative;
  padding-left: 3.6rem;
}

.bullet-card::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 1.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-400), var(--green-700));
}

.rule-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.rule-list li {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(235, 241, 234, 0.9);
  border: 1px solid rgba(59, 106, 83, 0.12);
}

.download-card a,
.link-card a {
  display: inline-flex;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.contact-detail {
  margin-bottom: 1rem;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--green-950);
}

.map-card {
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 241, 234, 0.92));
  border: 1px solid rgba(33, 65, 50, 0.12);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.map-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(159, 119, 69, 0.28);
}

.map-card-visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.5), transparent 22%),
    linear-gradient(180deg, #f5efe1 0%, #e6efdf 100%);
}

.map-card-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(214, 223, 208, 0.55);
}

.map-card-road-a {
  top: 34px;
  left: -10px;
  width: 210px;
  height: 18px;
  transform: rotate(14deg);
}

.map-card-road-b {
  right: -24px;
  top: 86px;
  width: 220px;
  height: 18px;
  transform: rotate(-18deg);
}

.map-card-road-c {
  left: 50%;
  bottom: -16px;
  width: 22px;
  height: 170px;
  transform: translateX(-50%) rotate(8deg);
}

.map-card-pin {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  background: linear-gradient(180deg, var(--gold-400), #b85d4c);
  box-shadow: 0 14px 30px rgba(24, 50, 39, 0.18);
}

.map-card-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

.map-card-copy h3 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
}

.map-card-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--gold-500);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.map-card-copy p {
  color: var(--text-700);
}

.map-card-link {
  display: inline-flex;
  margin-top: 0.15rem;
  color: var(--green-800);
  font-family: var(--font-heading);
  font-weight: 700;
}

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

.form-panel {
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-panel:hover,
.form-panel:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(159, 119, 69, 0.28);
}

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

.form-grid-2 {
  display: grid;
  gap: 1rem;
}

.form-span-2 {
  grid-column: 1 / -1;
}

.form-group {
  display: grid;
  gap: 0.38rem;
}

.form-group label {
  color: var(--green-950);
  font-family: var(--font-heading);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(33, 65, 50, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--text-900);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(182, 141, 85, 0.35);
  border-color: rgba(182, 141, 85, 0.8);
  outline-offset: 1px;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.55rem;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.radio-option input {
  width: auto;
  min-height: auto;
  padding: 0;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.application-form {
  max-width: 920px;
}

.application-panel {
  display: grid;
  gap: 1.35rem;
}

.application-panel h3 {
  margin-bottom: 0;
}

.application-row {
  display: grid;
  gap: 0.55rem;
}

.application-label {
  color: var(--green-950);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

.required-marker {
  color: #9b483c;
}

.application-fields {
  display: grid;
  gap: 0.75rem;
}

.name-fields,
.completed-date-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.45rem;
}

.name-fields .compact-field {
  flex: 1 1 150px;
}

.short-fields {
  max-width: 260px;
}

.email-fields {
  max-width: 380px;
}

.address-fields {
  max-width: 560px;
}

.completed-date-fields .compact-field {
  flex: 0 1 110px;
}

.phone-number-field {
  max-width: 380px;
}

.compact-field {
  gap: 0.2rem;
}

.compact-field label,
.field-help {
  color: var(--text-700);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 400;
}

.field-help {
  margin: -0.3rem 0 0;
}

.phone-separator {
  padding-top: 0.65rem;
  color: var(--text-700);
}

.application-radio-row {
  justify-content: space-between;
  max-width: 420px;
  padding-top: 0.2rem;
}

.application-actions {
  align-items: center;
  justify-content: center;
  padding-top: 0.3rem;
}

.form-save-message {
  max-width: 920px;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(59, 106, 83, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(235, 241, 234, 0.92);
  color: var(--green-900);
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(235, 241, 234, 0.92);
  border: 1px solid rgba(44, 86, 67, 0.12);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-900);
}

.step-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.88rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.not-found-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.info-band {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(44, 86, 67, 0.12), rgba(182, 141, 85, 0.12));
  border: 1px solid rgba(44, 86, 67, 0.1);
}

@media (min-width: 700px) {
  .info-band {
    padding: 1.4rem;
  }
}

.site-footer {
  padding: 3rem 0 2.5rem;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.3rem;
}

.site-footer a {
  color: #f3ddba;
}

.site-footer p {
  margin-bottom: 0.55rem;
}

.footer-copy {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-credit {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 700px) {
  .page-hero {
    padding: 2.5rem 0 1.5rem;
  }

  .page-hero .container {
    padding: 2rem;
    gap: 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4.4rem);
  }

  .hero-text p {
    font-size: 1.08rem;
    margin-bottom: 1.15rem;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .hero-chips {
    display: flex;
    margin-top: 1rem;
  }

  .card-grid,
  .link-grid,
  .committee-grid,
  .bullet-grid,
  .download-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .application-row {
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: start;
  }

  .application-row-stacked {
    grid-template-columns: 1fr;
  }

  .application-label-wide {
    width: auto;
  }

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

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

@media (min-width: 980px) {
  .site-header {
    padding: 1.05rem 0;
  }

  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1.3rem;
    padding: 0;
    margin-left: auto;
  }

  .site-nav a {
    padding: 0.2rem 0;
    border-bottom: none;
    font-size: 1.15rem;
    position: relative;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.3rem;
    height: 2px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .page-hero {
    padding: 4rem 0 2.4rem;
  }

  .page-hero .container {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.6fr);
    min-height: 370px;
    padding: 2.8rem 3rem;
  }

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

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

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

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

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

  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

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