:root {
  color-scheme: light;
  --forest-950: #10241d;
  --forest-900: #173128;
  --forest-800: #224336;
  --forest-700: #2e5d4b;
  --forest-600: #427663;
  --stone-950: #1a1f1d;
  --stone-800: #3d4843;
  --stone-700: #59665f;
  --sand-50: #f7f3ea;
  --sand-100: #efe6d8;
  --sand-200: #e2d3ba;
  --paper: #fffdfa;
  --paper-strong: rgba(255, 253, 250, 0.96);
  --paper-soft: rgba(255, 253, 250, 0.82);
  --wine-600: #7d4d48;
  --wine-500: #95625d;
  --gold-500: #b98b42;
  --gold-400: #cfab69;
  --line: rgba(26, 31, 29, 0.1);
  --line-strong: rgba(26, 31, 29, 0.16);
  --shadow-xl: 0 34px 80px rgba(16, 36, 29, 0.14);
  --shadow-lg: 0 20px 50px rgba(16, 36, 29, 0.1);
  --shadow-md: 0 16px 36px rgba(16, 36, 29, 0.08);
  --shadow-hover: 0 26px 54px rgba(16, 36, 29, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max-width: 1200px;
  --max-narrow: 980px;
  --space-inline: clamp(20px, 4vw, 54px);
  --section-space: clamp(72px, 10vw, 124px);
  --font-heading: Cambria, Georgia, "Times New Roman", serif;
  --font-body: Aptos, "Segoe UI", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--stone-950);
  background:
    radial-gradient(circle at top left, rgba(207, 171, 105, 0.15), transparent 26%),
    radial-gradient(circle at bottom right, rgba(46, 93, 75, 0.14), transparent 28%),
    linear-gradient(180deg, #f9f6ef 0%, #f4eee2 52%, #f8f5ef 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
}

body::before {
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(207, 171, 105, 0.3), transparent 70%);
}

body::after {
  right: -140px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(66, 118, 99, 0.22), transparent 70%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  min-width: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(46, 93, 75, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--forest-900);
  color: var(--paper);
  transition: top 160ms ease;
}

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

.page-main {
  overflow-x: clip;
}

.section,
.page-hero,
.hero-home,
.site-footer {
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}

.section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section--tight {
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.section--muted {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(239, 230, 216, 0.56));
}

.section--muted::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.32));
  pointer-events: none;
}

.section--lined {
  position: relative;
}

.section--lined::before,
.section--lined::after {
  content: "";
  position: absolute;
  left: var(--space-inline);
  right: var(--space-inline);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 31, 29, 0.12), transparent);
}

.section--lined::before {
  top: 0;
}

.section--lined::after {
  bottom: 0;
}

.section--deep {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(16, 36, 29, 0.98), rgba(34, 67, 54, 0.94) 58%, rgba(125, 77, 72, 0.9));
}

.section-inner,
.header-inner,
.hero-layout,
.page-hero-body,
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0;
  color: var(--forest-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--soft {
  color: rgba(255, 253, 250, 0.72);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

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

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

p {
  margin: 0;
  line-height: 1.75;
}

.section-heading p:last-child,
.lede,
.lead-copy,
.support-copy,
.hero-panel p,
.page-hero-aside p,
.surface-card p,
.timeline-card p,
.faq-item p,
.resource-meta,
.contact-card p,
.footer-brand p,
.footer-base,
.field-help,
.form-note,
.compact-list p {
  color: var(--stone-700);
}

.section--deep .section-heading p:last-child,
.section--deep .support-copy,
.section--deep .surface-card p,
.section--deep .timeline-card p,
.section--deep .faq-item p {
  color: rgba(255, 253, 250, 0.78);
}

.hero-home {
  position: relative;
  overflow: hidden;
  padding-top: clamp(46px, 7vw, 92px);
  padding-bottom: clamp(72px, 8vw, 104px);
  color: var(--paper);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(16, 36, 29, 0.94) 10%, rgba(16, 36, 29, 0.72) 48%, rgba(16, 36, 29, 0.34) 100%),
    linear-gradient(150deg, rgba(185, 139, 66, 0.16), rgba(125, 77, 72, 0.22)),
    url("../assets/hero-hospitality.png") center center / cover no-repeat;
  transform: scale(1.03);
}

.hero-home::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 171, 105, 0.24), transparent 70%);
}

.hero-layout,
.page-hero-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: end;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 18px;
}

.hero-copy h1 {
  max-width: 11ch;
}

.lede {
  max-width: 58ch;
  font-size: 1.08rem;
  color: rgba(255, 253, 250, 0.82);
}

.hero-actions,
.button-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill-row {
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 250, 0.16);
  background: rgba(255, 253, 250, 0.08);
  color: rgba(255, 253, 250, 0.84);
  font-size: 0.92rem;
}

.surface-card,
.timeline-card,
.feature-card,
.preview-card,
.metric-card,
.leader-card,
.membership-card,
.resource-card,
.contact-card,
.faq-item,
.schedule-card,
.aside-card,
.form-shell,
.confirmation-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.surface-card,
.timeline-card,
.feature-card,
.preview-card,
.metric-card,
.leader-card,
.membership-card,
.resource-card,
.contact-card,
.faq-item,
.schedule-card,
.aside-card {
  padding: clamp(22px, 2.4vw, 30px);
}

.surface-card:hover,
.timeline-card:hover,
.feature-card:hover,
.preview-card:hover,
.metric-card:hover,
.leader-card:hover,
.membership-card:hover,
.resource-card:hover,
.contact-card:hover,
.faq-item:hover,
.schedule-card:hover,
.aside-card:hover,
.endorsement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 93, 75, 0.18);
  box-shadow: var(--shadow-hover);
}

.hero-panel,
.page-hero-aside {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 253, 250, 0.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
}

.hero-panel p,
.hero-panel li,
.page-hero-aside p,
.page-hero-aside li {
  color: rgba(255, 253, 250, 0.8);
}

.compact-list,
.list-stack,
.link-list {
  display: grid;
  gap: 14px;
}

.compact-list strong,
.leader-card strong,
.feature-card strong,
.resource-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 4px;
  color: inherit;
}

.compact-list article,
.support-list li,
.key-points li {
  line-height: 1.65;
}

.support-list,
.key-points {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.button,
.nav-cta,
.header-link,
.footer-cta,
.submit-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.nav-cta:hover,
.header-link:hover,
.footer-cta:hover,
.submit-button:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.button-primary,
.nav-cta,
.footer-cta,
.submit-button {
  background: linear-gradient(135deg, var(--forest-700), var(--forest-600));
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(46, 93, 75, 0.22);
}

.button-secondary,
.header-link {
  background: rgba(255, 253, 250, 0.76);
  border-color: rgba(26, 31, 29, 0.12);
  color: var(--forest-900);
}

.button-secondary.button-on-dark {
  background: rgba(255, 253, 250, 0.08);
  border-color: rgba(255, 253, 250, 0.22);
  color: var(--paper);
}

.button-primary:hover,
.nav-cta:hover,
.footer-cta:hover,
.submit-button:hover {
  box-shadow: 0 22px 40px rgba(46, 93, 75, 0.28);
}

.button-secondary:hover,
.header-link:hover {
  background: rgba(255, 253, 250, 0.96);
  border-color: rgba(26, 31, 29, 0.16);
}

.button-secondary.button-on-dark:hover {
  background: rgba(255, 253, 250, 0.14);
  border-color: rgba(255, 253, 250, 0.3);
}

.button:active,
.nav-cta:active,
.header-link:active,
.footer-cta:active,
.submit-button:active {
  transform: translateY(0);
}

.text-button {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--forest-700);
  justify-content: flex-start;
  box-shadow: none;
  gap: 8px;
}

.text-button::after {
  content: "->";
  font-size: 0.88rem;
  transition: transform 180ms ease;
}

.text-button:hover::after {
  transform: translateX(3px);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 93, 75, 0.08);
  color: var(--forest-900);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-grid,
.card-grid-2,
.card-grid-3,
.card-grid-4,
.leadership-grid,
.membership-grid,
.faq-grid,
.contact-grid,
.schedule-grid,
.resource-grid {
  display: grid;
  gap: 20px;
}

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

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

.card-grid-2,
.membership-grid,
.faq-grid,
.schedule-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.metric-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 28px);
  border-color: rgba(255, 253, 250, 0.1);
  background:
    linear-gradient(160deg, rgba(16, 36, 29, 0.98), rgba(34, 67, 54, 0.94) 64%, rgba(125, 77, 72, 0.86));
  box-shadow: var(--shadow-lg);
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: auto -44px -46px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 171, 105, 0.24), transparent 72%);
}

.metric-card > * {
  position: relative;
  z-index: 1;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.metric-card p {
  color: rgba(255, 253, 250, 0.78);
}

.feature-card,
.preview-card,
.resource-card,
.schedule-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
}

.feature-card h3,
.preview-card h3,
.leader-card h3,
.membership-card h3,
.resource-card h3,
.contact-card h3,
.schedule-card h3,
.faq-item h3,
.timeline-card h3 {
  color: var(--stone-950);
}

.preview-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 230, 216, 0.68));
}

.preview-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -56px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 93, 75, 0.12), transparent 70%);
}

.feature-card,
.preview-card,
.membership-card,
.resource-card,
.contact-card,
.aside-card,
.faq-item,
.schedule-card,
.leader-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.preview-card::before,
.membership-card::before,
.resource-card::before,
.contact-card::before,
.aside-card::before,
.faq-item::before,
.schedule-card::before,
.leader-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(46, 93, 75, 0.96), rgba(207, 171, 105, 0.72));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 36, 29, 0.64), rgba(16, 36, 29, 0.16) 64%, rgba(185, 139, 66, 0.12));
}

.image-panel--operations::before {
  background-image: url("../assets/operations-overview.png");
}

.image-panel--journey::before {
  background-image: url("../assets/member-journey.png");
}

.image-panel--hospitality::before {
  background-image: url("../assets/hero-hospitality.png");
}

.image-panel-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: var(--paper);
}

.image-panel-caption p {
  color: rgba(255, 253, 250, 0.8);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(52px, 6vw, 72px);
  color: var(--paper);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  transform: scale(1.03);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 36, 29, 0.92), rgba(16, 36, 29, 0.74) 54%, rgba(16, 36, 29, 0.3));
}

.page-hero--about::before,
.page-hero--advocacy::before,
.page-hero--resources::before {
  background-image:
    linear-gradient(150deg, rgba(185, 139, 66, 0.14), rgba(125, 77, 72, 0.22)),
    url("../assets/operations-overview.png");
}

.page-hero--membership::before,
.page-hero--apply::before {
  background-image:
    linear-gradient(150deg, rgba(185, 139, 66, 0.14), rgba(125, 77, 72, 0.22)),
    url("../assets/member-journey.png");
}

.page-hero--leadership::before,
.page-hero--news::before,
.page-hero--events::before,
.page-hero--contact::before {
  background-image:
    linear-gradient(150deg, rgba(185, 139, 66, 0.14), rgba(125, 77, 72, 0.2)),
    url("../assets/hero-hospitality.png");
}

.page-hero-copy h1 {
  max-width: 11ch;
}

.page-hero-copy .lead-copy {
  max-width: 56ch;
  font-size: 1.06rem;
  color: rgba(255, 253, 250, 0.82);
}

.page-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.page-stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.08);
  border: 1px solid rgba(255, 253, 250, 0.14);
}

.page-stat strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.page-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 253, 250, 0.72);
  line-height: 1.55;
}

.timeline-grid {
  display: grid;
  gap: 18px;
}

.timeline-card {
  position: relative;
  padding: 24px 24px 24px 82px;
}

.timeline-index {
  position: absolute;
  left: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-600));
  color: var(--paper);
  font-weight: 800;
}

.leader-card {
  display: grid;
  gap: 12px;
}

.role-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(125, 77, 72, 0.08);
  color: var(--wine-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.membership-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
}

.membership-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--stone-700);
}

.quote-block {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 36, 29, 0.98), rgba(34, 67, 54, 0.94) 58%, rgba(125, 77, 72, 0.88));
  color: var(--paper);
  box-shadow: var(--shadow-lg);
}

.quote-block p {
  color: rgba(255, 253, 250, 0.82);
}

.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.endorsement-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 2.8vw, 32px);
  border: 1px solid rgba(26, 31, 29, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 230, 216, 0.74));
  box-shadow: var(--shadow-md);
}

.endorsement-card p {
  color: var(--stone-700);
}

.partner-band {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(24px, 3vw, 30px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.72);
  box-shadow: var(--shadow-md);
}

.partner-band p {
  color: var(--stone-700);
}

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

.partner-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 31, 29, 0.1);
  background: rgba(46, 93, 75, 0.05);
  color: var(--forest-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-band {
  padding: clamp(26px, 4vw, 36px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(16, 36, 29, 0.98), rgba(34, 67, 54, 0.94) 56%, rgba(125, 77, 72, 0.9));
  color: var(--paper);
  box-shadow: var(--shadow-lg);
}

.cta-band p {
  color: rgba(255, 253, 250, 0.8);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.resource-card .resource-meta,
.preview-card .resource-meta,
.schedule-card .resource-meta {
  font-size: 0.92rem;
}

.contact-card a,
.resource-card a,
.preview-card a {
  width: fit-content;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1.28fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.application-aside {
  display: grid;
  gap: 18px;
}

.aside-card {
  display: grid;
  gap: 14px;
}

.form-shell {
  padding: clamp(24px, 3vw, 36px);
  background: var(--paper-strong);
}

.form-intro {
  display: grid;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.membership-form {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.form-section {
  display: grid;
  gap: 18px;
}

.form-section + .form-section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-section-heading {
  display: grid;
  gap: 6px;
}

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

.field-group {
  display: grid;
  gap: 8px;
}

.field-group > span {
  color: var(--forest-900);
  font-size: 0.95rem;
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: #fff;
  color: var(--stone-950);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(61, 72, 67, 0.56);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: rgba(46, 93, 75, 0.78);
  box-shadow: 0 0 0 4px rgba(46, 93, 75, 0.14);
}

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

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(46, 93, 75, 0.05);
  border: 1px solid rgba(46, 93, 75, 0.08);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-field span {
  color: var(--stone-800);
  line-height: 1.6;
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.submit-button {
  border: 0;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.form-note {
  max-width: 30rem;
}

.form-status {
  min-height: 1.5em;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #1f6b45;
}

.form-status[data-state="error"] {
  color: #9d3b32;
}

.confirmation-card {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(226, 243, 233, 0.72));
  border-color: rgba(31, 107, 69, 0.14);
}

.confirmation-card[hidden] {
  display: none;
}

.confirmation-card strong {
  color: var(--forest-900);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(249, 246, 239, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 36, 29, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 420px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.brand span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand strong {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  color: var(--forest-900);
}

.brand small {
  color: var(--stone-700);
  font-size: 0.88rem;
  line-height: 1.45;
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.74);
  color: var(--forest-900);
  font-weight: 700;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--stone-800);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover {
  background: rgba(46, 93, 75, 0.08);
  color: var(--forest-900);
}

.site-nav a[aria-current="page"],
.nav-cta[aria-current="page"] {
  color: var(--forest-900);
}

.site-nav a[aria-current="page"] {
  background: rgba(46, 93, 75, 0.1);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-cta,
.nav-cta {
  white-space: nowrap;
}

.site-footer {
  padding-top: 28px;
  padding-bottom: 36px;
  color: var(--paper);
}

.footer-inner {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 4vw, 38px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(16, 36, 29, 0.98), rgba(34, 67, 54, 0.94) 58%, rgba(125, 77, 72, 0.9));
  box-shadow: var(--shadow-lg);
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.footer-brand strong,
.footer-grid h2 {
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-grid section {
  display: grid;
  gap: 10px;
}

.footer-grid h2 {
  font-size: 1.02rem;
}

.footer-grid a,
.footer-base span {
  color: rgba(255, 253, 250, 0.76);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 250, 0.12);
  font-size: 0.94rem;
  color: rgba(255, 253, 250, 0.72);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .metric-grid,
  .card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid-3,
  .leadership-grid,
  .resource-grid,
  .endorsement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-layout,
  .page-hero-body,
  .split-layout,
  .application-layout {
    grid-template-columns: 1fr;
  }

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

  .cta-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .header-inner {
    gap: 14px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-shell {
    position: absolute;
    top: calc(100% - 2px);
    left: var(--space-inline);
    right: var(--space-inline);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(16, 36, 29, 0.08);
    background: rgba(255, 253, 250, 0.98);
    box-shadow: var(--shadow-lg);
  }

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

  .site-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .site-nav a,
  .header-link,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-home {
    padding-top: 34px;
    padding-bottom: 72px;
  }

  .page-hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .section {
    padding-top: clamp(56px, 9vw, 72px);
    padding-bottom: clamp(56px, 9vw, 72px);
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

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

  .lede,
  .page-hero-copy .lead-copy {
    font-size: 1rem;
  }

  .metric-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .leadership-grid,
  .membership-grid,
  .faq-grid,
  .contact-grid,
  .schedule-grid,
  .resource-grid,
  .endorsement-grid,
  .page-stat-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button-row,
  .hero-actions,
  .form-foot {
    width: 100%;
  }

  .button,
  .button-primary,
  .button-secondary,
  .submit-button {
    width: 100%;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .timeline-card {
    padding: 78px 22px 22px;
  }

  .timeline-index {
    left: 22px;
  }

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

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section,
  .page-hero,
  .hero-home,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-panel,
  .page-hero-aside,
  .surface-card,
  .timeline-card,
  .feature-card,
  .preview-card,
  .metric-card,
  .leader-card,
  .membership-card,
  .resource-card,
  .contact-card,
  .faq-item,
  .schedule-card,
  .aside-card,
  .form-shell,
  .confirmation-card,
  .cta-band,
  .image-panel {
    border-radius: 22px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: 12ch;
  }

  .hero-panel,
  .page-hero-aside {
    padding: 22px;
  }

  .image-panel {
    min-height: 320px;
  }

  .checkbox-field {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .nav-cta,
  .header-link,
  .footer-cta,
  .submit-button,
  .text-button,
  .skip-link {
    transition: none;
  }

  .text-button::after {
    transition: none;
  }
}
