/* ============================================================
   Club32 — Corporate Golf Membership
   Clean, professional, black + modern type pairing
   (Tenor Sans + Outfit — display / UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..64,400;0,9..64,500;0,9..64,600;0,9..64,700&family=Outfit:wght@300;400;500;600;700&family=Tenor+Sans&display=swap');

:root {
  --green:       #000000;
  --green-light: #333333;
  --green-dark:  #000000;
  --green-muted: #4a4a4a;
  --accent:      #000000;
  --white:       #ffffff;
  --off-white:   #f8f8f8;
  /* Footer — dark band: one body tone + pure white headings */
  --footer-muted:      rgba(255, 255, 255, 0.72);
  --footer-text:       rgba(255, 255, 255, 0.72);
  --footer-rule:       rgba(255, 255, 255, 0.22);
  --footer-legal-bg:   #ffffff;
  --footer-legal-text: var(--text-dark);
  --footer-legal-gutter: 15px;
  --footer-surface:    #000000;
  --text-dark:   #1a1a1a;
  --text-body:   #3d3d3d;
  --text-muted:  #666666;
  --border:      rgba(0,0,0,0.12);
  --shadow:      0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.1);
  --radius:      6px;
  --radius-lg:   10px;
  --transition:  all 0.25s ease;
  --header-h:    72px;
  --content-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  max-width: 100%;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Tenor Sans', sans-serif;
  line-height: 1.25;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 400; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 400; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }

p { font-size: 1rem; line-height: 1.75; color: var(--text-body); }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Layout ── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 3.5rem 0; }
.section-pad-sm { padding: 2.5rem 0; }

/* ── Header: white, above hero ── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  font-family: 'Tenor Sans', sans-serif;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--green-dark);
}

.header-logo img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.header-logo .club-name {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.header-logo .club-name span {
  color: var(--accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.header-nav a:not(.header-cta)::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--green);
  width: 0;
  transition: width 0.3s ease;
}

.header-nav a:not(.header-cta):hover::after {
  width: calc(100% - 2rem);
}

.header-nav a:hover {
  color: var(--green);
}

.header-nav a.active {
  color: var(--green);
  font-weight: 600;
}

.header-nav a.active::after {
  width: calc(100% - 2rem);
}

.header-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem !important;
}

.header-cta:hover {
  background: var(--green-light) !important;
  color: var(--white) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  color: var(--green-dark);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-toggle.open {
  position: fixed;
  top: calc((var(--header-h) - 38px) / 2);
  right: 1.5rem;
  z-index: 1001;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10rem 2rem 2rem;
    gap: 0;
    z-index: 1000;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(2rem, 7vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text-dark);
    padding: 0.75rem 0;
    border-radius: 0;
    background: none !important;
  }

  .header-nav a:not(.header-cta)::after {
    display: none;
  }

  .header-nav a:hover {
    color: var(--text-muted);
    background: none;
  }

  .header-nav a.active {
    color: var(--text-dark);
    font-weight: 400;
  }

  .header-nav .header-cta {
    display: none;
  }

  .nav-toggle.open span {
    background: var(--green-dark);
  }
}

/* ── Home hero: image block, same width as header ── */
.hero-home {
  padding: calc(var(--header-h) + 2rem) 0 0.75rem;
  background: var(--white);
}

.hero-home-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-home-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-home-media picture,
.hero-home-media img {
  display: block;
}

.hero-home-media img {
  width: 100%;
  height: auto;
}

/* About: tuck content a touch closer under the hero image */
.page-about .hero-home {
  padding-bottom: 0.35rem;
}

/* About: soft white fade at bottom of hero (blends arrow / artwork into page) */
.page-about .hero-home-media {
  position: relative;
}

.page-about .hero-home-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* Short band; fade stays at the very bottom so it doesn’t climb the artwork */
  height: min(9%, 2.75rem);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 78%,
    rgba(255, 255, 255, 0.12) 92%,
    rgba(255, 255, 255, 0.4) 100%
  );
}

/* Pull first content section closer under the home hero */
.hero-home + .section-pad {
  padding-top: 2.25rem;
}

/* ── Hero: image with text on left, no overlap on ball ── */
.hero-banner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-banner .hero-media {
  position: absolute;
  inset: 0;
}

.hero-banner .hero-media img,
.hero-banner .hero-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}

/* Strong left-to-right overlay: dark where text sits, ball stays visible right */
.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.82) 28%,
    rgba(0,0,0,0.45) 52%,
    rgba(0,0,0,0.15) 72%,
    transparent 88%
  );
  pointer-events: none;
}

.hero-banner .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 3.5rem;
  box-sizing: border-box;
}

.hero-banner .hero-content {
  max-width: 480px;
  text-align: left;
}

.hero-banner .section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}

.hero-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-banner .hero-divider {
  width: 48px;
  height: 2px;
  background: var(--white);
  margin-bottom: 1.25rem;
  border-radius: 2px;
  opacity: 0.9;
}

.hero-banner .hero-subtitle {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.hero-banner .btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Hero when content is direct child (inner pages, no hero-inner) */
.hero-banner > .hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 3rem;
  width: 100%;
  box-sizing: border-box;
}

.hero-banner > .hero-content .hero-content { max-width: none; }

/* Hero small (inner pages) */
.hero-small .hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.88) 100%);
}

.hero-small { min-height: 320px; }

.hero-small .hero-content,
.hero-small .hero-inner .hero-content {
  max-width: 560px;
}

.hero-small .hero-inner {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 2.5rem;
}

.hero-small .hero-subtitle { max-width: 560px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary,
.btn-gold {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.btn-primary:hover,
.btn-gold:hover {
  background: var(--green-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Section Headings ── */
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h1,
.section-heading h2 { margin-bottom: 0.5rem; }

.section-heading p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

.accent-line,
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ── Cards ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.card-icon {
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  color: var(--green);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Section backgrounds ── */
.section-offwhite { background: var(--off-white); }

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

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-dark p { color: rgba(255,255,255,0.88); }

.section-dark .section-heading h2,
.section-dark .section-heading p { color: var(--white); }

.section-dark .section-heading p { color: rgba(255,255,255,0.75); }

.section-navy {
  background: var(--green-dark);
  color: var(--white);
}

.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }

.section-navy p { color: rgba(255,255,255,0.82); }

/* ── Values strip ── */
.values-strip {
  display: flex;
  flex-wrap: wrap;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.value-item {
  flex: 1 1 20%;
  min-width: 160px;
  padding: 1.75rem 1.25rem;
  background: var(--green);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: var(--transition);
}

.value-item:last-child { border-right: none; }

.value-item:hover { background: var(--green-light); }

.value-item .value-icon {
  display: block;
  margin-bottom: 0.5rem;
}

.value-item h4 {
  color: var(--white);
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.value-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* ── Pre-footer: same framed hero image + membership CTA (all pages) ── */
.pre-footer-cta {
  background: var(--white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2.25rem, 4vw, 3rem);
}

.pre-footer-cta__intro {
  text-align: center;
  margin-bottom: 1.25rem;
}

.pre-footer-cta__intro .section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 1rem;
}

.pre-footer-cta__heading {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0;
}

.pre-footer-cta .hero-home-media {
  margin-bottom: 1.5rem;
}

.pre-footer-cta__action {
  text-align: center;
}

.pre-footer-cta__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pre-footer-cta__link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ── Code of Conduct (About) — charter band: authoritative, not committee cards ── */
.section-conduct-charter.section-pad {
  padding-top: clamp(5rem, 11vw, 8.5rem);
  padding-bottom: clamp(5rem, 11vw, 8.5rem);
  color: var(--white);
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 45%),
    linear-gradient(175deg, #0a0a0a 0%, #030303 40%, #0c0c0c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.conduct-charter {
  max-width: calc(var(--content-max) + 2rem);
}

.conduct-charter__header {
  margin-bottom: clamp(2.75rem, 6vw, 4.25rem);
}

@media (min-width: 768px) {
  .conduct-charter__header {
    text-align: left;
    max-width: 44rem;
  }
}

@media (max-width: 767px) {
  .conduct-charter__header {
    text-align: left;
  }
}

.conduct-charter__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.1rem;
}

.conduct-charter__title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 1.35rem;
}

.conduct-charter__statement {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 1.65vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 38rem;
}

@media (max-width: 767px) {
  .conduct-charter__statement {
    margin-left: 0;
    margin-right: 0;
  }
}

.conduct-charter__frame {
  position: relative;
  margin-top: clamp(0.5rem, 2vw, 1rem);
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
  padding-left: clamp(1.25rem, 3.5vw, 2.15rem);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.conduct-charter__frame::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 255, 255, 0.35) 100%
  );
}

.conduct-charter__rule {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 2.25rem);
  padding-top: clamp(1.85rem, 3.5vw, 2.65rem);
  padding-bottom: clamp(1.85rem, 3.5vw, 2.65rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.conduct-charter__rule:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.conduct-charter__num {
  flex: 0 0 auto;
  width: clamp(2.75rem, 8vw, 4.25rem);
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.14);
  text-align: right;
}

.conduct-charter__rule-main {
  flex: 1 1 0;
  min-width: 0;
}

.conduct-charter__rule-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 0.85rem;
}

.conduct-charter__rule-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9375rem, 1.15vw, 1.02rem);
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  max-width: 52rem;
}

@media (max-width: 560px) {
  .conduct-charter__rule {
    flex-direction: column;
    gap: 0.35rem;
  }

  .conduct-charter__num {
    width: 100%;
    text-align: left;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    color: rgba(255, 255, 255, 0.22);
  }

  .conduct-charter__rule-title {
    margin-top: 0.15rem;
  }
}

/* ── Our Community (About) ── */
.section-community-premium.section-pad {
  padding-top: clamp(4.5rem, 9vw, 7rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
  background: var(--white);
}

.community-premium__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.community-premium__kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 1rem;
}

.community-premium__title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 0.85rem;
  text-transform: none;
}

.community-premium__deck {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.community-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.25rem);
  max-width: 68rem;
  margin: 0 auto;
}

.community-premium__card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: clamp(1.35rem, 2.4vw, 1.65rem) clamp(1.25rem, 2vw, 1.45rem);
  text-align: left;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(168deg, #121212 0%, #232323 50%, #181818 100%);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.community-premium__card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.07) inset;
}

.community-premium__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 0.7rem;
}

.community-premium__name {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.97);
  margin: 0 0 0.65rem;
}

.community-premium__text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .community-premium__card:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .community-premium__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .community-premium__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Executive Committee (About) — premium board ── */
.section-committee-premium.section-pad {
  padding-top: clamp(2.5rem, 5.5vw, 4rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--white);
}

.committee-premium__head {
  text-align: center;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.committee-premium__kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 1rem;
}

.committee-premium__title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.committee-premium__deck {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.committee-premium__board {
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 2.2vw, 1.65rem);
}

.committee-premium__card {
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(168deg, #121212 0%, #232323 50%, #181818 100%);
  /* One consistent radius across chair + grid — reads as a single family */
  border-radius: 1rem;
  padding: clamp(1.35rem, 2.4vw, 1.7rem) clamp(1.2rem, 2vw, 1.5rem);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.4s ease, box-shadow 0.45s ease;
}

/* Full-card platinum highlight on hover — soft wash + slow sheen drift */
.committee-premium__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(238, 240, 250, 0.32) 32%,
    rgba(255, 255, 255, 0.26) 50%,
    rgba(210, 216, 230, 0.24) 68%,
    rgba(255, 255, 255, 0.12) 100%
  );
  background-size: 240% 240%;
  background-position: 8% 42%;
  mix-blend-mode: soft-light;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 2.75s cubic-bezier(0.33, 0.72, 0.24, 1);
}

.committee-premium__card:hover::before {
  opacity: 1;
  background-position: 92% 58%;
}

.committee-premium__card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.committee-premium__card--chair {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.15rem, 2.8vw, 2rem);
  text-align: left;
  padding: clamp(1.45rem, 2.8vw, 2rem) clamp(1.45rem, 2.8vw, 2.15rem);
  justify-content: flex-start;
}

.committee-premium__card--chair::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.48) 0%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(255, 255, 255, 0.38) 100%
  );
  border-radius: 2px;
}

/* Handicap banner — placeholder values until confirmed */
.committee-premium__hcp {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  padding: 0.35rem 0.55rem 0.32rem 0.65rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(210, 214, 224, 0.12) 38%,
    rgba(24, 26, 30, 0.75) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 0.55rem;
  box-shadow: -1px 2px 10px rgba(0, 0, 0, 0.22);
}

.committee-premium__avatar {
  position: relative;
  z-index: 3;
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(145deg, #2e2e2e 0%, #0c0c0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 4px 14px rgba(0, 0, 0, 0.25);
}

.committee-premium__card--chair .committee-premium__avatar {
  width: clamp(3.35rem, 7vw, 4.1rem);
  height: clamp(3.35rem, 7vw, 4.1rem);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  margin: 0;
  flex-shrink: 0;
}

.committee-premium__body {
  position: relative;
  z-index: 3;
  flex: 1;
  min-width: 0;
}

.committee-premium__name {
  position: relative;
  z-index: 3;
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(0.92rem, 1.15vw, 1.04rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.97);
  margin: 0 0 0.4rem;
}

.committee-premium__card--chair .committee-premium__name {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  margin-bottom: 0.45rem;
}

.committee-premium__role {
  position: relative;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.committee-premium__contact {
  position: relative;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  margin-left: auto;
  text-align: right;
}

.committee-premium__contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.committee-premium__contact a:hover {
  color: rgba(255, 255, 255, 1);
}

.committee-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.95rem, 1.8vw, 1.35rem);
}

@media (prefers-reduced-motion: reduce) {
  .committee-premium__card:hover {
    transform: none;
  }

  .committee-premium__card::before {
    inset: 0;
    background-size: 100% 100%;
    background-position: 50% 50%;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(232, 234, 244, 0.2) 48%,
      rgba(255, 255, 255, 0.1) 100%
    );
    mix-blend-mode: soft-light;
    transition: opacity 0.45s ease;
  }

  .committee-premium__card:hover::before {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .committee-premium__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .committee-premium__card--chair {
    flex-direction: column;
    text-align: center;
    padding-top: 2.35rem;
  }

  .committee-premium__card--chair .committee-premium__avatar {
    margin: 0 auto;
  }

  .committee-premium__card--chair .committee-premium__contact {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  .committee-premium__hcp {
    border-radius: 0 0 0 0.45rem;
    padding: 0.3rem 0.5rem 0.28rem 0.55rem;
    font-size: 0.6rem;
  }

  .committee-premium__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Membership cards ── */
.membership-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.membership-card:hover::before { transform: scaleX(1); }

.membership-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.membership-card.featured {
  border-color: rgba(255,255,255,0.22);
  background: var(--green-dark);
  color: var(--white);
}

.membership-card.featured::before {
  transform: scaleX(1);
  background: rgba(255,255,255,0.9);
}

.membership-card.featured h3 { color: var(--white); }

.membership-card.featured p,
.membership-card.featured li { color: rgba(255,255,255,0.88); }

.membership-card .price {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin: 0.75rem 0 0.25rem;
}

.membership-card.featured .price { color: var(--white); }

.membership-card .price-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.membership-card.featured .price-note { color: rgba(255,255,255,0.6); }

.membership-card ul { margin: 1rem 0; }

.membership-card ul li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.membership-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.membership-card.featured ul li::before { color: var(--white); }

.membership-card.featured ul li { color: rgba(255,255,255,0.85); }

/* Membership cards on dark background — white card with black text */
.section-conduct-charter .membership-card:not(.featured) {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-body);
}

.section-conduct-charter .membership-card:not(.featured):hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.section-conduct-charter .membership-card:not(.featured)::before {
  background: #666666;
}

.section-conduct-charter .membership-card:not(.featured) h3 {
  color: var(--green-dark);
}

.section-conduct-charter .membership-card:not(.featured) .price {
  color: var(--green-dark) !important;
}

.section-conduct-charter .membership-card:not(.featured) .price-note {
  color: var(--text-muted) !important;
}

.section-conduct-charter .membership-card:not(.featured) ul li {
  color: var(--text-body);
}

.section-conduct-charter .membership-card:not(.featured) ul li::before {
  color: var(--green-dark);
}

.section-conduct-charter .membership-card:not(.featured) .section-label {
  color: var(--text-muted);
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255,255,255,0.2);
}

.step h4 { color: var(--green); margin-bottom: 0.4rem; }

.step p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Payment box ── */
.payment-box {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  max-width: 560px;
  margin: 0 auto;
}

.payment-box h3 { color: var(--white); margin-bottom: 1.25rem; }

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

.payment-row:last-child { border-bottom: none; }

.payment-row .label { color: rgba(255,255,255,0.55); font-weight: 500; }

.payment-row .value { color: var(--white); font-weight: 500; }

/* ── Contact form ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.7;
}

select.placeholder-shown,
select:invalid {
  color: var(--text-muted);
  font-weight: 300;
}

select option {
  color: var(--text-dark);
  font-weight: 400;
}

select option[disabled] {
  color: var(--text-muted);
  font-weight: 300;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.04);
}

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

.form-group--checkbox {
  margin-bottom: 1.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-body);
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--green-dark);
  cursor: pointer;
}

.form-submit-note__link {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit-note__link:hover {
  opacity: 0.85;
}

/* ── Contact cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.contact-card h4 { color: var(--white); margin-bottom: 0.2rem; }

.contact-card .contact-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.contact-card p { font-size: 0.875rem; color: rgba(255,255,255,0.8); }

/* ── Vision & Purpose (About) — light stage, dual dark panels, white type ── */
.page-about main#main-content > .section-vision-premium:first-child {
  margin-top: clamp(0.35rem, 1.25vw, 0.85rem);
}

.section-vision-premium.section-pad {
  padding-top: clamp(2.5rem, 5.5vw, 4rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--white);
}

.vision-premium__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.vision-premium__kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 1rem;
}

.vision-premium__title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0;
}

.vision-premium__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  max-width: 68rem;
  margin: 0 auto;
}

.vision-premium__panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(2rem, 4.5vw, 2.85rem) clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.vision-premium__panel--vision {
  border-radius: 0.35rem 2rem 0.35rem 0.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(165deg, #121212 0%, #242424 52%, #181818 100%);
  transform: rotate(-0.35deg);
}

.vision-premium__panel--vision::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border-radius: 2px;
}

.vision-premium__panel--purpose {
  border-radius: 2rem 0.35rem 2rem 0.35rem;
  background:
    linear-gradient(-35deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(195deg, #0f0f0f 0%, #1c1c1c 40%, #141414 100%);
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
  transform: rotate(0.35deg);
}

.vision-premium__panel--purpose::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.vision-premium__index {
  position: absolute;
  z-index: 0;
  top: 0.35rem;
  right: clamp(0.75rem, 2vw, 1.25rem);
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.06em;
  user-select: none;
  pointer-events: none;
}

.vision-premium__label {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 1.25rem;
}

.vision-premium__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
}

.vision-premium__quote p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  font-weight: 300;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.02em;
  margin: 0;
}

.vision-premium__quote-lead {
  font-weight: 400;
}

.vision-premium__quote p + p {
  margin-top: 1.05rem;
  font-size: clamp(0.98rem, 1.15vw, 1.0625rem);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .vision-premium__panel--vision,
  .vision-premium__panel--purpose {
    transform: none;
  }
}

/* ── Eligibility (Membership) — light panels, 2×2 grid ── */
.section-eligibility-premium.section-pad {
  padding-top: clamp(2.5rem, 5.5vw, 4rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--white);
}

.eligibility-premium__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.eligibility-premium__kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 1rem;
}

.eligibility-premium__title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0;
}

.eligibility-premium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 68rem;
  margin: 0 auto;
}

.eligibility-premium__panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(1.75rem, 3.5vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.eligibility-premium__panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.eligibility-premium__panel--highlight {
  background: linear-gradient(145deg, #fafafa 0%, #f5f5f5 100%);
  border-left: 3px solid var(--green-dark);
}

.eligibility-premium__index {
  position: absolute;
  z-index: 0;
  top: 0.5rem;
  right: clamp(0.75rem, 2vw, 1.25rem);
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(3.5rem, 9vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  letter-spacing: -0.06em;
  user-select: none;
  pointer-events: none;
}

.eligibility-premium__label {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin: 0 0 1rem;
}

.eligibility-premium__content {
  position: relative;
  z-index: 1;
}

.eligibility-premium__name {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
}

.eligibility-premium__text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.9375rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

@media (max-width: 768px) {
  .eligibility-premium__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ── Note box ── */
.note-box {
  background: rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.note-box .note-icon { flex-shrink: 0; margin-top: 0.1rem; }

.note-box p { font-size: 0.9rem; color: var(--text-body); margin: 0; }

/* ── Footer Minimal — Clean, World-Class Design ── */
.footer-minimal {
  width: 100%;
  margin-top: 0;
}

.footer-minimal__main {
  background: #000000;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.footer-minimal__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-minimal__brand {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-minimal__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.footer-minimal__logo img {
  width: clamp(48px, 8vw, 64px);
  height: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-minimal__logo:hover img {
  opacity: 1;
}

.footer-minimal__tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 280px;
}

.footer-minimal__nav {
  display: flex;
  align-items: center;
}

.footer-minimal__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-minimal__links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.footer-minimal__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.footer-minimal__links a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-minimal__links a:hover::after {
  width: 100%;
}

.footer-minimal__cta {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.footer-minimal__btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #000000;
  background: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-minimal__btn:hover {
  opacity: 0.92;
}

.footer-minimal__legal {
  background: #000000;
  padding: 0 1.5rem;
}

.footer-minimal__legal .container {
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  padding: clamp(1rem, 2vw, 1.25rem) 0 0.75rem;
  max-width: calc(var(--content-max) - 3rem);
}

.footer-minimal__copyright {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .footer-minimal__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-minimal__brand {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-minimal__tagline {
    max-width: none;
  }

  .footer-minimal__nav {
    justify-content: center;
  }

  .footer-minimal__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
  }

  .footer-minimal__cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-minimal__grid {
    gap: 1.5rem;
  }

  .footer-minimal__brand {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .footer-minimal__logo img {
    width: 40px;
  }

  .footer-minimal__tagline {
    font-size: 0.8125rem;
    max-width: 200px;
    text-align: left;
  }

  .footer-minimal__cta {
    display: none;
  }

  .footer-minimal__links {
    gap: 1rem 1.5rem;
  }

  .footer-minimal__links a {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .footer-minimal__tagline {
    font-size: 0.75rem;
    max-width: 160px;
  }

  .footer-minimal__links {
    gap: 0.75rem 1.25rem;
  }

  .footer-minimal__links a {
    font-size: 0.75rem;
  }

  .footer-minimal__copyright {
    font-size: 0.7rem;
    line-height: 1.6;
  }
}

/* ── Divider ── */
.divider-accent,
.divider-gold {
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

/* ── Who We Are (home) — extends Vision & Purpose styles ── */
.who-home__glance {
  display: flex;
  flex-direction: column;
}

.who-home__logos {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.who-home__logos img {
  height: 45px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease;
}

.who-home__logos img:last-child {
  padding-top: 0.35rem;
}

.who-home__logos img:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .who-home__logos {
    gap: 1.5rem;
  }

  .who-home__logos img {
    height: 38px;
  }

  .who-home__logos img:last-child {
    padding-top: 0.25rem;
  }
}

/* ── Why Join Us (home) — premium minimal style ── */
.section-why-premium.section-pad {
  padding-top: clamp(2.5rem, 5.5vw, 4rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--white);
}

.why-premium__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.why-premium__kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 1rem;
}

.why-premium__title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0;
}

.why-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 72rem;
  margin: 0 auto;
}

.why-premium__card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-premium__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.why-premium__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

.why-premium__card-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--green-dark);
  margin: 0 0 0.85rem;
}

.why-premium__card-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.9375rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .why-premium__card:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .why-premium__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ── Our Values (home) — premium minimal style with dark cards ── */
.section-values-premium.section-pad {
  padding-top: clamp(2.5rem, 5.5vw, 4rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--white);
}

.values-premium__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.values-premium__kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 1rem;
}

.values-premium__title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0;
}

.values-premium__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.875rem, 1.5vw, 1.25rem);
  max-width: 75rem;
  margin: 0 auto;
}

.values-premium__card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(165deg, #121212 0%, #242424 52%, #181818 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: clamp(1.5rem, 2.5vw, 1.85rem) clamp(1.25rem, 2vw, 1.65rem);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 140px;
}

.values-premium__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.14);
}

.values-premium__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
  pointer-events: none;
}

.values-premium__card-title {
  position: relative;
  z-index: 1;
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.97);
  margin: 0 0 0.65rem;
}

.values-premium__card-text {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  flex: 1;
}

@media (prefers-reduced-motion: reduce) {
  .values-premium__card:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .values-premium__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-premium__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .values-premium__card:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .values-premium__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .values-strip { flex-wrap: wrap; }
  .value-item { flex: 1 1 50%; min-width: 140px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 3rem 0; }
  .section-pad-sm { padding: 2.5rem 0; }
  .card-grid-3,
  .card-grid-2 { grid-template-columns: 1fr; }

  .vision-premium__columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vision-premium__panel--vision,
  .vision-premium__panel--purpose {
    transform: none;
    margin-top: 0;
  }
  .form-row { grid-template-columns: 1fr; }
  .values-strip { flex-direction: column; border-radius: var(--radius-lg); }
  .value-item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .value-item:last-child { border-bottom: none; }
  .hero-banner { min-height: 440px; }
  .hero-small { min-height: 280px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 1.75rem 1.25rem; }
}

/* ── Contact page: form note, treasurer panel, membership note ── */
.form-submit-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.contact-form__submit {
  width: 100%;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
}

/* Treasurer + banking (contact page) */
.treasurer-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.treasurer-panel__bio {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  text-align: center;
}

.treasurer-panel__bio .t-avatar {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1rem;
}

.treasurer-panel__bio h3 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.treasurer-panel__bio .t-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.treasurer-panel__lede {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0;
  text-align: center;
}

.treasurer-panel__bank {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  align-self: stretch;
}

.bank-details__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1rem;
}

.bank-details-list {
  margin: 0;
}

.bank-details-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.bank-details-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bank-details-row:first-child {
  padding-top: 0;
}

.bank-details-row dt {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
}

.bank-details-row dd {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-align: right;
  font-weight: 500;
}

@media (min-width: 768px) {
  .treasurer-panel {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2rem;
  }

  .treasurer-panel__bio {
    text-align: left;
    padding: 2.25rem 2.5rem;
  }

  .treasurer-panel__bio .t-avatar {
    margin: 0 0 1.25rem;
  }

  .treasurer-panel__lede {
    text-align: left;
  }
}

.membership-note {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.membership-note .mn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  display: block;
}

.membership-note h4 { color: var(--green); margin-bottom: 0.5rem; }

.membership-note p { font-size: 0.9rem; color: var(--text-body); margin: 0; }

.membership-note__link {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.membership-note__link:hover {
  opacity: 0.8;
}

/* ── Contact page ── */
.page-contact__main {
  position: relative;
}

.page-contact__form-section {
  background: var(--white);
}

.page-contact__section-heading {
  margin-bottom: 2.75rem;
}

.page-contact__section-heading--on-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.page-contact__intro {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 3.25rem;
}

.page-contact__intro .section-label {
  margin-bottom: 0.5rem;
}

.page-contact__intro h2 {
  margin-bottom: 0;
}

/* Row 1: both column heads; row 2: both forms (equal card height) */
.page-contact__forms {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 2rem;
  row-gap: 1.25rem;
  align-items: start;
}

.page-contact__forms > .page-contact__form-head:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.page-contact__forms > .page-contact__form-head:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.page-contact__forms > .page-contact__form-cell:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  align-self: stretch;
}

.page-contact__forms > .page-contact__form-cell:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
}

.page-contact__form-head {
  margin: 0;
  min-width: 0;
}

.page-contact__form-head--centered {
  text-align: center;
}

@media (max-width: 900px) {
  .page-contact__form-head--centered {
    text-align: left;
  }
}

.page-contact__form-cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.page-contact__form-cell .page-contact__form-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-contact .page-contact__form-card form {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Absorb vertical space in the textarea so gaps sit inside the field, not above the button */
.page-contact #contact-enquiry-form .page-contact__message-grow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  min-height: 0;
}

.page-contact #contact-enquiry-form .page-contact__message-grow textarea {
  flex: 1 1 auto;
  min-height: 6.25rem;
  resize: vertical;
}

.page-contact #membership-application-form .page-contact__background-grow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  min-height: 0;
}

.page-contact #membership-application-form .page-contact__background-grow textarea {
  flex: 1 1 auto;
  min-height: 6.25rem;
  resize: vertical;
}

.page-contact #membership-application-form .form-group--checkbox {
  flex-shrink: 0;
}

/*
  Footer: margin-top auto pins to card bottom. Fixed note height keeps both submit
  buttons on one line; kept short to avoid a tall empty band under short copy.
*/
.page-contact .contact-form__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-shrink: 0;
}

.page-contact .contact-form__footer .contact-form__submit {
  flex-shrink: 0;
}

.page-contact .contact-form__note-slot {
  flex: 0 0 auto;
  height: 4.5rem;
  margin-top: 0.65rem;
  display: flex;
  align-items: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-contact .contact-form__note-slot .form-submit-note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .page-contact__forms {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .page-contact__forms > .page-contact__form-head:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .page-contact__forms > .page-contact__form-cell:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .page-contact__forms > .page-contact__form-head:nth-child(2) {
    grid-column: 1;
    grid-row: 3;
  }

  .page-contact__forms > .page-contact__form-cell:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
}

.page-contact__form-block-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.page-contact__form-block-lede {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.page-contact__text-link {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-contact__text-link:hover {
  opacity: 0.85;
}

.page-contact .page-contact__form-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2rem 2rem 1rem;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  background: var(--white);
}

.page-contact .section-navy.page-contact__committee {
  position: relative;
  overflow: hidden;
}

.page-contact .section-navy.page-contact__committee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.page-contact .section-navy.page-contact__committee .container {
  position: relative;
  z-index: 1;
}

/* ── Contact: Executive Committee (redesigned) ── */
.page-contact__committee .committee-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.page-contact__committee .committee-showcase__lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .page-contact__committee .committee-showcase__lead {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.page-contact__committee .committee-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 1.65rem 1.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.page-contact__committee .committee-feature:hover {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-contact__committee .committee-feature--accent {
  border-left: 3px solid rgba(255, 255, 255, 0.42);
  padding-left: calc(1.65rem - 3px);
}

.page-contact__committee .committee-feature__avatar {
  flex-shrink: 0;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: 'Tenor Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.page-contact__committee .committee-feature__content {
  min-width: 0;
}

.page-contact__committee .committee-feature__name {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.4rem;
}

.page-contact__committee .committee-feature__role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 0.85rem;
}

.page-contact__committee .committee-feature__bio {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.page-contact__committee .committee-showcase__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 1.1rem;
}

.page-contact__committee .committee-captains {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.page-contact__committee .committee-captain {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem 1.2rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: var(--transition);
}

.page-contact__committee .committee-captain:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.page-contact__committee .committee-captain__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.page-contact__committee .committee-captain__avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: 'Tenor Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
}

.page-contact__committee .committee-captain__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.page-contact__committee .committee-captain__name {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-contact__committee .committee-captain__role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.page-contact__committee .committee-captain__bio {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ── Integrated Form Panels (Contact page) ── */
.page-contact__forms-integrated {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.form-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.form-panel::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.form-panel__header {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


.form-panel__index {
  position: absolute;
  top: 0.5rem;
  right: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

.form-panel__header-content {
  position: relative;
  z-index: 1;
}

.form-panel__title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--green-dark);
  margin: 0 0 0.35rem;
}

.form-panel__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.01em;
}

.form-panel__body {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: transparent;
}

.form-panel__body .form-group {
  margin-bottom: 1.15rem;
}

.form-panel__body .form-group:last-of-type {
  margin-bottom: 1.5rem;
}

.form-panel__body textarea {
  min-height: 100px;
  resize: vertical;
}

.form-panel__submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .page-contact__forms-integrated {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
