/*
 * TSQHA Child Theme — Main Stylesheet
 * All theme CSS lives here. Do NOT add custom CSS to style.css.
 *
 * Table of Contents:
 *   1. Design Tokens
 *   2. Reset & Base
 *   3. Utility Classes
 *   4. Header & Navigation
 *   5. Mobile Nav
 *   6. Hero (homepage)
 *   7. Countdown Row
 *   8. What's Happening Section
 *   9. Photo Upload Banner
 *  10. About / Mission Section
 *  11. Page Hero (interior pages)
 *  12. Footer — Newsletter Bar
 *  13. Footer — Sponsors Strip
 *  14. Footer — Main Grid
 *  15. Footer — Bottom Bar
 *  16. Elementor Resets
 *  17. Responsive
 */

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
  /* Navy palette — blue-gray base */
  --navy-dark:   #1a2640;
  --navy:        #243656;
  --navy-mid:    #2e4a7a;

  /* Accent — royal blue (replaces orange throughout) */
  --accent:      #1a4fc4;
  --accent-lt:   #7aaff5;
  --accent-pale: rgba(26, 79, 196, 0.09);

  /* Slate — blue-gray mid-tone for muted elements */
  --slate:       #7a94b0;
  --slate-lt:    #a8c0d8;

  /* Backgrounds — blue-tinted neutrals */
  --white:       #FFFFFF;
  --off-white:   #e8eaf6;
  --gray-light:  #ccd0ee;
  --near-white:  #f2f3fa;

  /* Text */
  --text-dark:   #1a2640;
  --text-body:   #3c5270;
  --text-muted:  #6e8294;
  --border:      #ccd0ee;

  /* Typography */
  --font-display: 'Barlow Semi Condensed', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;

  /* Spacing / shape */
  --radius:       4px;
  --radius-lg:    8px;
  --shadow-sm:    0 2px 8px rgba(26,38,64,0.08);
  --shadow-md:    0 4px 20px rgba(26,38,64,0.13);
  --shadow-lg:    0 8px 40px rgba(26,38,64,0.20);
  --container:    1200px;
  --gutter:       48px;
  --header-h:     74px;
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--near-white);
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }

/* ----------------------------------------------------------------
   Global link reset — removes Elementor's sitewide link color.
   Every link inherits the text color of its container, so links
   on dark backgrounds read light and links on light backgrounds
   read dark automatically. Elements that need a specific link color
   (buttons, nav, footer links) already have explicit !important rules.
   ---------------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Belt-and-suspenders: override Elementor's global link color output
   which targets .elementor-widget-container a and body a */
body a:not([class]) {
  color: inherit;
}

/* Explicit link color — overrides Hello Elementor's default link color which may still be set to the old orange */
a    { color: inherit; text-decoration: none; }
a:where(:not([class])) { color: var(--accent); }
.elementor a:not([class]),
.elementor-widget-container a:not([class]) { color: var(--accent); }

/* ================================================================
   3. UTILITY CLASSES
   ================================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary,
.btn-accent {
  background: var(--accent);
  color: var(--white) !important;
}
.btn-primary:hover,
.btn-accent:hover {
  background: var(--navy-mid);
  color: var(--white) !important;
  box-shadow: 0 4px 18px rgba(26,79,196,0.35);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white) !important;
}
.btn-navy {
  background: var(--navy);
  color: var(--white) !important;
  border: none;
  outline: none;
}
.btn-navy:hover {
  background: var(--navy-mid);
  border: none;
  color: var(--white);
}
/* Override Mailchimp/plugin subscribe button styles */
#mc_embed_signup .button,
.mc-embedded-subscribe,
.nl-form button,
.footer-newsletter button {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
}
#mc_embed_signup .button:hover,
.mc-embedded-subscribe:hover,
.nl-form button:hover,
.footer-newsletter button:hover {
  background: var(--navy-mid) !important;
}

/* ================================================================
   4. HEADER & NAVIGATION
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 90px;
  gap: 24px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-wordmark .abbr {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Nav container */
.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

/* Nav list */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 11px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--accent);
  background: var(--accent-pale);
}

/* Dropdown chevron */
.nav-list .has-dd > a::after {
  content: '▾';
  font-size: 9px;
  margin-left: 3px;
  opacity: 0.5;
  vertical-align: 1px;
}

/* Dropdown panel */
.nav-dd {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 6px;
  z-index: 300;
  list-style: none;
  margin: 0;
}
.nav-list .has-dd:hover .nav-dd,
.nav-list .has-dd:focus-within .nav-dd { display: block; }
.nav-dd a {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  padding: 9px 13px;
  border-radius: var(--radius);
  transition: all 0.12s;
}
.nav-dd a:hover,
.nav-dd a.active { color: var(--accent); background: var(--accent-pale); }

/* Donate CTA */
.nav-donate { margin-left: 14px; }
.nav-donate .btn { font-size: 13px; padding: 10px 20px; }

/* Admin menu notice */
.nav-no-menu-notice {
  background: #fffaeb;
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  color: #6B4A00;
}

/* ================================================================
   5. MOBILE NAV
   ================================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  margin-left: 10px;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  position: relative;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after  { top:  6px; }
[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
[aria-expanded="true"] .nav-toggle-icon::before { transform: rotate(45deg);  top: 0; }
[aria-expanded="true"] .nav-toggle-icon::after  { transform: rotate(-45deg); top: 0; }

/* ================================================================
   6. HERO (homepage)
   ================================================================ */
.hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  max-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Hero background — add background-image in Elementor section */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26,38,64,0.88) 0%, rgba(26,38,64,0.55) 55%, rgba(26,38,64,0.35) 100%),
    linear-gradient(160deg, #1a2640 0%, #243656 45%, #2e4a7a 72%, #1e2a50 100%);
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter);
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
}
.hero-states {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 18px;
}
.hero-states::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  color: var(--white);
  line-height: 0.93;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.hero-title .accent-line { color: var(--accent-lt); }
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bobDown 2.2s ease-in-out infinite;
}
@keyframes bobDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55%      { transform: translateX(-50%) translateY(7px); }
}

/* ================================================================
   7. COUNTDOWN ROW
   ================================================================ */
.countdown-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
}

/* Left — map */
.cr-map {
  background: var(--navy-dark);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cr-map-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-lt);
}
.cr-map-info .small-label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 5px;
}
.cr-map-info .address {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600;
  color: var(--white); line-height: 1.4; margin-bottom: 10px;
}
.directions-link {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--accent-lt);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.15s;
}
.directions-link:hover { color: var(--white); }

/* Center — countdown */
.cr-countdown {
  background: var(--accent);
  padding: 28px 32px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.cr-cd-label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.68); margin-bottom: 4px;
}
.cr-cd-event {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); margin-bottom: 16px;
}
.cr-cd-digits {
  display: flex; align-items: flex-end; gap: 2px;
}
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 58px; }
.cd-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.cd-unit-label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-top: 3px;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800;
  color: rgba(255,255,255,0.45);
  padding-bottom: 14px; margin: 0 1px;
}
.cd-event-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.72) !important;
  transition: color 0.15s;
}
.cd-event-link:hover { color: var(--white) !important; }

/* Right — news */
.cr-news {
  background: var(--navy);
  padding: 30px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.cr-news .small-label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 10px;
}
.cr-news-title {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--white); line-height: 1.35; margin-bottom: 6px;
  transition: color 0.15s; display: block;
}
.cr-news-title:hover { color: var(--accent-lt); }
.cr-news-meta {
  font-size: 12px; color: rgba(255,255,255,0.38); margin-bottom: 10px;
}
.cr-news-excerpt {
  font-size: 13px; color: rgba(255,255,255,0.60);
  line-height: 1.55; margin-bottom: 14px;
}
.cr-more-link {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--accent-lt);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.15s;
}
.cr-more-link:hover { color: var(--white); }

/* ================================================================
   8. WHAT'S HAPPENING
   ================================================================ */
.whats-happening {
  padding: 76px 0 64px;
  background: var(--near-white);
  border-top: 1px solid var(--border);
}
.wh-header { margin-bottom: 44px; }

.wh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
/* Column count modifiers — driven by how many panels are enabled */
.wh-grid--1 { grid-template-columns: minmax(0, 560px); }
.wh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wh-grid--3 { grid-template-columns: repeat(3, 1fr); }

.wh-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wh-card-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}
.wh-card-icon {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.wh-card-name {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-dark);
}

.wh-posts { list-style: none; margin: 0; padding: 0; }
.wh-posts li {
  border-bottom: 1px solid var(--gray-light);
  padding: 9px 0;
}
.wh-posts li:last-child { border-bottom: none; }
.wh-post-link {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-body); line-height: 1.4;
  transition: color 0.14s;
}
.wh-post-link:hover { color: var(--accent); }
.wh-post-date {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  color: var(--text-muted); min-width: 52px; margin-top: 2px;
}
.wh-post-arrow {
  margin-left: auto; flex-shrink: 0;
  color: var(--accent); opacity: 0; transition: opacity 0.14s; margin-top: 2px;
}
.wh-post-link:hover .wh-post-arrow { opacity: 1; }
.wh-card-footer { margin-top: 14px; }
.wh-all-link {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.14s;
}
.wh-all-link:hover { color: var(--accent); }
.wh-no-posts { font-size: 13px; color: var(--text-muted); padding: 8px 0; }

/* ================================================================
   9. PHOTO UPLOAD BANNER
   ================================================================ */
.photo-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.photo-banner-text .pb-eyebrow {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--accent-lt); margin-bottom: 6px;
}
.photo-banner-text h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--white); line-height: 1.15;
}
.photo-banner-text p {
  font-size: 13.5px; color: rgba(255,255,255,0.58); margin-top: 6px;
}
.photo-banner-right {
  display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}
.photo-preview-dots { display: flex; gap: 6px; }
.photo-dot {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}

/* ================================================================
   10. ABOUT / MISSION
   ================================================================ */
.about-mission { padding: 84px 0; background: var(--off-white); }
.am-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.am-card {
  border-radius: var(--radius-lg);
  padding: 42px;
  position: relative; overflow: hidden;
}
.am-card.dark {
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
}
.am-card.light {
  background: var(--near-white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.am-eyebrow {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 12px;
}
.am-card.dark .am-eyebrow { color: var(--accent-lt); }
.am-card.light .am-eyebrow { color: var(--accent); }
.am-title {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800; line-height: 1.05; margin-bottom: 4px;
}
.am-card.dark .am-title { color: var(--white); }
.am-card.light .am-title { color: var(--text-dark); }
.am-rule {
  width: 44px; height: 3px;
  background: var(--accent); border-radius: 2px; margin: 18px 0;
}
.am-body { font-size: 15px; line-height: 1.72; }
.am-card.dark .am-body { color: rgba(255,255,255,0.68); }
.am-card.light .am-body { color: var(--text-body); }
.am-card.dark::after {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.025); pointer-events: none;
}

/* ================================================================
   11. PAGE HERO (interior pages)
   ================================================================ */
.page-hero {
  background:
    linear-gradient(to bottom, rgba(26,38,64,0.72) 0%, rgba(26,38,64,0.55) 100%),
    linear-gradient(150deg, #1a2640 0%, #243656 60%, #2e4a7a 100%);
  background-size: cover;
  background-position: center;
  padding: 96px 0 88px;
}
.page-hero-inner { text-align: left; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 88px);
  font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 16px;
}
.breadcrumb {
  font-family: var(--font-heading);
  font-size: 13px; color: rgba(255,255,255,0.45);
  display: flex; align-items: center;
  justify-content: flex-start;
  gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.14s; }
.breadcrumb a:hover { color: var(--accent-lt); }
.breadcrumb .bc-sep { color: rgba(255,255,255,0.22); font-size: 10px; }
.breadcrumb .bc-current { color: rgba(255,255,255,0.85); }

.page-content { padding: 60px 0; }

/* ================================================================
   12. FOOTER — NEWSLETTER BAR
   ================================================================ */
.footer-newsletter {
  background: var(--near-white);
  padding: 52px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.nl-inner {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 52px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 44px;
}
.nl-text h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--text-dark); line-height: 1.1; margin-bottom: 4px;
}
.nl-text p { font-size: 14px; color: var(--text-muted); }
.nl-form { min-width: 360px; display: flex; flex-direction: column; gap: 9px; }
.nl-row { display: flex; gap: 8px; }
.nl-input {
  flex: 1; height: 46px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 0 16px;
  font-family: var(--font-body); font-size: 14px; color: var(--text-dark);
  outline: none; transition: border-color 0.15s; background: var(--white);
}
.nl-input:focus { border-color: var(--accent); }
.nl-input::placeholder { color: var(--text-muted); }
.nl-check {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--text-muted);
}
.nl-check a { color: var(--accent); }

/* ================================================================
   13. FOOTER — SPONSORS STRIP
   ================================================================ */
.sponsors-bar {
  background: var(--navy-dark);
  padding: 30px 0 36px;
}
.sponsors-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 22px;
}
.sponsors-track-wrap { overflow: hidden; position: relative; }
.sponsors-track {
  display: flex; gap: 0; width: max-content;
  animation: sponsorMarquee 50s linear infinite;
}
.sponsors-track:hover { animation-play-state: paused; }
@keyframes sponsorMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sp-logo {
  padding: 0 28px;
  display: flex; align-items: center; justify-content: center;
  height: 50px; opacity: 1; transition: opacity 0.2s;
}
.sp-logo:hover { opacity: 0.75; }
/* Filter version: main logo with white invert (transparent PNGs only) */
.sp-logo--filter img { max-height: 44px; width: auto; filter: brightness(0) invert(1); }
/* Custom version: dedicated footer logo — no filter */
.sp-logo--custom img { max-height: 44px; width: auto; }
/* Fallback for sp-logo without modifier (text placeholder) */
.sp-logo img { max-height: 44px; width: auto; filter: brightness(0) invert(1); }
.sp-placeholder {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 0 18px; height: 40px;
  display: flex; align-items: center;
}

/* ================================================================
   14. FOOTER — MAIN GRID
   ================================================================ */
.footer-main {
  background: var(--navy-dark);
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-brand-logo img,
.footer-brand-logo .custom-logo { height: 44px; width: auto; }
.ft-abbr {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: 0.06em;
}
.ft-full {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); line-height: 1.35; margin-top: 1px;
}
.footer-brand > p {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.68; margin-bottom: 20px;
}
.ft-social { display: flex; gap: 8px; }
.ft-soc-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: all 0.15s;
}
.ft-soc-btn:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4,
.footer-col .widgettitle {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}

/* Target both our .ft-links class AND default WordPress widget menu output */
.ft-links,
.footer-col ul,
.footer-col .menu {
  list-style: none; margin: 0; padding: 0;
}
.ft-links li,
.footer-col ul li,
.footer-col .menu li { margin-bottom: 10px; }

.ft-links a,
.footer-col ul a,
.footer-col .menu a {
  font-size: 14px; color: rgba(255,255,255,0.70) !important;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.14s;
}
.ft-links a::before,
.footer-col ul a::before,
.footer-col .menu a::before {
  content: '›'; color: var(--accent-lt);
  font-size: 17px; line-height: 1;
}
.ft-links a:hover,
.footer-col ul a:hover,
.footer-col .menu a:hover { color: var(--white) !important; }

/* ================================================================
   15. FOOTER — BOTTOM BAR
   ================================================================ */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.ft-bottom-links {
  list-style: none; display: flex; gap: 24px; margin: 0; padding: 0;
}
.ft-bottom-links a {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.55) !important; transition: color 0.14s;
}
.ft-bottom-links a:hover { color: var(--accent-lt) !important; }

/* ================================================================
   16. ELEMENTOR RESETS
   ================================================================ */
/* Prevent Elementor from overriding body font */
.elementor-widget-container {
  font-family: var(--font-body);
  color: var(--text-body);
}
/* Remove default Elementor section padding on full-width sections */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--container);
}
/* Override Hello Elementor / Elementor's global link color setting.
   This targets the specific element that shows the show name in orange
   in the countdown row. The old orange (#C84B24) may still be set as
   the global link color in Elementor Site Settings — this CSS overrides it
   at the theme level for all links that don't have an explicit class. */
.elementor a,
.elementor-widget a,
.hfe-nav-menu a,
body a:not([class]):not([href^="mailto"]):not([href^="tel"]) {
  color: var(--accent);
}
/* Specifically target the countdown row event link which Hello theme
   may render as a plain <a> picking up global link color */
.cr-cd-event,
.cr-cd-event a,
#next-event-name,
#next-event-name a {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* ================================================================
   17. RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  :root { --gutter: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  /* Show mobile toggle, hide desktop nav */
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--near-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 12px 0;
    z-index: 199;
  }
  .nav-list.nav-open { display: flex; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { padding: 12px 24px; border-radius: 0; }
  .nav-dd {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    background: var(--off-white);
  }
  .has-dd:hover .nav-dd,
  .has-dd.open .nav-dd { display: block; }

  /* Countdown row stacks */
  .countdown-row { grid-template-columns: 1fr; }

  /* What's Happening — 3-col drops to 2, 2-col stays, 1-col stays */
  .wh-grid--3 { grid-template-columns: 1fr 1fr; }
  .wh-grid--2 { grid-template-columns: 1fr 1fr; }
  .wh-grid--1 { grid-template-columns: 1fr; }

  /* Photo banner stacks */
  .photo-banner { flex-direction: column; align-items: flex-start; }

  /* About/Mission stacks */
  .am-grid { grid-template-columns: 1fr; }

  /* Newsletter stacks */
  .nl-inner { flex-direction: column; }
  .nl-form { min-width: 100%; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .section-title { font-size: 36px; }
  .wh-grid,
  .wh-grid--1,
  .wh-grid--2,
  .wh-grid--3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .ft-bottom-links { gap: 14px; }
  .hero { min-height: 340px; }
  .page-hero-title { font-size: 44px; }
}

/* ================================================================
   18. SHOW PAGE
   ================================================================ */
.show-meta-strip {
  display: flex; align-items: center; gap: 28px;
  padding: 20px 0 28px;
  border-bottom: 1.5px solid var(--gray-light);
  margin-bottom: 32px;
}
.show-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 600;
  color: var(--text-body);
}
.show-meta-item svg { color: var(--accent); flex-shrink: 0; }

.show-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.show-tab-btn {
  background: none; border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 12px 22px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.show-tab-btn:hover { color: var(--accent); }
.show-tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.show-tab-panel { display: none; padding-bottom: 60px; }
.show-tab-panel.active { display: block; }

.show-embed-wrap { max-width: 860px; margin: 0 auto; }
.show-file-wrap { text-align: center; }
.show-file-img {
  max-width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); margin: 0 auto 20px;
}
.show-pdf-embed { margin-bottom: 16px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.show-download-btn { margin: 16px auto 0; }
.show-no-content {
  text-align: center; padding: 60px 0;
  color: var(--text-muted); font-size: 15px;
}

/* ================================================================
   19. SPONSORS PAGE
   ================================================================ */
.tsqha-sponsors-page { padding: 20px 0 60px; }
.sponsors-level-group { margin-bottom: 56px; }
.sponsors-level-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-light);
}
.sponsors-level-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--text-dark); line-height: 1;
  margin: 0;
}
.sponsors-level-badge {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  white-space: nowrap;
}
.sponsors-level-platinum { background: #e8e4f0; color: #4a3880; }
.sponsors-level-gold     { background: #fdf0d5; color: #8a5a00; }
.sponsors-level-silver   { background: #ebebeb; color: #555;    }
.sponsors-level-bronze   { background: #f5ebe0; color: #7a4520; }
.sponsors-level-friend   { background: var(--accent-pale); color: var(--accent); }

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.sponsors-grid--platinum { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.sponsors-grid--gold     { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

.sponsor-card {
  background: var(--near-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.sponsor-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.sponsor-card img { max-height: 80px; width: auto; max-width: 100%; object-fit: contain; }
.sponsor-card a { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sponsor-name-fallback {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  color: var(--text-dark); text-align: center;
  padding: 16px;
}
.sponsor-card-name {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted); text-align: center;
  font-family: var(--font-heading);
}
.sponsors-empty {
  text-align: center; padding: 60px 0;
  color: var(--text-muted); font-size: 15px;
}

/* ================================================================
   20. SHOWS ARCHIVE PAGE
   ================================================================ */
.show-season-switcher {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.show-season-label {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  color: var(--text-muted); margin-right: 4px;
}
.show-season-btn {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--text-body); background: var(--near-white);
  transition: all 0.15s; cursor: pointer; text-decoration: none;
  display: inline-block;
}
.show-season-btn:hover { border-color: var(--accent); color: var(--accent); }
.show-season-btn.active {
  background: var(--navy); border-color: var(--navy);
  color: var(--white);
}

.show-archive-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 64px; }

.show-archive-card {
  display: flex; align-items: center; gap: 0;
  background: var(--near-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.show-archive-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.show-archive-card.show-card--past { opacity: 0.7; }
.show-archive-card.show-card--next {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,79,196,0.12);
}

.show-card-next-badge {
  position: absolute; top: 0; right: 0;
  background: var(--accent); color: var(--white);
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 var(--radius-lg) 0 var(--radius);
}

.show-card-left {
  flex-shrink: 0;
  background: var(--navy-dark);
  width: 90px; min-height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.show-card-date-block {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 16px 0;
}
.show-card-month {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-lt);
}
.show-card-day {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.show-card-year {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.38);
}

.show-card-body { flex: 1; padding: 20px 24px; }
.show-card-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800;
  color: var(--text-dark); line-height: 1.1; margin-bottom: 6px;
}
.show-card-title a { color: inherit; transition: color 0.14s; }
.show-card-title a:hover { color: var(--accent); }
.show-card-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 10px;
}
.show-card-location svg { color: var(--accent); flex-shrink: 0; }

.show-card-docs { display: flex; gap: 6px; flex-wrap: wrap; }
.show-card-doc-badge {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 10px;
  background: #eaf3de; color: #3b6d11;
}

.show-card-actions {
  flex-shrink: 0; padding: 0 20px;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.show-card-btn {
  font-size: 12px; padding: 9px 16px;
  display: inline-flex; align-items: center; gap: 6px;
}
.show-card-btn--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-body);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 0.15s, color 0.15s;
}
.show-card-btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.show-archive-empty {
  text-align: center; padding: 60px 0;
  color: var(--text-muted); font-size: 15px;
}

/* ================================================================
   21. STANDINGS SECTION
   ================================================================ */
.standings-section {
  border-top: 2px solid var(--gray-light);
  padding-top: 56px; margin-top: 20px; padding-bottom: 60px;
}
.standings-header { margin-bottom: 32px; }
.standings-current { margin-bottom: 40px; }
.standings-pdf-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 16px;
}
.standings-link-wrap {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; text-align: center;
  margin-bottom: 16px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.standings-link-wrap svg { color: var(--text-muted); }
.standings-link-wrap p { font-size: 14px; color: var(--text-muted); }
.standings-btn { display: inline-flex; align-items: center; gap: 7px; }

.standings-archive-title {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.standings-archive-list { display: flex; gap: 10px; flex-wrap: wrap; }
.standings-archive-item {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--near-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  color: var(--text-body);
  transition: border-color 0.15s, color 0.15s;
}
.standings-archive-item:hover { border-color: var(--navy); color: var(--navy); }
.standings-archive-year { font-weight: 800; color: var(--navy); }
.standings-archive-type { font-size: 11px; color: var(--text-muted); }

/* ================================================================
   22. SINGLE SHOW — CONTACT CALLOUT
   ================================================================ */
.show-meta-strip {
  display: flex; align-items: center; gap: 28px;
  padding: 20px 0 24px;
  border-bottom: 1.5px solid var(--gray-light);
  margin-bottom: 28px; flex-wrap: wrap;
}
.show-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 600; color: var(--text-body);
}
.show-meta-item svg { color: var(--accent); flex-shrink: 0; }
.show-meta-item--action { margin-left: auto; }
.show-entry-btn { font-size: 13px; padding: 10px 20px; }

.show-contact-callout {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 18px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px;
}
.show-contact-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.show-contact-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.show-contact-text { font-size: 14px; color: var(--text-dark); font-weight: 600; margin-bottom: 6px; }
.show-contact-link {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.04em;
  transition: color 0.14s;
}
.show-contact-link:hover { color: var(--accent); }

/* Standings placeholder — shown when no standings uploaded yet */
.standings-placeholder {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.standings-placeholder svg { color: var(--text-muted); opacity: 0.5; }
.standings-placeholder p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}

/* ================================================================
   23. BOARD OF DIRECTORS
   ================================================================ */

/* Officers — full-width cards with photo + bio side by side */
.board-officers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 52px;
}
/* Board shared utilities */
.board-member-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin: 0;
}
.board-member-name--sm {
  font-size: 17px;
  font-weight: 700;
}
.board-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy) !important;
  transition: color 0.14s;
}
.board-contact-link:hover { color: var(--accent) !important; }
.board-contact-link--sm { font-size: 12px; }

/* Directors — responsive grid of compact cards */
.board-directors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.board-director-card {
  background: var(--near-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.board-director-card--has-bio {
  cursor: pointer;
}
.board-director-card--has-bio:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.board-director-photo { flex-shrink: 0; }
.board-director-photo img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 6px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
}
.board-director-body { width: 100%; min-width: 0; }
.board-director-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.board-fun-fact {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.55;
  border-left: 2px solid var(--accent-pale);
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.board-fun-fact-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.board-read-more {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}
.board-director-card--has-bio:hover .board-read-more {
  text-decoration: underline;
}

/* ---- Board member modal ---- */
.board-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 27, 58, 0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}
.board-modal-overlay[hidden] { display: none; }
.board-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.18s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.board-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--near-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  height: auto;
  display: flex; align-items: center; gap: 5px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
}
.board-modal-close:hover { background: var(--navy); color: #fff !important; }
.board-modal-inner {
  display: flex;
  gap: 24px;
  padding: 32px;
  align-items: flex-start;
}
.board-modal-photo { flex-shrink: 0; }
.board-modal-photo img {
  width: 100px !important; height: 100px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
}
.board-modal-placeholder {
  width: 100px; height: 100px;
  border-radius: 8px;
  background: var(--near-white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.board-modal-body { flex: 1; min-width: 0; }
.board-modal-role {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.board-modal-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800;
  color: var(--navy); margin-bottom: 12px; line-height: 1.1;
}
.board-modal-bio {
  font-size: 14px; color: var(--text-body);
  line-height: 1.65; margin-bottom: 16px;
}

.board-empty {
  font-size: 15px;
  color: var(--text-muted);
  padding: 40px 0;
  text-align: center;
}

/* ================================================================
   24. SPONSORSHIP TIERS
   ================================================================ */
.sponsorship-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 8px 0;
}
.sponsorship-tier-card {
  background: var(--near-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.sponsorship-tier-card:hover { box-shadow: var(--shadow-md); }
.tier-header {
  padding: 24px 24px 16px;
  /* border-top color set inline per tier */
}
.tier-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  /* colors set inline per tier */
}
.tier-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.tier-benefits {
  padding: 16px 24px 24px;
  flex: 1;
  border-top: 1px solid var(--gray-light);
}
.tier-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.45;
}
.tier-check {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  /* color set inline per tier */
}

/* Cognito form wrapper */
.tsqha-cognito-form { margin: 20px 0; }

@media (max-width: 640px) {
  .sponsorship-tiers { grid-template-columns: 1fr; }
}

/* ================================================================
   25. CALLOUT / HIGHLIGHT BOXES
   Elementor: apply CSS class in Advanced → CSS Classes
   ================================================================ */

/* Option A: Subtle radius — 3px, very slight softening, not pill-shaped */
.tsqha-callout {
  border-radius: 3px;
  padding: 24px 28px;
}

/* Option B: Left-border accent — modern, editorial, no radius needed */
.tsqha-callout-border {
  border-left: 4px solid var(--accent);
  border-radius: 0;
  padding: 20px 24px;
  background: var(--off-white);
}

/* Option C: Left-border on dark bg */
.tsqha-callout-border-dark {
  border-left: 4px solid var(--accent);
  border-radius: 0;
  padding: 20px 24px;
  background: var(--navy);
  color: #fff;
}

/* Elementor default widget border-radius override — sets all
   Elementor sections/columns/widgets to 3px globally */
.elementor-section,
.elementor-widget-wrap,
.elementor-element {
  --border-radius: 3px;
}

/* ================================================================
   26. GALLERY PAGE TEMPLATE
   ================================================================ */

/* Full-width container — overrides the default page max-width so
   gallery plugins can render edge-to-edge or in wide grids */
.gallery-page-content {
  max-width: 100%;
  padding: 48px 0 64px;
}
.gallery-page-content .container,
.gallery-page-content .elementor-section-boxed > .elementor-container {
  max-width: var(--container);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* FooGallery overrides — keeps the plugin's grid within our design */
.gallery-page-content .foogallery-container {
  padding: 0 var(--gutter);
}
.gallery-page-content .fg-item-inner {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-page-content .fg-item:hover .fg-item-inner {
  box-shadow: var(--shadow-md);
}

/* Envira Gallery overrides */
.gallery-page-content .envira-gallery-wrap {
  padding: 0 var(--gutter);
}
.gallery-page-content .envira-gallery-item img {
  border-radius: var(--radius);
}

/* Block editor gallery block */
.gallery-page-content .wp-block-gallery {
  padding: 0 var(--gutter);
}
.gallery-page-content .wp-block-image img {
  border-radius: var(--radius);
}

/* Optional intro text section above gallery */
.gallery-intro {
  padding: 0 var(--gutter) 36px;
  max-width: var(--container);
  margin: 0 auto;
}
.gallery-intro p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 680px;
}

@media (max-width: 640px) {
  .gallery-page-content { padding: 32px 0 48px; }
  .gallery-page-content .foogallery-container,
  .gallery-page-content .envira-gallery-wrap,
  .gallery-page-content .wp-block-gallery,
  .gallery-intro { padding-left: 20px; padding-right: 20px; }
}

/* ================================================================
   COGNITO FORM LAZY-LOAD ACCORDION
   ================================================================ */

.tsqha-form-accordion {
  margin: 8px 0 24px;
}

/* Toggle button */
.tsqha-form-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  transition: background 0.2s, box-shadow 0.2s;
}
.tsqha-form-toggle:hover {
  background: var(--navy-mid) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-md);
}
.tsqha-form-toggle[aria-expanded="true"] {
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--navy-mid) !important;
}
.tsqha-form-toggle-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.75;
}
.tsqha-form-toggle-label {
  flex: 1;
}
.tsqha-form-toggle-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.22s ease;
}
.tsqha-form-toggle[aria-expanded="true"] .tsqha-form-toggle-chevron {
  transform: rotate(180deg);
}

/* Hint text below button */
.tsqha-form-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin: 6px 0 0 2px;
}

/* Collapsible body */
.tsqha-form-body {
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  /* Height animation handled via max-height in JS */
}
.tsqha-form-body[hidden] {
  display: none;
}
.tsqha-form-body-inner {
  padding: 28px 24px 24px;
  position: relative;
}

/* Loading state */
.tsqha-form-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 16px 0;
}
.tsqha-form-loading.is-hidden {
  display: none;
}
.tsqha-form-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: tsqhaFormSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes tsqhaFormSpin {
  to { transform: rotate(360deg); }
}


/* ================================================================
   POST ARCHIVE & SINGLE POST
   ================================================================ */

.post-archive-wrap { padding: 52px 0 64px; }
.post-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Card */
.post-card {
  background: var(--near-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}

/* Thumbnail */
.post-card-thumb {
  display: block;
  overflow: hidden;
  height: 200px;
  background: var(--near-white);
}
.post-card-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.03); }
.post-card-thumb--placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

/* Card body */
.post-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.post-card-cat {
  color: var(--navy) !important;
}
.post-card-cat:hover { color: var(--navy-mid) !important; text-decoration: underline; }
.post-card-sep { color: var(--text-muted); }
.post-card-date { color: var(--text-muted); font-weight: 600; }
.post-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark) !important;
  margin: 0 0 10px;
}
.post-card-title a { color: var(--text-dark) !important; text-decoration: none; }
.post-card-title a:hover { color: var(--navy) !important; text-decoration: none; }
.post-card-excerpt {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.post-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dark) !important;
  margin-top: auto;
  transition: gap 0.15s;
  text-decoration: none !important;
}
.post-card-readmore:hover { gap: 8px; color: var(--navy) !important; text-decoration: none !important; }

/* Pagination */
.post-archive-empty {
  font-size: 15px; color: var(--text-muted);
  padding: 40px 0; text-align: center;
}
.nav-links { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.nav-links .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  color: var(--text-dark) !important;
  transition: background 0.15s, border-color 0.15s;
}
.nav-links .page-numbers:hover { background: var(--near-white); border-color: var(--navy); text-decoration: none; }
.nav-links .page-numbers.current { background: var(--navy); border-color: var(--navy); color: #fff !important; }
.nav-links .prev, .nav-links .next { width: auto; padding: 0 14px; }

/* ---- Single post ---- */
.single-post-wrap { padding: 52px 0 64px; max-width: 780px; margin: 0 auto; }
.post-hero-cat {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 10px;
}
.single-post-header { margin-bottom: 28px; }
.single-post-meta {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-muted);
}
.single-post-content {
  font-size: 16px; line-height: 1.75;
  color: var(--text-body);
}
.single-post-content h2 {
  font-size: 26px; font-weight: 800;
  color: var(--text-dark); margin: 32px 0 12px;
}
.single-post-content h3 {
  font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin: 28px 0 10px;
}
.single-post-content p { margin-bottom: 18px; }
.single-post-content img { border-radius: var(--radius); margin: 8px 0 20px; }
.single-post-content ul, .single-post-content ol {
  padding-left: 22px; margin-bottom: 18px;
}
.single-post-content li { margin-bottom: 6px; }
.single-post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--near-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-dark);
}

/* Post navigation */
.single-post-nav {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1.5px solid var(--border);
  flex-wrap: wrap;
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none !important;
}
.post-nav-link:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.post-nav-link--next { text-align: right; }
.post-nav-dir {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted) !important;
  text-decoration: none !important;
}
.post-nav-title {
  font-size: 14px; font-weight: 700;
  color: var(--text-dark) !important;
  line-height: 1.3;
  text-decoration: none !important;
}

/* ================================================================
   PAST QUEENS GRID
   ================================================================ */

.queens-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}
.queen-card {
  flex: 0 0 220px;
  width: 220px;
}



.queen-card-link {
  display: flex;
  flex-direction: column;
  background: var(--near-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none !important;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  height: 100%;
}
.queen-card-link:not(.queen-card-link--nolink):hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* Photo — fixed height, consistent crop, anchored top */
.queen-card-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--navy-dark);
  flex-shrink: 0;
}
.queen-card-img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
  transition: transform 0.3s ease;
}
.queen-card-link:not(.queen-card-link--nolink):hover .queen-card-img {
  transform: scale(1.04);
}
.queen-card-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
}

/* Card body */
.queen-card-body {
  padding: 16px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.queen-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark) !important;
  line-height: 1.2;
  margin: 0;
}
.queen-card-years {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.queen-card-years li {
  font-size: 12px;
  color: var(--text-muted) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
}

