/* ==========================================================================
   Senior Friendly Fitness — site stylesheet
   Palette: black / orange / white. Editorial grid, no decorative gradients.
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange:      #f26c1b;   /* brand orange — fills, rules, buttons */
  --orange-ink:  #b04d08;   /* darker orange — small text on white (AA) */
  --orange-dark: #d25a0e;   /* hover */
  --ink:         #121212;   /* headings, dark panels */
  --ink-soft:    #1f1f1f;
  --body:        #3a3a3a;   /* body copy */
  --muted:       #6b6b6b;
  --paper:       #ffffff;
  --paper-warm:  #f7f6f3;   /* section alternation */
  --line:        #e2e0dc;   /* hairlines */
  --line-dark:   rgba(255,255,255,.16);
  --maxw:        1180px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(40px, 5.2vw, 62px); }
h2 { font-size: clamp(30px, 3.6vw, 42px); }
h3 { font-size: 22px; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section--warm { background: var(--paper-warm); }
.section--dark { background: var(--ink); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 12px 20px; z-index: 2000;
}
.skip-link:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 14px 30px;
  font-family: inherit; font-size: 17px; font-weight: 600; letter-spacing: .01em;
  border: 2px solid transparent; border-radius: 2px; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--sm { min-height: 46px; padding: 10px 22px; font-size: 15px; }

/* ---------- section headers ---------- */
.eyebrow {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange-ink); margin-bottom: 14px;
}
.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 19px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center p { margin-left: auto; margin-right: auto; }
.rule { height: 3px; width: 56px; background: var(--orange); margin-top: 22px; }
.section-head--center .rule { margin-left: auto; margin-right: auto; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--ink); color: rgba(255,255,255,.72);
  font-size: 14px; letter-spacing: .02em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 42px; gap: 16px;
}
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--orange); }
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex: none; }

.masthead {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--line);
}
.masthead .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 86px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; flex: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-name {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 19px; font-weight: 600;
  color: var(--ink); line-height: 1.1; letter-spacing: -0.01em;
}
.brand-tag {
  display: block; font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange-ink); margin-top: 4px;
}
.mainnav { display: flex; align-items: center; gap: 22px; }
.mainnav a {
  font-size: 15px; font-weight: 500; color: var(--ink); white-space: nowrap;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.mainnav a:hover, .mainnav a[aria-current="page"] {
  color: var(--orange-ink); border-bottom-color: var(--orange);
}
.masthead-cta { display: flex; align-items: center; gap: 18px; flex: none; }
.masthead-phone { font-weight: 700; color: var(--ink); font-size: 16px; white-space: nowrap; }
.masthead-phone:hover { color: var(--orange-ink); }

.navtoggle {
  display: none; width: 48px; height: 48px; background: none; border: 1px solid var(--line);
  border-radius: 2px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.navtoggle span { display: block; width: 22px; height: 2px; background: var(--ink); }

.mobilenav { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobilenav.open { display: block; }
.mobilenav a {
  display: block; padding: 16px 28px; font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobilenav .btn { margin: 20px 28px; width: calc(100% - 56px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.hero .container {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
  padding-top: 76px; padding-bottom: 76px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--orange-ink); }
.hero-sub { font-size: 20px; line-height: 1.6; color: var(--body); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust {
  display: flex; align-items: center; gap: 10px; font-size: 15.5px; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 20px;
}
.stars { color: var(--orange); letter-spacing: 2px; font-size: 15px; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; height: 480px; object-fit: cover; border-radius: 2px;
}
.hero-figure figcaption {
  background: var(--ink); color: rgba(255,255,255,.75); font-size: 13.5px;
  padding: 14px 18px; letter-spacing: .02em;
}
.hero-figure figcaption strong { color: #fff; }

/* facts bar */
.facts { border-bottom: 1px solid var(--line); background: #fff; }
.facts .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.fact { padding: 30px 26px 30px 0; border-right: 1px solid var(--line); }
.fact:last-child { border-right: none; }
.fact:not(:first-child) { padding-left: 26px; }
.fact-value {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 30px; font-weight: 600;
  color: var(--ink); line-height: 1.1; margin-bottom: 6px;
}
.fact-value span { color: var(--orange); }
.fact-label { font-size: 15px; color: var(--muted); line-height: 1.45; }

/* ==========================================================================
   Statement band (Did you know)
   ========================================================================== */
.statement { background: var(--ink); color: #fff; padding: 84px 0; }
.statement .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.statement .eyebrow { color: var(--orange); }
.statement h2 { font-size: clamp(30px, 3.4vw, 44px); color: #fff; }
.statement h2 span { color: var(--orange); }
.statement p { color: rgba(255,255,255,.72); font-size: 18.5px; margin-top: 20px; }
.statement-side { border-left: 3px solid var(--orange); padding-left: 32px; }
.statement-side p { margin-top: 0; margin-bottom: 26px; }

/* eligibility strip */
.strip { background: var(--orange); color: #fff; }
.strip .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap;
}
.strip p { font-size: 19px; font-weight: 500; max-width: none; }
.strip strong { font-weight: 700; }
.strip .btn { background: #fff; color: var(--ink); border-color: #fff; }
.strip .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ==========================================================================
   Programs
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 2px;
  display: flex; flex-direction: column; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--ink); }
.card-media { position: relative; }
.card-media img { width: 100%; height: 190px; object-fit: cover; }
.card-flag {
  position: absolute; top: 0; left: 0; background: var(--orange); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; padding: 7px 12px;
}
.card-body { padding: 26px 24px 28px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 16.5px; color: var(--muted); line-height: 1.6; }
.card-index {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 14px; color: var(--orange-ink);
  font-weight: 600; letter-spacing: .1em; margin-bottom: 12px; display: block;
}

/* ==========================================================================
   Pillars (mind / body / spirit)
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pillar { padding: 44px 36px; border-right: 1px solid var(--line); }
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 15px; color: var(--orange-ink);
  font-weight: 600; letter-spacing: .12em; display: block; margin-bottom: 14px;
}
.pillar h3 { font-size: 26px; margin-bottom: 12px; }
.pillar p { font-size: 16.5px; color: var(--muted); }
.pullquote {
  margin-top: 56px; border-top: 1px solid var(--line); padding-top: 44px; text-align: center;
}
.pullquote blockquote {
  font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic; color: var(--ink); line-height: 1.45; max-width: 880px; margin: 0 auto;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote { background: #fff; border: 1px solid var(--line); padding: 34px 30px 30px; border-radius: 2px; }
.quote-mark {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 56px; line-height: .8;
  color: var(--orange); display: block; margin-bottom: 14px;
}
.quote blockquote { font-size: 17.5px; line-height: 1.65; color: var(--body); margin-bottom: 26px; }
.quote-by { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; flex: none;
  font-size: 16px; font-weight: 700; letter-spacing: .04em;
}
.avatar--orange { background: var(--orange); }
.quote-by .name { font-weight: 600; color: var(--ink); font-size: 16.5px; line-height: 1.25; }
.quote-by .quote-place { font-size: 14.5px; color: var(--muted); }

/* ==========================================================================
   Instructors
   ========================================================================== */
.staff { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.staff-card { border: 1px solid var(--line); background: #fff; padding: 34px 32px; border-radius: 2px; }
.staff-top { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.staff-top .avatar { width: 62px; height: 62px; font-size: 20px; }
.staff-top h3 { font-size: 24px; margin-bottom: 2px; }
.staff-role { font-size: 15px; color: var(--orange-ink); font-weight: 600; letter-spacing: .02em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
  font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink);
  border: 1px solid var(--line); padding: 6px 12px; border-radius: 2px; background: var(--paper-warm);
}
.staff-card .bio { font-size: 16.5px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.staff-where { font-size: 15px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; }
.staff-where span { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Plans / logos
   ========================================================================== */
.plan-list {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.plan-list li {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 22px; font-weight: 600;
  color: var(--ink); text-align: center; padding: 34px 18px; border-right: 1px solid var(--line);
}
.plan-list li:last-child { border-right: none; }
@media (max-width: 760px) {
  .plan-list { grid-template-columns: repeat(2, 1fr); }
  .plan-list li:nth-child(2n) { border-right: none; }
  .plan-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.plan-note { text-align: center; margin: 26px auto 0; font-size: 16px; color: var(--muted); }

/* ==========================================================================
   Locations
   ========================================================================== */
.places { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.place {
  border: 1px solid var(--line); background: #fff; padding: 26px 22px; border-radius: 2px;
  display: flex; flex-direction: column; gap: 8px;
}
.place-city { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-ink); }
.place-name { font-family: 'Source Serif 4', Georgia, serif; font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.place-time { font-size: 15px; color: var(--muted); }
.text-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink);
  border-bottom: 2px solid var(--orange); padding-bottom: 3px;
}
.text-link:hover { color: var(--orange-ink); }

/* ==========================================================================
   Schedule
   ========================================================================== */
.sched-wrap { overflow-x: auto; border: 1px solid var(--line); background: #fff; }
.sched { width: 100%; border-collapse: collapse; min-width: 720px; }
.sched th {
  text-align: left; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: var(--ink); padding: 16px 20px; font-weight: 700;
}
.sched td { padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 16.5px; }
.sched tr:last-child td { border-bottom: none; }
.sched .day {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 19px; font-weight: 600; color: var(--ink);
  white-space: nowrap; width: 130px; background: var(--paper-warm);
}
.slot { display: block; padding-left: 14px; border-left: 3px solid var(--line); margin-bottom: 12px; }
.slot:last-child { margin-bottom: 0; }
.slot b { display: block; font-weight: 600; color: var(--ink); font-size: 16.5px; }
.slot span { font-size: 15px; color: var(--muted); }
.slot.west   { border-left-color: #f26c1b; }
.slot.lake   { border-left-color: #2d5a8e; }
.slot.silver { border-left-color: #2d8a4e; }
.slot.tanner { border-left-color: #8a2d6a; }
.legend { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 24px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--muted); }
.legend-key { width: 14px; height: 3px; flex: none; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: 40px 34px; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 40px; font-weight: 600;
  color: var(--orange); line-height: 1; margin-bottom: 16px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 16.5px; color: var(--muted); }

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.closer { background: var(--ink); color: #fff; padding: 84px 0; text-align: center; }
.closer h2 { color: #fff; margin-bottom: 18px; }
.closer p { color: rgba(255,255,255,.72); font-size: 19px; margin: 0 auto 32px; }
.closer-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #0d0d0d; color: rgba(255,255,255,.66); padding: 68px 0 0; font-size: 16px; }
.footer h4 {
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin-bottom: 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-badge {
  width: 66px; height: 66px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.footer-badge img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand-name { font-family: 'Source Serif 4', Georgia, serif; font-size: 19px; color: #fff; font-weight: 600; line-height: 1.15; }
.footer-brand-name span { display: block; font-family: 'Inter', sans-serif; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-top: 5px; }
.footer p { font-size: 16px; line-height: 1.6; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer a:hover { color: var(--orange); }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-phone { font-family: 'Source Serif 4', Georgia, serif; font-size: 24px; color: #fff; font-weight: 600; }
.footer-bar {
  border-top: 1px solid var(--line-dark); padding: 22px 0; font-size: 14.5px;
}
.footer-bar .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ==========================================================================
   Interior page header
   ========================================================================== */
.pagehead { background: var(--ink); color: #fff; padding: 72px 0; }
.pagehead h1 { color: #fff; font-size: clamp(36px, 4.4vw, 54px); }
.pagehead p { color: rgba(255,255,255,.72); font-size: 19px; margin-top: 18px; }
.pagehead .eyebrow { color: var(--orange); }
.crumb { font-size: 14.5px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.crumb a:hover { color: var(--orange); }

/* prose blocks (privacy / terms) */
.prose h2 { font-size: 27px; margin: 44px 0 14px; }
.prose h3 { font-size: 20px; margin: 30px 0 10px; }
.prose p, .prose li { font-size: 17px; color: var(--body); }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--orange-ink); border-bottom: 1px solid var(--line); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1340px) {
  .masthead-phone { display: none; }
  .mainnav { gap: 18px; }
}

@media (max-width: 1150px) {
  .mainnav { display: none; }
  .navtoggle { display: flex; }
  .masthead-cta { margin-left: auto; }
}

@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .places { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; padding-bottom: 52px; }
  .hero-figure img { height: 320px; }
  .facts .container { grid-template-columns: repeat(2, 1fr); }
  .fact { border-bottom: 1px solid var(--line); padding: 24px 20px 24px 0; }
  .fact:nth-child(2n) { border-right: none; padding-left: 20px; }
  .fact:nth-child(2n+1) { padding-left: 0; }
  .statement .container { grid-template-columns: 1fr; gap: 32px; }
  .statement-side { border-left: none; border-top: 3px solid var(--orange); padding-left: 0; padding-top: 26px; }
  .quotes, .staff, .steps, .pillars { grid-template-columns: 1fr; }
  .pillar, .step { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child, .step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .strip .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .masthead-cta { display: none; }
  .masthead .container { min-height: 74px; gap: 12px; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .cards, .places { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 16px; }
  .brand { gap: 10px; min-width: 0; }
  .brand-tag { font-size: 9.5px; letter-spacing: .12em; }
  .hero-figure figcaption { font-size: 12.5px; padding: 12px 14px; }
  .topbar .container { justify-content: center; }
  .topbar-left { display: none; }
  .hero-actions .btn { width: 100%; }
  .mobilenav .btn { width: calc(100% - 40px); margin: 20px; }
  .mobilenav a { padding: 15px 20px; }
}

@media print {
  .masthead, .topbar, .mobilenav, .closer, .strip { display: none; }
}

/* ==========================================================================
   Interior page components
   ========================================================================== */

/* centred lede */
.lede { max-width: 820px; margin: 0 auto; text-align: center; }
.lede p { font-size: 20px; line-height: 1.65; color: var(--body); margin: 0 auto; }

/* highlight panel (goal / stat) */
.panel {
  border: 1px solid var(--line); background: #fff; padding: 48px 44px; text-align: center;
  border-top: 4px solid var(--orange);
}
.panel-figure {
  font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(48px, 6vw, 72px);
  font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 16px;
}
.panel-text { font-size: 21px; color: var(--ink); font-weight: 600; max-width: 640px; margin: 0 auto 10px; }
.panel-sub { font-size: 16.5px; color: var(--muted); max-width: 640px; margin: 0 auto; }

/* numbered approach list */
.numlist { border-top: 1px solid var(--line); }
.numlist-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--line);
}
.numlist-num {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 38px; font-weight: 600;
  color: var(--orange); line-height: 1;
}
.numlist-item h3 { margin-bottom: 8px; }
.numlist-item p { color: var(--muted); font-size: 17px; }

/* feature block (program spotlight) */
.feature {
  display: grid; grid-template-columns: 300px 1fr; border: 1px solid var(--line);
  background: #fff; margin-bottom: 32px; overflow: hidden;
}
.feature-side {
  background: var(--ink); color: #fff; padding: 40px 34px; display: flex;
  flex-direction: column; justify-content: center;
}
.feature-side .kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.feature-side h3 { color: #fff; font-size: 30px; line-height: 1.15; }
.feature-side p { color: rgba(255,255,255,.7); font-size: 16px; margin-top: 14px; }
.feature-body { padding: 40px 40px 36px; }
.feature-body > p { font-size: 17.5px; color: var(--body); margin-bottom: 24px; }
.checklist { list-style: none; margin-bottom: 28px; }
.checklist li {
  position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 17px; color: var(--body);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 8px;
  border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}
.fineprint { display: block; font-size: 13.5px; color: var(--muted); margin-top: 18px; }

/* class grid */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tile { border: 1px solid var(--line); background: #fff; padding: 28px 26px; }
.tile h3 { font-size: 20px; margin-bottom: 10px; }
.tile p { font-size: 16px; color: var(--muted); }
.tile-index {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 14px; color: var(--orange-ink);
  font-weight: 600; letter-spacing: .1em; display: block; margin-bottom: 12px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); padding: 5px 10px;
}
.section--dark .tile { background: transparent; border-color: var(--line-dark); }
.section--dark .tile h3 { color: #fff; }
.section--dark .tile p { color: rgba(255,255,255,.66); }
.section--dark .tile-index { color: var(--orange); }
.section--dark .section-head p { color: rgba(255,255,255,.7); }
.section--dark .eyebrow { color: var(--orange); }

/* three-up inline features on dark */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.trio div { padding: 28px 24px; border-right: 1px solid var(--line-dark); color: #fff; font-weight: 600; font-size: 17px; }
.trio div:last-child { border-right: none; }
.trio span { display: block; font-family: 'Source Serif 4', Georgia, serif; color: var(--orange); font-size: 14px; letter-spacing: .1em; margin-bottom: 8px; font-weight: 600; }

/* location cards */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.loc-card { border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.loc-head { background: var(--ink); color: #fff; padding: 26px 30px; }
.loc-head h3 { color: #fff; font-size: 24px; }
.loc-head p { color: rgba(255,255,255,.66); font-size: 14.5px; margin-top: 8px; }
.loc-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.loc-row { display: grid; grid-template-columns: 96px 1fr; gap: 14px; font-size: 16.5px; align-items: baseline; }
.loc-row dt {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.loc-row dd { color: var(--body); }
.loc-row dd strong { color: var(--ink); }
.loc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.form-card { border: 1px solid var(--line); background: #fff; padding: 40px 38px; }
.form-card h2 { font-size: 30px; margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 17px; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); background: #fff; border-radius: 2px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--orange); outline-offset: 0; border-color: var(--orange); }
.field textarea { resize: vertical; }
.form-note { font-size: 15px; color: var(--muted); margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success h3 { font-size: 28px; margin-bottom: 10px; }
.form-success p { color: var(--muted); margin: 0 auto; }
.form-success .tick {
  width: 62px; height: 62px; border-radius: 50%; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px;
}
.side-cards { display: grid; gap: 20px; }
.side-card { border: 1px solid var(--line); background: #fff; padding: 28px 26px; }
.side-card h3 { font-size: 20px; margin-bottom: 12px; }
.side-card p { font-size: 16.5px; color: var(--muted); margin-bottom: 4px; }
.side-card .big { font-family: 'Source Serif 4', Georgia, serif; font-size: 28px; color: var(--ink); font-weight: 600; margin-bottom: 6px; }
.side-card .who { color: var(--ink); font-weight: 600; margin-top: 10px; }
.side-card .btn { margin-top: 18px; }

/* stat strip */
.statstrip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: #fff; }
.statstrip div { padding: 34px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.statstrip div:last-child { border-right: none; }
.statstrip .s-value { font-family: 'Source Serif 4', Georgia, serif; font-size: 26px; font-weight: 600; color: var(--ink); line-height: 1.2; min-height: 2.4em; }
.statstrip .s-sub { font-size: 15.5px; color: var(--muted); margin-top: auto; padding-top: 6px; }

/* partner groups */
.pgroup { border-top: 1px solid var(--line); padding: 24px 0; display: grid; grid-template-columns: 230px 1fr; gap: 24px; align-items: baseline; }
.pgroup:last-of-type { border-bottom: 1px solid var(--line); }
.pgroup-label { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-ink); }
.pgroup-names { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.pgroup-names span { font-size: 17.5px; color: var(--ink); font-weight: 500; }

/* year list */
.years { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.year-card { border: 1px solid var(--line); background: #fff; padding: 28px 26px; border-top: 3px solid var(--orange); }
.year-card .y { font-family: 'Source Serif 4', Georgia, serif; font-size: 34px; font-weight: 700; color: var(--ink); line-height: 1; }
.year-card .t { font-weight: 600; color: var(--ink); margin: 10px 0 6px; }
.year-card .d { font-size: 16px; color: var(--muted); }

.notice { border-left: 3px solid var(--orange); padding: 20px 26px; background: var(--paper-warm); font-size: 17px; }

@media (max-width: 1080px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .feature-body { padding: 32px 28px; }
  .loc-grid, .contact-grid, .years, .trio, .statstrip { grid-template-columns: 1fr; }
  .trio div, .statstrip div { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .statstrip div { border-bottom: 1px solid var(--line); }
  .trio div:last-child, .statstrip div:last-child { border-bottom: none; }
  .pgroup { grid-template-columns: 1fr; gap: 10px; }
  .numlist-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .form-card { padding: 30px 24px; }
}
@media (max-width: 620px) {
  .tile-grid { grid-template-columns: 1fr; }
  .loc-row { grid-template-columns: 1fr; gap: 2px; }
}

/* ==========================================================================
   Member resources hub
   ========================================================================== */
.res-card {
  display: grid; grid-template-columns: 280px 1fr; border: 1px solid var(--line);
  background: #fff; margin-bottom: 32px; overflow: hidden; scroll-margin-top: 120px;
}
.res-side {
  background: var(--ink); color: #fff; padding: 38px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.res-side .kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.res-side h3 { color: #fff; font-size: 28px; line-height: 1.15; }
.res-body { padding: 38px 38px 34px; }
.res-body > p { font-size: 17.5px; color: var(--body); margin-bottom: 22px; }
.res-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.res-note { font-size: 13.5px; color: var(--muted); margin-top: 18px; }
.notice a { font-weight: 600; }

/* homepage resources band */
.hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hub-card {
  border: 1px solid var(--line); background: #fff; padding: 30px 28px;
  display: flex; flex-direction: column;
}
.hub-card h3 { font-size: 21px; margin-bottom: 10px; }
.hub-card p { font-size: 16px; color: var(--muted); margin-bottom: 22px; flex: 1; }
.hub-card .btn { align-self: flex-start; }
.hub-kicker {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-ink); margin-bottom: 12px;
}

@media (max-width: 900px) {
  .res-card { grid-template-columns: 1fr; }
  .res-body { padding: 30px 26px; }
  .hub { grid-template-columns: 1fr; }
}
