:root {
  --ink: #0C0C0C;
  --ink-light: #1C1C1C;
  --gold: #B8912F;
  --gold-light: #E3C36A;
  --paper: #FFFFFF;
  --secondary: #F7F4EC;
  --heading: #0C0C0C;
  --text-body: #4A4A4A;
  --text-muted: #8A8378;
  --border: #E6E1D6;
  --card-bg: #FFFFFF;
  --red: #8C6B1F;

  --serif: "Archivo", -apple-system, sans-serif;
  --sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w: 1180px;
  --gutter: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-body);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.wrap-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--heading);
}

p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow .dot { color: var(--gold); opacity: .6; }

::selection { background: var(--gold); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Floating pill nav
   ============================================================ */

.pill-nav-wrap {
  position: sticky;
  top: 18px;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  transition: transform .25s ease;
}

.pill-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
  width: auto;
  max-width: min(1460px, calc(100vw - 40px));
  background: linear-gradient(135deg, #E8CC7A 0%, #C79E36 48%, #A07A22 100%);
  border-radius: 9999px;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,.45), 0 2px 6px -2px rgba(0,0,0,.3);
  padding: 10px 14px 10px 14px;
}

.pill-nav .wordmark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.pill-nav .wordmark img { width: 84px; height: 84px; }

.pill-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  flex-wrap: nowrap;
  min-width: 0;
  margin: 0;
}

.pill-nav-links a:not(.btn-pill) {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 6px 2px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.pill-nav-links a:not(.btn-pill):hover,
.pill-nav-links a:not(.btn-pill)[aria-current="page"] {
  color: #000;
  border-color: var(--ink);
}

/* Membership dropdown (desktop) */
.has-dropdown {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.has-dropdown:hover > a,
.has-dropdown:focus-within > a {
  color: #000 !important;
}
.has-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  margin-top: 14px;
  background: #17181c;
  border-radius: 14px;
  box-shadow: 0 14px 36px -8px rgba(0,0,0,.5);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 70;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown.open > a {
  color: #000 !important;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: var(--gold-light) !important;
  border-bottom: none !important;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255,255,255,0.1);
  color: #fff !important;
}
.soon-tag {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gold);
  background: rgba(134,141,149,0.12);
  padding: 3px 7px;
  border-radius: 999px;
  flex-shrink: 0;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 8px 8px 8px 20px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s ease;
}
.btn-pill:hover { background: #fff; color: var(--ink); }
.btn-pill .icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.btn-pill:hover .icon-circle { background: var(--ink); color: #fff; }

.icon-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.icon-btn:hover { background: #fff; color: var(--ink); }

.mobile-facebook {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--heading);
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   Top band — gold reaches the very top of the page; nav floats on it
   ============================================================ */

.top-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1E1E1E 0%, #101010 55%, #000000 100%);
  padding-top: 20px;
}
.top-band::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.40) 40%, rgba(0,0,0,0.72) 100%);
  z-index: 0;
  pointer-events: none;
}
.top-band > .hero { position: relative; z-index: 1; }
.top-band > .pill-nav-wrap { position: sticky; z-index: 60; }


.top-band-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.mobile-nav {
  display: none;
}

.mobile-nav-backdrop {
  display: none;
}

/* ============================================================
   Pill buttons (general use, dark + gold variants)
   ============================================================ */

.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  padding: 10px 10px 10px 26px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: opacity .15s ease;
}
.btn-lg .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.btn-lg:hover { opacity: 0.85; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark .icon-circle { background: var(--gold); color: #fff; }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold .icon-circle { background: #fff; color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  padding: 10px 26px;
}
.btn-outline:hover { border-color: var(--ink); }

.btn-teal { background: var(--red); color: #fff; }
.btn-teal .icon-circle { background: #fff; color: var(--red); }
.btn-teal:hover { opacity: 0.88; }

.btn-navy { background: var(--gold); color: #fff; }
.btn-navy .icon-circle { background: #fff; color: var(--gold); }
.btn-navy:hover { opacity: 0.88; }

/* ============================================================
   Hero — centered, off-white gradient
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 96px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-fleet-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero .eyebrow, .hero .eyebrow .dot { color: #fff; opacity: 0.9; }

.hero .breadcrumb { color: rgba(255,255,255,0.7); }
.hero .breadcrumb span { color: #fff; }

.hero .hero-badge {
  background: rgba(20,20,20,0.25);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  max-width: 34ch;
  margin: 0 auto;
  letter-spacing: 0;
  color: var(--gold-light);
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

.hero p.lede {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 82ch;
  margin: 24px auto 0;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero .btn-gold {
  background: linear-gradient(135deg, #E8CC7A 0%, #C79E36 55%, #A07A22 100%);
  color: var(--ink);
}
.hero .btn-gold .icon-circle { background: var(--ink); color: var(--gold-light); }
.hero .btn-gold:hover { background: #fff; color: var(--ink); }
.hero .btn-gold:hover .icon-circle { background: var(--ink); color: #fff; }

.hero .btn-dark {
  background: #fff;
  color: var(--ink);
}
.hero .btn-dark .icon-circle { background: var(--ink); color: #fff; }
.hero .btn-dark:hover { background: var(--ink); color: #fff; }
.hero .btn-dark:hover .icon-circle { background: #fff; color: var(--ink); }

.breadcrumb {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.breadcrumb span { color: var(--gold); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 26px;
}

/* ============================================================
   Stat band — full-bleed ink
   ============================================================ */

.stat-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 300px at 15% 0%, rgba(134,141,149,0.16) 0%, transparent 70%),
    var(--ink);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 56px 0;
}

.section-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.stat-band > .wrap { position: relative; z-index: 1; max-width: 1520px; }

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-seal {
  width: clamp(150px, 17vw, 230px);
  height: clamp(150px, 17vw, 230px);
  flex-shrink: 0;
  margin-right: clamp(24px, 3vw, 48px);
}

.stat-band .stat-row > .stat:first-of-type { padding-left: 0; }

.stat {
  flex: 1 1 0;
  min-width: 0;
  padding: 18px clamp(14px, 2vw, 32px);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(150px, 17vw, 230px);
}
.stat + .stat::before {
  content: "•";
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 18px;
}

.stat .num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(22px, 2.35vw, 38px);
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold-light);
  display: block;
  height: 58px;
  line-height: 58px;
  text-align: center;
  position: relative;
}
.stat .num.num-optical { top: -10px; }
.stat .label {
  font-size: clamp(13px, 1.05vw, 15.5px);
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  max-width: 20ch;
}

/* ============================================================
   Section rhythm
   ============================================================ */

section { padding: 96px 0; }
section.tight {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
section.on-secondary { position: relative; overflow: hidden; background: var(--secondary); }

.section-photo-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head.wide { max-width: 1000px; }
.section-head.wide h2 { max-width: 30ch; margin-left: auto; margin-right: auto; }
.section-head.wide p { max-width: 74ch; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 40px); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--text-body); font-size: 16.5px; }

.section-head.align-left {
  text-align: left;
  margin: 0 0 56px;
  max-width: 560px;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.section-header-row .section-head { margin-bottom: 0; }
.section-header-row .logo-balance {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  opacity: 0.9;
}

/* ============================================================
   Roadmap — Educate & Inform / Airport Advocacy / Networking
   ============================================================ */

.roadmap { position: relative; padding-top: 8px; }

.roadmap-track {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 1;
  cursor: pointer;
}

.roadmap-road {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  width: 84%;
  height: 4px;
  transform: translateY(-50%);
  pointer-events: none;
}

.road-car {
  position: absolute;
  top: 50%;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(0, -50%);
  transition: opacity .2s ease;
  pointer-events: none;
  box-shadow: 0 8px 20px -4px rgba(0,0,0,.35);
  z-index: 2;
}

.roadmap-stops {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.roadmap-stop {
  text-align: center;
  outline: none;
  display: flex;
  flex-direction: column;
}

.stop-marker {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.stop-num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
  transition: color .25s ease;
}

.roadmap-stop:hover .stop-marker,
.roadmap-stop:focus-within .stop-marker {
  transform: scale(1.14);
  background: var(--gold);
  box-shadow: 0 8px 24px -6px rgba(134,141,149,0.5);
}
.roadmap-stop:hover .stop-num,
.roadmap-stop:focus-within .stop-num { color: #fff; }

.roadmap-stop h3 { font-size: 19px; margin-bottom: 12px; }
.roadmap-stop p {
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 20px;
}

.stop-photo {
  display: block;
  overflow: hidden;
  height: 170px;
  border-radius: 12px;
  border: 3px solid var(--ink);
  background: var(--secondary);
  overflow: hidden;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: auto;
  letter-spacing: 0.03em;
  transition: border-color .25s ease;
}
.stop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.roadmap-stop:hover .stop-photo,
.roadmap-stop:focus-within .stop-photo { border-color: var(--gold); }

@media (max-width: 900px) {
  .roadmap-track { display: none; }
  .roadmap-stops { grid-template-columns: 1fr; gap: 48px; }
  .roadmap-road { display: none; }
  .section-header-row { flex-direction: column; text-align: center; gap: 24px; }
  .section-header-row .section-head.align-left { text-align: center; }
  .section-header-row .logo-balance { width: 120px; height: 120px; }
}

/* ============================================================
   Accordion (feature list + bylaws)
   ============================================================ */

.accordion { border-top: 1px solid var(--border); }

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 4px;
}
.accordion-item summary::-webkit-details-marker { display: none; }

.summary-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.accordion-badge {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--secondary);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 15px;
  transition: background .15s ease, color .15s ease;
}
.accordion-item[open] .accordion-badge {
  background: var(--gold);
  color: #fff;
}

.accordion-title {
  flex: 1;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 16.5px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--heading);
}

.accordion-chevron {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.accordion-item[open] .accordion-chevron { transform: rotate(180deg); color: var(--gold); }

.accordion-body {
  padding: 0 4px 28px 68px;
}
.accordion-item[open] { border-left: 2px solid var(--gold); margin-left: -2px; }

.accordion-body p {
  color: var(--text-body);
  font-size: 15.5px;
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: none;
}
.accordion-body p:last-child { margin-bottom: 0; }

.accordion-body .learn-more {
  color: var(--gold);
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 4px;
}

.flag-note {
  background: #FBEEED;
  border: 1px solid var(--red);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 8px 0 20px;
}
.flag-note p {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  text-transform: none;
}

/* Dark section variant — reuses existing components on a black background */
.section-dark { background: var(--ink); }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,0.65); }
.section-dark .eyebrow, .section-dark .eyebrow .dot { color: var(--gold-light); }
.section-dark .accordion { border-top-color: rgba(255,255,255,0.15); }
.section-dark .accordion-item { border-bottom-color: rgba(255,255,255,0.15); }
.section-dark .accordion-badge { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.section-dark .accordion-item[open] .accordion-badge { background: var(--gold); color: #fff; }
.section-dark .accordion-title { color: #fff; }
.section-dark .accordion-chevron { color: rgba(255,255,255,0.5); }
.section-dark .accordion-item[open] .accordion-chevron { color: var(--gold-light); }
.section-dark .accordion-body p { color: rgba(255,255,255,0.65); }
.section-dark .learn-more { color: var(--gold-light); }

.section-navy { background: var(--ink-light); }
.section-navy .eyebrow, .section-navy .eyebrow .dot { color: #fff; opacity: 0.85; }
.section-navy .section-head h2 { color: #fff; }
.section-navy .section-head p { color: rgba(255,255,255,0.75); }
.section-navy .roadmap-stop h3 { color: #fff; }
.section-navy .roadmap-stop p { color: rgba(255,255,255,0.75); }
.section-navy .stop-marker { background: #fff; }

/* Nevada-shaped text art */
.nevada-text-shape-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 0 24px;
}
.nevada-text-shape {
  overflow: hidden;
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.5;
  letter-spacing: 0.04em;
  word-spacing: 0.3em;
  text-align: center;
  padding: 6% 4%;
}
.nevada-text-shape span.accent { color: var(--gold); }

@media (max-width: 640px) {
  .nevada-text-shape { font-size: 11px !important; }
}

/* ============================================================
   Numbered timeline
   ============================================================ */

.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border);
}

.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 56px;
  position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }

.timeline-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-content .step-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.timeline-content h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.timeline-content p {
  color: var(--text-body);
  font-size: 15.5px;
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: none;
}
.timeline-content ul { margin: 10px 0 0; padding-left: 20px; }
.timeline-content li { color: var(--text-body); font-size: 15.5px; margin-bottom: 10px; }

/* ============================================================
   Testimonials
   ============================================================ */

.testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
}

.pull-callout {
  background: var(--ink);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pull-callout .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 20px; }
.pull-callout blockquote {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
  text-transform: none;
  margin: 0 0 24px;
}
.pull-callout .attr { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 700; }
.pull-callout .attr strong { color: #fff; display: block; font-size: 15px; margin-bottom: 3px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonial-grid > * { height: 100%; }

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

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card .stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 10px; }
.testimonial-card blockquote {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-body);
  text-transform: none;
  margin: 0 0 12px;
  line-height: 1.55;
}
.testimonial-card .name { font-weight: 800; color: var(--heading); font-size: 16.5px; }
.testimonial-card .role { color: var(--text-muted); font-size: 14.5px; }

.testimonial-card.on-black {
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card.on-black blockquote { color: rgba(255,255,255,0.85); }
.testimonial-card.on-black .name { color: #fff; }
.testimonial-card.on-black .role { color: rgba(255,255,255,0.5); }
.testimonial-card.on-black .avatar-circle { background: var(--gold); color: #fff; }

.nla-badge {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.nla-badge-label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.nla-badge-logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 16px;
}
.nla-badge-logo-slot img { max-height: 32px; width: auto; display: block; }

.affiliation-block {
  text-align: center;
  max-width: 480px;
  margin: 64px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.affiliation-block .step-tag { display: block; margin-bottom: 10px; }
.affiliation-block p { color: var(--text-body); margin: 10px 0 0; }
.affiliation-block .nla-logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 16px;
}
.affiliation-block .nla-logo-slot img { max-height: 48px; width: auto; display: block; }

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.gallery-grid img {
  width: calc((100% - 36px) / 3);
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 4px 16px -6px rgba(0,0,0,.2);
}
@media (max-width: 900px) {
  .gallery-grid { gap: 14px; }
  .gallery-grid img { width: calc((100% - 14px) / 2); height: 200px; }
}
@media (max-width: 560px) {
  .gallery-grid img { width: 100%; height: 240px; }
}

.vehicle-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.vehicle-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-size: 14.5px;
}
.vehicle-list li:last-child { border-bottom: none; }

.note-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--secondary);
  color: var(--text-muted);
  vertical-align: middle;
}
.note-tag.new { background: var(--red); color: #fff; }

.resource-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}
.resource-banner h3 { font-size: 22px; margin: 8px 0 6px; }
.resource-banner p { color: var(--text-body); margin: 0 auto; max-width: 480px; }
.resource-banner .btn-lg { flex-shrink: 0; }

/* ============================================================
   Leadership cards
   ============================================================ */

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

.people-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.people-grid > .leader-card {
  flex: 0 0 calc((100% - 56px) / 3);
  max-width: calc((100% - 56px) / 3);
}
@media (max-width: 900px) {
  .people-grid > .leader-card { flex-basis: calc((100% - 28px) / 2); max-width: calc((100% - 28px) / 2); }
}
@media (max-width: 560px) {
  .people-grid > .leader-card { flex-basis: 100%; max-width: 100%; }
}

.leader-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.leader-tile {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.leader-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-tile .role-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,.35);
}

.leader-info { padding: 20px 22px 22px; }
.leader-info .name { font-family: var(--serif); font-weight: 800; font-size: 17px; color: var(--heading); }
.leader-info .company { color: var(--gold); font-size: 13.5px; font-weight: 700; margin-top: 4px; text-transform: none; }
.leader-info .email {
  display: block;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: none;
}
.leader-info .email:hover { color: var(--gold); }

/* ============================================================
   CTA band
   ============================================================ */

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(134,141,149,0.16), transparent 55%),
    linear-gradient(135deg, #1B1B1B 0%, var(--ink-light) 100%);
  border: 2px solid var(--gold);
  border-radius: 24px;
  margin: 0 16px;
  padding: 48px 40px;
  text-align: center;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.cta-band:hover {
  box-shadow: 0 0 44px -6px rgba(134,141,149,0.55);
  transform: translateY(-3px);
  border-color: var(--gold-light);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); margin-top: 14px; max-width: 20ch; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(255,255,255,0.65); margin-top: 16px; max-width: 50ch; margin-left: auto; margin-right: auto; font-size: 16px; }
.cta-band .hero-ctas { margin-top: 30px; }

/* ============================================================
   Footer — full-bleed ink
   ============================================================ */

footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  margin-top: 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; display: block; }
.footer-brand span { font-family: var(--serif); font-weight: 900; font-size: 19px; color: #fff; }
.footer-top p.tagline { font-size: 14px; max-width: 30ch; color: rgba(255,255,255,0.65); }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; font-size: 14.5px; margin-bottom: 12px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: #fff; }

.footer-divider { border-top: 1px solid rgba(255,255,255,0.12); }

.newsletter-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  flex-wrap: wrap;
}
.newsletter-row p { color: #fff; font-weight: 700; font-size: 15px; margin-right: 12px; }
.newsletter-row input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 9999px;
  padding: 12px 20px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14.5px;
  min-width: 260px;
}
.newsletter-row input::placeholder { color: rgba(255,255,255,0.45); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .contact-inline { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Contact page — two column
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.icon-square {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: var(--secondary);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-card .k {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-card .v {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--heading);
  text-transform: none;
}
.contact-info-card .v.small { font-family: var(--sans); font-size: 14.5px; font-weight: 600; }

.quick-links-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 26px 26px 20px;
  color: #fff;
}
.quick-links-card h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
}
.quick-links-card a {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.quick-links-card a:first-of-type { border-top: none; }
.quick-links-card a:hover { color: var(--gold-light); }

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-card-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 30px; }
.form-card-head .icon-square { width: 52px; height: 52px; font-size: 20px; border-radius: 14px; }
.form-card-head h3 { font-size: 19px; margin-bottom: 6px; }
.form-card-head p { color: var(--text-muted); font-size: 14px; font-weight: 500; text-transform: none; }

form.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  border-radius: 10px;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C8778' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 12.5px; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   Prose (bylaws intro, misc)
   ============================================================ */

.prose { max-width: 68ch; margin: 0 auto; }
.prose p {
  color: var(--text-body);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 16px;
}

.callout {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 30px;
  margin: 32px auto 0;
  max-width: 68ch;
  text-align: left;
}
.callout h3 { font-size: 15px; margin-bottom: 8px; }
.callout p { color: var(--text-body); font-size: 14.5px; text-transform: none; margin-bottom: 0; }

/* ============================================================
   Responsive
   ============================================================ */

/* ============================================================
   Photo strip — 5 real photos, slowly rotating (marquee)
   ============================================================ */

.photo-marquee {
  overflow: hidden;
  margin: 0 var(--gutter);
  border-radius: 14px;
}

.photo-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

.photo-marquee:hover .photo-marquee-track { animation-play-state: paused; }

/* sponsor reel carries far more tiles, so give it a longer cycle */
.marquee-section-red .photo-marquee-track { animation-duration: 52s; gap: 20px; }

.photo-tile {
  width: 320px;
  height: 206px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--ink);
  background: var(--ink);
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-tile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(135deg, var(--secondary), var(--secondary) 10px, #ECEAE6 10px, #ECEAE6 20px);
  border: 1.5px dashed var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (max-width: 900px) {
  .photo-marquee { margin: 0 20px; }
  .photo-tile { width: 240px; height: 155px; }
}

/* ============================================================
   Sponsor logo marquee
   ============================================================ */

.marquee-section {
  background: linear-gradient(160deg, #E8CC7A 0%, #C79E36 50%, #A07A22 100%);
  border-top: none;
  border-bottom: 3px solid var(--ink);
  padding: 56px 0;
  overflow: hidden;
}

.marquee-section-teal {
  background: linear-gradient(160deg, #3A2F14 0%, #241C0A 55%, #120E05 100%);
  padding: 40px 0;
  overflow: hidden;
}

.marquee-section-red {
  background: linear-gradient(160deg, #1E1E1E 0%, #101010 55%, #000000 100%);
  padding: 56px 0;
  overflow: hidden;
}
.marquee-section-red .eyebrow, .marquee-section-red .eyebrow .dot { color: #fff; opacity: 0.95; }
.marquee-section-red h2 { color: #fff; }
.marquee-section-red p { color: rgba(255,255,255,0.75); }

.logo-tile {
  width: 210px;
  height: 110px;
  padding: 14px 18px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .logo-tile { width: 160px; height: 84px; }
}
.marquee-section .eyebrow, .marquee-section .eyebrow .dot { color: #fff; opacity: 0.95; }
.marquee-section h2 { color: #fff; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-section:hover .marquee-track { animation-play-state: paused; }

.sponsor-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 108px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.sponsor-tile img {
  height: 62px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   Footer support badge (NLA)
   ============================================================ */

.support-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.support-badge .label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.support-badge img { height: 30px; width: auto; background: #fff; padding: 5px 9px; border-radius: 7px; }

@media (max-width: 900px) {
  .photo-tile { width: 240px; height: 155px; }
  .photo-marquee .photo-marquee-track { animation-duration: 28s; }
  .cta-band { margin: 0 16px; }
  .pill-nav .wordmark img { width: 56px; height: 56px; }
  .pill-nav-links { display: none; }
  .pill-nav > .icon-btn { display: none; }
  .nav-toggle { display: block; }
  .pill-nav { padding: 8px; }

  .pill-nav-wrap {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    padding: 0 16px;
  }
  .top-band { padding-top: 92px; }

  .pill-nav-wrap.nav-hide { transform: translateY(-140px); }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 58;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, background .2s ease;
  }
  .mobile-nav-backdrop.open {
    background: rgba(0,0,0,0.35);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav {
    position: fixed;
    top: 116px; left: 20px; right: 20px;
    max-height: calc(100vh - 136px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px -8px rgba(0,0,0,.18);
    padding: 10px;
    z-index: 120;
    flex-direction: column;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a:not(.btn-lg) {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--heading);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a:last-of-type:not(.btn-lg) { border-bottom: none; }
  .mobile-nav .btn-lg { margin: 10px 16px 6px; justify-content: center; }

  .mobile-dropdown {
    border-bottom: 1px solid var(--border);
  }
  .mobile-dropdown summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--heading);
    cursor: pointer;
  }
  .mobile-dropdown summary::-webkit-details-marker { display: none; }
  .mobile-dropdown[open] summary svg { transform: rotate(180deg); }
  .mobile-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px 12px 28px;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: none;
    color: var(--text-body);
    border-bottom: none;
  }

  .testimonial-layout { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; padding: 16px 16px 44px; text-align: center; }
  .footer-brand { flex-direction: column; text-align: center; justify-content: center; }
  .footer-top p.tagline { max-width: none; margin: 8px auto 0; }
  .footer-col { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px 18px; }
  .footer-col h4 { width: 100%; margin-bottom: 6px; }
  .footer-col a, .footer-col p { display: inline-block; margin: 0 0 10px; font-size: 15.5px; font-weight: 600; color: #fff; }
  .nla-badge { flex-basis: 100%; display: flex; flex-direction: column; align-items: center; margin-top: 8px; }
  .newsletter-row { flex-direction: column; padding: 32px 16px; gap: 16px; }
  .newsletter-row p { margin-right: 0; }
  .newsletter-row input { width: 100%; max-width: 320px; text-align: center; }
  .newsletter-row .btn-lg { margin: 0 auto; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 24px 16px; }
  .footer-bottom .contact-inline { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .timeline::before { left: 22px; }
  .timeline-step { grid-template-columns: 44px 1fr; gap: 18px; }
  .timeline-num { width: 44px; height: 44px; font-size: 15px; }
  .cta-band { margin: 0 16px; padding: 48px 24px; }
  .accordion-body { padding-left: 20px; }
}

@media (max-width: 560px) {
  .leader-grid { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat { padding: 12px 24px; }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: 20px; line-height: 1.3; max-width: 100%; letter-spacing: 0; }
  .hero p.lede { font-size: 15.5px; }
  .photo-marquee .photo-marquee-track { animation-duration: 18s; }
}

/* ============================================================
   Flip cards (Membership Rewards)
   ============================================================ */

.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .flip-grid { grid-template-columns: 1fr; }
}

.flip-card {
  perspective: 1200px;
  height: 130px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 14px;
  backface-visibility: hidden;
  border: 1px solid var(--border);
}
.flip-card-front {
  background: var(--card-bg);
}
.flip-card-front .icon-square {
  margin-bottom: 8px;
  width: 32px;
  height: 32px;
}
.flip-card-front .k {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 15.5px;
  color: var(--heading);
  text-transform: none;
  line-height: 1.25;
}
.flip-card-front .tap-hint {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.flip-card-back {
  background: var(--gold);
  color: #fff;
  transform: rotateY(180deg);
}
.flip-card-back p {
  font-size: 13px;
  line-height: 1.4;
}



/* ============================================================
   Sponsor ad placements
   ============================================================ */

.ad-banner-wrap {
  background: linear-gradient(160deg, #1E1E1E 0%, #0C0C0C 55%, #000000 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 30px 0 34px;
}

.ad-banner-wrap .wrap { max-width: 1500px; }

.ad-partners-wrap {
  background: linear-gradient(160deg, #E8CC7A 0%, #C79E36 50%, #A07A22 100%);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 64px 0;
}
.ad-partners-wrap .ad-label {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.10em;
  margin-bottom: 34px;
}

.ad-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ad-slot:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 28px -12px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.ad-slot img { width: 100%; height: 100%; object-fit: contain; display: block; }

.ad-banner {
  width: 100%;
  aspect-ratio: 1334 / 210;
  border-radius: 10px;
  background: transparent;
  border: none;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}
.ad-banner:hover {
  border: none;
  box-shadow: none;
  transform: none;
  opacity: 0.92;
}
.ad-banner img {
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.ad-square-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: stretch;
}
.ad-square {
  aspect-ratio: 4 / 3;
  padding: 34px 40px;
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,0.45);
}
.ad-square:hover { border-color: var(--ink); }

.ad-label {
  display: block;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold-light);
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .ad-square-row { grid-template-columns: 1fr; gap: 28px; }
  .ad-square { aspect-ratio: 3 / 2; padding: 24px 26px; }
}

/* count-up pop */
.stat .num { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.stat-row.counted .num { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .stat .num { opacity: 1; transform: none; transition: none; }
}


.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


/* ============================================================
   Skyline-backed light section
   ============================================================ */

.section-skyline {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-skyline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("la-skyline.jpg");
  background-size: cover;
  background-position: center 62%;
  opacity: 0.16;
  z-index: -2;
}
.section-skyline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.58) 50%, rgba(255,255,255,0.80) 100%);
  z-index: -1;
}

/* NLA affiliation */
.footer-col .nla-badge-logo-slot { padding: 8px 12px; }
.footer-col .nla-badge-logo-slot img { max-height: 30px; width: auto; display: block; }


.stop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}


/* ============================================================
   Stat band — small screens
   ============================================================ */

@media (max-width: 900px) {
  .stat-band > .wrap { max-width: 100%; }

  .stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 26px;
    justify-items: center;
    align-items: start;
  }

  .stat-seal {
    grid-column: 1 / -1;
    width: 150px;
    height: 150px;
    margin: 0 0 4px;
  }

  .stat {
    width: 100%;
    min-height: 0;
    padding: 0 6px;
    justify-content: flex-start;
  }

  .stat + .stat::before { display: none; }

  .stat .num {
    height: auto;
    line-height: 1.15;
    font-size: clamp(21px, 6.4vw, 30px);
  }
  .stat .num.num-optical { top: 0; }

  .stat .label {
    font-size: 12px;
    margin-top: 8px;
    max-width: 18ch;
  }
}

@media (max-width: 420px) {
  .stat-row { column-gap: 6px; }
  .stat .num { font-size: clamp(19px, 6vw, 24px); }
  .stat .label { font-size: 11px; letter-spacing: 0.03em; max-width: 16ch; }
  .stat-seal { width: 128px; height: 128px; }
}


/* Lists and fine print inside accordion bodies */
.accordion-body ul {
  margin: 0 0 16px;
  padding-left: 20px;
  list-style: disc;
}
.accordion-body ul li {
  color: var(--text-body);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
}
.accordion-body ul li::marker { color: var(--gold); }
.accordion-body ul li:last-child { margin-bottom: 0; }

.accordion-body .fine-print {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 14px;
}

.section-dark .accordion-body ul li { color: rgba(255,255,255,0.75); }
.section-dark .accordion-body ul li::marker { color: var(--gold-light); }
.section-dark .accordion-body .fine-print { color: rgba(255,255,255,0.5); }
.section-dark .accordion-body strong { color: #fff; }


/* Nav breathing room between the wide desktop pill and the mobile drawer */
@media (max-width: 1320px) and (min-width: 1101px) {
  .pill-nav-links { gap: 12px; }
  .pill-nav-links a:not(.btn-pill) { font-size: 12.5px; }
  .pill-nav .wordmark img { width: 68px; height: 68px; }
  .btn-pill { padding: 8px 8px 8px 16px; font-size: 12.5px; }
}

/* seven tabs need more room than 900px allows, so the drawer takes over sooner */
@media (max-width: 1100px) {
  .pill-nav-links { display: none; }
  .pill-nav > .icon-btn { display: none; }
  .nav-toggle { display: block; }
  .pill-nav { padding: 8px 10px; }
  .pill-nav .wordmark img { width: 64px; height: 64px; }
  .mobile-nav {
    position: fixed;
    top: 116px; left: 20px; right: 20px;
    max-height: calc(100vh - 136px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px -8px rgba(0,0,0,.18);
    padding: 10px;
    z-index: 120;
    flex-direction: column;
    display: none;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 110;
    display: none;
  }
  .mobile-nav-backdrop.open { display: block; }
}


/* ============================================================
   Document-style content blocks (mission, bylaws, policies)
   ============================================================ */

.doc-block {
  max-width: 820px;
  margin: 0 auto 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
}
.doc-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.doc-block h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--heading);
  margin: 0 0 16px;
}
.doc-block h4 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--heading);
  margin: 24px 0 10px;
}
.doc-block p {
  color: var(--text-body);
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 500;
  text-transform: none;
  margin: 0 0 14px;
}
.doc-block ul, .doc-block ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.doc-block li {
  color: var(--text-body);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 10px;
}
.doc-block li::marker { color: var(--gold); }
.doc-block .fine-print {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
}

.section-dark .doc-block { border-bottom-color: rgba(255,255,255,0.12); }
.section-dark .doc-block h3 { color: var(--gold-light); }
.section-dark .doc-block h4 { color: #fff; }
.section-dark .doc-block p,
.section-dark .doc-block li { color: rgba(255,255,255,0.78); }
.section-dark .doc-block li::marker { color: var(--gold-light); }
.section-dark .doc-block strong { color: #fff; }
.section-dark .doc-block .fine-print { color: rgba(255,255,255,0.5); }


/* Zoho billing pricing table embed */
.pricing-embed {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 200px;
}
.pricing-embed img { max-width: 100%; }

.tight-list li { margin-bottom: 6px; }


/* ============================================================
   Gold membership tiers band
   ============================================================ */

.tiers-band {
  background: linear-gradient(160deg, #E8CC7A 0%, #C79E36 50%, #A07A22 100%);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 64px 0;
}
.tiers-band .section-head h2 { color: var(--ink); }
.tiers-band .section-head p { color: rgba(0,0,0,0.72); }
.tiers-band .eyebrow,
.tiers-band .eyebrow .dot { color: var(--ink); }
.tiers-band .pricing-embed {
  background: #fff;
  border-radius: 18px;
  border: 2px solid var(--ink);
  padding: 28px;
  box-shadow: 0 14px 34px -18px rgba(0,0,0,0.5);
}

/* centered intro copy */
.centered-copy { text-align: center; }
.centered-copy p { margin-left: auto; margin-right: auto; }

/* rate tables inside accordions */
.rate-table-wrap { overflow-x: auto; margin: 0 0 22px; }
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.rate-table th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding: 8px 14px 8px 0;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}
.rate-table td {
  padding: 9px 14px 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-weight: 600;
}
.rate-table td:last-child {
  text-align: right;
  font-weight: 800;
  color: var(--heading);
  white-space: nowrap;
}
.rate-table tr:last-child td { border-bottom: none; }

.section-dark .rate-table td { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.12); }
.section-dark .rate-table td:last-child { color: #fff; }
.section-dark .rate-table th { color: var(--gold-light); border-bottom-color: var(--gold-light); }

.disclaimer-note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--secondary);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin-top: 18px;
}
.section-dark .disclaimer-note {
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
}


/* invisible bridge so the cursor can travel from the tab down into its menu */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  display: block;
}


/* ended-event links in the nav dropdowns */
.dropdown-menu a.dd-ended { color: #E2645C !important; }
.dropdown-menu a.dd-ended:hover { color: #fff !important; }
.ended-tag {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #E2645C;
  background: rgba(226,100,92,0.16);
  padding: 3px 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.mobile-dropdown a.dd-ended { color: #C0392B; }

/* event blocks */
.event-block {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 30px 34px;
}
.event-block.ended { border-left-color: #C0392B; opacity: 0.92; }
.event-block h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--heading);
  margin: 12px 0 14px;
}
.event-block p {
  color: var(--text-body);
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 500;
  text-transform: none;
  margin: 0 0 12px;
}
.event-block p:last-child { margin-bottom: 0; }
.event-block .fine-print { font-size: 13px; font-style: italic; color: var(--text-muted); }

.event-status {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
}
.event-status.ended { color: #C0392B; background: rgba(192,57,43,0.1); }
.event-status.upcoming { color: var(--gold); background: rgba(184,145,47,0.12); }


/* ============================================================
   Membership flip cards
   ============================================================ */

.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.flip-card {
  perspective: 1200px;
  height: 280px;
  cursor: pointer;
  outline: none;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner,
.flip-card:focus .flip-inner,
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }

.flip-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.flip-front {
  background: linear-gradient(160deg, #1E1E1E 0%, #0C0C0C 60%, #000000 100%);
  border: 2px solid var(--gold);
  color: #fff;
}
.flip-front h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  margin: 14px 0 0;
}
.flip-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.flip-hint {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #E8CC7A 0%, #C79E36 55%, #A07A22 100%);
  border: 2px solid var(--ink);
  color: var(--ink);
}
.flip-back p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--ink);
  text-transform: none;
  margin: 0;
}

@media (max-width: 1000px) {
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
  .flip-card { height: 260px; }
}
@media (max-width: 560px) {
  .flip-grid { grid-template-columns: 1fr; }
  .flip-card { height: 230px; }
}


/* ============================================================
   Regional roster + committees
   ============================================================ */

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}
.region-col h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  padding-bottom: 12px;
  margin: 0 0 16px;
  border-bottom: 2px solid var(--gold);
}
.region-list { list-style: none; margin: 0; padding: 0; }
.region-list li {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.region-list li:last-child { border-bottom: none; }
.region-name {
  display: block;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}
.region-company {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 3px;
  text-decoration: none;
}
.region-company:hover { color: #fff; text-decoration: underline; }
.region-term {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.committee-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 24px 26px;
}
.committee-card h3 {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--heading);
  margin: 0 0 14px;
}
.committee-card ul { list-style: none; margin: 0; padding: 0; }
.committee-card li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-body);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.committee-card li:last-child { border-bottom: none; }

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


/* a doc-block directly under a section head shouldn't add a second gap */
.section-head + .doc-block { margin-top: -18px; }
.section-head + .doc-block.centered-copy p:first-child { margin-top: 0; }


/* ============================================================
   Event cards: black when past, gold when upcoming
   ============================================================ */

.event-block {
  background: linear-gradient(160deg, #E8CC7A 0%, #C79E36 55%, #A07A22 100%);
  border: 2px solid var(--ink);
  border-left: 6px solid var(--ink);
  color: var(--ink);
}
.event-block h3 { color: var(--ink); }
.event-block p { color: rgba(0,0,0,0.78); }
.event-block .fine-print { color: rgba(0,0,0,0.6); }
.event-block .event-status.upcoming { color: var(--ink); background: rgba(0,0,0,0.12); }

.event-block.ended {
  background: linear-gradient(160deg, #1E1E1E 0%, #0C0C0C 60%, #000000 100%);
  border: 2px solid var(--gold);
  border-left: 6px solid var(--gold);
  opacity: 1;
}
.event-block.ended h3 { color: #fff; }
.event-block.ended p { color: rgba(255,255,255,0.8); }
.event-block.ended .fine-print { color: rgba(255,255,255,0.55); }
.event-block.ended .event-status.ended { color: #fff; background: rgba(255,255,255,0.14); }

.event-block .btn-disabled {
  background: rgba(0,0,0,0.1);
  border-color: var(--ink);
  color: rgba(0,0,0,0.6);
}


/* ============================================================
   We MOVE California - interactive sector stage
   ============================================================ */

.move-section { padding-bottom: 110px; }
.move-stage { max-width: 1380px; margin: 0 auto; }

.move-track {
  position: relative;
  height: 46px;
  margin: 0 0 30px;
}
.move-road { position: absolute; top: 50%; left: 0; width: 100%; height: 6px; transform: translateY(-50%); }
.move-vehicle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.5);
  transition: transform .75s cubic-bezier(.45,.05,.2,1);
}

.move-tiles {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}
.move-tile {
  appearance: none;
  border: 2px solid var(--border);
  background: var(--card-bg);
  border-radius: 14px;
  padding: 20px 14px;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.move-tile:hover { transform: translateY(-4px); border-color: var(--gold); }
.move-tile-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.move-tile-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--heading);
}
.move-tile-place {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  line-height: 1.35;
}
.move-tile.active {
  background: linear-gradient(160deg, #1E1E1E 0%, #0C0C0C 60%, #000000 100%);
  border-color: var(--gold);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,0.55);
}
.move-tile.active .move-tile-name { color: var(--gold-light); }
.move-tile.active .move-tile-num,
.move-tile.active .move-tile-place { color: rgba(255,255,255,0.6); }

.move-panels { position: relative; min-height: 124px; }
.move-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.move-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.move-panel h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--heading);
  margin: 0 0 14px;
}
.move-panel p {
  font-size: 17.5px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-body);
  text-transform: none;
  margin: 0;
}

@media (max-width: 1000px) {
  .move-tiles { grid-template-columns: repeat(4, 1fr); }
  .move-panels { min-height: 160px; }
}
@media (max-width: 620px) {
  .move-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .move-tile { padding: 16px 10px; }
  .move-panels { min-height: 200px; }
}

/* ============================================================
   Save-the-date popup
   ============================================================ */

.std-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .35s ease;
}
.std-overlay.show { opacity: 1; }
.std-overlay.hide { opacity: 0; pointer-events: none; }

.std-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(160deg, #1E1E1E 0%, #0C0C0C 55%, #000000 100%);
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 44px 40px 38px;
  text-align: center;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7);
  transform: translateY(18px) scale(.97);
  transition: transform .4s cubic-bezier(.3,.8,.3,1);
}
.std-overlay.show .std-card { transform: translateY(0) scale(1); }

.std-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.std-card h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.std-card p {
  color: rgba(255,255,255,0.78);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 500;
  text-transform: none;
  margin: 0 0 10px;
}
.std-venue {
  color: var(--gold-light) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em;
  font-size: 13.5px !important;
}
.std-card .btn-lg { margin-top: 20px; }

.std-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.std-close:hover { background: var(--gold); color: var(--ink); }

.std-timer {
  margin-top: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.std-timer span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform-origin: left center;
  animation: std-countdown 10s linear forwards;
}
@keyframes std-countdown { from { transform: scaleX(1); } to { transform: scaleX(0); } }

@media (prefers-reduced-motion: reduce) {
  .std-timer span { animation: none; }
}


/* stacked testimonial layout */
.testimonial-card .stars { margin-bottom: 4px; }
.testimonial-card blockquote { margin: 0 0 6px; }
.testimonial-card .avatar-circle { margin-bottom: 4px; }


/* the gold pill sits behind the open drawer on small screens */
@media (max-width: 1100px) {
  .mobile-nav { z-index: 120; }
  .mobile-nav-backdrop { z-index: 110; }
  body.nav-open .pill-nav-wrap,
  body.nav-open .top-band > .pill-nav-wrap { z-index: 100; }
}

/* We MOVE California spacing */
.move-section { padding-top: 84px; padding-bottom: 96px; }
.move-section .section-head { margin-bottom: 46px; }
.move-note {
  max-width: 860px;
  margin: 22px auto 0;
  text-align: center;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.move-note p {
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-body);
  text-transform: none;
  margin: 0;
}


.testimonial-card { padding: 38px 32px; }
.testimonial-card blockquote { line-height: 1.6; }
.testimonial-card .avatar-circle { width: 58px; height: 58px; min-width: 58px; font-size: 18px; }


/* the story block's own rule doubled up with the affiliation divider */
.doc-block:has(+ .affiliation-block) { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
