:root {
  --navy-950: #03070c;
  --navy-900: #07111b;
  --navy-800: #0d1a26;
  --navy-700: #122436;
  --cream: #f8efe0;
  --muted: #c9beb0;
  --muted-soft: #8f8578;
  --gold: #d6ad67;
  --gold-light: #f0d28c;
  --gold-dark: #8f642d;
  --line: rgba(214, 173, 103, 0.26);
  --line-soft: rgba(255, 255, 255, 0.09);
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 173, 103, 0.12), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.045), transparent 30%),
    var(--navy-950);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection {
  background: rgba(214, 173, 103, 0.32);
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px max(28px, calc((100vw - 1120px) / 2));
  background: rgba(3, 7, 12, 0.88);
  border-bottom: 1px solid rgba(214, 173, 103, 0.18);
  backdrop-filter: blur(16px);
  overflow: visible;
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  flex-shrink: 0;
  position: relative;
  z-index: 30;
}

.brand-overlap {
  align-self: flex-start;
  margin-top: -6px;
  margin-bottom: -38px;
}

.brand-wordmark {
  transform: translateY(-1px);
}

.brand-tpc {
  font-family: "Playfair Display", serif;
  color: var(--gold-light);
  font-size: clamp(2.1rem, 3.6vw, 3.15rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}
.brand-logo {
  display: block;
  width: 105px;
  height: auto;
  object-fit: contain;
  transform: translateY(2px);
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.52));
  position: relative;
  z-index: 31;
}
.brand-divider {
  width: 1px;
  height: 34px;
  background: var(--gold);
  opacity: 0.58;
}
.brand-name {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.site-nav a { color: var(--cream); opacity: 0.86; transition: color .2s ease, opacity .2s ease; }
.site-nav a:hover { color: var(--gold); opacity: 1; }
.nav-toggle { display: none; background: none; color: var(--cream); border: 1px solid var(--line); font-size: 1.4rem; padding: 6px 10px; }

 .header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.72rem;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.header-cta, .btn-primary {
  background: #c8a24a;
  color: #07111f;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn:hover, .header-cta:hover {
  transform: translateY(-1px);
  background: #d6ad67;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(214,173,103,0.06);
}
.btn-outline {
  border: 1px solid rgba(214, 173, 103, 0.68);
  color: var(--gold-light);
  background: rgba(214, 173, 103, 0.04);
}
.btn-outline:hover {
  background: rgba(214, 173, 103, 0.11);
  border-color: var(--gold-light);
}

.section-dark { background: radial-gradient(circle at top right, rgba(201, 155, 85, 0.10), transparent 35%), var(--navy-950); }
.section-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: 585px;
  display: flex;
  align-items: center;
  padding: 94px max(32px, calc((100vw - 1120px) / 2)) 64px;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: -1px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-950);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border: none;
  background: linear-gradient(180deg, transparent 70%, rgba(3, 7, 12, 0.38) 86%, var(--navy-950) 100%);
  box-shadow: inset 0 -82px 80px rgba(3, 7, 12, 0.52);
  pointer-events: none;
  z-index: 3;
}
.hero-content {
  position: relative;
  max-width: 520px;
  padding-left: 0;
  z-index: 4;
}
.hero-content::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  font-size: .72rem;
  margin: 0 0 10px;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.35rem, 3.2vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  max-width: 620px;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.15rem, 1.2vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.32rem, 0.7vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.events h2 {
  max-width: 780px;
  margin: 0 auto;
}
.hero-tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.08rem, .65vw, 1.35rem);
  line-height: 1.2;
  margin-top: 30px;
  color: var(--cream);
}
.hero-copy {
  color: rgba(248, 239, 224, 0.82);
  max-width: 460px;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 14px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  align-items: center;
}

.mission, .events, .values { padding: 35px 0; }

.mission {
  position: relative;
  padding: 48px 0 76px;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 173, 103, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(3, 7, 12, 0.96), var(--navy-950));
  pointer-events: none;
}

.mission-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.two-column {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.mission-copy {
  max-width: 460px;
}

.mission-copy h2 {
  margin-top: 12px;
}

.mission-copy p:not(.eyebrow) {
  color: rgba(248, 239, 224, 0.76);
  max-width: 430px;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-top: 24px;
}

.text-link { display: inline-flex; gap: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .8rem; margin-top: 18px; }

.mission-image-card {
  position: relative;
  border: 1px solid rgba(214, 173, 103, 0.28);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  padding: 0;
}

.mission-image-card::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 62%;
  height: 34%;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  pointer-events: none;
}

.mission-image-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
}

.feature-card {
  border: 1px solid var(--line);
  padding: 10px;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
}
.photo-placeholder {
  min-height: 390px;
  background-size: cover;
  background-position: center;
  filter: grayscale(.7) saturate(.75) contrast(1.05);
}
.networking-photo { background-image: url("https://images.unsplash.com/photo-1515169067865-5387ec356754?auto=format&fit=crop&w=1200&q=80"); }

.center { text-align: center; }

/* Calendar section ------------------------------------------------------- */
.calendar-section {
  scroll-margin-top: 82px;
  position: relative;
  overflow: hidden;
  padding: 54px 0 50px;
  background:
    radial-gradient(circle at 50% 16%, rgba(18, 36, 54, .7), transparent 43%),
    linear-gradient(180deg, #030a12 0%, var(--navy-950) 100%);
}
@media (max-width: 900px) {
  .calendar-section { scroll-margin-top: 96px; }
}
.calendar-feature-layout { display: grid; grid-template-columns: minmax(240px,.62fr) minmax(0,1.55fr); gap: clamp(30px,4vw,52px); align-items: center; }
.calendar-header { max-width: 350px; margin: 0; text-align: left; }
.calendar-header .eyebrow { margin-bottom: 8px; font-size: .78rem; letter-spacing: .34em; }
.calendar-heading-rule { display: flex; align-items: center; justify-content: flex-start; gap: 11px; width: 160px; margin: 0 0 14px; color: var(--gold); }
.calendar-heading-rule::before, .calendar-heading-rule::after { content: ""; width: 66px; height: 1px; background: var(--gold-dark); }
.calendar-heading-rule span, .calendar-experience-divider span { width: 9px; height: 9px; flex: 0 0 auto; background: var(--gold); transform: rotate(45deg); box-shadow: 0 0 0 3px rgba(214,173,103,.06); }
.calendar-header h2 { max-width: 330px; margin: 0; font-size: clamp(2.15rem,3.3vw,2.85rem); }
.calendar-header > p:last-child { max-width: 340px; margin: 16px 0 0; color: rgba(248,239,224,.8); font-size: .9rem; line-height: 1.6; }

.calendar-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 145px minmax(0,1fr) 105px;
  align-items: center;
  min-height: 245px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(214,173,103,.8);
  border-radius: 10px;
  background: linear-gradient(118deg,rgba(255,255,255,.04),rgba(7,17,27,.78));
  box-shadow: 0 22px 54px rgba(0,0,0,.26);
}
.calendar-date { align-self: stretch; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 16px; border-right: 1px solid rgba(214,173,103,.34); text-align: center; }
.calendar-event-label { margin: 0; color: var(--gold-light); text-transform: uppercase; letter-spacing: .26em; font-size: .68rem; font-weight: 800; }
.calendar-date-rule { width: 76px; height: 1px; margin: 13px 0 14px; background: rgba(214,173,103,.62); }
.calendar-date time { display: flex; flex-direction: column; }
.calendar-month { color: var(--gold); font-family: "Playfair Display",serif; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .08em; }
.calendar-day { margin-top: 3px; color: var(--gold-light); font-family: "Playfair Display",serif; font-size: clamp(4rem,5.5vw,5.1rem); line-height: .82; }
.calendar-event-details { position: relative; z-index: 1; padding: 27px 25px; }
.calendar-event-details h3 { color: var(--cream); font-size: clamp(1.65rem,2.6vw,2.25rem); }
.calendar-event-details h3::before { content: ""; display: block; width: 38px; height: 1px; margin-bottom: 11px; background: var(--gold); opacity: .82; }
.calendar-event-meta { display: grid; gap: 9px; margin-top: 17px; }
.calendar-event-meta p { display: flex; align-items: center; gap: 10px; margin: 0; color: rgba(248,239,224,.9); font-size: .88rem; }
.calendar-event-meta svg { width: 21px; height: 21px; flex: 0 0 auto; fill: none; stroke: var(--gold); stroke-width: 1.7; }
.calendar-event-meta b { margin: 0 8px; color: var(--gold); font-weight: 400; }
.calendar-event-cta { display: inline-flex; align-items: center; justify-content: center; gap: 22px; margin-top: 18px; padding: 12px 22px; border: 1px solid var(--gold); color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-size: .64rem; font-weight: 800; transition: background .2s ease,color .2s ease; }
.calendar-event-cta:hover { background: rgba(214,173,103,.12); color: var(--cream); }
.calendar-celebration { width: 108px; justify-self: start; margin-left: -9px; opacity: .12; fill: none; stroke: var(--cream); stroke-width: 1.5; }
.calendar-celebration .calendar-spark { stroke: var(--gold-light); opacity: .9; }

.calendar-experience-divider { display: flex; align-items: center; gap: 12px; margin: 27px 0 21px; color: var(--gold); }
.calendar-experience-divider::before, .calendar-experience-divider::after { content: ""; height: 1px; flex: 1; background: rgba(214,173,103,.56); }
.calendar-experiences { display: grid; grid-template-columns: repeat(3,1fr); }
.calendar-experiences > article { display: grid; grid-template-columns: 62px 1fr; gap: 11px; align-items: center; padding: 0 20px; border-left: 1px solid rgba(214,173,103,.28); }
.calendar-experiences > article:first-child { padding-left: 0; border-left: 0; }
.calendar-experiences > article:last-child { padding-right: 0; }
.calendar-experience-icon { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(214,173,103,.62); border-radius: 50%; }
.calendar-experience-icon svg { width: 36px; height: 36px; fill: none; stroke: var(--gold); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.calendar-experiences h3 { color: var(--gold-light); font-family: Inter,sans-serif; text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; line-height: 1.45; }
.calendar-experiences p { margin: 7px 0 0; color: rgba(248,239,224,.75); font-size: .8rem; line-height: 1.5; }

.calendar-empty-content { display: none; }
.calendar-coming-soon { margin: 0; color: var(--gold-light); font-family: "Playfair Display",serif; font-size: 1.8rem; line-height: 1.1; text-transform: uppercase; }
.calendar-empty-copy { max-width: 580px; margin: 20px 0 0; color: var(--muted); }
.calendar-section--empty .calendar-scheduled-content { display: none; }
.calendar-section--empty .calendar-empty-content { display: block; }
.calendar-section--empty .calendar-event-cta.calendar-empty-content { display: inline-flex; }
/* End Calendar section --------------------------------------------------- */

.button-row { margin-top: 30px; }

.directory {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  border-top: 1px solid rgba(214, 173, 103, .12);
  background:
    radial-gradient(circle at 92% 6%, rgba(214, 173, 103, .13), transparent 27%),
    linear-gradient(180deg, #07111b, #03070c);
}
.directory::after {
  content: "DIRECTORY";
  position: absolute;
  right: -18px;
  top: 10px;
  color: rgba(248, 239, 224, .025);
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 1;
  pointer-events: none;
}
.directory-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
}
.directory-heading h2 { max-width: 650px; }
.directory-heading-copy p {
  margin: 0;
  color: rgba(248, 239, 224, .72);
  font-size: .94rem;
  line-height: 1.7;
}
.directory-controls { display: flex; gap: 10px; margin-top: 22px; }
.directory-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(214, 173, 103, .4);
  background: rgba(255,255,255,.025);
  color: var(--gold-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.directory-arrow:hover { background: rgba(214,173,103,.12); border-color: var(--gold); transform: translateY(-2px); }
.directory-arrow:focus-visible, .directory-carousel:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.directory-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin-top: 48px;
  padding: 3px 3px 28px;
}
.directory-carousel::-webkit-scrollbar { display: none; }
.directory-card {
  scroll-snap-align: start;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(214, 173, 103, .2);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
  transition: transform .22s ease, border-color .22s ease;
}
.directory-card:hover { transform: translateY(-3px); border-color: rgba(214, 173, 103, .48); }
.placeholder-logo {
  width: 100%;
  height: 142px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  border: 1px solid rgba(214, 173, 103, .14);
  background: rgba(3,7,12,.55);
  color: var(--gold-light);
}
.placeholder-logo span { font-family: "Playfair Display", serif; font-size: 2.6rem; letter-spacing: -.08em; }
.logo-arch span { border: 1px solid var(--gold); border-radius: 50% 50% 0 0; padding: 15px 19px 10px; font-size: 1.35rem; letter-spacing: .08em; }
.logo-morrow span { border-left: 1px solid var(--gold); border-right: 1px solid var(--gold); padding: 0 18px; }
.logo-kindred span { transform: rotate(45deg); border: 1px solid var(--gold); width: 58px; height: 58px; display: grid; place-items: center; }
.logo-kindred span::first-letter { transform: rotate(-45deg); }
.logo-verde span { font-family: Inter, sans-serif; font-weight: 300; }
.logo-oak span { font-size: 1.8rem; letter-spacing: .04em; }
.directory-industry { margin: 0 0 9px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .66rem; font-weight: 800; }
.directory-card h3 { color: var(--cream); }
.directory-card > p:last-child, .directory-card h3 + p { color: var(--muted); font-size: .9rem; }
.directory-join-card { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, rgba(214,173,103,.13), rgba(255,255,255,.018)); }
.directory-plus { color: var(--gold-light); font-family: "Playfair Display", serif; font-size: 3.5rem; line-height: 1; margin-bottom: 25px; }
.directory-join-card .text-link { margin-top: 6px; }
.directory-note { margin: 0; color: rgba(248,239,224,.42); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.directory-view-all { margin-top: 14px; }

.directory-page { background: var(--navy-950); }
.directory-page .site-nav a[aria-current="page"] { color: var(--gold-light); opacity: 1; }
.directory-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 100px 0 78px;
  background: radial-gradient(circle at 78% 35%, rgba(214,173,103,.2), transparent 30%), linear-gradient(120deg,#03070c,#0d1a26);
}
.directory-page-hero::after { content: "TPC"; position: absolute; right: 6%; bottom: -18%; color: rgba(214,173,103,.045); font-family: "Playfair Display",serif; font-size: clamp(12rem,30vw,28rem); line-height: 1; }
.directory-page-hero-content { position: relative; z-index: 1; }
.directory-page-hero h1 { color: var(--cream); font-size: clamp(4rem,8vw,7rem); }
.directory-page-hero h1 span { color: var(--gold-light); }
.directory-page-hero-content > p:last-child { max-width: 570px; margin: 28px 0 0; color: rgba(248,239,224,.76); font-size: 1.05rem; }
.directory-listing-section { padding: 86px 0 96px; background: #f7f2ea; color: #111318; }
.directory-listing-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; }
.directory-listing-heading h2 { color: #111318; }
.directory-listing-heading > p { margin: 0; color: #4d4b47; }
.directory-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; padding-bottom: 24px; border-bottom: 1px solid rgba(143,100,45,.22); }
.directory-filter { min-height: 40px; padding: 0 16px; border: 1px solid rgba(143,100,45,.3); background: transparent; color: #363430; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 800; cursor: pointer; }
.directory-filter:hover, .directory-filter.active { background: #111820; border-color: #111820; color: var(--gold-light); }
.directory-listing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 34px; }
.directory-listing-grid .directory-card { background: #fffdf9; border-color: rgba(143,100,45,.22); box-shadow: 0 18px 45px rgba(30,24,15,.08); }
.directory-listing-grid .directory-card h3 { color: #111318; }
.directory-listing-grid .directory-card h3 + p { min-height: 46px; color: #5b5751; }
.directory-listing-grid .placeholder-logo { background: #111820; }
.directory-location { display: block; margin-top: 22px; padding-top: 15px; border-top: 1px solid rgba(143,100,45,.16); color: #77716a; text-transform: uppercase; letter-spacing: .12em; font-size: .64rem; font-weight: 700; }
.directory-card[hidden] { display: none; }
.directory-page-cta { padding: 44px 0 46px; text-align: center; }
.directory-page-cta .eyebrow { margin-bottom: 7px; }
.directory-page-cta h2 { max-width: 700px; margin: 0 auto; font-size: clamp(1.9rem, 3vw, 2.65rem); }
.directory-page-cta p:not(.eyebrow) { max-width: 620px; margin: 16px auto 20px; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.directory-page-cta .btn { min-height: 42px; padding-right: 21px; padding-left: 21px; }

.membership-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214,173,103,.16), rgba(255,255,255,.025)),
    radial-gradient(circle at 18% 20%, rgba(240,210,140,.12), transparent 28%);
  padding: 54px 0;
}
.membership-content { display: grid; grid-template-columns: auto 1fr 1.2fr auto; gap: 28px; align-items: center; }
.membership-icon {
  color: var(--gold-light);
  font-size: 3.35rem;
  filter: drop-shadow(0 10px 22px rgba(214, 173, 103, 0.22));
}
.membership-content h2 { max-width: 520px; }
.membership-content p { color: var(--muted); }

.community-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(214, 173, 103, .18);
  border-bottom: 1px solid rgba(214, 173, 103, .18);
  background:
    radial-gradient(circle at 8% 18%, rgba(214, 173, 103, .18), transparent 26%),
    radial-gradient(circle at 96% 70%, rgba(255, 255, 255, .045), transparent 26%),
    linear-gradient(135deg, #17150f 0%, #0a1116 48%, #03070c 100%);
  padding: 78px 0 70px;
}
.community-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(214, 173, 103, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 173, 103, .028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
  pointer-events: none;
}
.community-content {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 46px;
}
.community-main {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
}
.community-main h2 {
  max-width: 560px;
  color: var(--cream);
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  line-height: .96;
}
.community-main p {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(248, 239, 224, .78);
  font-size: 1.05rem;
  line-height: 1.72;
}
.community-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  color: var(--gold-light);
  border: 5px solid var(--gold-light);
  border-radius: 50%;
  font-size: 0;
  box-shadow: 0 0 34px rgba(214, 173, 103, .16);
}
.community-mark::after {
  content: "";
  width: 38px;
  height: 38px;
  border: 4px solid var(--gold-light);
  border-radius: 50%;
}
.community-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.community-pillars article {
  min-height: 260px;
  padding: 0 clamp(20px, 2.4vw, 34px);
  text-align: center;
  border-left: 1px solid rgba(248, 239, 224, .18);
}
.community-pillars article:first-child {
  border-left: 0;
}
.community-pillars span {
  display: block;
  min-height: 68px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
  line-height: 1;
}
.community-pillars h3 {
  margin-top: 16px;
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.35;
}
.community-pillars p {
  margin: 22px auto 0;
  max-width: 220px;
  color: rgba(248, 239, 224, .74);
  font-size: .98rem;
  line-height: 1.65;
}
.community-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(214, 173, 103, .16);
}
.community-footer p {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}
.community-footer .btn {
  min-width: 300px;
}

/* Inclusion and community — editorial two-column layout ---------------- */
.community-band::before {
  background:
    radial-gradient(circle at 18% 12%,rgba(214,173,103,.09),transparent 34%),
    linear-gradient(115deg,rgba(255,255,255,.018),transparent 48%);
  mask-image: none;
}
.inclusion-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(440px,1.1fr);
  gap: clamp(52px,7vw,92px);
  align-items: start;
}
.inclusion-intro { padding-top: 12px; }
.inclusion-intro .eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
}
.inclusion-intro h2 {
  max-width: 600px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(2.45rem,4.2vw,3.85rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.inclusion-intro h2 span { color: var(--gold-light); }
.inclusion-intro > p:last-child {
  max-width: 540px;
  margin: 30px 0 0;
  color: rgba(248,239,224,.75);
  font-size: 1rem;
  line-height: 1.75;
}
.inclusion-principles {
  display: grid;
  gap: 14px;
}
.inclusion-card {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 22px;
  align-items: center;
  min-height: 136px;
  padding: 24px 28px;
  border: 1px solid rgba(214,173,103,.2);
  background: linear-gradient(135deg,rgba(255,255,255,.04),rgba(255,255,255,.012));
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.inclusion-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(214,173,103,.42);
  border-radius: 50%;
  color: var(--gold);
}
.inclusion-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.inclusion-card h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Playfair Display",serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.inclusion-card p {
  max-width: 470px;
  margin: 8px 0 0;
  color: rgba(248,239,224,.68);
  font-size: .9rem;
  line-height: 1.58;
}
.inclusion-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 2px;
  padding-top: 32px;
  border-top: 1px solid rgba(214,173,103,.18);
}
.inclusion-footer p {
  max-width: 690px;
  margin: 0;
  color: rgba(248,239,224,.72);
  font-family: "Playfair Display",serif;
  font-size: clamp(1.05rem,1.65vw,1.28rem);
  line-height: 1.5;
}
.inclusion-footer .btn { min-width: 300px; }
@media (max-width: 900px) {
  .inclusion-layout { grid-template-columns: 1fr; gap: 40px; }
  .inclusion-intro h2 { max-width: 680px; }
  .inclusion-intro > p:last-child { max-width: 650px; }
}
@media (max-width: 640px) {
  .community-band { padding: 56px 0 50px; }
  .inclusion-layout { gap: 34px; }
  .inclusion-intro { padding-top: 0; }
  .inclusion-intro h2 { font-size: clamp(2.2rem,10vw,3.15rem); }
  .inclusion-intro > p:last-child { margin-top: 22px; font-size: .94rem; }
  .inclusion-card { grid-template-columns: 46px minmax(0,1fr); gap: 16px; min-height: 0; padding: 21px 18px; }
  .inclusion-icon { width: 44px; height: 44px; }
  .inclusion-icon svg { width: 26px; height: 26px; }
  .inclusion-footer { grid-template-columns: 1fr; gap: 22px; padding-top: 28px; }
  .inclusion-footer .btn { width: 100%; min-width: 0; }
}
/* End inclusion and community ------------------------------------------ */

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.values article {
  border: 1px solid rgba(214, 173, 103, .16);
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.018));
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, border-color .22s ease;
}
.values article:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 173, 103, .38);
}
.values span { color: var(--gold); font-weight: 800; }
.values p { color: var(--muted); }

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 82px;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,7,12,.94), rgba(3,7,12,.66)),
    radial-gradient(circle at 86% 18%, rgba(214, 173, 103, .16), transparent 32%);
  pointer-events: none;
}
.about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}
.about-hero-copy::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.about-hero-card {
  position: relative;
  border: 1px solid rgba(214, 173, 103, .28);
  background: rgba(255,255,255,.025);
  box-shadow: var(--shadow);
}
.about-hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(214, 173, 103, .14);
  z-index: 1;
  pointer-events: none;
}
.about-hero-card::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: 38%;
  height: 42%;
  border-left: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
  pointer-events: none;
}
.about-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.86);
}

.about-story,
.about-expect,
.more-than,
.about-closing {
  padding: 86px 0;
}
.about-story-grid,
.more-than-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(38px, 7vw, 86px);
  align-items: start;
}
.about-kicker h2,
.more-than h2 {
  margin-top: 12px;
}
.about-prose {
  max-width: 720px;
  color: rgba(248, 239, 224, .78);
  font-size: 1.02rem;
  line-height: 1.74;
}
.about-prose p {
  margin: 0 0 22px;
}
.about-prose p:first-child {
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.16;
}

.about-mission-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214,173,103,.17), rgba(255,255,255,.026)),
    radial-gradient(circle at 50% 0%, rgba(240,210,140,.13), transparent 32%),
    var(--navy-900);
  padding: 68px 0;
}
.about-mission-content {
  max-width: 960px;
  text-align: center;
}
.about-mission-content h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 46px;
}
.expect-grid article {
  min-height: 250px;
  border: 1px solid rgba(214, 173, 103, .16);
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
  box-shadow: var(--shadow-soft);
}
.expect-grid span {
  color: var(--gold);
  font-weight: 800;
}
.expect-grid h3 {
  margin-top: 18px;
}
.expect-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.relationship-list {
  display: grid;
  gap: 14px;
}
.relationship-list p {
  position: relative;
  margin: 0;
  padding: 22px 24px 22px 54px;
  border: 1px solid rgba(214, 173, 103, .18);
  background: rgba(255,255,255,.026);
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  line-height: 1.2;
}
.relationship-list p::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.about-closing {
  text-align: center;
}
.about-closing p {
  margin: 0 0 12px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .78rem;
}
.about-closing h2 {
  max-width: 760px;
  margin: 0 auto;
}

.site-footer {
  background: #03060a;
  border-top: 1px solid rgba(214,173,103,.2);
  padding: 28px 0 12px;
  color: var(--muted);
}
.footer-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.25fr 1.1fr .9fr; gap: 0; align-items: start; }
.footer-shell > div { position: relative; padding: 0 clamp(24px,3vw,38px); }
.footer-shell > div:first-child { padding-left: 0; }
.footer-shell > div:last-child { padding-right: 0; }
.footer-shell > div + div { border-left: 1px solid rgba(214,173,103,.12); }
.footer-brand { margin: 0 0 10px; color: var(--gold); font-family: Inter,system-ui,sans-serif; text-transform: uppercase; letter-spacing: .13em; font-size: .86rem; font-weight: 800; }
.site-footer h3 { margin: 0 0 10px; color: var(--gold); font-family: Inter,system-ui,sans-serif; text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 800; }
.footer-shell > div:first-child > p:not(.footer-brand) { max-width: 390px; margin: 0; font-size: .82rem; line-height: 1.55; }
.footer-shell > div:first-child::after { display: none; }
.site-footer a { display: block; margin: 4px 0; color: var(--muted); font-size: .8rem; }
.footer-shell > div:nth-child(2) { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 26px; }
.footer-shell > div:nth-child(2) h3 { grid-column: 1 / -1; }
.social-row { display: flex; gap: 9px; margin-top: 12px; }
.social-row a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 1px solid rgba(214,173,103,.3); border-radius: 0; color: var(--gold); transition: background .2s ease, color .2s ease, transform .2s ease; }
.social-row .social-disabled { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 1px solid rgba(214,173,103,.3); border-radius: 0; color: var(--gold); opacity: .52; cursor: not-allowed; }
.social-row a:hover {
  background: rgba(214, 173, 103, .12);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.social-row svg { width: 15px; height: 15px; fill: currentColor; }
.newsletter { display: flex; margin-top: 16px; }
.newsletter input { flex: 1; min-width: 0; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.2); color: var(--cream); padding: 12px; }
.newsletter button { background: transparent; color: var(--gold-light); border: 1px solid var(--gold); padding: 0 16px; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,.06); margin: 18px auto 0; padding-top: 10px; font-size: .7rem; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }

.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(1.08) contrast(1.01) brightness(1.18);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3,7,12,.82) 0%, rgba(3,7,12,.64) 34%, rgba(3,7,12,.26) 62%, rgba(3,7,12,.08) 100%),
    linear-gradient(0deg, var(--navy-950) 0%, rgba(3,7,12,.42) 19%, transparent 52%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    min-height: 84px;
    position: sticky;
  }
  .site-header {
    padding-left: 28px;
    padding-right: 28px;
  }
  .nav-toggle {
    display: inline-block;
    margin-left: auto;
    position: relative;
    z-index: 40;
  }
  .site-nav, .header-cta { display: none; width: 100%; }
  .site-nav.open { display: grid; gap: 16px; padding: 16px 0; }
  .header-cta.open { display: inline-flex; width: max-content; }
  .two-column, .mission-grid, .membership-content, .values-grid, .footer-shell { grid-template-columns: 1fr; }
  .hero { min-height: 620px; padding: 76px 28px 64px; }
  .hero::after { inset: 14px; }
  h1 { font-size: clamp(3.05rem, 14vw, 4.8rem); }
  h2 { font-size: clamp(2rem, 9vw, 3.15rem); }
  h3 { font-size: clamp(1.2rem, 6vw, 1.5rem); }
  .mission {
    padding: 48px 0 64px;
  }
  .mission-grid {
    gap: 36px;
  }
  .mission-copy {
    max-width: 100%;
  }
  .mission-image-card::after {
    right: -5px;
    bottom: -5px;
  }
  .newsletter { flex-direction: column; gap: 10px; }
  .newsletter button { min-height: 44px; }
  .about-hero {
    padding: 82px 0 68px;
  }
  .about-hero-grid,
  .about-story-grid,
  .more-than-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-card img {
    aspect-ratio: 16 / 10;
  }
  .about-story,
  .about-expect,
  .more-than,
  .about-closing {
    padding: 68px 0;
  }
  .expect-grid {
    grid-template-columns: 1fr;
  }
  .expect-grid article {
    min-height: auto;
  }
  .brand {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    z-index: 35;
  }
  .brand-overlap {
    margin-top: 0;
    margin-bottom: -28px;
  }
  .brand-logo {
    width: 104px;
    transform: translateY(16px);
  }
  .calendar-feature-layout { grid-template-columns: 1fr; gap: 26px; }
  .calendar-header { max-width: 650px; text-align: center; margin: 0 auto; }
  .calendar-heading-rule { justify-content: center; margin-right: auto; margin-left: auto; }
  .calendar-header h2, .calendar-header > p:last-child { max-width: 650px; margin-right: auto; margin-left: auto; }
  .calendar-event-card { grid-template-columns: 165px minmax(0,1fr) 110px; }
  .calendar-event-details { padding: 28px; }
  .calendar-day { font-size: 4.5rem; }
  .calendar-celebration { width: 110px; margin-left: -8px; }
  .calendar-experiences > article { grid-template-columns: 58px 1fr; gap: 10px; padding: 0 16px; }
  .calendar-experience-icon { width: 58px; height: 58px; }
  .calendar-experience-icon svg { width: 34px; height: 34px; }
  .directory-heading { grid-template-columns: 1fr; gap: 24px; }
  .directory-carousel { grid-auto-columns: calc((100% - 24px) / 2); }
  .directory-listing-grid { grid-template-columns: repeat(2,1fr); }
}

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

  .community-main {
    grid-template-columns: 76px 1fr;
  }
}

@media (max-width: 760px) {
  .calendar-section { padding: 44px 0 40px; }
  .calendar-header h2 { font-size: clamp(2rem,9vw,2.55rem); }
  .calendar-header > p:last-child { font-size: .92rem; }
  .calendar-event-card { grid-template-columns: 1fr; margin-top: 0; }
  .calendar-date { padding: 22px 20px 20px; border-right: 0; border-bottom: 1px solid rgba(214,173,103,.34); }
  .calendar-date-rule { margin: 12px 0 14px; }
  .calendar-month { font-size: 1.25rem; }
  .calendar-day { font-size: 4.1rem; }
  .calendar-event-details { padding: 27px 22px 29px; text-align: center; }
  .calendar-event-details h3 { font-size: clamp(1.85rem,9vw,2.5rem); }
  .calendar-event-details h3::before { margin-right: auto; margin-left: auto; }
  .calendar-event-meta { display: inline-grid; text-align: left; }
  .calendar-event-cta { width: 100%; gap: 18px; padding: 14px 20px; }
  .calendar-celebration { display: none; }
  .calendar-experience-divider { margin: 25px 0 19px; }
  .calendar-experiences { grid-template-columns: 1fr; gap: 0; }
  .calendar-experiences > article, .calendar-experiences > article:first-child, .calendar-experiences > article:last-child { grid-template-columns: 54px 1fr; gap: 11px; padding: 17px 0; border-left: 0; border-top: 1px solid rgba(214,173,103,.2); }
  .calendar-experiences > article:first-child { border-top: 0; padding-top: 0; }
  .calendar-experience-icon { width: 54px; height: 54px; }

  .directory { padding: 68px 0 60px; }
  .directory-carousel { grid-auto-columns: 86%; gap: 16px; margin-top: 36px; }
  .directory-card { min-height: 340px; padding: 24px; }
  .placeholder-logo { height: 128px; }
  .directory-page-hero { min-height: 430px; padding: 82px 0 62px; }
  .directory-listing-section { padding: 64px 0 70px; }
  .directory-listing-heading { grid-template-columns: 1fr; gap: 20px; }
  .directory-listing-grid { grid-template-columns: 1fr; }

  .community-band {
    padding: 64px 0 56px;
  }

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

  .community-mark {
    width: 64px;
    height: 64px;
    border-width: 4px;
  }

  .community-mark::after {
    width: 31px;
    height: 31px;
    border-width: 3px;
  }

  .community-pillars {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .community-pillars article {
    min-height: auto;
    padding: 0;
    border-left: 0;
    text-align: left;
  }

  .community-pillars span {
    min-height: auto;
    font-size: 2.8rem;
  }

  .community-pillars p {
    max-width: none;
    margin-left: 0;
  }

  .community-footer .btn {
    width: 100%;
    min-width: 0;
  }
}

.about-page {
  background: #f7f2ea;
  color: #0a0d10;
}

.about-page .section-shell {
  width: min(1140px, calc(100% - 80px));
}

.about-site-header {
  min-height: 74px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(5, 6, 7, .95);
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.about-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.about-brand-mark {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -.09em;
}

.about-brand-divider {
  width: 1px;
  height: 26px;
  background: rgba(214, 173, 103, .58);
}

.about-brand-name {
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 700;
  white-space: nowrap;
}

.about-page .site-nav a {
  position: relative;
  color: rgba(255,255,255,.9);
}

.about-page .site-nav a[aria-current="page"] {
  color: var(--cream);
  opacity: 1;
}

.about-page .site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 1px;
  background: var(--gold);
}

.about-page .header-cta,
.about-page .btn-primary {
  background: linear-gradient(135deg, #a87d42, #d1ab6d);
  color: #fff8ec;
  border: 0;
}

.about-page .btn-outline {
  min-width: 194px;
  color: var(--gold-light);
  border-color: rgba(214, 173, 103, .82);
  background: rgba(0,0,0,.18);
}

.about-page .btn-outline:hover {
  color: #fff7e6;
  background: rgba(214, 173, 103, .12);
}

.about-page .eyebrow {
  color: #b58b55;
  letter-spacing: .24em;
}

.about-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 70px 0 66px;
  isolation: isolate;
}

.about-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, #050607 0%, rgba(5,6,7,.95) 26%, rgba(5,6,7,.58) 58%, rgba(5,6,7,.18) 100%),
    linear-gradient(180deg, rgba(5,6,7,.16), rgba(5,6,7,.06));
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: 0;
  filter: sepia(.18) saturate(1.24) contrast(1.08) brightness(.78);
}

.about-hero-grid {
  display: block;
  z-index: 2;
}

.about-hero-copy {
  max-width: 540px;
}

.about-hero-copy::before {
  display: none;
}

.about-hero .eyebrow::after,
.about-mission-panel .eyebrow::after,
.more-than .eyebrow::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-top: 10px;
  background: #b58b55;
}

.about-hero h1 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(3.3rem, 6vw, 5.35rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.about-hero .hero-copy {
  max-width: 470px;
  margin-top: 26px;
  color: rgba(255,255,255,.86);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-hero .hero-actions {
  margin-top: 28px;
}

.about-mission-panel,
.more-than {
  background:
    radial-gradient(circle at 22% 8%, rgba(181, 139, 85, .08), transparent 28%),
    #f7f2ea;
  color: #101216;
  padding: 62px 0;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1.05fr 1px .95fr;
  gap: clamp(46px, 6vw, 70px);
  align-items: center;
}

.about-mission-grid::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 100%;
  min-height: 180px;
  background: rgba(181, 139, 85, .34);
}

.about-kicker {
  grid-column: 1;
}

.about-kicker h2,
.more-than h2 {
  color: #111318;
  font-size: clamp(2rem, 3.45vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.about-mission-panel .about-prose {
  grid-column: 3;
  max-width: 390px;
  color: #121722;
  font-size: .98rem;
  line-height: 1.65;
}

.about-mission-panel .about-prose p {
  margin-bottom: 18px;
}

.about-mission-panel .about-prose p:first-child {
  color: #121722;
  font-family: Inter, system-ui, sans-serif;
  font-size: .98rem;
  line-height: 1.65;
}

.about-mission-panel .about-prose p:last-child {
  color: #a87d42;
  margin-bottom: 0;
}

.about-vision {
  padding: 66px 0 58px;
  background: linear-gradient(135deg, #050607, #0a0d0f 46%, #050607);
}

.about-vision h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.vision-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 42px;
}

.vision-item {
  min-height: auto;
  padding: 0 28px;
  text-align: center;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.16);
  background: transparent;
  box-shadow: none;
}

.vision-item:first-child {
  border-left: 0;
}

.vision-icon {
  display: block;
  min-height: 40px;
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.vision-item h3 {
  margin-top: 20px;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.4;
}

.vision-item p {
  color: rgba(248, 239, 224, .74);
  font-size: .86rem;
  line-height: 1.65;
}

.more-than {
  padding: 68px 0 72px;
}

.more-than-grid {
  grid-template-columns: .9fr 1px .78fr .96fr;
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
}

.more-than-grid::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 100%;
  min-height: 330px;
  background: rgba(16, 18, 22, .36);
}

.more-than-copy {
  grid-column: 1;
}

.more-than-copy p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: #17202d;
  line-height: 1.72;
}

.more-than .btn-outline {
  color: #111318;
  border-color: rgba(181, 139, 85, .72);
  background: transparent;
}

.principle-list {
  grid-column: 3;
  display: grid;
  gap: 28px;
}

.principle-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
}

.principle-list span {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(181, 139, 85, .1);
  color: #b58b55;
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
}

.principle-list h3 {
  color: #111318;
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .83rem;
  font-weight: 900;
}

.principle-list p {
  margin: 7px 0 0;
  color: #17202d;
  font-size: .92rem;
  line-height: 1.55;
}

.more-than-media {
  position: relative;
  grid-column: 4;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: #0b0d10;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.more-than-media video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: sepia(.16) saturate(1.12) contrast(1.06);
}

.more-than-media span {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(255,255,255,.28);
  font-family: "Playfair Display", serif;
  font-size: 3.3rem;
  letter-spacing: -.09em;
}

.about-final-cta {
  padding: 36px 0 48px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 173, 103, .12), transparent 34%),
    linear-gradient(135deg, #050607, #0b0e11);
}

.about-final-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -.025em;
}

.about-final-cta p {
  margin: 12px auto 24px;
  max-width: 760px;
  color: rgba(248,239,224,.74);
}

 .about-hero .hero-copy strong {
  color: #fff;
  font-weight: 700;
}

.about-values {
  padding: 66px 0 58px;
  background: linear-gradient(135deg, #f7f2ea 0%, #efe7d9 100%);
}

.about-values h2 {
  color: #111318;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.values-card {
  padding: 22px 24px;
  border: 1px solid rgba(181, 139, 85, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 38px rgba(7, 17, 31, .06);
}

.values-card h3 {
  color: #111318;
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.4;
}

.values-card p {
  margin: 10px 0 0;
  color: #17202d;
  font-size: .94rem;
  line-height: 1.65;
}

.about-experience {
  padding: 66px 0 58px;
  background: linear-gradient(135deg, #050607, #0a0d0f 46%, #050607);
}

.about-experience h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  margin-top: 16px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}

.experience-card {
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(214, 173, 103, 0.20);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.experience-icon {
  display: block;
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.experience-card h3 {
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}

.experience-card p {
  color: rgba(248, 239, 224, .74);
  font-size: .86rem;
  line-height: 1.65;
}

.about-community {
  padding: 66px 0 58px;
  background: linear-gradient(180deg, #f7f2ea 0%, #efe7d9 100%);
  color: #101216;
}

.about-community h2 {
  color: #111318;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-top: 16px;
  max-width: 600px;
}

.community-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.community-type {
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(181, 139, 85, .2);
  background: rgba(255, 255, 255, .72);
  border-radius: 12px;
}

.community-icon {
  display: block;
  color: #b58b55;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-bottom: 18px;
}

.community-type p {
  color: #111318;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
}

.about-houston {
  padding: 66px 0 72px;
  background: linear-gradient(135deg, #050607, #0a0d0f 46%, #050607);
}

.houston-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.houston-content h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-top: 16px;
}

.houston-content p {
  margin-top: 18px;
  color: rgba(248, 239, 224, .76);
  line-height: 1.72;
  font-size: .98rem;
}

.houston-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 173, 103, 0.28);
  border-radius: 8px;
  background: #0b0d10;
  aspect-ratio: 16 / 10;
}

.houston-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.45) saturate(.82) contrast(1.05) brightness(.88);
}

.about-founders {
  padding: 66px 0 72px;
  background: linear-gradient(180deg, #f7f2ea 0%, #efe7d9 100%);
  color: #101216;
}

.founders-content {
  max-width: 820px;
}

.founders-content h2 {
  color: #111318;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-top: 16px;
}

.founders-content > p {
  margin-top: 18px;
  color: #17202d;
  line-height: 1.72;
}

.founders-members-container {
  margin-top: 36px;
}

.members-intro {
  color: #111318;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 24px 0;
}

.member-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.member-list li {
  padding: 18px 32px 18px 0;
  border-bottom: 1px solid rgba(16, 18, 22, .16);
  font-weight: 600;
  color: #111318;
  font-size: 1.02rem;
}

.member-list li:last-child {
  border-bottom: 0;
}

.member-list li:nth-child(5),
.member-list li:nth-child(6) {
  border-bottom: 0;
}

.members-outro {
  margin-top: 32px;
  color: #17202d;
  line-height: 1.72;
  font-size: 0.98rem;
}

@media (max-width: 1020px) {
  .about-page .section-shell {
    width: min(720px, calc(100% - 40px));
  }

  .about-mission-grid,
  .more-than-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-grid::before,
  .more-than-grid::before {
    display: none;
  }

  .about-kicker,
  .about-mission-panel .about-prose,
  .more-than-copy,
  .principle-list,
  .more-than-media {
    grid-column: auto;
  }

  .expect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .expect-grid article:nth-child(odd) {
    border-left: 0;
  }

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

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

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

  .community-types {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .member-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-site-header {
    justify-content: space-between;
    min-height: 76px;
  }

  .about-brand {
    position: static;
    transform: none;
  }

  .about-brand-mark {
    font-size: 2rem;
  }

  .about-brand-name {
    display: none;
  }

  .about-page .site-nav.open {
    text-align: center;
  }

  .about-page .site-nav a[aria-current="page"]::after {
    bottom: -5px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 560px;
    padding: 74px 0 60px;
  }

  .about-hero::before {
    background:
      linear-gradient(90deg, rgba(5,6,7,.96), rgba(5,6,7,.82)),
      linear-gradient(180deg, rgba(5,6,7,.18), rgba(5,6,7,.24));
  }

  .about-hero-bg {
    object-position: 63% center;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .about-mission-panel,
  .about-vision,
  .more-than {
    padding: 52px 0;
  }

  .about-experience {
    padding: 52px 0;
  }

  .about-community,
  .about-houston {
    padding: 52px 0;
  }

  .community-types {
    grid-template-columns: 1fr;
  }

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

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expect-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-values,
  .about-experience,
  .about-founders {
    padding: 52px 0;
  }

  .expect-grid article {
    border-left: 0;
    padding: 0;
  }

  .vision-items {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vision-item {
    border-left: 0;
    padding: 0;
  }

  .principle-list article {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .principle-list span {
    width: 58px;
    height: 58px;
    font-size: 1.65rem;
  }

  .more-than-media,
  .more-than-media video {
    min-height: 280px;
  }
}

.about-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 173, 103, 0.12), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.045), transparent 30%),
    var(--navy-950);
  color: var(--cream);
}

.about-site-header {
  min-height: 60px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(3, 7, 12, 0.88);
  border-bottom: 1px solid rgba(214, 173, 103, 0.18);
}

.about-page .site-nav a {
  color: var(--cream);
}

.about-page .site-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.about-page .site-nav a[aria-current="page"]::after {
  bottom: -14px;
  background: var(--gold);
}

.about-page .header-cta,
.about-page .btn-primary {
  background: #c8a24a;
  color: #07111f;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.about-page .btn-outline {
  color: var(--gold-light);
  border-color: rgba(214, 173, 103, 0.68);
  background: rgba(214, 173, 103, 0.04);
}

.about-page .btn-outline:hover {
  color: var(--gold-light);
  background: rgba(214, 173, 103, 0.11);
  border-color: var(--gold-light);
}

.about-page .eyebrow {
  color: var(--gold-light);
}

.about-hero {
  min-height: 585px;
  padding: 94px 0 76px;
}

.about-hero::before {
  background:
    linear-gradient(90deg, rgba(3,7,12,.9) 0%, rgba(3,7,12,.74) 34%, rgba(3,7,12,.42) 64%, rgba(3,7,12,.18) 100%),
    linear-gradient(0deg, var(--navy-950) 0%, rgba(3,7,12,.4) 20%, transparent 54%);
}

.about-hero-bg {
  filter: grayscale(1) contrast(1.08) brightness(.84);
}

.about-hero h1,
.about-expect h2,
.about-final-cta h2 {
  color: var(--cream);
}

.about-hero .hero-copy,
.about-final-cta p {
  color: rgba(248, 239, 224, 0.82);
}

.about-hero .eyebrow::after,
.about-mission-panel .eyebrow::after,
.more-than .eyebrow::after {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.about-mission-panel,
.more-than {
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 173, 103, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(3, 7, 12, 0.96), var(--navy-950));
  color: var(--cream);
}

.about-mission-grid::before,
.more-than-grid::before {
  background: rgba(214, 173, 103, 0.26);
}

.about-kicker h2,
.more-than h2 {
  color: var(--cream);
}

.about-mission-panel .about-prose,
.about-mission-panel .about-prose p:first-child,
.more-than-copy p:not(.eyebrow),
.principle-list p {
  color: rgba(248, 239, 224, 0.76);
}

.about-mission-panel .about-prose p:last-child,
.principle-list h3 {
  color: var(--gold-light);
}

.about-expect,
.about-final-cta {
  background:
    radial-gradient(circle at top right, rgba(201, 155, 85, 0.10), transparent 35%),
    var(--navy-950);
}

.expect-grid article {
  border-left-color: rgba(214, 173, 103, 0.20);
}

.expect-grid span {
  color: var(--gold);
}

.expect-grid h3 {
  color: var(--cream);
}

.expect-grid p {
  color: var(--muted);
}

.vision-items {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 42px;
}

.vision-item {
  border-left-color: rgba(214, 173, 103, 0.20);
}

.vision-icon {
  color: var(--gold);
}

.vision-item h3 {
  color: var(--cream);
}

.vision-item p {
  color: var(--muted);
}

.more-than .btn-outline {
  color: var(--gold-light);
  border-color: rgba(214, 173, 103, 0.68);
  background: rgba(214, 173, 103, 0.04);
}

.principle-list span {
  background: rgba(214, 173, 103, 0.10);
  color: var(--gold);
}

.more-than-media {
  border: 1px solid rgba(214, 173, 103, 0.28);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.more-than-media video {
  filter: grayscale(.45) saturate(.82) contrast(1.05) brightness(.88);
}

.more-than-media span {
  color: rgba(240, 210, 140, .22);
}

@media (max-width: 900px) {
  .about-site-header {
    min-height: 84px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .about-page .site-nav a[aria-current="page"]::after {
    bottom: -5px;
  }
}

.about-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(214, 173, 103, 0.10), transparent 30%),
    #f7f2ea;
  color: #101216;
}

.about-page .eyebrow {
  color: var(--gold);
}

.about-hero .eyebrow,
.about-expect .eyebrow,
.about-final-cta .eyebrow {
  color: var(--gold-light);
}

.about-hero .eyebrow::after,
.about-mission-panel .eyebrow::after,
.more-than .eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-mission-panel,
.more-than {
  background:
    radial-gradient(circle at 18% 10%, rgba(214, 173, 103, 0.09), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f7f2ea 52%, #efe7d9 100%);
  color: #101216;
}

.about-mission-grid::before,
.more-than-grid::before {
  background: rgba(214, 173, 103, 0.34);
}

.about-kicker h2,
.more-than h2 {
  color: #111318;
}

.about-mission-panel .about-prose,
.about-mission-panel .about-prose p:first-child,
.more-than-copy p:not(.eyebrow),
.principle-list p {
  color: #17202d;
}

.about-mission-panel .about-prose p:last-child,
.principle-list h3 {
  color: var(--gold-dark);
}

.more-than .btn-outline {
  color: #111318;
  border-color: rgba(214, 173, 103, 0.76);
  background: rgba(214, 173, 103, 0.02);
}

.more-than .btn-outline:hover {
  color: #07111f;
  background: rgba(214, 173, 103, 0.14);
}

.principle-list span {
  background: rgba(214, 173, 103, 0.12);
  color: var(--gold-dark);
}

.more-than-media {
  border-color: rgba(214, 173, 103, 0.30);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.18);
}

/* About page — editorial layout */
.about-page main { overflow: hidden; }
.about-page .section-shell { width: min(1180px, calc(100% - 64px)); }
.about-page h2 { font-weight: 500; }
.about-page .eyebrow { margin: 0; font-size: .72rem; font-weight: 800; line-height: 1.4; }
.about-page .section-heading h2 { margin: 8px 0 0; }
.about-page .centered { text-align: center; }

.about-page .about-hero { min-height: 510px; padding: 70px 0; }
.about-page .about-hero::before {
  background: linear-gradient(90deg, #050708 0%, rgba(5,7,8,.96) 29%, rgba(5,7,8,.61) 53%, rgba(5,7,8,.08) 82%);
}
.about-page .about-hero-bg { filter: sepia(.28) saturate(1.2) contrast(1.08) brightness(.72); object-position: 66% 43%; }
.about-page .about-hero-copy { max-width: 490px; }
.about-page .about-hero .eyebrow::after { display: none; }
.about-page .about-hero h1 { margin: 22px 0 0; font-size: clamp(3.35rem, 5.8vw, 5.4rem); line-height: .99; }
.about-page .about-hero h1 span { display: block; }
.about-page .about-hero h1 .gold-word { color: #d2a457; }
.about-page .about-hero .hero-copy { max-width: 430px; margin-top: 35px; padding-top: 23px; border-top: 2px solid #c99643; }

.about-page .about-purpose { padding: 58px 0; }
.about-page .about-mission-grid { grid-template-columns: .9fr 1px 1.15fr; gap: clamp(48px, 6vw, 82px); }
.about-page .about-purpose .eyebrow::after { display: none; }
.about-page .icon-label { display: flex; align-items: center; gap: 18px; }
.about-page .icon-label span { font-size: 1.8rem; font-weight: 400; }
.about-page .about-purpose h2 { margin: 26px 0 0; font-size: clamp(2.2rem, 3.6vw, 3.4rem); }
.about-page .about-purpose .about-prose { max-width: 510px; }
.about-page .about-purpose .about-prose p,
.about-page .about-purpose .about-prose p:first-child,
.about-page .about-purpose .about-prose p:last-child { margin: 0 0 19px; color: #171a1f; font-size: .94rem; line-height: 1.75; }

.about-page .about-mission-band { padding: 44px 0; background: #070b0e; }
.mission-band-grid { display: grid; grid-template-columns: 1.12fr 1px 1fr; gap: 56px; align-items: center; }
.mission-band-grid::before { content: ""; grid-column: 2; grid-row: 1; width: 1px; min-height: 150px; background: rgba(214,173,103,.52); }
.mission-band-grid > div { grid-column: 1; }
.mission-band-grid > p { grid-column: 3; margin: 0; color: rgba(255,255,255,.76); font-size: .9rem; line-height: 1.75; }
.mission-band-grid h2 { margin: 22px 0 0 58px; max-width: 510px; color: #fff; font-size: clamp(1.9rem, 3vw, 2.85rem); line-height: 1.16; }

.about-beliefs { padding: 52px 0 60px; color: #111318; background: linear-gradient(135deg,#fffdf9,#f4ede3); }
.about-beliefs h2 { color: #111318; font-size: clamp(2rem,3vw,3rem); }
.about-beliefs .vision-items { margin-top: 42px; }
.about-beliefs .vision-item { padding: 0 25px; border-left-color: rgba(143,100,45,.35); }
.about-beliefs .vision-icon { color: #ad7c39; font-size: 2.75rem; }
.about-beliefs .vision-item h3 { color: #111318; }
.about-beliefs .vision-item p { color: #25292f; }

.about-page .about-experience { padding: 52px 0 58px; background: radial-gradient(circle at 50% 0,rgba(214,173,103,.08),transparent 35%),#060a0d; }
.about-page .dark-heading h2 { color: #fff; font-size: clamp(2rem,3vw,3rem); }
.about-page .experience-grid { grid-template-columns: repeat(6,1fr); gap: 12px; margin-top: 34px; }
.about-page .experience-card { min-height: 285px; padding: 28px 18px; border-radius: 4px; background: rgba(255,255,255,.018); }
.about-page .experience-card h3 { min-height: 44px; }
.about-page .experience-icon { font-size: 2.75rem; }

.about-community-houston { padding: 58px 0 62px; color: #111318; background: linear-gradient(135deg,#fffdf9,#f3ece2); }
.community-houston-grid { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 62px; }
.community-houston-grid::before { content: ""; grid-column: 2; grid-row: 1; width: 1px; background: rgba(143,100,45,.34); }
.community-column { grid-column: 1; }
.houston-column { grid-column: 3; }
.about-community-houston h2 { margin: 12px 0 0; color: #111318; font-size: clamp(2rem,3vw,2.85rem); line-height: 1.14; }
.about-community-houston .community-types { grid-template-columns: repeat(3,1fr); gap: 28px 14px; margin-top: 38px; }
.about-community-houston .community-type { padding: 0; border: 0; border-radius: 0; background: transparent; }
.about-community-houston .community-icon { margin-bottom: 10px; color: #ad7c39; font-size: 2.25rem; }
.about-community-houston .community-type p { font-size: .72rem; letter-spacing: 0; text-transform: none; }
.houston-column > p:not(.eyebrow) { color: #272b31; font-size: .93rem; line-height: 1.7; }
.about-community-houston .houston-image { margin-top: 24px; aspect-ratio: 16/6.8; border: 0; }
.about-community-houston .houston-image img { filter: sepia(.2) saturate(1.05) contrast(1.05) brightness(.67); }
.about-community-houston .houston-image span { position: absolute; inset: auto 18px 12px auto; color: rgba(255,255,255,.75); font-size: .65rem; font-weight: 800; letter-spacing: .28em; }

.about-page .about-final-cta { position: relative; padding: 36px 0; text-align: left; overflow: hidden; background: #05090c; }
.final-cta-grid { display: grid; grid-template-columns: 64px 1fr 260px; gap: 28px; align-items: center; }
.final-cta-grid .cta-ring { color: #d6ad67; font-size: 3.2rem; }
.final-cta-grid h2 { max-width: 800px; margin: 10px 0 20px; font-size: clamp(1.55rem,2.35vw,2.25rem); line-height: 1.18; }
.final-cta-grid .btn { min-height: 40px; padding: 0 20px; }
.final-cta-grid img { position: absolute; right: -55px; bottom: -145px; width: 340px; opacity: .3; filter: sepia(1) saturate(.8); }

@media (max-width: 1020px) {
  .about-page .experience-grid { grid-template-columns: repeat(3,1fr); }
  .community-houston-grid { gap: 38px; }
  .about-beliefs .vision-items { grid-template-columns: repeat(2,1fr); gap: 34px 0; }
  .about-beliefs .vision-item:nth-child(odd) { border-left: 0; }
  .final-cta-grid { grid-template-columns: 54px 1fr; }
}

@media (max-width: 760px) {
  .about-page .section-shell { width: min(100% - 36px, 620px); }
  .about-page .about-hero { min-height: 560px; }
  .about-page .about-hero::before { background: linear-gradient(90deg,rgba(5,7,8,.97),rgba(5,7,8,.78)); }
  .about-page .about-mission-grid,
  .mission-band-grid,
  .community-houston-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
  .about-page .about-mission-grid::before,
  .mission-band-grid::before,
  .community-houston-grid::before { display: none; }
  .about-page .about-kicker,
  .about-page .about-purpose .about-prose,
  .mission-band-grid > div,
  .mission-band-grid > p,
  .community-column,
  .houston-column { grid-column: 1; }
  .mission-band-grid h2 { margin-left: 0; }
  .about-beliefs .vision-items { grid-template-columns: 1fr; }
  .about-beliefs .vision-item { border-left: 0; padding: 0; }
  .about-page .experience-grid { grid-template-columns: 1fr 1fr; }
  .about-page .experience-card { min-height: 250px; }
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta-grid .cta-ring { display: none; }
  .final-cta-grid img { opacity: .15; }
}

@media (max-width: 480px) {
  .about-page .about-hero h1 { font-size: clamp(3rem,15vw,4rem); }
  .about-page .experience-grid { grid-template-columns: 1fr; }
  .about-page .experience-card { min-height: 0; }
  .about-community-houston .community-types { grid-template-columns: repeat(2,1fr); }
}

/* Business Directory page ----------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.directory-page { background: #05090c; color: var(--cream); }
.directory-page .section-shell { width: min(1180px,calc(100% - 44px)); }
.directory-page .site-header { background: rgba(3,6,9,.96); }
.directory-page .site-nav a[aria-current="page"] { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 8px; }

.directory-page-hero { position: relative; min-height: 455px; display: flex; align-items: center; overflow: hidden; background: #05090c; border-bottom: 1px solid rgba(214,173,103,.28); }
.directory-hero-image { position: absolute; inset: 0 0 0 50%; width: 50%; height: 100%; object-fit: cover; object-position: center; filter: sepia(.18) saturate(.8) contrast(1.08) brightness(.64); }
.directory-page-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,#05090c 0%,#05090c 42%,rgba(5,9,12,.88) 53%,rgba(5,9,12,.08) 78%); }
.directory-page-hero::after { display: none; }
.directory-page-hero-content { position: relative; z-index: 2; padding: 58px 0; }
.directory-page-hero h1 { max-width: 600px; color: var(--cream); font-size: clamp(4rem,7vw,6.4rem); line-height: .9; text-transform: uppercase; }
.directory-page-hero h1 span { color: var(--cream); }
.directory-page-hero h1 span:last-child { color: var(--gold); }
.directory-hero-rule { width: 42px; height: 1px; margin: 22px 0 18px; background: var(--gold); }
.directory-page-hero-content > p:last-of-type { max-width: 500px; margin: 0; color: rgba(248,239,224,.84); font-size: .98rem; line-height: 1.55; }
.directory-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 25px; }
.directory-hero-actions .btn { min-height: 44px; }

.directory-membership ul { list-style: none; margin: 0; padding: 0; color: rgba(248,239,224,.78); font-size: .72rem; line-height: 1.8; }
.directory-membership li::before { content: "✓"; margin-right: 9px; color: var(--gold); }

.founding-partners, .directory-listing-section { padding: 32px 0 14px; background: radial-gradient(circle at 50% 0,rgba(214,173,103,.05),transparent 28%),#05090c; color: var(--cream); }
.directory-section-title { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; text-align: center; }
.directory-section-title > span { color: var(--gold); }
.directory-section-title h2 { color: var(--gold); font-family: "Playfair Display",serif; text-transform: uppercase; letter-spacing: .13em; font-size: 1.25rem; font-weight: 500; }
.directory-placeholder-notice { max-width: 720px; margin: -4px auto 18px; padding: 10px 16px; border: 1px solid rgba(214,173,103,.36); background: rgba(214,173,103,.06); color: rgba(246,239,226,.78); text-align: center; font-size: .74rem; line-height: 1.55; }
.directory-placeholder-notice strong { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; }
.founding-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.founding-card { min-height: 180px; display: grid; justify-items: center; align-content: center; padding: 18px 12px 12px; color: #111318; text-align: center; border: 1px solid rgba(214,173,103,.72); background: linear-gradient(145deg,#fff,#e9e7e2); transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.founding-card:hover, .founding-card:focus-visible { transform: translateY(-4px); border-color: var(--gold-light); box-shadow: 0 14px 32px rgba(0,0,0,.3); outline: none; }
.partner-mark { font-family: "Playfair Display",serif; font-size: 3.2rem; line-height: .85; }
.partner-mark-tree { color: #344336; }
.founding-grid h3 { margin-top: 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.founding-grid p { margin: 5px 0 10px; text-transform: uppercase; letter-spacing: .1em; font-size: .55rem; }
.founding-card > span { padding: 5px 12px; background: #080b0d; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-size: .52rem; }

.directory-listing-section { padding-top: 24px; padding-bottom: 28px; }
.directory-tools { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 9px; border: 1px solid rgba(214,173,103,.35); }
.directory-search { display: flex; align-items: center; gap: 9px; min-height: 40px; padding: 0 12px; border: 1px solid rgba(214,173,103,.3); color: var(--cream); }
.directory-search > span:first-child { font-size: 1.25rem; }
.directory-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--cream); font: inherit; font-size: .72rem; }
.directory-search input::placeholder { color: rgba(248,239,224,.5); }
.directory-page .directory-filters { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; margin: 0; padding: 0; border: 0; }
.directory-page .directory-filter { min-height: 40px; padding: 0 8px; border-color: rgba(214,173,103,.45); color: var(--cream); font-size: .57rem; }
.directory-page .directory-filter:hover, .directory-page .directory-filter.active { background: var(--gold); border-color: var(--gold); color: #07111f; }
.directory-page .directory-listing-grid { grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 10px; }
.directory-page .directory-listing-grid .directory-card { min-height: 250px; display: flex; flex-direction: column; align-items: center; padding: 18px 14px 12px; background: linear-gradient(145deg,#fff,#e8e6e1); border-color: rgba(255,255,255,.32); color: #111318; text-align: center; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.directory-page .directory-listing-grid .directory-card[hidden] { display: none; }
.directory-early-card { position: relative; border-color: var(--gold)!important; }
.directory-early-card::before { content: "Sample"; position: absolute; top: 0; left: 0; padding: 4px 8px; background: var(--gold); color: #07111f; text-transform: uppercase; letter-spacing: .08em; font-size: .48rem; font-weight: 800; }
.directory-early-card { scroll-margin-top: 100px; }
.member-mark { min-height: 62px; display: grid; place-items: center; color: #101318; font-family: "Playfair Display",serif; font-size: 3rem; line-height: 1; }
.member-mark-gold { color: var(--gold-dark); }
.member-mark-blue { color: #1b3455; }
.directory-page .directory-card h3 { margin-top: 8px; color: #111318; text-transform: uppercase; letter-spacing: .05em; font-size: .9rem; }
.directory-page .directory-card .directory-industry { margin: 5px 0 10px; color: #34363a; letter-spacing: .08em; font-size: .52rem; }
.member-location { margin: 0; color: #4e5054; font-size: .63rem; }
.member-location::before { content: "⌖"; margin-right: 5px; }
.directory-page .directory-location { margin-top: 6px; padding: 0; border: 0; color: #4e5054; text-transform: none; letter-spacing: 0; font-size: .59rem; }
.directory-page .directory-card > a:not(.btn) { width: 100%; margin-top: auto; padding: 8px; border: 1px solid rgba(143,100,45,.5); color: #111318; text-transform: uppercase; letter-spacing: .08em; font-size: .56rem; font-weight: 800; }
.directory-open-card { justify-content: center; border: 1px dashed var(--gold)!important; background: linear-gradient(145deg,#121516,#080b0d)!important; color: var(--cream)!important; }
.directory-open-card .member-mark { width: 58px; min-height: 58px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.directory-open-card h3 { margin: 20px 0!important; color: var(--cream)!important; line-height: 1.35; }
.directory-open-card .btn { width: 100%; min-height: 38px; margin-top: auto; padding: 0 8px; font-size: .55rem; }
.directory-sample-note { margin: 12px 0 0; color: rgba(248,239,224,.35); text-align: center; text-transform: uppercase; letter-spacing: .14em; font-size: .55rem; }

.directory-membership { padding: 18px 0 24px; background: #05090c; }
.directory-membership-grid { display: grid; grid-template-columns: 1.55fr .85fr; gap: 28px; align-items: center; padding-top: 20px; padding-bottom: 20px; border: 1px solid rgba(214,173,103,.45); }
.directory-membership h2 { max-width: 610px; color: var(--cream); font-family: Inter,sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.5; letter-spacing: 0; }
.directory-membership-actions { display: flex; gap: 12px; margin-top: 18px; }
.directory-membership-actions .btn { min-height: 40px; }
.directory-membership aside { padding: 18px 24px; border: 1px solid rgba(214,173,103,.4); background: rgba(255,255,255,.035); }
.directory-membership aside > p { margin: 0; text-transform: uppercase; letter-spacing: .08em; font-size: .65rem; }
.directory-membership aside strong { display: block; margin: 9px 0 12px; color: var(--cream); font-family: "Playfair Display",serif; font-size: 2rem; font-weight: 500; }
.directory-membership aside strong span { margin-left: 4px; font-family: Inter,sans-serif; font-size: .6rem; text-transform: uppercase; }

@media (max-width: 1000px) {
  .founding-grid, .directory-page .directory-listing-grid { grid-template-columns: repeat(3,1fr); }
  .directory-tools { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .directory-page .section-shell { width: min(100% - 32px,620px); }
  .directory-page-hero { min-height: 520px; align-items: end; }
  .directory-hero-image { inset: 0; width: 100%; }
  .directory-page-hero::before { background: linear-gradient(180deg,rgba(5,9,12,.34),#05090c 76%); }
  .directory-page-hero-content { padding: 80px 0 38px; }
  .directory-page-hero h1 { font-size: clamp(3.5rem,17vw,5rem); }
  .directory-hero-actions { display: grid; }
  .founding-grid, .directory-page .directory-listing-grid { grid-template-columns: repeat(2,1fr); }
  .directory-page .directory-filters { display: flex; overflow-x: auto; padding-bottom: 4px; }
  .directory-page .directory-filter { flex: 0 0 auto; padding: 0 14px; }
  .directory-membership-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .directory-page .directory-listing-grid { grid-template-columns: 1fr; }
  .directory-membership-actions { display: grid; }
}
/* End Business Directory page ------------------------------------------- */

/* Contact page ----------------------------------------------------------- */
.contact-page { background: #050b12; color: var(--cream); }
.contact-page .section-shell { width: min(1120px,calc(100% - 40px)); }
.contact-page .site-header { background: rgba(3,8,14,.95); }
.contact-page .site-nav a[aria-current="page"] { color: var(--gold); opacity: 1; border-bottom: 1px solid var(--gold); padding-bottom: 8px; }
.contact-hero { position: relative; min-height: 280px; display: flex; align-items: center; overflow: hidden; isolation: isolate; border-bottom: 1px solid rgba(214,173,103,.42); }
.contact-hero-video { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; filter: sepia(.38) saturate(.72) contrast(1.08) brightness(.55); }
.contact-hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg,rgba(3,7,12,.38),rgba(3,7,12,.66)),linear-gradient(90deg,rgba(3,7,12,.42),transparent,rgba(3,7,12,.32)); }
.contact-hero-content { padding: 48px 0 38px; text-align: center; }
.contact-hero h1 { max-width: none; color: var(--cream); text-transform: uppercase; letter-spacing: .01em; font-size: clamp(3.5rem,7vw,5.6rem); }
.contact-title-rule { display: flex; align-items: center; gap: 12px; width: min(420px,70%); margin: 20px auto; }
.contact-title-rule::before,.contact-title-rule::after { content: ""; flex: 1; height: 1px; background: rgba(214,173,103,.62); }
.contact-title-rule span { width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }
.contact-hero-content > p { max-width: 680px; margin: 0 auto; color: rgba(248,239,224,.9); font-family: "Playfair Display",serif; font-size: 1.15rem; line-height: 1.55; }
.contact-main-section { padding: 28px 0 34px; background: radial-gradient(circle at 88% 12%,rgba(20,44,75,.26),transparent 34%),linear-gradient(135deg,#07111b,#03070c); }
.contact-layout { display: grid; grid-template-columns: minmax(0,2.15fr) minmax(300px,1fr); gap: 18px; align-items: stretch; }
.contact-form-panel,.contact-info-panel { border: 1px solid rgba(214,173,103,.42); border-radius: 6px; background: rgba(7,17,27,.62); box-shadow: 0 22px 60px rgba(0,0,0,.2); }
.contact-form-panel { padding: 28px 30px 22px; }
.contact-panel-heading .eyebrow { font-family: "Playfair Display",serif; font-size: 1.2rem; font-weight: 500; letter-spacing: .08em; }
.contact-panel-heading > span { display: block; width: 68px; height: 1px; margin: 8px 0 18px; background: var(--gold); }
.contact-form { display: grid; gap: 15px; }
.contact-honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 6px; color: rgba(248,239,224,.9); text-transform: uppercase; letter-spacing: .08em; font-size: .65rem; font-weight: 600; }
.contact-label-text { display: inline-block; color: rgba(248,239,224,.9); }
.contact-label-text b { margin-left: 3px; color: var(--gold); font-weight: 700; }
.contact-form input,.contact-form select,.contact-form textarea { width: 100%; border: 1px solid rgba(214,173,103,.34); border-radius: 3px; outline: 0; background: linear-gradient(135deg,rgba(255,255,255,.035),rgba(18,36,54,.4)); color: var(--cream); font: inherit; font-size: .78rem; text-transform: none; letter-spacing: 0; transition: border-color .2s ease,box-shadow .2s ease; }
.contact-form input,.contact-form select { min-height: 43px; padding: 0 13px; }
.contact-form textarea { resize: vertical; min-height: 100px; padding: 12px 13px; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(214,173,103,.1); }
.contact-form input::placeholder,.contact-form textarea::placeholder { color: rgba(248,239,224,.48); }
.contact-submit { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 30px; border: 0; background: linear-gradient(90deg,#c69b4c,#e0bd72,#c69b4c); color: #07111f; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; cursor: pointer; }
.contact-submit:hover { filter: brightness(1.08); }
.contact-submit:disabled { cursor: wait; opacity: .68; }
.contact-submit.is-loading { filter: saturate(.65); }
.contact-form-status { min-height: 0; margin: 0 0 10px; color: rgba(248,239,224,.72); text-align: center; font-size: .72rem; }
.contact-form-status:empty { display: none; }
.contact-form-status.is-success { color: var(--gold-light); }
.contact-form-status.is-error { color: #e6a8a0; }
.contact-field-error { display: block; min-height: 0; color: #e6a8a0!important; text-transform: none; letter-spacing: 0; font-size: .65rem; }
.contact-field-error:empty { display: none; }
.contact-privacy { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 3px 0 0; color: rgba(248,239,224,.6); font-size: .7rem; }
.contact-privacy svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
.contact-info-panel { padding: 16px 22px; }
.contact-info-panel > article { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(214,173,103,.24); }
.contact-info-icon { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(214,173,103,.36); border-radius: 50%; }
.contact-info-icon svg { width: 25px; height: 25px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.contact-info-panel h2 { color: var(--gold-light); font-family: Inter,sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.contact-info-panel p,.contact-info-panel a,.contact-info-panel em { color: rgba(248,239,224,.84); font-size: .78rem; line-height: 1.55; }
.contact-info-panel p { margin: 8px 0 0; }
.contact-info-panel a { display: inline-block; margin-top: 8px; }
.contact-info-panel em { display: block; margin-top: 4px; color: rgba(248,239,224,.62); }
.contact-help-box { margin-top: 18px; padding: 20px; border: 1px solid rgba(214,173,103,.36); text-align: center; }
.contact-help-box p { margin: 10px auto; }
.contact-help-box a { color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 800; }

@media (max-width: 850px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .contact-info-panel > article { grid-template-columns: 1fr; align-content: start; border-bottom: 0; text-align: center; }
  .contact-info-icon { margin: 0 auto; }
  .contact-help-box { grid-column: 1/-1; }
}

@media (max-width: 600px) {
  .contact-page .section-shell { width: min(100% - 30px,560px); }
  .contact-hero { min-height: 330px; }
  .contact-hero h1 { font-size: clamp(3rem,16vw,4.2rem); }
  .contact-hero-content > p { font-size: 1rem; }
  .contact-form-panel { padding: 24px 18px 20px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-info-panel { grid-template-columns: 1fr; }
  .contact-info-panel > article { grid-template-columns: 54px 1fr; text-align: left; border-bottom: 1px solid rgba(214,173,103,.24); }
  .contact-help-box { grid-column: auto; }
  .contact-privacy { align-items: flex-start; text-align: left; }
}
/* End Contact page ------------------------------------------------------- */

/* Shared active navigation state ---------------------------------------- */
.site-nav a[aria-current="page"] {
  position: relative;
  padding-bottom: 0!important;
  border-bottom: 0!important;
  color: var(--gold)!important;
  opacity: 1;
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  display: block;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 900px) {
  .site-nav a[aria-current="page"]::after { display: none; }
}
/* End shared active navigation state ------------------------------------ */

/* About page — shared site theme alignment ------------------------------- */
.about-page {
  background: var(--navy-950);
  color: var(--cream);
}
.about-page .section-shell {
  width: min(1120px,calc(100% - 40px));
}
.about-page .header-cta {
  border: 1px solid rgba(255,255,255,.16);
  background: #c8a24a;
  color: #07111f;
}
.about-page .header-cta:hover {
  background: var(--gold);
  color: #07111f;
}
.about-page .eyebrow { color: var(--gold-light); }

.about-page .about-purpose {
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 8%,rgba(214,173,103,.09),transparent 30%),
    linear-gradient(135deg,var(--navy-900),var(--navy-950));
  border-bottom: 1px solid rgba(214,173,103,.16);
}
.about-page .about-purpose h2 { color: var(--cream); }
.about-page .about-mission-grid::before { background: rgba(214,173,103,.34); }
.about-page .about-purpose .about-prose p,
.about-page .about-purpose .about-prose p:first-child,
.about-page .about-purpose .about-prose p:last-child {
  color: rgba(248,239,224,.76);
}
.about-page .about-purpose .about-prose p:last-child { color: var(--gold-light); }

.about-page .about-mission-band {
  border-top: 1px solid rgba(214,173,103,.18);
  border-bottom: 1px solid rgba(214,173,103,.18);
  background:
    radial-gradient(circle at 80% 0,rgba(214,173,103,.1),transparent 34%),
    #05090c;
}

.about-page .about-beliefs {
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0,rgba(214,173,103,.07),transparent 32%),
    var(--navy-900);
  border-bottom: 1px solid rgba(214,173,103,.16);
}
.about-page .about-beliefs h2,
.about-page .about-beliefs .vision-item h3 { color: var(--cream); }
.about-page .about-beliefs .vision-item { border-left-color: rgba(214,173,103,.24); }
.about-page .about-beliefs .vision-icon { color: var(--gold); }
.about-page .about-beliefs .vision-item p { color: rgba(248,239,224,.7); }

.about-page .about-experience {
  border-bottom: 1px solid rgba(214,173,103,.16);
  background:
    radial-gradient(circle at 50% 0,rgba(214,173,103,.09),transparent 36%),
    var(--navy-950);
}
.about-page .experience-card {
  border-color: rgba(214,173,103,.18);
  background: linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
}

.about-page .about-community-houston {
  color: var(--cream);
  background:
    radial-gradient(circle at 92% 16%,rgba(214,173,103,.09),transparent 30%),
    var(--navy-900);
}
.about-page .community-houston-grid::before { background: rgba(214,173,103,.3); }
.about-page .about-community-houston h2 { color: var(--cream); }
.about-page .about-community-houston .community-icon { color: var(--gold); }
.about-page .about-community-houston .community-type p { color: rgba(248,239,224,.82); }
.about-page .houston-column > p:not(.eyebrow) { color: rgba(248,239,224,.72); }
.about-page .houston-image { border: 1px solid rgba(214,173,103,.25); }

.about-page .about-final-cta {
  border-top: 1px solid rgba(214,173,103,.18);
  background: #05090c;
}
/* End About page theme alignment ---------------------------------------- */

/* Shared interior-page title scale -------------------------------------- */
.about-page .about-hero h1,
.directory-page .directory-page-hero h1,
.contact-page .contact-hero h1 {
  font-size: clamp(3.35rem,3.2vw,5.6rem);
}
@media (max-width: 760px) {
  .about-page .about-hero h1,
  .directory-page .directory-page-hero h1,
  .contact-page .contact-hero h1 {
    font-size: clamp(3.05rem,14vw,4.8rem);
  }
}
/* End shared interior-page title scale ---------------------------------- */

/* Directory listing preview modal --------------------------------------- */
.directory-preview-modal {
  width: min(580px,calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(214,173,103,.7);
  background: #07101a;
  color: var(--cream);
  box-shadow: 0 28px 80px rgba(0,0,0,.72);
}
.directory-preview-modal::backdrop { background: rgba(0,5,10,.82); backdrop-filter: blur(5px); }
.directory-preview-panel { position: relative; padding: 34px; background: radial-gradient(circle at 90% 0,rgba(214,173,103,.12),transparent 38%); }
.directory-preview-close { position: absolute; top: 13px; right: 15px; width: 36px; height: 36px; padding: 0; border: 1px solid rgba(214,173,103,.35); border-radius: 50%; background: transparent; color: var(--gold-light); font-size: 1.55rem; line-height: 1; cursor: pointer; }
.directory-preview-close:hover { border-color: var(--gold); background: rgba(214,173,103,.1); }
.directory-preview-eyebrow { margin: 0 46px 24px 0; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .66rem; font-weight: 800; }
.directory-preview-identity { display: flex; align-items: center; gap: 20px; }
.directory-preview-mark { display: grid; flex: 0 0 76px; width: 76px; height: 76px; place-items: center; border: 1px solid var(--gold); color: var(--gold-light); font-family: "Playfair Display",serif; font-size: 1.8rem; }
.directory-preview-identity h2 { margin: 0; color: var(--cream); font-family: "Playfair Display",serif; font-size: clamp(1.8rem,5vw,2.5rem); line-height: 1.05; }
.directory-preview-industry { margin: 8px 0 0; color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
.directory-preview-rule { width: 100%; height: 1px; margin: 26px 0 20px; background: linear-gradient(90deg,var(--gold),rgba(214,173,103,.08)); }
.directory-preview-location { margin: 0 0 14px; color: var(--gold-light); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.directory-preview-description { margin: 0; color: rgba(246,239,226,.82); line-height: 1.65; }
.directory-preview-disclaimer { margin: 22px 0; padding: 12px 14px; border-left: 2px solid var(--gold); background: rgba(214,173,103,.06); color: rgba(246,239,226,.64); font-size: .75rem; line-height: 1.5; }
.directory-preview-cta { display: flex; width: 100%; justify-content: center; }
body:has(.directory-preview-modal[open]) { overflow: hidden; }
@media (max-width: 560px) {
  .directory-preview-panel { padding: 28px 22px 22px; }
  .directory-preview-identity { align-items: flex-start; gap: 14px; }
  .directory-preview-mark { flex-basis: 60px; width: 60px; height: 60px; font-size: 1.35rem; }
}
/* End directory listing preview modal ----------------------------------- */

/* About page — stable tablet layout ------------------------------------- */
@media (max-width: 900px) {
  .about-page .section-shell {
    width: min(720px,calc(100% - 40px));
    margin-inline: auto;
  }
  .about-page .about-hero-copy,
  .about-page .about-kicker,
  .about-page .about-purpose .about-prose,
  .about-page .mission-band-grid > div,
  .about-page .mission-band-grid > p,
  .about-page .community-column,
  .about-page .houston-column {
    min-width: 0;
    grid-column: 1;
  }
  .about-page .about-mission-grid,
  .about-page .mission-band-grid,
  .about-page .community-houston-grid {
    grid-template-columns: minmax(0,1fr);
    gap: 30px;
  }
  .about-page .about-mission-grid::before,
  .about-page .mission-band-grid::before,
  .about-page .community-houston-grid::before {
    display: none;
  }
  .about-page .about-purpose .about-prose {
    width: 100%;
    max-width: 620px;
  }
}
@media (max-width: 480px) {
  .about-page .section-shell { width: calc(100% - 32px); }
}
/* End stable About tablet layout ---------------------------------------- */

/* Join page -------------------------------------------------------------- */
.join-page { background: var(--navy-950); color: var(--cream); }
.join-section {
  position: relative;
  overflow: hidden;
  padding: 44px 0 48px;
  border-bottom: 1px solid rgba(214,173,103,.18);
  background:
    radial-gradient(circle at 50% 45%,rgba(20,53,78,.34),transparent 46%),
    radial-gradient(circle at 102% 14%,transparent 0 120px,rgba(214,173,103,.07) 121px 124px,transparent 125px),
    linear-gradient(135deg,#071421,#030a11 66%,#06131f);
}
.join-shell { display: grid; width: min(1120px,calc(100% - 48px)); grid-template-columns: minmax(330px,.8fr) minmax(520px,1.2fr); gap: clamp(48px,6vw,82px); align-items: center; }
.join-intro { max-width: 470px; margin: 0; text-align: left; }
.join-intro .eyebrow { margin: 0; color: var(--gold); letter-spacing: .18em; }
.join-ornament { display: flex; width: 210px; align-items: center; gap: 13px; margin: 12px 0 18px; color: var(--gold); }
.join-ornament span { flex: 1; height: 1px; background: linear-gradient(90deg,transparent,var(--gold-dark)); }
.join-ornament span:last-child { background: linear-gradient(90deg,var(--gold-dark),transparent); }
.join-ornament b { font-size: .65rem; transform: rotate(45deg); }
.join-intro h1 { margin: 0; color: var(--cream); font-family: "Playfair Display",serif; font-size: clamp(3.35rem,3.2vw,5.6rem); font-weight: 500; line-height: 1.02; letter-spacing: -.035em; }
.join-star { display: block; width: max-content; margin: 17px 0 14px; color: var(--gold); font-size: .7rem; transform: rotate(45deg); }
.join-intro p:not(.eyebrow) { max-width: 450px; margin: 9px 0 0; color: rgba(248,239,224,.76); font-size: .9rem; line-height: 1.58; }
.join-intro .join-welcome { margin-bottom: 14px!important; color: rgba(248,239,224,.9)!important; font-size: 1.02rem!important; }
.join-socials { margin-top: 28px; padding-top: 21px; border-top: 1px solid rgba(214,173,103,.22); }
.join-socials > p { margin: 0 0 16px!important; color: var(--gold)!important; text-transform: uppercase; letter-spacing: .15em; font-size: .78rem!important; font-weight: 800; }
.join-socials > div { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; }
.join-socials a { display: flex; min-width: 0; align-items: center; gap: 11px; color: rgba(248,239,224,.8); font-size: .86rem; transition: color .2s ease,transform .2s ease; }
.join-socials a:hover { color: var(--gold-light); transform: translateX(3px); }
.join-socials svg { flex: 0 0 26px; width: 26px; height: 26px; fill: var(--gold); }
.join-socials span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.join-form-panel { padding: 27px 29px 24px; border: 1px solid rgba(214,173,103,.28); background: rgba(5,14,22,.48); box-shadow: 0 24px 64px rgba(0,0,0,.2); }
.join-form { display: grid; gap: 14px; max-width: 760px; margin: 0 auto; }
.join-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.join-form label { display: grid; gap: 6px; }
.join-form label > span { color: var(--gold-light); text-transform: uppercase; letter-spacing: .1em; font-size: .66rem; font-style: normal; font-weight: 800; }
.join-form label b { color: var(--gold); }
.join-form label em { font-style: normal; }
.join-form input,.join-form textarea { width: 100%; border: 1px solid rgba(214,173,103,.48); border-radius: 3px; outline: 0; background: linear-gradient(135deg,rgba(255,255,255,.035),rgba(12,29,44,.55)); color: var(--cream); font: inherit; font-size: .84rem; transition: border-color .2s ease,box-shadow .2s ease; }
.join-form input { min-height: 44px; padding: 0 14px; }
.join-form textarea { min-height: 88px; padding: 13px 14px; resize: vertical; }
.join-form input::placeholder,.join-form textarea::placeholder { color: rgba(248,239,224,.48); }
.join-form input:focus,.join-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(214,173,103,.1); }
.join-form small:empty { display: none; }
.join-form small { color: #e6a8a0; font-size: .68rem; }
.join-submit { position: relative; display: flex; width: min(340px,100%); min-height: 52px; align-items: center; justify-content: center; gap: 20px; overflow: hidden; margin: 7px auto 0; padding: 0 28px; border: 1px solid rgba(255,239,200,.72); border-radius: 3px; background: linear-gradient(115deg,#b98937 0%,#e3bb65 42%,#c9973e 100%); color: #07111f; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; box-shadow: inset 0 0 0 1px rgba(7,17,31,.16),0 10px 24px rgba(0,0,0,.22); cursor: pointer; transition: transform .22s ease,box-shadow .22s ease,filter .22s ease; }
.join-submit::before { content: ""; position: absolute; inset: 4px; border: 1px solid rgba(7,17,31,.18); border-radius: 1px; pointer-events: none; }
.join-submit::after { content: ""; position: absolute; top: -70%; left: -28%; width: 18%; height: 240%; background: rgba(255,255,255,.2); transform: rotate(18deg); transition: left .45s ease; pointer-events: none; }
.join-submit span { position: relative; font-size: 1rem; transition: transform .22s ease; }
.join-submit:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(7,17,31,.16),0 14px 30px rgba(0,0,0,.28); }
.join-submit:hover::after { left: 112%; }
.join-submit:hover span { transform: translateX(3px); }
.join-submit:disabled { cursor: wait; opacity: .7; }
.join-privacy { display: flex; width: 100%; max-width: none; align-items: center; justify-content: center; gap: 10px; margin: 0 auto; color: rgba(248,239,224,.7); text-align: center; white-space: nowrap; font-size: .76rem; line-height: 1.45; }
.join-privacy svg { flex: 0 0 18px; width: 18px; fill: none; stroke: var(--gold); stroke-width: 1.7; }
.join-page .contact-form-status { max-width: 760px; margin: 0 auto 12px; }
@media (max-width: 960px) {
  .join-shell { width: min(760px,calc(100% - 40px)); grid-template-columns: 1fr; gap: 32px; }
  .join-intro { max-width: 680px; margin: 0 auto; text-align: center; }
  .join-ornament { margin-inline: auto; }
  .join-star { margin-inline: auto; }
  .join-intro p:not(.eyebrow) { max-width: 640px; margin-inline: auto; }
  .join-socials { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .join-section { padding: 44px 0 50px; }
  .join-shell { width: calc(100% - 32px); }
  .join-intro { margin-bottom: 25px; }
  .join-intro h1 { font-size: clamp(3.05rem,14vw,4.8rem); }
  .join-intro p:not(.eyebrow) { font-size: .88rem; }
  .join-socials > div { grid-template-columns: 1fr; width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .join-form-panel { padding: 22px 17px 19px; }
  .join-privacy { white-space: normal; }
  .join-form-row { grid-template-columns: 1fr; gap: 17px; }
  .join-submit { width: 100%; }
}
/* End Join page ---------------------------------------------------------- */

/* Compact shared footer breakpoints ------------------------------------- */
@media (min-width: 641px) and (max-width: 900px) {
  .footer-shell { grid-template-columns: 1.15fr .85fr; gap: 30px 48px; }
  .footer-shell > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-footer { padding: 24px 0 10px; }
  .footer-shell { gap: 18px; }
  .footer-shell > div { padding: 0; }
  .footer-shell > div + div { padding-top: 18px; border-top: 1px solid rgba(214,173,103,.12); border-left: 0; }
  .footer-shell > div:nth-child(2) { column-gap: 18px; }
  .social-row { margin-top: 10px; }
  .copyright { margin-top: 16px; padding-top: 9px; }
}
/* End compact shared footer breakpoints --------------------------------- */

/* About page — What We Believe card redesign ---------------------------- */
.about-page .about-beliefs {
  padding: 52px 0 58px;
  background:
    radial-gradient(circle at 50% 8%,rgba(22,52,74,.3),transparent 42%),
    linear-gradient(135deg,#07131d,#03080d 72%);
}
.about-page .about-beliefs .section-heading { max-width: 920px; margin: 0 auto; }
.about-page .about-beliefs .section-heading .eyebrow { color: var(--gold); letter-spacing: .2em; }
.beliefs-title-rule { display: flex; width: 330px; max-width: 70%; align-items: center; gap: 12px; margin: 14px auto 15px; }
.beliefs-title-rule::before,.beliefs-title-rule::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg,transparent,rgba(214,173,103,.6)); }
.beliefs-title-rule::after { background: linear-gradient(90deg,rgba(214,173,103,.6),transparent); }
.beliefs-title-rule span { width: 10px; height: 10px; border: 1px solid var(--gold); transform: rotate(45deg); }
.about-page .about-beliefs h2 { max-width: 760px; margin: 0 auto; color: var(--cream); font-size: clamp(2.15rem,3.4vw,3.4rem); font-weight: 500; line-height: 1.08; letter-spacing: -.03em; }
.about-page .about-beliefs .vision-items { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; margin-top: 34px; }
.about-page .about-beliefs .vision-item { display: flex; min-width: 0; min-height: 280px; flex-direction: column; align-items: center; padding: 21px 16px 18px; border: 1px solid rgba(214,173,103,.34); border-radius: 10px; background: linear-gradient(155deg,rgba(255,255,255,.045),rgba(255,255,255,.012)); text-align: center; box-shadow: 0 18px 42px rgba(0,0,0,.14); }
.about-page .about-beliefs .vision-icon { display: grid; flex: 0 0 68px; width: 68px; height: 68px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.about-page .about-beliefs .vision-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.about-page .about-beliefs .vision-icon--filled svg { fill: currentColor; stroke: none; }
.about-page .about-beliefs .vision-item h3 { margin: 16px 0 0; color: var(--cream); font-family: "Playfair Display",serif; font-size: 1.05rem; font-weight: 500; line-height: 1.2; }
.about-page .about-beliefs .vision-item h3::after { content: ""; display: block; width: 32px; height: 1px; margin: 15px auto 0; background: var(--gold); }
.about-page .about-beliefs .vision-item p { margin: 15px 0 0; color: rgba(248,239,224,.72); font-size: .78rem; line-height: 1.55; }
@media (max-width: 1020px) {
  .about-page .about-beliefs .vision-items { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-page .about-beliefs .vision-item:last-child { grid-column: 1 / -1; width: calc(50% - 6px); justify-self: center; }
}
@media (max-width: 700px) {
  .about-page .about-beliefs { padding: 44px 0 48px; }
  .about-page .about-beliefs h2 { font-size: clamp(2.05rem,9vw,2.8rem); }
  .about-page .about-beliefs .vision-items { grid-template-columns: 1fr; gap: 10px; margin-top: 34px; }
  .about-page .about-beliefs .vision-item,
  .about-page .about-beliefs .vision-item:last-child { display: grid; width: 100%; min-height: 0; grid-template-columns: 72px minmax(0,1fr); gap: 5px 18px; align-items: center; padding: 17px; text-align: left; }
  .about-page .about-beliefs .vision-icon { grid-row: 1 / 3; width: 68px; height: 68px; }
  .about-page .about-beliefs .vision-icon svg { width: 37px; height: 37px; }
  .about-page .about-beliefs .vision-item h3 { margin: 0; font-family: Inter,system-ui,sans-serif; font-size: 1rem; font-weight: 700; }
  .about-page .about-beliefs .vision-item h3::after { display: none; }
  .about-page .about-beliefs .vision-item p { margin: 0; font-size: .82rem; line-height: 1.5; }
}
/* End What We Believe redesign ------------------------------------------ */

/* Shared accent icon language ------------------------------------------- */
.about-page .icon-label > span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--gold);
}
.about-page .icon-label svg { width: 24px; height: 24px; }
.about-page .experience-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-inline: auto;
  place-items: center;
  border: 1px solid rgba(214,173,103,.52);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0;
}
.about-page .experience-icon svg { width: 32px; height: 32px; }
.about-page .community-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(214,173,103,.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0;
}
.about-page .community-icon svg { width: 22px; height: 22px; }
.about-page .cta-ring { display: grid; width: 52px; height: 52px; place-items: center; color: var(--gold); font-size: 0; }
.about-page .cta-ring svg { width: 48px; height: 48px; }
.about-page .icon-label svg,
.about-page .experience-icon svg,
.about-page .community-icon svg,
.about-page .cta-ring svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.join-ornament b,
.join-star {
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: transparent;
  transform: rotate(45deg);
}
.join-star { margin: 17px 0 14px; }
.directory-page .directory-search > span:first-child { display: grid; width: 20px; height: 20px; place-items: center; color: var(--gold); font-size: 0; }
.directory-page .directory-search svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
@media (max-width: 960px) { .join-star { margin-inline: auto; } }
/* End shared accent icon language --------------------------------------- */

/* About page — editorial member experience section --------------------- */
.about-page .about-experience { padding: 52px 0 58px; }
.about-page .about-experience .section-heading { max-width: 790px; margin: 0 auto; }
.about-page .about-experience .dark-heading h2 { margin: 9px auto 0; max-width: 760px; font-size: clamp(2.15rem,3.5vw,3.45rem); font-weight: 500; line-height: 1.08; }
.about-page .experience-intro { max-width: 680px; margin: 18px auto 0; color: rgba(248,239,224,.7); font-size: .92rem; line-height: 1.65; }
.about-page .experience-editorial { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,3fr); gap: clamp(32px,5vw,58px); align-items: stretch; margin-top: 34px; }
.about-page .experience-featured { display: flex; min-height: 330px; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(30px,4vw,44px); border: 1px solid rgba(214,173,103,.42); border-radius: 12px; background: radial-gradient(circle at 18% 12%,rgba(214,173,103,.09),transparent 40%),linear-gradient(145deg,rgba(18,42,60,.72),rgba(6,15,23,.9)); box-shadow: 0 24px 60px rgba(0,0,0,.2); transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.about-page .experience-featured:hover { transform: translateY(-4px); border-color: rgba(232,190,112,.76); box-shadow: 0 28px 68px rgba(0,0,0,.27),0 0 26px rgba(214,173,103,.07); }
.about-page .experience-featured-icon { display: grid; width: 84px; height: 84px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.about-page .experience-featured-icon svg { width: 46px; height: 46px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.about-page .experience-featured h3 { margin: 25px 0 0; color: var(--cream); font-family: "Playfair Display",serif; font-size: clamp(1.65rem,2.5vw,2.3rem); font-weight: 500; line-height: 1.12; }
.about-page .experience-featured > p { margin: 17px 0 0; color: rgba(248,239,224,.76); font-size: .9rem; line-height: 1.68; }
.about-page .experience-featured small { display: block; margin-top: 24px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; font-weight: 700; line-height: 1.5; }
.about-page .experience-feature-list { display: grid; align-content: center; }
.about-page .experience-feature-item { position: relative; display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 18px; align-items: center; padding: 13px 0; }
.about-page .experience-feature-item::before,.about-page .experience-feature-item::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: rgba(214,173,103,.2); }
.about-page .experience-feature-item::after { background: var(--gold); transform: scaleX(.18); transform-origin: left; transition: transform .25s ease; }
.about-page .experience-feature-item .experience-icon { width: 44px; height: 44px; margin: 0; border-color: rgba(214,173,103,.42); transition: color .25s ease,border-color .25s ease,box-shadow .25s ease; }
.about-page .experience-feature-item .experience-icon svg { width: 25px; height: 25px; }
.about-page .experience-feature-item > div { transition: transform .25s ease; }
.about-page .experience-feature-item h3 { margin: 0; color: var(--cream); font-family: "Playfair Display",serif; font-size: 1.08rem; font-weight: 500; }
.about-page .experience-feature-item p { margin: 4px 0 0; color: rgba(248,239,224,.65); font-size: .8rem; line-height: 1.5; }
.about-page .experience-feature-item:hover::after { transform: scaleX(1); }
.about-page .experience-feature-item:hover .experience-icon { color: var(--gold-light); border-color: var(--gold); box-shadow: 0 0 18px rgba(214,173,103,.12); }
.about-page .experience-feature-item:hover > div { transform: translateX(4px); }
@media (max-width: 1020px) {
  .about-page .experience-editorial { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 32px; }
}
@media (max-width: 700px) {
  .about-page .about-experience { padding: 44px 0 48px; }
  .about-page .about-experience .dark-heading h2 { font-size: clamp(2rem,9vw,2.75rem); }
  .about-page .experience-intro { margin-top: 14px; font-size: .86rem; }
  .about-page .experience-editorial { grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
  .about-page .experience-featured { min-height: 0; padding: 27px 24px; }
  .about-page .experience-featured-icon { width: 68px; height: 68px; }
  .about-page .experience-featured-icon svg { width: 38px; height: 38px; }
  .about-page .experience-featured h3 { margin-top: 19px; font-size: 1.6rem; }
  .about-page .experience-featured small { margin-top: 18px; }
  .about-page .experience-feature-item { grid-template-columns: 42px minmax(0,1fr); gap: 14px; padding: 12px 0; }
  .about-page .experience-feature-item .experience-icon { width: 40px; height: 40px; }
  .about-page .experience-feature-item p { font-size: .77rem; }
}
/* End editorial member experience section ------------------------------ */

/* About page — cohesive editorial flow ---------------------------------- */
.about-page .about-hero { min-height: 500px; padding: 64px 0; }
.about-page .about-hero-copy { max-width: 500px; }
.about-page .about-hero .hero-copy { margin-top: 28px; }

.about-story-section {
  padding: 62px 0 58px;
  border-bottom: 1px solid rgba(214,173,103,.16);
  background: radial-gradient(circle at 8% 8%,rgba(214,173,103,.07),transparent 30%),#08131c;
}
.about-story-primary { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(52px,8vw,104px); align-items: start; }
.about-story-heading h2 { max-width: 480px; margin: 18px 0 0; color: var(--cream); font-size: clamp(2.35rem,3.8vw,3.7rem); font-weight: 500; line-height: 1.06; }
.about-story-copy { max-width: 600px; padding-top: 2px; }
.about-story-copy p { margin: 0 0 17px; color: rgba(248,239,224,.72); font-size: .92rem; line-height: 1.72; }
.about-story-copy p:first-child { color: rgba(248,239,224,.9); font-family: "Playfair Display",serif; font-size: 1.22rem; line-height: 1.5; }
.about-story-copy p:last-child { margin-bottom: 0; color: var(--gold-light); }
.about-story-divider { display: flex; align-items: center; margin: 38px 0 32px; }
.about-story-divider::before { content: ""; width: 64px; height: 1px; background: var(--gold); }
.about-story-divider span { flex: 1; height: 1px; background: rgba(214,173,103,.16); }
.about-story-mission { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(300px,.88fr); gap: clamp(44px,7vw,90px); align-items: end; }
.about-story-mission h3 { max-width: 650px; margin: 13px 0 0; color: var(--cream); font-family: "Playfair Display",serif; font-size: clamp(1.75rem,2.8vw,2.65rem); font-weight: 500; line-height: 1.15; }
.about-story-mission > p { margin: 0; color: rgba(248,239,224,.67); font-size: .86rem; line-height: 1.7; }

.about-page .about-beliefs .vision-item { transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.about-page .about-beliefs .vision-item:hover,
.about-page .about-beliefs .vision-item:focus-within { transform: translateY(-3px); border-color: rgba(214,173,103,.62); box-shadow: 0 22px 50px rgba(0,0,0,.22); }

.about-audience {
  padding: 58px 0 62px;
  border-top: 1px solid rgba(214,173,103,.14);
  border-bottom: 1px solid rgba(214,173,103,.14);
  background: radial-gradient(circle at 88% 20%,rgba(214,173,103,.08),transparent 30%),#09151f;
}
.about-audience-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(38px,7vw,90px); align-items: end; }
.about-audience-heading h2 { max-width: 780px; margin: 0; color: var(--cream); font-size: clamp(2.15rem,3.5vw,3.35rem); font-weight: 500; line-height: 1.1; }
.audience-labels { display: flex; flex-wrap: wrap; gap: 10px 0; margin-top: 42px; }
.audience-labels span { position: relative; padding: 8px clamp(24px,3.5vw,48px) 8px 17px; color: rgba(248,239,224,.9); font-family: "Playfair Display",serif; font-size: clamp(1.35rem,2.3vw,2.05rem); white-space: nowrap; }
.audience-labels span::before { content: ""; position: absolute; top: 50%; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); }

.about-houston { position: relative; min-height: 430px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid rgba(214,173,103,.18); }
.about-houston > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 43%; filter: grayscale(.45) contrast(1.04) brightness(.9); }
.about-houston-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,8,13,.94) 0%,rgba(3,8,13,.78) 40%,rgba(3,8,13,.28) 72%,rgba(3,8,13,.08)),linear-gradient(0deg,rgba(3,8,13,.42),transparent 48%); }
.about-houston-content { position: relative; z-index: 1; padding-block: 66px; }
.about-houston-content h2 { max-width: 560px; margin: 15px 0 0; color: var(--cream); font-size: clamp(2.4rem,4vw,3.8rem); font-weight: 500; line-height: 1.08; }
.about-houston-content > p:last-child { max-width: 550px; margin: 22px 0 0; color: rgba(248,239,224,.82); font-size: .92rem; line-height: 1.7; }

.about-page .about-final-cta { padding: 30px 0; border-top: 0; }
.about-page .final-cta-grid h2 { max-width: 780px; margin: 8px 0 16px; font-size: clamp(1.45rem,2.1vw,2rem); }
.about-page .final-cta-grid img { opacity: .18; }

@media (max-width: 900px) {
  .about-story-primary,.about-story-mission { grid-template-columns: 1fr; gap: 28px; }
  .about-story-mission { align-items: start; }
  .about-story-mission > p { max-width: 650px; }
  .about-audience-heading { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 640px) {
  .about-page .about-hero { min-height: 520px; padding: 58px 0; }
  .about-story-section { padding: 48px 0 44px; }
  .about-story-heading h2 { font-size: clamp(2.15rem,10vw,3rem); }
  .about-story-divider { margin: 30px 0 26px; }
  .about-story-mission h3 { font-size: clamp(1.65rem,7.5vw,2.25rem); }
  .about-audience { padding: 46px 0 48px; }
  .about-audience-heading h2 { font-size: clamp(2rem,9vw,2.75rem); }
  .audience-labels { gap: 5px 0; margin-top: 28px; }
  .audience-labels span { padding-right: 24px; font-size: clamp(1.25rem,6.5vw,1.7rem); white-space: normal; }
  .about-houston { min-height: 390px; }
  .about-houston > img { object-position: 62% center; }
  .about-houston-overlay { background: linear-gradient(90deg,rgba(3,8,13,.94),rgba(3,8,13,.66)),linear-gradient(0deg,rgba(3,8,13,.42),transparent); }
  .about-houston-content { padding-block: 52px; }
  .about-page .about-final-cta { padding: 28px 0; }
}
/* End About editorial flow ---------------------------------------------- */

/* Member experience section after relocation to Join page -------------- */
.member-experience-section {
  padding: 36px 0 40px;
  border-top: 1px solid rgba(214,173,103,.16);
  border-bottom: 1px solid rgba(214,173,103,.16);
  background: radial-gradient(circle at 50% 0,rgba(214,173,103,.09),transparent 36%),var(--navy-950);
}
.member-experience-section .section-heading { max-width: 790px; margin: 0 auto; }
.member-experience-section .dark-heading h2 { margin: 7px auto 0; max-width: none; color: var(--cream); font-size: clamp(1.95rem,2.55vw,2.35rem); font-weight: 500; line-height: 1.08; }
.member-experience-section .experience-intro { max-width: none; margin-top: 12px; font-size: .8rem; line-height: 1.55; }
.member-experience-section .experience-editorial { margin-top: 26px; }
.member-experience-section .experience-featured { min-height: 285px; padding: clamp(25px,3vw,34px); }
.member-experience-section .experience-featured-icon { width: 72px; height: 72px; }
.member-experience-section .experience-featured-icon svg { width: 40px; height: 40px; }
.member-experience-section .experience-featured h3 { margin-top: 19px; }
.member-experience-section .experience-featured small { margin-top: 18px; }
.member-experience-section .experience-feature-item { padding-block: 9px; }
@media (min-width: 801px) {
  .member-experience-section .dark-heading h2,
  .member-experience-section .experience-intro { white-space: nowrap; }
}
@media (max-width: 700px) {
  .member-experience-section { padding: 34px 0 38px; }
  .member-experience-section .dark-heading h2 { font-size: clamp(1.9rem,8vw,2.45rem); }
  .member-experience-section .experience-editorial { margin-top: 22px; }
}
/* End relocated member experience section ------------------------------ */

/* About page — organized audience section ------------------------------- */
.about-audience { padding: 54px 0 58px; }
.about-audience > .section-shell { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.22fr); gap: clamp(54px,8vw,104px); align-items: center; }
.about-audience-heading { display: block; }
.about-audience-heading .eyebrow { margin: 0 0 18px; }
.about-audience-heading h2 { max-width: 500px; margin: 0; font-size: clamp(2.15rem,3.25vw,3.15rem); line-height: 1.08; }
.audience-labels { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 32px; margin: 0; border-top: 1px solid rgba(214,173,103,.22); }
.audience-labels span { display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 13px; align-items: center; min-height: 66px; padding: 13px 0; border-bottom: 1px solid rgba(214,173,103,.18); color: rgba(248,239,224,.9); font-size: clamp(1.1rem,1.8vw,1.45rem); white-space: normal; transition: color .25s ease,transform .25s ease; }
.audience-labels span::before { display: none; }
.audience-labels svg { width: 34px; height: 34px; padding: 6px; border: 1px solid rgba(214,173,103,.42); border-radius: 50%; fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; transition: border-color .25s ease,stroke .25s ease; }
.audience-labels span:hover svg { border-color: var(--gold); stroke: var(--gold-light); }
.audience-labels span:hover { color: var(--gold-light); transform: translateX(4px); }
@media (max-width: 900px) {
  .about-audience > .section-shell { grid-template-columns: 1fr; gap: 34px; }
  .about-audience-heading { max-width: 680px; }
}
@media (max-width: 560px) {
  .about-audience { padding: 44px 0 48px; }
  .about-audience-heading h2 { font-size: clamp(2rem,9vw,2.65rem); }
  .audience-labels { grid-template-columns: 1fr; }
  .audience-labels span { min-height: 54px; padding: 10px 0; font-size: 1.12rem; }
}
/* End organized audience section --------------------------------------- */
