/* ==========================================================================
   NFMT West 2026 — site.css
   Editorial-authority design system. Hand-written, framework-free.
   Palette: deep navy ink + refined evergreen accent on white/cream.
   Type: Archivo (display) + Hanken Grotesk (body/UI).
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ink:        #14233A;   /* primary navy "ink" */
  --ink-2:      #1C3554;   /* lighter navy for gradients */
  --ink-3:      #0E1A2B;   /* deepest navy (footer) */
  --accent:     #1F5C45;   /* refined evergreen (primary accent) */
  --accent-2:   #2C7A5B;   /* brighter green for hover */
  --cream:      #F5EFE3;   /* alternating section background */
  --cream-2:    #FBF7EF;   /* lighter cream */
  --paper:      #FFFFFF;
  --text:       #1E2730;   /* body text */
  --muted:      #586474;   /* secondary text (AA on white & cream) */
  --rule:       rgba(20, 35, 58, 0.14);
  --rule-dark:  rgba(255, 255, 255, 0.16);

  /* Ad-influenced accent set — MUTED, ACCENTS ONLY (never major surfaces).
     No red anywhere in the design; red is reserved for the NFMT brand logo. */
  --teal:       #2C6E7F;   /* muted slate-teal (AA on white: 5.0:1) */
  --teal-2:     #3B8497;   /* teal hover / lighter */
  --sage:       #5C8C6E;   /* soft sage green (skyline mid-tone) */
  --ochre:      #A9722A;   /* warm muted ochre — use very sparingly (AA on white) */
  --brand-orange: #FAA61C; /* illustration orange (not in logo) — section bg option.
                              Use with INK text only (navy-on-orange ~7:1 AA/AAA);
                              never white text (fails contrast). */

  /* Warm "act now" CTA accent, split per site so each derives from its own logo:
     West = the logo's light green #B3D998 (also the sage in the skyline art;
     ~10:1 AAA with ink text), East = illustration orange (a core East-logo
     color). Recolors the header Register button + dark-surface eyebrows from
     one place. PENDING Angela sign-off (docs/CONTENT-QUERIES.md); revert =
     set --cta: var(--brand-orange). */
  --cta:       #B3D998;
  --cta-hover: #A2CC7F;
  --cta-ink:   var(--ink);

  /* Duotone tint for the inner-page photo bands — the same logo green on West;
     the East hook swaps it to the East logo's sky-blue. */
  --duotone:   #B3D998;

  /* Skyline motif palette — tokenized so the NFMT East variant recolors from
     one place (see docs/EAST-ADAPTATION.md). West = evergreen/teal/sage/ochre. */
  --skyline-1:  var(--accent);
  --skyline-2:  var(--teal);
  --skyline-3:  var(--sage);
  --skyline-4:  var(--ochre);
  --shadow:     0 1px 2px rgba(20,35,58,.04), 0 12px 32px -12px rgba(20,35,58,.18);
  --shadow-sm:  0 1px 2px rgba(20,35,58,.05), 0 6px 18px -10px rgba(20,35,58,.16);

  /* Type */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --radius: 4px;
  --radius-lg: 8px;
  --section-y: clamp(3.25rem, 7vw, 6rem);
  --skyline-h: clamp(70px, 9vw, 128px);  /* height of a bottom skyline band */
}

/* NFMT East variant — add data-brand="east" to <html> to recolor the primary
   accent toward the East palette (sky-blue + orange, per the NFMT east logo),
   keeping the same muted base. Full playbook: docs/EAST-ADAPTATION.md. */
:root[data-brand="east"] {
  --accent:   #2C6E7F;   /* muted sky-teal as primary (replaces evergreen) */
  --accent-2: #3B8497;   /* hover */
  /* East owns the warm orange: CTA button + eyebrows return to illustration
     orange here (West uses mint — see --cta note in :root). */
  --cta:       var(--brand-orange);
  --cta-hover: #E8940E;
  --duotone:   #88D3DD;  /* East logo sky-blue (also in the skyline art) */
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-2); }
strong { font-weight: 700; }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3vw + 0.9rem, 3rem); }
h3 { font-size: clamp(1.4rem, 1.5vw + 0.9rem, 2rem); }
h4 { font-size: clamp(1.1rem, 0.6vw + 0.95rem, 1.35rem); letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: #EAF0F6; }
.section--ink h2, .section--ink h3,
.testimonials h2, .testimonials h3 { color: #fff; }

/* Warm illustration-orange section (no white text — ink only, AA/AAA on orange).
   Use for a skyline-free section to introduce the brand orange as an accent. */
.section--orange { background: var(--brand-orange); color: var(--ink); }
.section--orange h2, .section--orange h3, .section--orange h4 { color: var(--ink); }
.section--orange .kicker { color: var(--ink); }
.section--orange .section-head p, .section--orange > .container > p { color: var(--ink); }
.section--orange .stat__num { color: var(--ink); }
.section--orange .stat__label { color: var(--ink); }
.section--orange .stat__chip { background: rgba(20, 35, 58, .12); color: var(--ink); }

/* Editorial eyebrow / kicker */
.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  display: inline-block;
}
.section--ink .kicker, .testimonials .kicker { color: var(--cta); }

/* Section heading block */
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head p { color: var(--muted); font-size: 1.125rem; }
.section--ink .section-head p:not(.kicker), .testimonials .section-head p:not(.kicker) { color: #C4D2E2; }

.lede { font-size: clamp(1.1rem, 0.7vw + 1rem, 1.3rem); color: var(--muted); }

/* Thin rule */
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--ink); color: #fff; padding: .65rem 1rem;
  border-radius: var(--radius); z-index: 1000; transition: top .2s ease;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* Visible focus everywhere */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
/* ...and mint on dark surfaces, where evergreen would vanish (WCAG 1.4.11). */
.topbar :focus-visible, .page-hero :focus-visible, .section--ink :focus-visible,
.testimonials :focus-visible, .section--accent :focus-visible, .cta-band :focus-visible,
.site-footer :focus-visible, .lightbox :focus-visible, .to-top:focus-visible { outline-color: #8FD3B4; }

/* ==========================================================================
   Buttons — ONE component, color variants only (consistent size & style)
   ========================================================================== */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 50px;
  padding: 0 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .015em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn .arrow { transition: transform .18s ease; }
.btn:hover { box-shadow: var(--shadow-sm); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

/* Variants — color differs, geometry identical */
.btn--primary { --btn-bg: var(--ink);   --btn-fg:#fff; --btn-bd: var(--ink); }
.btn--primary:hover { background:#1D3552; border-color:#1D3552; color:#fff; }
.btn--accent  { --btn-bg: var(--accent);--btn-fg:#fff; --btn-bd: var(--accent); }
.btn--accent:hover  { background: var(--accent-2); border-color: var(--accent-2); color:#fff; }
/* Brand CTA — West: light mint; East: illustration orange (both via the --cta
   tokens). INK text on either fill (white fails contrast on both). The class
   name predates the West/East split; treat it as "the warm CTA variant". */
.btn--cta  { --btn-bg: var(--cta); --btn-fg: var(--cta-ink); --btn-bd: var(--cta); }
.btn--cta:hover  { background: var(--cta-hover); border-color: var(--cta-hover); color: var(--cta-ink); }
.btn--outline { --btn-bg: transparent;  --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--outline:hover { background: var(--ink); color:#fff; }
/* On dark backgrounds */
.btn--ghost-light { --btn-bg: transparent; --btn-fg:#fff; --btn-bd: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background:#fff; color: var(--ink); border-color:#fff; }
.btn--block { width: 100%; }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar {
  background: var(--ink-3);
  color: #C9D5E4;
  font-size: .85rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 44px; padding-block: .35rem;
}
.topbar__date { margin: 0; letter-spacing: .01em; }
.topbar__fn { display: inline-flex; align-items: center; gap: .6rem; }
.topbar__fn img { height: 18px; width: auto; }
.topbar__fn a { color: #C9D5E4; text-decoration: none; white-space: nowrap; }
.topbar__fn a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 640px) {
  .topbar__date { font-size: .78rem; }
  .topbar__fn .topbar__news { display: none; }
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 96px;
  padding-block: .65rem;
}
.nav__brand { display: inline-flex; align-items: center; flex: 0 0 auto; margin-right: auto; }
.nav__brand img { width: clamp(118px, 12vw, 150px); height: auto; }
.nav__brand:focus-visible { outline-offset: 4px; }

.nav__list {
  display: flex; align-items: center; gap: .35rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__link, .nav__trigger {
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  color: var(--ink); text-decoration: none;
  background: none; border: 0; cursor: pointer;
  padding: .6rem .85rem; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: .35rem;
  letter-spacing: .005em;
}
.nav__link:hover, .nav__trigger:hover { color: var(--accent); background: rgba(31,92,69,.06); }
/* 6-item nav (Contact added 2026-07-16): keep labels on one line in the
   1024-1180 squeeze between the mobile drawer and full desktop spacing */
@media (min-width: 1024px) and (max-width: 1180px) {
  .nav__link, .nav__trigger { white-space: nowrap; padding-inline: .55rem; font-size: .95rem; }
}
.nav__trigger .caret { width: .6em; height: .6em; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
.nav__trigger[aria-expanded="true"] .caret { transform: rotate(-135deg) translateY(-1px); }
.nav__actions { display: flex; align-items: center; gap: .6rem; flex: 0 0 auto; }

/* Hamburger */
.nav__toggle {
  display: none; flex: 0 0 auto;
  width: 46px; height: 46px; margin-left: auto;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: #fff; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after  { position: absolute; top: 7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mega menu panel */
.megamenu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  display: none;
}
.megamenu[data-open="true"] { display: block; }
.megamenu__grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(1.5rem, 3vw, 2.75rem); align-items: start; }
.megamenu__list { display: flex; flex-direction: column; }
.megamenu__list a {
  color: var(--ink); text-decoration: none; font-weight: 600;
  padding: .6rem 0; border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.megamenu__list a:hover { color: var(--accent); }
.megamenu__list a[target="_blank"] .ext { font-size: .8em; color: var(--muted); }
.megamenu__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.menu-card { display: flex; flex-direction: column; background: var(--cream-2); border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; }
.menu-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.menu-card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.menu-card h5 { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin: 0 0 .4rem; }
.menu-card p { font-size: .92rem; color: var(--muted); margin: 0 0 1rem; }
.menu-card .btn { margin-top: auto; }

/* ---------- Mobile nav ---------- */
@media (max-width: 1023px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    display: none;
    max-height: calc(100vh - 96px); overflow-y: auto;
  }
  .nav__menu[data-open="true"] { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link, .nav__trigger { width: 100%; justify-content: space-between; padding: .9rem .25rem; border-bottom: 1px solid var(--rule); border-radius: 0; font-size: 1.05rem; }
  .nav__actions { flex-direction: column; align-items: stretch; gap: .6rem; margin-top: 1.1rem; }
  .nav__actions .btn { width: 100%; }
  /* mega menu becomes inline accordion */
  .megamenu { position: static; box-shadow: none; border: 0; padding: .5rem 0 1rem; }
  .megamenu__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .megamenu__cards { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .nav__menu { display: flex !important; align-items: center; gap: 1.5rem; }
}

/* ==========================================================================
   Hero — editorial split
   ========================================================================== */
.hero { background: var(--paper); overflow: clip; }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); align-items: center;
  gap: clamp(1.75rem, 4vw, 4rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  /* extra room so content/CTAs never run over the bottom skyline band */
  padding-bottom: calc(var(--skyline-h) + clamp(1.25rem, 3vw, 2.5rem));
}
.hero__content { max-width: 36rem; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--accent); display: block; }
.hero__sub { font-size: clamp(1.05rem, 0.6vw + 1rem, 1.2rem); color: var(--muted); margin-bottom: 1.6rem; }

/* Editorial fact list (date / venue / location) */
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2rem;
  margin: 0 0 2rem; padding: 0;
}
.hero__facts > div { padding-left: 1rem; border-left: 2px solid var(--accent); }
.hero__facts dt {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin: 0 0 .25rem;
}
.hero__facts dd {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  color: var(--ink); font-size: 1.05rem; line-height: 1.2;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16/10; }
}

/* ==========================================================================
   Feature cards (Sessions / Expo)
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.feature {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.feature__media { overflow: hidden; }
.feature__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease; }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__body { padding: clamp(1.4rem, 2.5vw, 2rem); display: flex; flex-direction: column; flex: 1; }
.feature h3 { margin-bottom: .65rem; }
.feature h3 + .accent-bar { width: 52px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 1rem; }
.feature p { color: var(--muted); margin-bottom: 1.5rem; }
.feature__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: auto; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials carousel
   ========================================================================== */
.testimonials { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; }
.carousel { position: relative; max-width: 60rem; margin-inline: auto; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.carousel__slide { flex: 0 0 100%; min-width: 0; padding: 2.5rem .5rem .5rem; }
.quote {
  display: grid; grid-template-columns: 168px 1fr; gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center; text-align: left;
}
.quote__avatar {
  width: 168px; height: 168px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,.25); justify-self: center;
}
.quote figure { margin: 0; }
.quote blockquote { margin: 0 0 1.1rem; font-size: clamp(1.1rem, 1vw + 1rem, 1.4rem); line-height: 1.5; font-family: var(--font-body); position: relative; }
.quote blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 4rem; line-height: 0; color: var(--cta); position: absolute; left: -1.5rem; top: .05em; opacity: .45; pointer-events: none; }
.quote figcaption { color: #C4D2E2; font-size: .98rem; }
.quote figcaption strong { color: #fff; font-family: var(--font-display); font-size: 1.05rem; display: block; margin-bottom: .15rem; }
.quote figcaption .tag { color: var(--cta); font-weight: 600; }
@media (max-width: 620px) {
  .quote { grid-template-columns: 1fr; text-align: center; }
  .quote blockquote { text-align: left; }
  .quote blockquote::before { left: -.4rem; top: -.35em; font-size: 3rem; }
  .quote__avatar { width: 120px; height: 120px; }
}

.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2rem; }
.carousel__btn {
  width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto;
  border: 1.5px solid rgba(255,255,255,.4); background: transparent; color: #fff;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.carousel__btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.carousel__btn svg { width: 18px; height: 18px; }
.carousel__dots { display: flex; gap: 2px; align-items: center; }
/* 24px hit target (WCAG 2.2 / 2.5.8); the visible 9px dot is the ::after. */
.carousel__dot { position: relative; width: 24px; height: 24px; border-radius: 50%; border: 0; padding: 0; background: transparent; cursor: pointer; }
.carousel__dot::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; border-radius: 50%; background: rgba(255,255,255,.3); transition: background-color .2s ease, transform .2s ease; }
.carousel__dot[aria-current="true"]::after { background: var(--cta); transform: scale(1.25); }

/* ==========================================================================
   Who Attends — logo wall
   ========================================================================== */
.logo-wall {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden;
}
.logo-wall__item {
  background: #fff; aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  padding: 1.1rem;
}
.logo-wall__item img {
  max-height: 64px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .62; transition: filter .3s ease, opacity .3s ease;
}
.logo-wall__item:hover img { filter: grayscale(0); opacity: 1; }
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } .logo-wall__item { padding: .8rem; } }
.who-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ==========================================================================
   Las Vegas
   ========================================================================== */
.vegas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.vegas-card { background: rgba(255,255,255,.05); border: 1px solid var(--rule-dark); border-radius: var(--radius-lg); overflow: hidden; }
.vegas-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.vegas-card__body { padding: 1.25rem clamp(1rem,2vw,1.5rem) 1.5rem; }
.vegas-card__body .btn { width: 100%; }
@media (max-width: 700px) { .vegas-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Sponsors
   ========================================================================== */
.tier { margin-top: clamp(2rem, 4vw, 3rem); }
.tier__label {
  text-align: center; font-family: var(--font-body); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; color: var(--muted);
  display: flex; align-items: center; gap: 1rem; max-width: 36rem; margin: 0 auto clamp(1.25rem,2.5vw,1.75rem);
}
.tier__label::before, .tier__label::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.tier--platinum .tier__label { color: var(--ink); }
.sponsor-grid { display: grid; gap: 1.25rem; justify-items: center; align-items: center; }
.sponsor-grid--1 { grid-template-columns: 1fr; }
/* Centered flex: partial last rows center at any sponsor count (lineup TBD). */
.sponsor-grid--gold, .sponsor-grid--silver { display: flex; flex-wrap: wrap; justify-content: center; }
.sponsor-grid--gold > .sponsor, .sponsor-grid--silver > .sponsor { width: calc((100% - 5rem) / 5); }
.sponsor {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; width: 100%; min-height: 96px; transition: box-shadow .2s ease, transform .2s ease;
}
.sponsor:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.sponsor img { max-height: 64px; width: auto; max-width: 100%; object-fit: contain; }
.tier--platinum .sponsor { min-height: 130px; max-width: 320px; margin-inline: auto; }
/* Single-logo association row: same constrained card as Platinum, not full-bleed */
.tier--assoc .sponsor { max-width: 320px; margin-inline: auto; }
.tier--platinum .sponsor img { max-height: 96px; }
@media (max-width: 900px) { .sponsor-grid--gold > .sponsor, .sponsor-grid--silver > .sponsor { width: calc((100% - 2.5rem) / 3); } }
@media (max-width: 540px) { .sponsor-grid--gold > .sponsor, .sponsor-grid--silver > .sponsor { width: calc((100% - 1.25rem) / 2); } }

/* Ad slot wrapper (keeps DFP leaderboard tidy) */
.ad-slot { display: flex; justify-content: center; padding: 1.5rem 0; }
.ad-slot > div { max-width: 100%; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink-3); color: #B9C6D8; font-size: .95rem; }
.site-footer a { color: #B9C6D8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-top { padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 2rem; margin-bottom: 2.5rem; }
.footer-logo { background: #fff; border-radius: var(--radius); padding: .55rem .7rem; display: inline-flex; }
.footer-logo img { width: 130px; height: auto; }
.footer-tagline { font-family: var(--font-display); color: #fff; font-size: clamp(1.25rem, 2vw, 1.6rem); margin: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.footer-col h2 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin: 0 0 .9rem; letter-spacing: 0; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; line-height: 1.4; }
.footer-meta { border-top: 1px solid var(--rule-dark); padding-block: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-news { display: grid; gap: .4rem; margin: 2rem 0 0; }
.footer-news p { margin: 0; }
.footer-social { display: flex; gap: .75rem; align-items: center; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  font-size: 1.05rem; text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--cta); color: var(--ink); border-color: var(--cta); }
.footer-legal { display: flex; flex-wrap: wrap; gap: .35rem 1.25rem; align-items: center; }
.footer-legal .copyright { color: #7E8DA3; }
@media (max-width: 900px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }

/* ==========================================================================
   Scroll-to-top
   ========================================================================== */
.to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: #fff; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); }
.to-top svg { width: 20px; height: 20px; }

/* Utility */
.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; }

/* ==========================================================================
   Inner-page components (added for show-info, conference, expo, networking,
   exhibit-sponsor, travel, fraud warning, policies)
   ========================================================================== */

/* Page masthead */
.page-hero { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%); color: #EAF0F6; }
.page-hero__inner { padding-block: clamp(2.5rem, 5vw, 4.25rem); max-width: 52rem; }
.page-hero h1 { color: #fff; margin-bottom: .4em; }
.page-hero .kicker { color: var(--cta); }
.page-hero p { color: #C4D2E2; font-size: clamp(1.05rem, 0.6vw + 1rem, 1.25rem); margin: 0; }
.page-hero p + p { margin-top: .7rem; }
.page-hero .hero__cta { margin-top: clamp(1.6rem, 3vw, 2.25rem); }
.breadcrumb { font-size: .85rem; color: #93A4BC; margin: 0 0 1.1rem; }
.breadcrumb a { color: #93A4BC; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; opacity: .6; }

/* Prose / rich text (policies, fraud warning, travel, CEUs) */
.prose { max-width: 72ch; }
.prose.prose--wide { max-width: 90ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: clamp(1.5rem, 1.6vw + 1rem, 2rem); margin-top: 2.4rem; }
.prose h3 { font-size: clamp(1.2rem, 1vw + .9rem, 1.45rem); margin-top: 1.8rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 1.1rem 0; padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }
.prose a { font-weight: 600; }
.prose strong { color: var(--ink); }
.prose hr { border: 0; border-top: 1px solid var(--rule); margin: 2rem 0; }

/* Generic card grid + tile */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .card-grid--4 { grid-template-columns: 1fr; } }
.tile { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: clamp(1.4rem, 2.4vw, 1.9rem); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.section--cream .tile { background: #fff; }
.tile h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.tile .tile__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 .6rem; }
.tile p { color: var(--muted); margin: 0 0 1rem; }
.tile p:last-child { margin-bottom: 0; }
.tile .btn { margin-top: auto; align-self: flex-start; }
/* Guarantee breathing room above a bottom-aligned button (margin-top:auto can
   collapse to 0 when content fills the card, jamming the button against a list). */
.tile .check-list { margin-bottom: clamp(1.4rem, 2.5vw, 1.9rem); }
.feature__body .check-list { margin-block: 1.1rem 1.4rem; }
.tile > p + .btn { margin-top: 1.4rem; }
/* Whole tile as a link (session-track tiles → client-assigned listing URLs).
   Hover matches the .sponsor lift; inherit colors so tile text stays ink/muted. */
a.tile--link { text-decoration: none; color: inherit; transition: box-shadow .2s ease, transform .2s ease; }
a.tile--link:hover { box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
a.tile--link:hover h3 { color: var(--accent); }
.tile__icon { font-size: 1.5rem; color: var(--accent); margin-bottom: .9rem; }

/* Schedule */
.schedule { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.schedule--2 { grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 760px) { .schedule--2 { grid-template-columns: 1fr; } }
.sched-day { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; }
.sched-day__head { background: var(--ink); color: #fff; padding: 1rem 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.sched-row { display: grid; grid-template-columns: 190px 1fr; gap: 1rem 1.5rem; padding: .9rem 1.4rem; border-top: 1px solid var(--rule); align-items: baseline; }
.sched-row:first-of-type { border-top: 0; }
.sched-row__time { font-family: var(--font-body); font-weight: 700; color: var(--accent); font-size: .95rem; }
.sched-row__event { color: var(--text); }
.sched-row__event strong { display: block; color: var(--ink); }
@media (max-width: 620px) { .sched-row { grid-template-columns: 1fr; gap: .25rem; padding: .9rem 1.1rem; } }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2rem); align-items: stretch; max-width: 56rem; margin-inline: auto; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.25rem); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.price-card--feature { border: 2px solid var(--accent); box-shadow: var(--shadow); }
.price-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); margin: 0 0 .25rem; }
.price-card__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3rem); color: var(--accent); line-height: 1; margin: .4rem 0 1.1rem; }
.price-card__price small { font-size: .9rem; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.price-card ul { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .65rem; }
.price-card li { position: relative; padding-left: 1.6rem; color: var(--text); }
.price-card li::before { content: "\f00c"; font-family: "Font Awesome 7 Free"; font-weight: 900; font-size: .85em; position: absolute; left: 0; top: .18em; color: var(--teal); }
.price-card .btn { margin-top: auto; }

/* FAQ accordion (native disclosure) */
.faq { max-width: 60rem; }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__answer { padding: 0 0 1.3rem; color: var(--muted); max-width: 64ch; overflow: hidden; }
.faq__answer > * + * { margin-top: .8rem; }
.faq__item summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Stat grid */
/* Centered flex so an orphan stat centers on its own row when the grid wraps
   (e.g. 2+1 on mobile) instead of hanging left. Desktop still splits evenly. */
.stat-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.25rem, 2.5vw, 2rem); }
.stat-grid > .stat { flex: 1 1 200px; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.25rem); color: var(--accent); line-height: 1; }
.stat__label { color: var(--muted); margin-top: .4rem; font-size: .98rem; }
.section--ink .stat__num { color: #8FD3B4; }
.section--ink .stat__label { color: #C4D2E2; }

/* Icon / check list */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.check-list li { position: relative; padding-left: 1.9rem; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 7 Free"; font-weight: 900; font-size: .85em; position: absolute; left: 0; top: .18em; width: 1.25rem; height: 1.25rem; color: var(--teal);  /* shared logo-blue family — same in both colorways, AA on white/cream */ }

/* Contact cards */
.contact-grid { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
/* Fixed basis (no shrink): cards stay wide enough that a 30-char email +
   icon fits on one line at .9rem; min() keeps tiny viewports overflow-safe */
.contact-card { flex: 0 0 320px; max-width: min(340px, 100%); }
.contact-card__dept { font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0 0 .55rem; }
.contact-card { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; }
.contact-card__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0 0 .15rem; }
.contact-card__role { color: var(--muted); font-size: .92rem; margin: 0 0 .8rem; }
/* .9rem keeps the longest address (30ch + icon) on one line inside a 340px
   card; break-word stays as a fallback for anything longer */
.contact-card a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; word-break: break-word; }
.contact-card p { margin: .3rem 0; }
/* Person variant: centered card with a round color headshot (real, labeled
   people — the duotone .circle-photo stays decorative-only). */
.contact-card--person { text-align: center; }
.contact-card--person a { justify-content: center; }
.contact-card__avatar { display: block; width: 136px; height: 136px; border-radius: 50%; object-fit: cover; margin: .2rem auto 1rem; border: 3px solid var(--rule); }

/* Speaker byline: round color headshot beside the name (labeled person) */
.speaker { display: flex; align-items: center; gap: 1.1rem; margin: 0 0 1.1rem; }
.speaker__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--rule); flex: 0 0 auto; }
.speaker p { margin: 0; }

/* Two-column media row */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.media-row--flip .media-row__media { order: 2; }
.media-row__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.media-row + .media-row { margin-top: clamp(2.5rem, 5vw, 4rem); }
@media (max-width: 820px) { .media-row { grid-template-columns: 1fr; } .media-row--flip .media-row__media { order: 0; } }

/* Responsive video */
.video { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--ink-3); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Forms */
.form { max-width: 44rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.form__row--full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form__grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: .7rem .85rem; border: 1px solid #C2C9D2; border-radius: var(--radius); background: #fff; width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.form__note { font-size: .85rem; color: var(--muted); margin-top: .25rem; }

/* CTA band */
.cta-band { background: var(--accent); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 46rem; margin: 0 auto 1.6rem; }
.cta-band .btn--on-accent, .section--accent .btn--on-accent { background: #fff; color: var(--accent); border-color: #fff; }
.cta-band .btn--on-accent:hover, .section--accent .btn--on-accent:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Small helpers for inner pages */
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.25rem); }
.text-center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }
.lead-narrow { max-width: 60ch; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 2rem; }
.mt-1 { margin-top: 1.5rem; }

/* Pricing: row not included in a tier */
.price-card li.is-out { color: var(--muted); }
/* xmark (not en-dash) to mirror the client's chart; muted gray — never red */
.price-card li.is-out::before { content: "\f00d"; font-family: "Font Awesome 7 Free"; font-weight: 900; font-size: .85em; color: #9aa3ad; top: .18em; }

/* Contact groups */
.contact-group + .contact-group { margin-top: clamp(2rem, 4vw, 3rem); }
.contact-group__title { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin: 0 auto 1.5rem; padding-bottom: .6rem; border-bottom: 2px solid var(--accent); display: block; width: fit-content; text-align: center; }
.contact-sub { font-weight: 700; color: var(--accent); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin: 1.4rem 0 .8rem; }

/* Form component (Request-a-Floor-Plan stub). Field NAMES mirror the live
   .aspx form's contract — see the FLOORPLAN-FORM-START sentinel in
   pages/exhibit.main.html before restyling. */
.form { max-width: 56rem; margin-inline: auto; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem 2rem; }
@media (max-width: 720px) { .form__grid { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: .35rem; font-weight: 600; color: var(--ink); font-size: .95rem; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form select {
  width: 100%; padding: .65rem .8rem; border: 1px solid var(--rule); border-radius: var(--radius);
  background: #fff; color: var(--text); font: inherit; font-weight: 400;
}
.form fieldset { border: 0; margin: 1.5rem 0 0; padding: 0; }
.form legend { font-weight: 700; color: var(--ink); padding: 0; margin-bottom: .8rem; }
.form__checks { display: flex; flex-wrap: wrap; gap: .6rem 2rem; }
.form__check { display: inline-flex; align-items: center; gap: .55rem; font-weight: 400; color: var(--text); }
.form__check input { width: 1.05rem; height: 1.05rem; accent-color: var(--accent); }
.form__actions { margin-top: 1.75rem; }

/* ---- Exhibit page refinements ---- */
/* Breathing room for mid-section subheads that follow content blocks */
.section-head--gap { margin-top: clamp(2.5rem, 5vw, 4rem); }
.mt-lg { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* Two-column check list */
.check-list--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem 2.5rem; max-width: 46rem; margin-inline: auto; }
/* One-per-row: stop centering the block (in flex parents margin:auto shrinks it
   to fit-content) — left-align full width instead. */
@media (max-width: 560px) { .check-list--2col { grid-template-columns: 1fr; margin-inline: 0; max-width: none; } }

/* Bare logo wall: centered logos, no boxes/borders/background.
   Flexbox so a trailing partial row stays visually centered. */
.logo-wall--bare { display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  background: transparent; border: 0; gap: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2.25rem); }
.logo-wall--bare .logo-wall__item { flex: 0 0 auto; width: clamp(90px, 12vw, 116px); aspect-ratio: 3 / 2;
  background: transparent; padding: .25rem; }

/* Logo download (Exhibitor Toolkit) */
.logo-download { display: grid; grid-template-columns: minmax(0, 280px) 1fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; margin-top: clamp(1.75rem, 3.5vw, 2.75rem); }
.logo-download__art { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; align-items: center; justify-content: center; }
.logo-download__art img { max-width: 200px; width: 100%; }
.logo-download h3 { margin-bottom: .5rem; }
@media (max-width: 700px) { .logo-download { grid-template-columns: 1fr; } .logo-download__art { max-width: 320px; } }

/* Stat grid: cards, centered within each row for visual balance */
.stat-grid--cards { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 2vw, 1.5rem); }
.stat-grid--cards .stat { flex: 0 0 auto; width: clamp(150px, 19vw, 200px); background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: clamp(1.3rem, 2.5vw, 1.85rem) 1rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; }
.stat-grid--cards .stat__label { margin-top: .5rem; }

/* Card-section header spacing (e.g., "Types of Facilities") */
.stat-head { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }

/* Side-by-side CTA bands (e.g., travel page footer CTAs) */
.cta-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); align-items: stretch; }
.cta-duo .cta-band { display: flex; flex-direction: column; height: 100%; }
.cta-duo .cta-band .btn { margin-top: auto; align-self: center; }
@media (max-width: 760px) { .cta-duo { grid-template-columns: 1fr; } }

/* CTA band — navy variant (e.g., cautionary Fraud Warning beside the green Register band) */
.cta-band--ink { background: var(--ink); }
.cta-band--ink p { color: rgba(255, 255, 255, .85); }
.cta-band--ink .btn--on-accent:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Full-bleed accent CTA section (green spans full width, no inner card) */
.section--accent { background: var(--accent); color: #fff; text-align: center; }
.section--accent h2 { color: #fff; margin-bottom: .5rem; }
.section--accent p { color: rgba(255, 255, 255, .92); max-width: 48rem; margin: 0 auto 1.6rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* Intro split: content + sidebar CTA (exhibit page top). CTA moves above on mobile. */
.intro-split { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: start; }
.intro-split .section-head { margin-bottom: 1.5rem; }
.intro-split .cta-band { text-align: center; }
.intro-split .cta-band p { text-align: left; margin-inline: 0; }
@media (max-width: 900px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-split__aside { order: -1; }
}

/* ==========================================================================
   v2 — Signature skyline motif, count-up stat chips, subtle motion
   ========================================================================== */

/* ---- Abstract skyline — the client's extracted brand art, used full-strength.
   Decorative (aria-hidden). "sky" = negative-space shapes, themed per section bg. ---- */
.skyline { display: block; }
.skyline .sky { fill: var(--skyline-gap, #fff); }

/* Horizontal band: brand cityscape as a controlled-height, full-width strip along a
   section's bottom edge (rendered as a background so the roofline height stays sane). */
.hero { position: relative; }
.hero > .container { position: relative; z-index: 1; }
.hero__skyline {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  height: var(--skyline-h);
  background: url("../img/skyline-band.svg") repeat-x left bottom;
  background-size: auto 100%;
}
@media (max-width: 860px) { .hero__skyline { height: clamp(52px, 15vw, 78px); } }
/* East gets its own band in the hero too — the whole cityscape motif flips on one hook. */
:root[data-brand="east"] .hero__skyline { background-image: url("../img/skyline-band-alt.svg"); }

/* Reusable bottom skyline band for any section (adds clearance padding). */
.has-skyline { position: relative; padding-bottom: calc(var(--section-y) + var(--skyline-h)); }
.section-skyline {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  height: var(--skyline-h);
  background: url("../img/skyline-band.svg") repeat-x left bottom;
  background-size: auto 100%;
}
.has-skyline > .container { position: relative; z-index: 1; }
.section-skyline--alt { background-image: url("../img/skyline-band-alt.svg"); }

/* Building: brand high-rise as a subtle depth element hugging a section's bottom-left,
   behind cards that have their own background. */
.has-tower { position: relative; overflow: clip; }
.has-tower > .container { position: relative; z-index: 1; }
.section-tower {
  position: absolute; bottom: 0; z-index: 0; pointer-events: none;
  width: clamp(140px, 18vw, 230px); height: clamp(210px, 30vw, 360px);
  background-repeat: no-repeat; background-size: contain;
}
.section-tower--left  { left: 0;  background-position: left bottom; }
.section-tower--right { right: 0; background-position: right bottom; }
.section-tower--tall  { background-image: url("../img/building-tall.svg"); }
.section-tower--wide  { background-image: url("../img/building-wide.svg"); }
@media (max-width: 1023px) { .section-tower { display: none; } }

/* Layered cityscape: band repeat-x along the bottom edge + ONE building no-repeat
   bottom-right, painted over the band — the client's print-collateral treatment,
   done as multiple background images on the section itself. West art = the
   no-orange set (tall + band); the East hook swaps in the orange set (wide +
   band-alt). Use on cream sections, one cityscape moment per page. */
.section-cityscape {
  position: relative; overflow: clip;
  padding-bottom: calc(var(--section-y) + var(--skyline-h));
  background-image: url("../img/building-tall.svg"), url("../img/skyline-band.svg");
  background-repeat: no-repeat, repeat-x;
  background-position: right bottom, left bottom;  /* building hugs the right viewport edge */
  background-size: auto clamp(240px, 30vw, 380px), auto var(--skyline-h);
}
.section-cityscape > .container { position: relative; z-index: 1; }
:root[data-brand="east"] .section-cityscape {
  background-image: url("../img/building-wide.svg"), url("../img/skyline-band-alt.svg");
}
/* Below desktop the building goes away (matches .section-tower), band stays. */
@media (max-width: 1023px) {
  .section-cityscape {
    background-image: url("../img/skyline-band.svg");
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: auto var(--skyline-h);
  }
  :root[data-brand="east"] .section-cityscape { background-image: url("../img/skyline-band-alt.svg"); }
}

/* Balanced section head: circle duotone portrait left, kicker/h2/lede right —
   mirrors the circular photo composition (with thin offset concentric rings) in the
   client's house ads. Duotone recipe matches .media-band; East recolors via --duotone. */
.section-head--media {
  display: grid; grid-template-columns: clamp(200px, 22vw, 280px) 1fr;
  gap: clamp(1.75rem, 4.5vw, 4rem); align-items: center;
  max-width: none;
}
.section-head--media > div:last-child { max-width: 46rem; }  /* keep the text measure */
.circle-photo { position: relative; aspect-ratio: 1 / 1; border-radius: 50%; background: var(--duotone); }
.circle-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block;
  filter: grayscale(1) contrast(1.08) brightness(1.15); mix-blend-mode: multiply;
}
/* Concentric offset rings, per the house-ad art (kept inside cityscape overflow:clip) */
.circle-photo::before, .circle-photo::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.circle-photo::before { inset: -6% auto auto -6%; width: 104%; height: 104%; border: 2px solid var(--teal); }
.circle-photo::after  { inset: auto -5% -7% auto; width: 103%; height: 103%; border: 2px solid var(--sage); }
@media (max-width: 760px) {
  .section-head--media { grid-template-columns: 1fr; justify-items: center; text-align: left; }
  .circle-photo { width: clamp(160px, 48vw, 220px); }
}

/* ---- Stat "by the numbers" icon chips (reference-site pattern) ---- */
.stat__chip {
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; background: rgba(31, 92, 69, .10); color: var(--accent);
  font-size: 1.4rem;
}
.section--ink .stat__chip { background: rgba(255, 255, 255, .12); color: #8FD3B4; }
.stat__num { display: block; }
.stat__suffix { /* reserved for non-animated suffixes if needed */ }

/* ---- Subtle motion / micro-interactions (all reduced-motion-safe) ---- */
/* Reveal-on-scroll: hidden start-state applies ONLY with JS (.reveal-ready)
   and only when motion is welcome. No-JS/reduced-motion => always visible. */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .2, 1); }
  html.reveal-ready .reveal.is-in { opacity: 1; transform: none; }
  html.reveal-ready .reveal--d1 { transition-delay: .08s; }
  html.reveal-ready .reveal--d2 { transition-delay: .16s; }
  html.reveal-ready .reveal--d3 { transition-delay: .24s; }
  html.reveal-ready .reveal--d4 { transition-delay: .32s; }
}

/* ---- Accessible bar charts (native <meter>, no inline styles) ----
   Visible label + value are the authoritative data (SR-friendly); the meter is a
   decorative visual redundancy (aria-hidden). Restores the old-site audience charts. */
.barchart { display: grid; gap: .7rem; max-width: 46rem; }
.barchart--wide { max-width: 60rem; }
.bar-row { display: grid; grid-template-columns: minmax(8rem, 15rem) 1fr 3.2rem; gap: .6rem 1rem; align-items: center; }
.bar-row__label { font-size: .93rem; color: var(--text); }
.bar-row__meter {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 14px; border: 0; border-radius: 999px;
  background: #EAE0CE; /* track on white/cream */
}
.bar-row__meter::-webkit-meter-bar { background: #EAE0CE; border: 0; border-radius: 999px; }
.bar-row__meter::-webkit-meter-optimum-value { background: var(--accent); border-radius: 999px; }
.bar-row__meter::-moz-meter-bar { background: var(--accent); border-radius: 999px; }
.section--ink .bar-row__meter { background: rgba(255,255,255,.16); }
.section--ink .bar-row__meter::-webkit-meter-optimum-value { background: #8FD3B4; }
.section--ink .bar-row__meter::-moz-meter-bar { background: #8FD3B4; }
.bar-row__val { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .95rem; text-align: right; }
.section--ink .bar-row__val { color: #fff; }
.chart-block { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.chart-block h3 { text-align: center; margin-bottom: 1.4rem; }
.chart-block .pie-chart { flex: 1 1 auto; }   /* pie centers vertically; title stays top */
.chart-caption { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 1.1rem; }
@media (max-width: 620px) {
  .bar-row { grid-template-columns: 1fr 3.2rem; }
  .bar-row__meter { grid-column: 1 / -1; order: 3; height: 12px; }
}

/* ---- Pie charts (inline SVG; the legend text carries label + % for SR) ---- */
.pie-chart { display: flex; flex-wrap: wrap; gap: clamp(1.1rem, 3vw, 2.25rem); align-items: center; justify-content: center; }
.pie { width: clamp(170px, 24vw, 230px); height: auto; flex: 0 0 auto; }
.pie path { stroke: #fff; stroke-width: 1.5; transition: opacity .15s ease; }
.section--cream .pie path { stroke: var(--cream); }
/* Hover: dim the pie, spotlight the hovered slice (tooltip is the slice <title>) */
.pie:hover path { opacity: .45; }
.pie path:hover { opacity: 1; }
.pie-legend { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .93rem; min-width: 12rem; }
.pie-legend li { display: flex; align-items: center; gap: .6rem; color: var(--text); }
.pie-legend .pie-sw { width: 14px; height: 14px; border-radius: 3px; flex: 0 0 auto; }
.pie-legend strong { font-family: var(--font-display); color: var(--ink); margin-left: auto; padding-left: .75rem; }
/* Categorical palette — bright NFMT brand colors (orange, sky-blue, sage, teal,
   evergreen + shades). No red (reserved for the logo). Class sets both SVG fill
   (slices) and background (legend swatches). */
.pc-1{fill:#2C6E7F;background:#2C6E7F}.pc-2{fill:#FAA61C;background:#FAA61C}
.pc-3{fill:#88D3DD;background:#88D3DD}.pc-4{fill:#1F5C45;background:#1F5C45}
.pc-5{fill:#B3D998;background:#B3D998}.pc-6{fill:#E98B2B;background:#E98B2B}
.pc-7{fill:#5C8C6E;background:#5C8C6E}.pc-8{fill:#3B6E8F;background:#3B6E8F}
.pc-9{fill:#C9A227;background:#C9A227}

/* ---- App-store download badges (Font Awesome brand marks; no external images) ---- */
.app-badges { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 1.4rem; }
/* Small caps label anchoring a badge pair inside a CTA band (quieter than a heading,
   so it doesn't compete with the band's h2). */
p.app-badges__label { text-align: center; font-weight: 700; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin: 1.8rem auto 0; }
.section--accent p.app-badges__label { color: #DFF0E4; }
.app-badges__label + .app-badges { margin-top: .7rem; }
.app-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  background: #0E1A2B; color: #fff; border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px; padding: .5rem 1.15rem; min-height: 56px; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.app-badge:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); background: #14233A; color: #fff; }
.app-badge i { font-size: 1.85rem; line-height: 1; }
.app-badge__txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.app-badge__small { font-size: .68rem; letter-spacing: .03em; opacity: .82; text-transform: none; }
.app-badge__big { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: .01em; }

/* ---- Photo gallery (Highlights) + inner-page lead media ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.75rem, 1.5vw, 1.1rem); }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }
/* Full-bleed parallax image band (edge-to-edge, no inset/radius). JS translates
   the oversized image on scroll; reduced-motion / no-JS shows a centered crop. */
/* Duotone: grayscale photo multiplied onto the logo green (vanguardbar.com
   "Be Somebody" treatment); the East hook swaps the tint via --duotone.
   brightness lifts midtones so faces stay readable under the multiply. */
.media-band { position: relative; width: 100%; height: clamp(240px, 42vh, 460px); overflow: hidden; background: var(--duotone); }
.media-band__img { position: absolute; left: 0; top: -30%; width: 100%; height: 160%; object-fit: cover; filter: grayscale(1) contrast(1.08) brightness(1.15); mix-blend-mode: multiply; }
/* Per-band crop bias for photos whose subject sits in the top third (faces,
   signage). object-position redistributes the cover-crop INSIDE the img box;
   the parallax translate moves the box itself — they compose independently,
   so travel headroom is untouched. At narrow viewports cover fills by height
   and the Y bias is a no-op. */
.media-band--focus-top .media-band__img { object-position: 50% 15%; }
@media (prefers-reduced-motion: no-preference) { .media-band__img { will-change: transform; } }

.gallery__btn { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.gallery__btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-lg); }

/* Lightbox / modal image viewer (built by site.js) */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 5vw, 3.5rem); background: rgba(14, 26, 43, .92); }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 100%; max-height: 84vh; width: auto; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: #0E1A2B; }
.lightbox__cap { position: absolute; left: 0; right: 0; bottom: clamp(.6rem, 3vw, 1.4rem); text-align: center; color: #EAF0F6; font-size: .92rem; padding: 0 1.5rem; margin: 0; }
.lightbox__btn { position: absolute; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.12); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background-color .2s ease, color .2s ease; }
.lightbox__btn:hover { background: #fff; color: var(--ink); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { top: clamp(.6rem, 3vw, 1.4rem); right: clamp(.6rem, 3vw, 1.4rem); }
.lightbox__prev { left: clamp(.4rem, 2vw, 1.4rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.4rem, 2vw, 1.4rem); top: 50%; transform: translateY(-50%); }

/* Responsive map embed (Google Maps iframe) */
.map-embed { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--rule); margin-bottom: 1.1rem; }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Warning tile — pale caution-yellow so it reads as an advisory, and it hugs its
   content (align-self) instead of stretching to its grid neighbor's height. The icon's
   dark brick red is a deliberate warning-semantics exception to the no-red rule
   (muted, NOT the brand red). */
.tile--warning { background: #FCF5DC; border-color: #E6D8A7; align-self: start; }
.tile--warning h3 .fa-triangle-exclamation { color: #8A2424; margin-right: .5rem; font-size: .88em; position: relative; top: -1px; }

/* Centered pull-quote card — inline single quotes (e.g. attend networking). Echoes the
   testimonial carousel's oversized quote glyph, adapted for light sections. */
.pull-quote {
  max-width: 46rem; margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  background: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.75rem, 4vw, 3.25rem);
  text-align: center; position: relative;
}
.pull-quote::before {
  content: "\201C"; font-family: var(--font-display); font-weight: 800;
  font-size: 4.5rem; line-height: 0; color: var(--accent); opacity: .3;
  position: absolute; left: 1.2rem; top: 1.6rem; pointer-events: none;
}
.pull-quote blockquote { margin: 0; font-size: clamp(1.05rem, .6vw + 1rem, 1.25rem); line-height: 1.55; color: var(--text); }
.pull-quote figcaption { margin-top: 1rem; color: var(--muted); font-size: .95rem; }
.section--cream .pull-quote { background: #fff; border: 1px solid var(--rule); }

/* Gentle CTA lift + tile/feature elevation on hover */
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.tile { transition: transform .2s ease, box-shadow .2s ease; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature { transition: box-shadow .25s ease; }
.feature:hover { box-shadow: var(--shadow); }
.vegas-card { transition: transform .2s ease, box-shadow .2s ease; }
.vegas-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* Desktop nav: 2px accent underline grows from the left on hover/focus/open.
   (Global reduced-motion rule zeroes the transition; the state still shows.) */
@media (min-width: 1024px) {
  .nav__link, .nav__trigger { position: relative; }
  .nav__link::after, .nav__trigger::after {
    content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .3rem;
    height: 2px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .18s ease;
  }
  .nav__link:hover::after, .nav__link:focus-visible::after,
  .nav__trigger:hover::after, .nav__trigger:focus-visible::after,
  .nav__trigger[aria-expanded="true"]::after,
  .nav__link[aria-current="page"]::after { transform: scaleX(1); }
}
/* Current page (aria-current set by site.js): underline stays on desktop (above);
   accent color marks it in the mobile drawer too. */
.nav__link[aria-current="page"] { color: var(--accent); }

/* Stat chips settle from a slight shrink as their .stat reveals (motion-gated
   like the reveal system itself). */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .stat.reveal .stat__chip { transform: scale(.85); transition: transform .7s cubic-bezier(.2, .65, .2, 1) .1s; }
  html.reveal-ready .stat.reveal.is-in .stat__chip { transform: scale(1); }
}

/* Centered-flex card grid: use WITH .card-grid when the tile count leaves an
   orphan row (e.g. sessions' 5 tracks) so partial rows center instead of
   left-aligning. */
.card-grid--center { display: flex; flex-wrap: wrap; justify-content: center; }
.card-grid--center > .tile { flex: 1 1 300px; max-width: 430px; }
