/* ============================================================
   Southwest Tech TSA — shared stylesheet
   Design system: navy + red institutional, technical sans type
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@500;600;700;800&family=Saira+Condensed:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --navy-900: #081a3a;
  --navy-800: #0c2348;
  --navy-700: #122f5e;
  --navy-600: #1a3d74;
  --navy: #0e2a55;
  --red: #c8102e;
  --red-dark: #a50d26;
  --gold: #c98a4b;
  --gold-light: #d99a5c;

  --ink: #15233c;
  --ink-soft: #4a5a72;
  --paper: #ffffff;
  --mist: #f3f6fb;
  --mist-2: #e9eef6;
  --line: #dde4ef;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(12, 35, 72, 0.07);
  --shadow-md: 0 14px 36px rgba(12, 35, 72, 0.12);
  --shadow-lg: 0 28px 60px rgba(8, 26, 58, 0.30);

  --maxw: 1180px;
  --nav-h: 78px;

  --font-display: 'Saira Condensed', 'Saira', sans-serif;
  --font-head: 'Saira', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; color: var(--navy); font-weight: 700; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Under-construction notice (remove this block + the banner div in each
   HTML file to go fully live) ---- */
.uc-banner {
  background: repeating-linear-gradient(45deg, #c98a4b, #c98a4b 14px, #b87c3f 14px, #b87c3f 28px);
  color: #0a1c3d;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  padding: 9px 16px;
  position: relative;
  z-index: 200;
}

/* Section heading helper */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  font-size: .82rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--navy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .92rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,16,46,.32); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline-navy:hover { border-color: var(--navy); transform: translateY(-2px); }

.link-arrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .4em;
  transition: gap .18s ease;
}
.link-arrow:hover { gap: .8em; }
.link-arrow.red { color: var(--red); }
.link-arrow.navy { color: var(--navy); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  font-size: 1.85rem;
  line-height: 1;
  border: 2.5px solid #fff;
  padding: 4px 9px 2px;
  border-radius: 6px;
}
.brand-text { color: #fff; line-height: 1.05; }
.brand-text .b1 { font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: .98rem; letter-spacing: .06em; }
.brand-text .b2 { font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .14em; color: #c7d2e6; text-transform: uppercase; }
/* Chapter logo image (images/chapter-logo.png) — contains its own wordmark */
.brand-logo { height: 60px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 50px; } }

/* Generic image-fill helper: an <img> that fills its placeholder container */
.img-fill { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo-ph .img-fill { position: absolute; inset: 0; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #e6ecf6;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 13px;
  border-radius: 6px;
  transition: color .18s ease, background .18s ease;
}
.nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links > li.current > a { color: #fff; }
.nav-links > li.current > a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
}
.caret { width: 9px; height: 9px; opacity: .8; }

/* Dropdown */
.has-drop > a { cursor: pointer; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  border: 1px solid var(--line);
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 13px;
  border-radius: 7px;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  transition: background .15s ease, color .15s ease;
}
.dropdown a:hover { background: var(--mist); color: var(--red); }
.dropdown .muted { color: var(--ink-soft); font-weight: 500; font-size: .82rem; padding: 4px 13px 2px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 2px; margin: 5px 0; transition: .25s; }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-900);
    padding: 12px 18px 24px;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav.open .nav-links { max-height: 560px; overflow-y: auto; }
  .nav-links > li > a { padding: 14px 10px; font-size: .9rem; }
  .nav-links > li.current > a::after { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255,255,255,.04); border: 0;
    margin: 2px 0 6px; padding: 4px 0 4px 14px;
  }
  .dropdown a { color: #c7d2e6; }
  .dropdown a:hover { background: rgba(255,255,255,.06); color: #fff; }
  .dropdown .muted { color: #8da0bf; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 78% -10%, rgba(200,16,46,.28), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700) 55%, var(--navy-600));
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(120deg, #000 30%, transparent 75%);
  opacity: .6;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 64px 0 0;
  min-height: 480px;
}
.hero-copy .kicker {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--red);
  font-size: 1.05rem;
  margin-bottom: 2px;
  opacity: 0; animation: fadeUp .7s .05s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(5rem, 13vw, 10.5rem);
  line-height: .82;
  letter-spacing: .01em;
  margin: -4px 0 4px;
  opacity: 0; animation: fadeUp .7s .12s forwards;
}
.hero-tag {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #fff;
  margin-bottom: 18px;
  opacity: 0; animation: fadeUp .7s .2s forwards;
}
.hero-desc {
  max-width: 430px;
  color: #cdd8ec;
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .7s .28s forwards;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp .7s .36s forwards; }

.hero-photo {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  opacity: 0; animation: fadeIn .9s .25s forwards;
}
.photo-ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(400px 300px at 70% 20%, rgba(200,16,46,.35), transparent 70%),
    linear-gradient(160deg, #1c3f74, #0c2348);
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid rgba(255,255,255,.08);
}
.photo-ph .ph-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  border: 1.5px dashed rgba(255,255,255,.3);
  padding: 14px 22px;
  border-radius: 8px;
}

/* Info bar under hero */
.infobar {
  position: relative;
  background: linear-gradient(90deg, var(--navy-700), var(--navy-600));
  border-top: 3px solid var(--red);
}
.infobar .wrap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
}
.info-item {
  display: flex; align-items: center; gap: 12px;
  color: #fff; font-family: var(--font-head); font-weight: 600;
  letter-spacing: .02em; font-size: 1.02rem;
}
.info-item svg { width: 22px; height: 22px; color: var(--gold-light); flex: none; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.cards { padding: 64px 0 8px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent, var(--red));
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card.navy-accent { --accent: var(--navy); }
.card-ic {
  width: 78px; height: 78px; margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--accent, var(--red));
  color: var(--accent, var(--red));
}
.card-ic svg { width: 36px; height: 36px; }
.card h3 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: 1.3rem; color: var(--navy); margin-bottom: 10px;
}
.card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 18px; min-height: 72px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  background:
    radial-gradient(700px 280px at 15% 0%, rgba(200,16,46,.14), transparent 70%),
    linear-gradient(180deg, #0c1d36, #0a172b);
  color: #fff;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}
.stats::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(115deg, rgba(255,255,255,.05) 0 1px, transparent 1px 60px);
  opacity: .4;
}
.stats .wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 48px 24px;
}
.stat { text-align: center; padding: 0 16px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 1px; background: rgba(255,255,255,.14);
}
.stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  color: var(--gold-light); line-height: 1;
}
.stat .lbl {
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: .78rem; color: #c4d0e4; margin-top: 8px;
}

/* ============================================================
   NEWS + EVENTS (home)
   ============================================================ */
.home-feeds { padding: 66px 0 80px; background: var(--mist); }
.feeds-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; }
.feed-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--line); padding-bottom: 12px; margin-bottom: 22px;
}
.feed-head h2 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; font-size: 1.5rem;
}

.news-item { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.news-item:last-child { border-bottom: 0; }
.news-thumb {
  border-radius: 10px; height: 104px; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-600), var(--navy-800));
  display: grid; place-items: center;
  color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .14em;
  font-family: var(--font-head); text-transform: uppercase;
}
.news-body h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.12rem; letter-spacing: .02em; margin-bottom: 6px; }
.news-body p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 10px; }

/* Events list */
.event-item { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; position: relative; }
.event-item:not(:last-child)::after {
  content: ""; position: absolute; left: 27px; top: 58px; bottom: -14px; width: 2px; background: var(--line);
}
.date-badge {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; color: #fff;
  font-family: var(--font-head); line-height: 1; z-index: 1;
}
.date-badge.red { background: var(--red); }
.date-badge.navy { background: var(--navy); }
.date-badge .m { font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.date-badge .d { font-size: 1.15rem; font-weight: 800; }
.event-info h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.02rem; letter-spacing: .02em; color: var(--navy); }
.event-info p { color: var(--ink-soft); font-size: .9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: linear-gradient(180deg, #0b1d3a, #081123); color: #c3d0e6; }
.footer-top { border-top: 4px solid var(--red); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr auto;
  gap: 40px;
  padding: 56px 24px 40px;
}
.footer h4 {
  font-family: var(--font-head); color: var(--gold-light); text-transform: uppercase;
  letter-spacing: .12em; font-size: .82rem; margin-bottom: 16px;
}
.footer-brand .fb-name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.footer-brand p { font-size: .92rem; max-width: 250px; }
.swlogo {
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f06a2a, #c8102e);
  display: grid; place-items: center; color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.4rem; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
/* Chapter logo in footer brand area */
.swlogo-img { width: auto; height: 66px; object-fit: contain; margin-bottom: 16px; display: block; }
/* National TSA logo image in footer */
.footer-tsa-logo { height: 54px; width: auto; display: block; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; color: #c3d0e6; transition: .2s;
}
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: .94rem; transition: color .18s, padding .18s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer .contact-block { margin-bottom: 16px; }
.footer .contact-block strong { color: #fff; font-family: var(--font-head); font-weight: 600; display: block; font-size: .92rem; }
.footer .contact-block span { font-size: .88rem; }
.footer-natl { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.tsa-natl-mark {
  font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.6rem;
  border: 2px solid #fff; border-radius: 6px; padding: 5px 11px 3px; letter-spacing: .05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: #8ea2c2;
}

/* ============================================================
   INNER PAGE BANNER + GENERIC SECTIONS
   ============================================================ */
.page-banner {
  position: relative;
  background:
    radial-gradient(900px 360px at 80% -20%, rgba(200,16,46,.28), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 58px 0;
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(120deg, #000 20%, transparent 80%);
}
.page-banner .wrap { position: relative; }
.crumbs { font-family: var(--font-head); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: #9fb2d4; margin-bottom: 12px; }
.crumbs a:hover { color: #fff; }
.page-banner h1 {
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem); text-transform: uppercase; letter-spacing: .01em;
}
.page-banner p { color: #cdd8ec; max-width: 620px; margin-top: 12px; font-size: 1.08rem; }

.section { padding: 70px 0; }
.section.mist { background: var(--mist); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head .eyebrow { display: block; margin-bottom: 10px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }

.prose p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 18px; }
.prose h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.5rem; margin: 30px 0 12px; }

/* two-col content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.media-ph {
  border-radius: var(--radius); min-height: 320px; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-600), var(--navy-800));
  display: grid; place-items: center; color: rgba(255,255,255,.5);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .18em; font-size: .8rem;
  border: 1px dashed rgba(255,255,255,.2);
}

/* generic tile grid (competitions, values, etc.) */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tile-top {
  height: 150px; position: relative;
  background: linear-gradient(150deg, var(--navy-600), var(--navy-800));
  display: grid; place-items: center;
}
.tile-top.red { background: linear-gradient(150deg, #d6203a, #97001f); }
.tile-top .badge {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em;
  font-size: .7rem; color: rgba(255,255,255,.65);
}
.tile-top .tile-ic { width: 48px; height: 48px; color: #fff; opacity: .92; }
.tile-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.tile-body h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 1.22rem; margin-bottom: 8px; }
.tile-body p { color: var(--ink-soft); font-size: .95rem; flex: 1; margin-bottom: 14px; }
.chip {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--red); background: #fdeaed; padding: 4px 10px; border-radius: 30px; margin-bottom: 12px; align-self: flex-start;
}
.chip.navy { color: var(--navy); background: #e8eefa; }

/* info callout */
.callout {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: var(--radius-sm); padding: 24px 26px; box-shadow: var(--shadow-sm);
}
.callout h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: 1.2rem; margin-bottom: 6px; }
.callout p { color: var(--ink-soft); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; position: relative; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: s; content: counter(s);
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--mist-2);
  position: absolute; top: 14px; right: 18px; line-height: 1;
}
.step h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .03em; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .94rem; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(600px 240px at 80% 0%, rgba(200,16,46,.22), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff; text-align: center; padding: 64px 24px;
}
.cta-band h2 { font-family: var(--font-display); font-weight: 800; color: #fff; text-transform: uppercase; font-size: clamp(1.8rem,4vw,2.6rem); }
.cta-band p { color: #cdd8ec; max-width: 560px; margin: 12px auto 26px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CALENDAR PAGE
   ============================================================ */
.cal-legend { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.cal-legend span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: var(--red); } .dot.navy { background: var(--navy); } .dot.gold { background: var(--gold); }

.cal-month { margin-bottom: 50px; }
.cal-month h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: 1.7rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }
.cal-row {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 22px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--navy);
  border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.cal-row:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.cal-row.red { border-left-color: var(--red); }
.cal-row.gold { border-left-color: var(--gold); }
.cal-date { text-align: center; font-family: var(--font-display); line-height: 1; }
.cal-date .dm { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.cal-date .dd { font-size: 2rem; font-weight: 800; color: var(--navy); }
.cal-info h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.12rem; letter-spacing: .02em; }
.cal-info p { color: var(--ink-soft); font-size: .92rem; }
.cal-meta { text-align: right; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--ink-soft); }
.cal-meta .tag { display: inline-block; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; background: var(--mist-2); color: var(--navy); }

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-img { height: 180px; overflow: hidden; background: linear-gradient(150deg, var(--navy-600), var(--navy-800)); display: grid; place-items: center; color: rgba(255,255,255,.5); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; position: relative; }
.article-img .cat { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .08em; padding: 4px 10px; border-radius: 4px; }
.article-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.article-body .date { font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.article-body h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em; font-size: 1.2rem; margin-bottom: 10px; }
.article-body p { color: var(--ink-soft); font-size: .95rem; flex: 1; margin-bottom: 14px; }

/* featured news */
.feature-news { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 48px; }
.feature-news .fimg { min-height: 320px; overflow: hidden; background: linear-gradient(150deg, var(--navy-600), var(--navy-800)); display: grid; place-items: center; color: rgba(255,255,255,.5); font-family: var(--font-head); letter-spacing: .16em; text-transform: uppercase; font-size: .76rem; }
.feature-news .fbody { padding: 44px 42px; display: flex; flex-direction: column; justify-content: center; }
.feature-news .fbody h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem,3vw,2.2rem); letter-spacing: .02em; margin: 10px 0 14px; }
.feature-news .fbody p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 22px; }

/* ============================================================
   MEMBERSHIP / lists
   ============================================================ */
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--ink-soft); font-size: 1.02rem; }
.check-list svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }
.fee-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 34px; text-align: center; box-shadow: var(--shadow-md); }
.fee-card .amt { font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; color: var(--gold-light); line-height: 1; }
.fee-card .amt small { font-size: 1rem; color: #c4d0e4; font-weight: 600; }
.fee-card p { color: #cdd8ec; margin-top: 8px; }

/* faq-ish accordion (plain) */
.qa { border-bottom: 1px solid var(--line); padding: 18px 0; }
.qa h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.15rem; margin-bottom: 6px; }
.qa p { color: var(--ink-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .wrap { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
  .stat:nth-child(1)::before, .stat:nth-child(4)::before { display: none; }
  .tile-grid, .news-grid, .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-photo { min-height: 280px; }
  .hero-title { font-size: clamp(4.5rem, 26vw, 7rem); }
  .feeds-grid, .split, .feature-news { grid-template-columns: 1fr; }
  .feature-news .fimg { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-natl { grid-column: span 2; flex-direction: row; justify-content: flex-start; }
  .infobar .wrap { justify-content: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .cards-grid, .tile-grid, .news-grid, .steps { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat::before { display: none !important; }
  .news-item { grid-template-columns: 1fr; }
  .news-thumb { height: 150px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-natl { grid-column: auto; }
  .cal-row { grid-template-columns: 70px 1fr; }
  .cal-meta { grid-column: 1 / -1; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
