/* ============================================================
   WORDPRESS SCOPING SHIM (added by Avalanche Creative)
   The original design styled `body` and bare tags globally.
   On a WP site that would bleed into theme chrome, so we:
     1. Move the dark surface + base type onto .ama-hp-root.
     2. Keep the original `body` rule below for standalone use,
        but its background is overridden when the template's
        root wrapper is present.
   The original stylesheet follows unchanged underneath.
   ============================================================ */
body:has(.ama-hp-root) { background: var(--bg); margin: 0; overflow-x: hidden; }
.ama-hp-root {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.ama-hp-root h1, .ama-hp-root h2, .ama-hp-root h3, .ama-hp-root h4 { text-wrap: balance; }
.ama-hp-root p { text-wrap: pretty; }
.ama-hp-root img { display: block; max-width: 100%; }
/* ===================== ORIGINAL STYLESHEET BELOW ===================== */

/* ============================================================
   AMA West Michigan — Home page
   Dark, vivid, motion-forward. Gotham Rounded (Arial fallback).
   ============================================================ */

:root {
  /* Surfaces — AMA Bone White (light palette per brand guidelines p.14) */
  --bg:        #f3f2ee;                 /* Bone White */
  --bg-2:      #ffffff;
  --surface:   #ffffff;
  --surface-2: #eceae3;
  --line:      oklch(0.32 0.045 265 / 0.14);
  --line-2:    oklch(0.32 0.045 265 / 0.26);

  /* French Navy Blue — primary brand color */
  --navy:      #1f304f;
  --navy-2:    oklch(0.24 0.05 265);

  /* Text — navy-first ink ramp (AA contrast on Bone White) */
  --text:      #1f304f;
  --text-dim:  oklch(0.42 0.045 265);
  --text-mute: oklch(0.49 0.035 265);

  /* Accents — red is the secondary highlight/button color */
  --accent:    #b22b25;                 /* AMA red — Pantone 1805 C per brand guidelines */
  --accent-ink: #ffffff;
  --accent-2:  oklch(0.55 0.13 58);     /* warm amber (community) */
  --accent-soft: oklch(0.51 0.215 27 / 0.10);

  /* Type */
  /* AMA brand typography: Gotham Rounded when installed, else Arial
     (approved secondary font per brand guidelines p.24). */
  --display: "Gotham Rounded", Arial, Helvetica, sans-serif;
  --body:    "Gotham Rounded", Arial, Helvetica, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Tweakable directions */
:root[data-direction="ember"] {
  --accent:    oklch(0.72 0.165 52);
  --accent-ink: oklch(0.18 0.05 52);
  --accent-2:  oklch(0.64 0.175 252);
  --accent-soft: oklch(0.72 0.165 52 / 0.15);
}
:root[data-direction="mono"] {
  --accent:    oklch(0.86 0.06 230);
  --accent-ink: oklch(0.18 0.02 256);
  --accent-2:  oklch(0.7 0.02 256);
  --accent-soft: oklch(0.86 0.06 230 / 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow.dot::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex: none; /* don't let the dot compress when the label wraps on mobile */
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: var(--pad-y) 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 30px -10px var(--accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px var(--accent); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--text); transform: translateY(-2px); }

.btn-sm { --pad-y: 11px; padding: 11px 18px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
/* Navy header, echoing AMA national's dark-blue site header. */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgb(31 48 79 / 0.92);
  color: #f3f2ee;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
header.nav.scrolled {
  border-bottom-color: oklch(1 0 0 / 0.14);
  background: rgb(26 41 68 / 0.96);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.brand-name span { display: block; color: var(--text-mute); font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em; }
.brand-logo { height: 38px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 32px; } }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14.5px;
  color: oklch(0.87 0.015 265);
  padding: 9px 14px;
  border-radius: 9px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: oklch(1 0 0 / 0.1); }
.nav-cta { margin-left: 10px; }
.nav-burger { display: none; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: clamp(54px, 8vw, 104px);
  padding-bottom: clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(60% 70% at 22% 25%, var(--accent-soft), transparent 70%),
    radial-gradient(50% 60% at 82% 10%, oklch(0.74 0.155 58 / 0.10), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.8vw, 80px);
  letter-spacing: -0.035em;
}
.hero h1 .hl { color: var(--accent); }
.hero-sub {
  margin-top: 26px;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--text-dim);
  max-width: 36ch;
}
.hero-cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.stat .n {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.stat .l { font-size: 13.5px; color: var(--text-mute); margin-top: 2px; }

/* Hero right: stacked pillar cards */
.pillars { display: grid; gap: 14px; }
.pillar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.pillar::after {
  content: "→";
  position: absolute;
  right: 22px;
  font-family: var(--display);
  color: var(--text-mute);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.pillar:hover { transform: translateX(6px); border-color: var(--line-2); background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); }
.pillar:hover::after { transform: translateX(5px); color: var(--accent); }
.pillar-ico {
  width: 50px; height: 50px;
  flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.pillar-ico svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 19px; font-weight: 600; }
.pillar p { font-size: 13.5px; color: var(--text-mute); margin-top: 3px; }
.pillar.lead { background: linear-gradient(150deg, var(--accent), oklch(0.36 0.16 25)); border-color: transparent; }
.pillar.lead .pillar-ico { background: oklch(1 0 0 / 0.16); color: var(--accent-ink); }
.pillar.lead h3, .pillar.lead p { color: var(--accent-ink); }
.pillar.lead p { opacity: 0.8; }
.pillar.lead::after { color: var(--accent-ink); }

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

/* ============================================================
   INTERIOR PAGE HERO (compact variant of the homepage hero)
   ============================================================ */
.page-hero { padding-top: clamp(44px, 6vw, 84px); padding-bottom: clamp(32px, 4.5vw, 60px); }
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.page-hero .hero-sub { max-width: 52ch; }
/* Optional photo in the hero's right column */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.page-hero-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: block;
}
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-media { order: 2; }
}

/* ============================================================
   RICH TEXT SECTION
   ============================================================ */
.rt-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 4.5vw, 64px); align-items: start; }
.rt-body { color: var(--text-dim); font-size: 17px; }
.rt-body > * + * { margin-top: 14px; }
.rt-body h3, .rt-body h4, .rt-body b, .rt-body strong { color: var(--text); }
.rt-body h3 { font-size: 22px; margin-top: 26px; }
.rt-body a { color: var(--accent); }
.rt-body ul { padding-left: 20px; }
.rt-body li { margin-top: 8px; }
@media (max-width: 860px) { .rt-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PEOPLE GRID (board)
   ============================================================ */
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.person {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.person:hover { transform: translateY(-4px); border-color: var(--line-2); }
/* Photo runs the full width of the card — no framing whitespace. */
.person-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 22%;
  background: var(--surface-2);
  display: block;
}
.person-photo-empty {
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 40px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-mute);
  background: var(--surface-2);
}
.person-body { padding: 14px 16px 16px; }
.person h4 { font-size: 17px; }
.person .role { color: var(--text-mute); font-size: 13px; margin-top: 3px; }
.person .person-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 9px;
  font-family: var(--display); font-size: 13px; font-weight: 500;
  color: var(--accent);
}
.person .person-link svg { width: 14px; height: 14px; }
@media (max-width: 1020px) { .people-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .people-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .people-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
  padding: 12px 16px 14px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }


/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 4.5vw, 64px); align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 20px;
  transition: border-color .25s var(--ease);
}
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 16.5px; font-weight: 600;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon { position: relative; width: 14px; height: 14px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--accent);
  transition: transform .25s var(--ease);
}
.faq-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-icon::after  { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-a { padding: 0 0 18px; color: var(--text-dim); font-size: 15.5px; }
.faq-a p { margin: 0; }
.faq-a p + p { margin-top: 10px; }
.faq-a a { color: var(--accent); }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TIER CARDS (sponsorship packages)
   ============================================================ */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.tier-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.tier-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tier-card.hl { border-color: var(--accent); }
.tier-card h3 { font-size: 21px; }
.tier-price {
  font-family: var(--display);
  font-size: 30px; font-weight: 600; letter-spacing: -0.03em;
  color: var(--accent);
  margin-top: 6px;
}
.tier-feats { margin-top: 8px; }
.tier-group {
  font-family: var(--display);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--text-mute);
  margin: 18px 0 4px;
}
.tier-feat { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--text-dim); margin-top: 8px; }
.tier-feat .tick {
  width: 18px; height: 18px; flex: none; border-radius: 6px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  margin-top: 1px;
}
.tier-feat .tick svg { width: 11px; height: 11px; }
.tier-card .btn { margin-top: 22px; justify-content: center; }
@media (max-width: 1080px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tier-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT SECTION + FORMIDABLE THEMING
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 4.5vw, 64px); align-items: start; }
.contact-info { display: grid; gap: 16px; margin-top: 28px; }
.contact-info .row { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--text-dim); }
.contact-info .row svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 2px; }
.contact-info .row b { color: var(--text); font-weight: 600; }
.contact-info .row a { color: var(--accent); }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* Formidable fields inherit the design system. */
.ama-hp-root .frm_forms label.frm_primary_label {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  color: var(--text); display: block; margin-bottom: 6px;
}
.ama-hp-root .frm_forms .frm_form_field { margin-bottom: 18px; }

/* Floating labels: the label sits inside the field and shrinks on focus/value. */
.ama-hp-root .frm_forms .float-label { position: relative; }
.ama-hp-root .frm_forms .float-label label.frm_primary_label {
  position: absolute;
  top: 15px; left: 17px;
  margin: 0;
  font-weight: 500;
  color: var(--text-mute);
  pointer-events: none;
  transform-origin: left top;
  transition: transform .18s var(--ease), color .18s var(--ease), top .18s var(--ease);
  z-index: 1;
}
.ama-hp-root .frm_forms .float-label.is-active label.frm_primary_label {
  top: 7px;
  transform: scale(0.72);
  color: var(--text-dim);
  font-weight: 600;
}
.ama-hp-root .frm_forms .frm_form_field.float-label input,
.ama-hp-root .frm_forms .frm_form_field.float-label textarea { padding-top: 24px; padding-bottom: 8px; }

/* Dropdowns: placeholder option carries the label; real label goes to
   screen readers only, matching the floating-label space savings. */
.ama-hp-root .frm_forms .select-field label.frm_primary_label {
  position: absolute !important; left: -9999px !important;
  height: 1px; overflow: hidden;
}
.ama-hp-root .frm_forms select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f304f' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}
.ama-hp-root .frm_forms select:invalid,
.ama-hp-root .frm_forms select option[value=""] { color: var(--text-mute); }

/* Hide Formidable chrome that its own (stripped) stylesheet would hide. */
.ama-hp-root .frm_forms .frm_verify,
.ama-hp-root .frm_forms [id^="frm_field"][class*="frm_verify"],
.ama-hp-root .frm_forms div:has(> input.frm_verify),
.ama-hp-root .frm_forms .frm_screen_reader { position: absolute !important; left: -9999px !important; height: 1px; overflow: hidden; }
.ama-hp-root .frm_forms input[type="text"],
.ama-hp-root .frm_forms input[type="email"],
.ama-hp-root .frm_forms input[type="tel"],
.ama-hp-root .frm_forms input[type="url"],
.ama-hp-root .frm_forms select,
.ama-hp-root .frm_forms textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s;
}
.ama-hp-root .frm_forms input:focus,
.ama-hp-root .frm_forms textarea:focus { outline: none; border-color: var(--navy); }
.ama-hp-root .frm_forms .frm_submit button.frm_button_submit,
.ama-hp-root .frm_forms .frm_button_submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 500; font-size: 15px;
  background: var(--accent); color: var(--accent-ink);
  border: none; border-radius: 100px;
  padding: 15px 26px; cursor: pointer;
  box-shadow: 0 8px 30px -10px var(--accent);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ama-hp-root .frm_forms .frm_button_submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px var(--accent); }
.ama-hp-root .frm_forms .frm_error { color: var(--accent); font-size: 13.5px; margin-top: 5px; }
.ama-hp-root .frm_message { color: var(--text); background: var(--surface-2); border-radius: 12px; padding: 14px 18px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec { padding-block: clamp(70px, 9vw, 130px); }
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}
.sec-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  margin-top: 18px;
  max-width: 18ch;
}
.sec-head p { color: var(--text-dim); max-width: 42ch; }

/* ============================================================
   FEATURED EVENT
   ============================================================ */
.events { background: var(--bg-2); border-block: 1px solid var(--line); }
.feat {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.feat-media { position: relative; min-height: 460px; background: var(--bg); }
.feat-media image-slot { width: 100%; height: 100%; min-height: 460px; }
.feat-media .feat-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 47% 32%;
}
.feat-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 15px;
  border-radius: 100px;
}
.feat-badge .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-ink);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.feat-body { padding: clamp(30px, 3.5vw, 52px); display: flex; flex-direction: column; }
.feat-date {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 500;
}
.feat-body h3 { font-size: clamp(28px, 3.2vw, 42px); margin-top: 14px; }
.feat-speaker { margin-top: 18px; display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 15px; }
.feat-speaker .nowrap { white-space: nowrap; }
.feat-speaker b { color: var(--text); font-weight: 600; }
.feat-desc { margin-top: 22px; color: var(--text-dim); font-size: 16px; }
.feat-info { margin-top: 26px; display: grid; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.feat-info .row { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; }
.feat-info .row svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 2px; }
.feat-info .row span { color: var(--text-dim); }
.feat-info .row b { color: var(--text); font-weight: 600; }
.feat-actions { margin-top: auto; padding-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .feat { grid-template-columns: 1fr; }
  .feat-media, .feat-media image-slot { min-height: 320px; }
}

/* upcoming strip */
.upcoming { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.up-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.up-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.up-card .k { font-family: var(--display); font-size: 13px; letter-spacing: 0.04em; color: var(--accent); text-transform: uppercase; }
.up-card h4 { font-size: 19px; margin-top: 12px; }
.up-card p { font-size: 14px; color: var(--text-mute); margin-top: 8px; }
@media (max-width: 760px) { .upcoming { grid-template-columns: 1fr; } }

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.mem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.mem-intro { position: sticky; top: 96px; align-self: start; }
@media (max-width: 860px) { .mem-intro { position: static; top: auto; } }
.mem-bullets { display: grid; gap: 18px; margin-top: 34px; }
.mem-bullets li { list-style: none; display: flex; gap: 14px; align-items: flex-start; }
.mem-bullets .tick {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
}
.mem-bullets .tick svg { width: 15px; height: 15px; }
.mem-bullets b { font-weight: 600; }
.mem-bullets span { color: var(--text-dim); font-size: 15px; }

.mem-cards { display: grid; gap: 16px; }
.mem-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.mem-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.mem-card.hl {
  background: linear-gradient(155deg, var(--surface-2), var(--bg-2));
  border-color: var(--accent);
}
.mem-card .tag { font-family: var(--display); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.mem-card h3 { font-size: 26px; margin-top: 8px; }
.mem-card .price { font-family: var(--display); font-size: 15px; color: var(--text-mute); margin-top: 6px; }
.mem-card p { color: var(--text-dim); font-size: 15px; margin-top: 14px; }
.mem-card .btn { margin-top: 22px; }
@media (max-width: 860px) { .mem-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PODCAST
   ============================================================ */
.pod { background: var(--bg-2); border-block: 1px solid var(--line); }
.pod-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 4vw, 60px); }
/* Dark navy media card — text inside stays light. */
.pod-feat {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, oklch(0.36 0.06 265), var(--navy));
  border: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
}
.pod-feat h3 { color: #f3f2ee; }
.pod-feat .meta { color: oklch(0.85 0.02 265); }
.pod-feat .pod-tag { color: oklch(0.78 0.1 27); }
.pod-wave {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, oklch(1 0 0 / 0.05) 0 2px, transparent 2px 9px);
  mask-image: radial-gradient(80% 60% at 70% 30%, black, transparent 75%);
  opacity: 0.7;
}
.pod-feat { cursor: pointer; }
.pod-feat .pod-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.pod-feat:hover .pod-thumb { transform: scale(1.04); }
.pod-feat .pod-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgb(21 33 56 / 0.95) 6%, rgb(21 33 56 / 0.45) 48%, rgb(21 33 56 / 0.62) 100%);
}
.pod-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; z-index: 6;
}
.pod-feat.playing > *:not(.pod-iframe) { display: none; }
.pod-feat > * { position: relative; }
.pod-play {
  position: absolute;
  top: clamp(28px,3.5vw,46px); right: clamp(28px,3.5vw,46px);
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  border: none; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 10px 30px -8px var(--accent);
}
.pod-play:hover { transform: scale(1.08); }
.pod-play svg { width: 26px; height: 26px; margin-left: 3px; }
.pod-tag { font-family: var(--display); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.pod-feat h3 { font-size: clamp(24px, 2.6vw, 34px); margin-top: 14px; max-width: 20ch; }
.pod-feat .meta { margin-top: 16px; color: var(--text-dim); font-size: 14.5px; display: flex; gap: 14px; }

.pod-list { display: flex; flex-direction: column; gap: 4px; }
.pod-sub { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--text-dim);
  border: 1px solid var(--line-2); border-radius: 100px;
  padding: 8px 15px; transition: border-color .2s, color .2s;
}
.chip:hover { border-color: var(--text); color: var(--text); }
.ep {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding .25s var(--ease);
  cursor: pointer;
}
.ep:hover { padding-left: 16px; }
.ep-thumb {
  position: relative;
  width: 118px; flex: none;
  border-radius: 10px; overflow: hidden;
  background: var(--surface-2);
}
.ep-thumb img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.ep-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: rgb(31 48 79 / 0.18);
  transition: background .25s var(--ease);
}
.ep:hover .ep-thumb::after { background: rgb(31 48 79 / 0.02); }
@media (max-width: 480px) { .ep-thumb { width: 92px; } }
.ep .epnum { font-family: var(--display); font-size: 14px; color: var(--text-mute); width: 28px; flex: none; }
.ep .epbody h4 { font-family: var(--body); font-size: 16.5px; font-weight: 600; letter-spacing: 0; line-height: 1.3; transition: color .2s; }
.ep:hover .epbody h4 { color: var(--accent); }
.ep .epbody span { font-size: 13px; color: var(--text-mute); }
.ep .epplay { margin-left: auto; color: var(--text-mute); transition: color .2s, transform .2s var(--ease); }
.ep:hover .epplay { color: var(--accent); transform: scale(1.15); }
@media (max-width: 860px) { .pod-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SPONSORS
   ============================================================ */
.spon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.spon {
  position: relative;
  display: grid; place-items: center;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 120px;
  overflow: hidden;
  transition: background .25s var(--ease);
}
.spon-mono {
  max-width: 80%;
  max-height: 58px;
  width: auto; height: auto;
  object-fit: contain;
  /* Mono logo assets are white — render them as ink on the light theme. */
  filter: brightness(0) saturate(0);
  opacity: 0.55;
  transition: opacity .3s var(--ease);
}
.spon-color {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  /* contain + padding so hover logos are never cropped (client feedback) */
  object-fit: contain;
  padding: 26px;
  background: var(--surface);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.spon-ext {
  position: absolute; top: 10px; right: 10px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 7px;
  background: var(--accent); color: #fff;
  opacity: 0; transform: scale(0.7) translateY(-2px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 2;
  box-shadow: 0 4px 12px -3px oklch(0 0 0 / 0.5);
}
.spon-ext svg { width: 14px; height: 14px; }
.spon:hover .spon-color { opacity: 1; }
.spon:hover .spon-mono { opacity: 0; }
.spon:hover .spon-ext,
.spon:focus-visible .spon-ext { opacity: 1; transform: scale(1) translateY(0); }
@media (max-width: 860px) { .spon-grid { grid-template-columns: repeat(2, 1fr); } .spon-mono { max-height: 50px; } }

/* ============================================================
   EVENT PHOTO BAND
   ============================================================ */
.photo-band {
  position: relative;
  width: 100%;
  height: clamp(300px, 38vw, 520px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg);
}
.photo-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.photo-band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgb(31 48 79 / 0.88) 0%, rgb(31 48 79 / 0.24) 38%, transparent 62%),
    linear-gradient(to right, rgb(31 48 79 / 0.5) 0%, transparent 42%);
  pointer-events: none;
}
/* Caption sits on the navy scrim — keep it light. */
.photo-band .eyebrow { color: oklch(0.88 0.015 265); }
.photo-band-cap-wrap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(22px, 3vw, 40px);
}
.photo-band-cap {
  max-width: 40ch;
}
.photo-band-cap p {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  color: #f3f2ee;
  text-wrap: balance;
}

/* ============================================================
   NEWSLETTER + FOOTER
   ============================================================ */
/* The CTA band trims its top padding after padded sections; the BB layer
   restores it when the previous row is the full-bleed photo band. */
.sec.cta-sec { padding-top: 0; }
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--accent), oklch(0.36 0.16 25));
  padding: clamp(40px, 5vw, 72px);
  display: block;
  color: var(--accent-ink);
  overflow: visible;
  position: relative;
}
.cta-copy { max-width: 46%; }
.cta-band h2 { font-size: clamp(28px, 3.6vw, 46px); color: var(--accent-ink); }
.cta-band p { margin-top: 12px; max-width: 40ch; opacity: 0.82; }
.cta-vacuum {
  position: absolute;
  right: clamp(8px, 3vw, 56px);
  bottom: 0;
  width: clamp(360px, 48vw, 620px);
  z-index: 1;
  pointer-events: none;
}
.cta-vacuum img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px oklch(0 0 0 / 0.25));
}
.news-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.news-form input {
  background: oklch(1 0 0 / 0.16);
  border: 1px solid oklch(0 0 0 / 0.15);
  color: var(--accent-ink);
  border-radius: 100px;
  padding: 15px 22px;
  font-family: var(--body);
  font-size: 15px;
  min-width: 260px;
}
.news-form input::placeholder { color: oklch(0.98 0.02 27 / 0.6); }
.news-form button {
  background: var(--navy); color: #f3f2ee;
  border: none; border-radius: 100px;
  font-family: var(--display); font-weight: 500; font-size: 15px;
  padding: 15px 26px; cursor: pointer;
  transition: transform .25s var(--ease);
}
.news-form button:hover { transform: translateY(-2px); }
@media (max-width: 760px) {
  .cta-band { text-align: center; }
  .cta-copy { max-width: none; }
  .cta-band p { margin-inline: auto; }
  .news-form { justify-content: center; }
  .cta-vacuum { position: static; width: min(320px, 80%); margin: 28px auto -28px; }
}

/* Navy footer — the "dark header" feel from national, anchored at the bottom. */
footer.foot { padding-block: 70px 40px; background: var(--navy); color: #f3f2ee; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 50px; border-bottom: 1px solid oklch(1 0 0 / 0.14); }
.foot-col h5 { font-family: var(--display); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(0.74 0.025 265); margin-bottom: 16px; }
.foot-col a { display: block; color: oklch(0.86 0.015 265); font-size: 15px; padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot .brand-name { color: #f3f2ee; }
.foot .brand-name span { color: oklch(0.74 0.025 265); }
.foot-blurb { color: oklch(0.84 0.015 265); font-size: 15px; margin-top: 18px; max-width: 32ch; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  border: 1px solid oklch(1 0 0 / 0.25); color: oklch(0.86 0.015 265);
  transition: color .2s, border-color .2s, transform .2s var(--ease);
}
.socials a:hover { color: #fff; border-color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; color: oklch(0.74 0.025 265); font-size: 13.5px; flex-wrap: wrap; }
.foot-bottom a { color: inherit; transition: color .2s; }
.foot-bottom a:hover { color: #fff; }
@media (max-width: 860px) { .foot-top { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MEME WALL — the easter egg below the footer
   ============================================================ */
.memewall {
  background-color: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: clamp(56px, 7vw, 96px) clamp(64px, 8vw, 110px);
  background-image:
    radial-gradient(oklch(0.32 0.045 265 / 0.1) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
/* the unlock button */
.meme-unlock {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin: 0 auto;
  max-width: 640px; width: 100%;
  background: transparent;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  cursor: pointer;
  text-align: center;
  transition: opacity .4s var(--ease), transform .4s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.meme-unlock:hover { border-color: var(--accent); background: var(--accent-soft); }
.meme-unlock.used { opacity: 0; transform: scale(.96); pointer-events: none; }
.meme-unlock-top {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(16px, 1.9vw, 21px); color: var(--text);
  text-wrap: balance;
}
.meme-unlock-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: var(--accent-ink); background: var(--accent);
  border-radius: 100px; padding: 11px 22px;
  box-shadow: 0 10px 30px -12px var(--accent);
  transition: transform .25s var(--ease);
}
.meme-unlock:hover .meme-unlock-cta { transform: translateY(-2px); }
.meme-unlock-cta svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.meme-unlock:hover .meme-unlock-cta svg { transform: translateX(4px); }
/* the revealed content */
.meme-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.meme-reveal.open { opacity: 1; transform: none; }
.meme-reveal[hidden] { display: none; }
.memewall-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(40px, 5vw, 64px); }
.memewall-head .eyebrow { justify-content: center; }
.memewall-head h2 { font-size: clamp(30px, 4vw, 50px); margin-top: 14px; }
.memewall-head p { margin-top: 16px; color: var(--text-dim); font-size: clamp(15px, 1.6vw, 18px); text-wrap: balance; }
.meme-shuffle {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 500; font-size: 15px;
  color: var(--accent-ink); background: var(--accent);
  border: none; border-radius: 100px;
  padding: 12px 22px; cursor: pointer;
  box-shadow: 0 10px 30px -12px var(--accent);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.meme-shuffle svg { width: 17px; height: 17px; }
.meme-shuffle:hover { transform: translateY(-2px) rotate(-2deg); box-shadow: 0 16px 38px -12px var(--accent); }
.meme-shuffle:active svg { transform: rotate(180deg); transition: transform .4s var(--ease); }

.meme-wall { columns: 3; column-gap: 26px; }
.meme { break-inside: avoid; margin: 0 0 26px; }
.meme-card {
  position: relative;
  background: oklch(0.99 0.004 256);
  padding: 9px 9px 11px;
  border-radius: 8px;
  box-shadow: 0 14px 34px -16px oklch(0 0 0 / 0.28), 0 3px 10px -6px oklch(0 0 0 / 0.18);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), z-index 0s;
}
/* a strip of "tape" */
.meme-card::before {
  content: "";
  position: absolute;
  top: -11px; left: 50%;
  width: 84px; height: 22px;
  transform: translateX(-50%) rotate(-3deg);
  background: oklch(0.85 0.04 95 / 0.42);
  border: 1px solid oklch(1 0 0 / 0.25);
  box-shadow: 0 1px 4px oklch(0 0 0 / 0.25);
}
.meme-card img { display: block; width: 100%; height: auto; border-radius: 3px; }
/* playful resting tilt, varied per position (overridable via --tilt) */
.meme-card { transform: rotate(var(--tilt, 0deg)); }
.meme:nth-child(4n+1) .meme-card { --tilt: -2.4deg; }
.meme:nth-child(4n+2) .meme-card { --tilt: 1.8deg; }
.meme:nth-child(4n+3) .meme-card { --tilt: -1.2deg; }
.meme:nth-child(4n+4) .meme-card { --tilt: 2.6deg; }
.meme-card:hover {
  transform: rotate(0deg) scale(1.035) translateY(-4px);
  box-shadow: 0 26px 60px -18px oklch(0 0 0 / 0.35), 0 6px 16px -8px oklch(0 0 0 / 0.25);
  position: relative; z-index: 5;
}
.meme-card:hover::before { background: var(--accent-soft); border-color: var(--accent); }

@media (max-width: 900px) { .meme-wall { columns: 2; } }
@media (max-width: 560px) { .meme-wall { columns: 1; } .meme-card { max-width: 420px; margin-inline: auto; } }

/* ============================================================
   MOTION — scroll reveal
   ============================================================ */
/* Visible is the BASE state (safe for no-JS, print, paused iframes). */
.reveal { opacity: 1; transform: none; }
/* Motion is opt-in: JS adds .anim to <html> only when the doc is visible. */
html.anim .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.anim .reveal:not(.in) { opacity: 0; transform: translateY(26px); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html.anim .reveal:not(.in) { opacity: 1; transform: none; transition: none; }
}
