/* =========================================================
   Cove ABA — site stylesheet
   Tokens sampled 1:1 from coveaba.com (see design system colors_and_type.css)
   Caudex (headings) · Nunito (body, Avenir fallback) · Barlow (labels, DIN fallback)
   No gradients. Signature CTA: lime fill / teal label -> forest fill / white label.
   ========================================================= */

:root {
  /* neutrals */
  --cream: #F6F9F5;
  --paper: #FFFFFF;
  --ink: #091405;
  --olive: #444D41;
  --grey-600: #727272;
  --grey-400: #B0B0B0;
  --grey-300: #BBC0B9;
  --grey-200: #D9D9D9;
  /* brand */
  --lime: #E0FD2C;
  --teal: #035772;
  --teal-dark: #023f53;
  --forest: #407C51;
  --forest-deep: #2B5336;
  --moss: #152B1B;
  --sage: #7FA88B;
  --sage-soft: #B1D3BB;
  /* steel blue — sampled 1:1 from Mike's Wix draft (services / different / enroll bands) */
  --steel: #A5C8D4;
  --steel-soft: #C3DDE6;
  --steel-ink: #14323C;

  --font-serif: "Caudex", "Iowan Old Style", Garamond, "Times New Roman", serif;
  --font-sans: "Nunito", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-label: "Barlow", "DIN Next", "Public Sans", "Helvetica Neue", Arial, sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 50px;

  --shadow-sm: 0 2px 6px rgba(9,20,5,.06), 0 1px 2px rgba(9,20,5,.04);
  --shadow-md: 0 8px 22px rgba(9,20,5,.08), 0 2px 6px rgba(9,20,5,.05);
  --shadow-lg: 0 20px 48px rgba(9,20,5,.10), 0 6px 14px rgba(9,20,5,.05);

  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1120px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--olive);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 3px; }

/* ---------- typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1; }
h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(23px, 2.6vw, 30px); }
h4 { font-size: clamp(20px, 2vw, 24px); }
h5 { font-size: 20px; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
strong { color: var(--ink); font-weight: 700; }
blockquote {
  margin: 1.4em 0; padding: .2em 0 .2em 1.25em;
  border-left: 3px solid var(--sage);
  font-family: var(--font-serif); font-style: italic;
  color: var(--ink); font-size: 1.15em; line-height: 1.5;
}
blockquote p { margin: 0 0 .4em; }
hr { border: none; border-top: 1px solid var(--grey-300); margin: 2.5rem 0; }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  margin: 0 0 1rem;
  display: block;
}
.eyebrow.on-dark { color: var(--lime); }
.lede { font-size: clamp(18px, 2.2vw, 21px); line-height: 1.7; color: var(--olive); max-width: 60ch; }
.center { text-align: center; }
.measure { max-width: 62ch; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: 760px; }
section { padding-block: clamp(56px, 9vw, 104px); }
.band-cream  { background: var(--cream); }
.band-paper  { background: var(--paper); }
.band-sage   { background: var(--sage-soft); }
.band-forest { background: var(--forest); color: rgba(255,255,255,.92); }
.band-forest h1, .band-forest h2, .band-forest h3, .band-forest h4 { color: #fff; }
.band-teal   { background: var(--teal); color: rgba(255,255,255,.92); }
.band-teal h1, .band-teal h2, .band-teal h3 { color: #fff; }
.band-steel  { background: var(--steel); color: var(--steel-ink); }
.band-steel h1, .band-steel h2, .band-steel h3, .band-steel h4 { color: var(--ink); }
.band-ink    { background: var(--ink); color: rgba(255,255,255,.9); }
.band-ink h1, .band-ink h2, .band-ink h3 { color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-label); font-weight: 500;
  font-size: 17px; letter-spacing: .02em;
  padding: 15px 32px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background var(--ease) .2s, color var(--ease) .2s, transform var(--ease) .2s;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--lime); color: var(--teal); }
.btn-primary:hover { background: var(--forest); color: #fff; }
.btn-primary .arrow { transition: transform var(--ease) .2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-secondary { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-secondary:hover { background: var(--teal); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: #fff; color: var(--forest-deep); }
.btn.on-dark.btn-primary { background: var(--lime); color: var(--teal); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,249,245,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-top: 6px solid var(--teal);
  border-bottom: 1px solid var(--grey-300);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 78px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; flex: none; }
.brand img { width: 52px; height: 52px; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.15; }
.brand .brand-name {
  font-family: var(--font-serif); font-size: 23px; color: var(--ink);
  letter-spacing: .01em;
}
.brand .brand-sub {
  font-family: var(--font-label); font-weight: 500; font-size: 12.5px;
  color: var(--grey-600, #55605a);
}
.brand:hover { text-decoration: none; }
@media (max-width: 700px) { .brand .brand-sub { display: none; } .brand .brand-name { font-size: 19px; } }
.nav-links { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.nav-links a {
  font-family: var(--font-label); font-size: 16px; letter-spacing: .01em;
  color: var(--ink); padding: 6px 0; position: relative;
}
.nav-links a:hover { color: var(--teal); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--grey-300);
    padding: 8px 24px 24px; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform var(--ease) .28s;
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav[data-open="true"] .nav-links { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--grey-200); font-size: 18px; }
  .nav-desktop-cta { display: none; }
  .nav-links .mobile-cta { display: block; }
}
.nav-links .mobile-cta { display: none; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 88px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero-photo { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--lime); color: var(--teal);
  font-family: var(--font-label); font-weight: 500; font-size: 15px;
  padding: 9px 18px; border-radius: var(--r-pill); margin-bottom: 20px;
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 460px; margin-inline: auto; }
}

/* ---------- masthead (compact horizontal lockup: teal badge left, taglines right) ---------- */
.masthead { padding-block: 28px 18px; }
.masthead .wrap { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 22px; }
.masthead-badge { width: 96px; height: 96px; flex-shrink: 0; }
.masthead-text { display: flex; flex-direction: column; gap: 2px; }
.masthead-tagline {
  font-family: var(--font-serif); font-size: clamp(28px, 4vw, 40px);
  color: var(--ink); margin: 0; line-height: 1.1;
}
.masthead-subtitle {
  font-family: var(--font-label); font-weight: 500; font-size: clamp(15px, 1.8vw, 19px);
  color: var(--grey-600, #55605a); margin: 0;
}
@media (max-width: 600px) { .masthead-badge { width: 72px; height: 72px; } .masthead .wrap { gap: 14px; } }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--grey-300);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--ease) .2s, transform var(--ease) .2s;
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-media { aspect-ratio: 4 / 3; background: var(--sage-soft); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card h3, .card h4 { margin-bottom: .35em; }
.card p { margin-bottom: 0; font-size: 16px; }

/* value pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--grey-300); border: 1px solid var(--grey-300); border-radius: var(--r-md); overflow: hidden; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--cream); padding: 32px 28px; }
.pillar .k { font-family: var(--font-serif); font-size: 26px; color: var(--forest-deep); line-height: 1.05; margin-bottom: .5em; }
.pillar p { margin: 0; font-size: 16px; }

/* feature list (support blocks) */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; gap: 32px; } }
.feature h4 { margin-bottom: .4em; }
.feature p { margin: 0; }

/* icon marks */
.icon-mark {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sage-soft); color: var(--forest-deep); margin-bottom: 16px;
}
.icon-mark svg { width: 26px; height: 26px; }

/* resource steps (numbered) */
.step-num { font-family: var(--font-label); font-weight: 600; font-size: 14px; letter-spacing: .16em; color: var(--teal); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 8px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding-block: 64px 40px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--lime); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand span { font-family: var(--font-serif); font-size: 22px; color: #fff; }
.footer h5 { color: #fff; font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; font-size: 15px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.55); }

/* ---------- forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--grey-300); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.field label { font-family: var(--font-label); font-weight: 500; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal); }
.field .req { color: var(--forest); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--grey-300); border-radius: var(--r-sm);
  background: #fff; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(3,87,114,.15); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 14px; color: var(--grey-600); }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--r-sm); font-size: 16px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--sage-soft); color: var(--forest-deep); border: 1px solid var(--forest); }
.form-status.err { background: #fdece7; color: #9E3B1B; border: 1px solid #9E3B1B; }

/* ---------- blog ---------- */
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-list { grid-template-columns: 1fr; } }
.post-card .card-media { aspect-ratio: 3 / 2; }
.post-meta { font-family: var(--font-label); font-size: 13px; letter-spacing: .04em; color: var(--grey-600); text-transform: uppercase; margin-bottom: 8px; }
.post-card h3 { font-size: 22px; line-height: 1.2; }
.post-card a.stretch { color: var(--ink); }
.post-card a.stretch:hover { color: var(--teal); text-decoration: none; }

/* article */
.article { max-width: 760px; margin-inline: auto; }
.article-hero { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 32px; aspect-ratio: 16 / 9; background: var(--sage-soft); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { font-family: var(--font-label); font-size: 14px; letter-spacing: .04em; color: var(--grey-600); margin-bottom: 28px; }
.article h1 { margin-bottom: .3em; }
.article-body h2 { margin-top: 1.6em; font-size: clamp(26px, 3vw, 34px); }
.article-body h3 { margin-top: 1.4em; }
.article-body ul, .article-body ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.article-body li { margin-bottom: .5em; }
.article-body figcaption { font-size: 14px; color: var(--grey-600); font-style: italic; margin: -.4em 0 1.4em; }
.article-body img { border-radius: var(--r-md); margin: 1.4em 0; }
.byline { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-top: 1px solid var(--grey-300); border-bottom: 1px solid var(--grey-300); margin: 8px 0 32px; }
.byline .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 20px; flex: none; }
.byline .who { font-family: var(--font-label); font-weight: 600; color: var(--ink); font-size: 15px; }
.byline .when { font-size: 13px; color: var(--grey-600); }

/* faq */
.faq { border-top: 1px solid var(--grey-300); }
.faq details { border-bottom: 1px solid var(--grey-300); padding: 8px 0; }
.faq summary { font-family: var(--font-serif); font-size: 20px; color: var(--ink); cursor: pointer; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-label); font-size: 26px; color: var(--teal); flex: none; transition: transform var(--ease) .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 16px; }

/* misc */
.stack-sm > * + * { margin-top: 12px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag { display: inline-block; font-family: var(--font-label); font-size: 13px; letter-spacing: .04em; padding: 6px 14px; border-radius: var(--r-pill); background: var(--sage-soft); color: var(--forest-deep); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--teal); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 8px; top: 8px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.jobs-list { display: grid; gap: 20px; }
.job {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--paper); border: 1px solid var(--grey-300); border-radius: var(--r-md);
  padding: 24px 28px; box-shadow: var(--shadow-sm);
}
.job h3 { margin: 0 0 4px; font-size: 24px; }
.job .loc { font-family: var(--font-label); color: var(--grey-600); font-size: 15px; }

/* ── Plans We Work With (home #plans) ── */
.plans-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.plan-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 110px; padding: 20px 16px; text-align: center;
}
.plan-card > span { font-family: var(--font-label); font-weight: 600; font-size: 17px; color: var(--ink); }
.plan-logo { max-height: 44px; max-width: 80%; width: auto; object-fit: contain; }
.plan-card-stack { gap: 10px; }
.plan-logo-stack { max-height: 28px; }
.plan-card-medicaid .plan-medicaid-mark { display: flex; align-items: center; gap: 10px; }
.plan-medicaid-map { max-height: 34px; width: auto; }
.plan-medicaid-divider { width: 1px; align-self: stretch; background: var(--grey-300); }
.plan-medicaid-text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.plan-medicaid-state { font-family: var(--font-label); font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-600); }
.plan-medicaid-word { font-family: var(--font-serif); font-size: 22px; color: var(--ink); line-height: 1.1; }
.plan-card-more { background: #DCE7EA; text-decoration: none; }
.plan-card-more .plan-more-title { font-family: var(--font-serif); font-size: 20px; font-weight: 400; }
.plan-card-more .plan-more-cta { font-family: var(--font-label); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-top: 6px; }
@media (max-width: 900px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Wix-draft restyle (2026-07-06): hero caption, steel services,
   different columns, support cards, about band, learn/take-home,
   questions panel, enroll lime form.
   ========================================================= */

/* ---- hero: eyebrow + photo caption pill ---- */
.hero-eyebrow {
  display: block; font-family: var(--font-label); font-weight: 500;
  font-size: 15px; letter-spacing: .02em; color: var(--olive);
  margin-bottom: 16px;
}
.hero-photo { position: relative; }
.hero-caption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.94); color: var(--ink);
  border-radius: var(--r-pill); padding: 9px 18px;
  font-family: var(--font-label); font-weight: 600; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* ---- services: steel band, circular photos ---- */
.services-band h2 { margin-bottom: 8px; }
.services-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 40px 28px; margin-top: 44px;
}
.service-item { flex: 1 1 160px; max-width: 200px; text-align: center; }
.service-circle {
  width: 148px; height: 148px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 18px; background: var(--paper); box-shadow: var(--shadow-sm);
}
.service-circle img { width: 100%; height: 100%; object-fit: cover; }
.service-item h3 { font-size: 21px; line-height: 1.15; margin-bottom: .4em; }
.service-item p { font-size: 14px; line-height: 1.55; margin: 0; text-align: justify; color: var(--steel-ink); }
@media (max-width: 760px) { .service-item { flex-basis: 140px; } }

/* ---- what makes cove different ---- */
.different-head { padding-block: clamp(40px, 6vw, 64px); text-align: center; }
.different-head h2 { margin: 0; }
.different-cols { padding-block: clamp(44px, 7vw, 76px); }
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 32px; }
@media (max-width: 860px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-col { text-align: center; }
.diff-diamond {
  display: inline-block; width: 16px; height: 16px; margin-bottom: 20px;
  background: var(--teal-dark); transform: rotate(45deg); border-radius: 2px;
}
.diff-label {
  font-family: var(--font-label); font-weight: 600; font-size: 14px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 12px; line-height: 1.3;
}
.diff-col p { font-size: 15px; line-height: 1.6; margin: 0; color: var(--steel-ink); }

/* ---- support that extends beyond the session ---- */
.support-band h2 { text-align: center; margin-bottom: 8px; }
.support-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px;
}
@media (max-width: 900px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .support-grid { grid-template-columns: 1fr; } }
.support-card { border-radius: var(--r-lg); padding: 28px 26px; }
.support-card h4 { margin-bottom: .5em; font-size: 21px; }
.support-card p { margin: 0; font-size: 15px; line-height: 1.6; }
.support-card-lime { background: var(--lime); }
.support-card-lime h4, .support-card-lime p { color: var(--ink); }
.support-card-outline { background: var(--paper); border: 1.5px solid var(--grey-300); }

/* ---- about cove aba (dark teal split) ---- */
.about-band { color: rgba(255,255,255,.92); }
.about-band .about-copy h2 { color: #fff; margin-bottom: .4em; }
.about-band .about-copy p { color: rgba(255,255,255,.9); }
.about-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---- learn at your own pace + take home ---- */
.learn-band h2 { margin-bottom: 8px; }
.learn-band .lede { margin-inline: auto; }
.learn-label {
  font-family: var(--font-label); font-weight: 600; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal);
  margin: 44px 0 18px;
}
.learn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .learn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .learn-grid { grid-template-columns: 1fr; } }
.learn-card {
  display: block; background: var(--steel); border-radius: var(--r-md);
  padding: 22px 20px; text-align: center; color: var(--ink);
  transition: transform var(--ease) .2s, box-shadow var(--ease) .2s;
}
.learn-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.learn-card h4 { font-size: 18px; line-height: 1.2; margin-bottom: .4em; color: var(--ink); }
.learn-card p { font-size: 13px; line-height: 1.5; margin: 0; color: var(--steel-ink); }
.take-home-list { display: grid; gap: 14px; }
.download-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--sage); border-radius: var(--r-md); padding: 18px 26px;
  color: #fff; transition: filter var(--ease) .2s;
}
.download-bar:hover { text-decoration: none; filter: brightness(1.05); }
.download-bar .dl-title { font-family: var(--font-serif); font-size: 19px; color: #fff; }
.download-bar .dl-btn {
  font-family: var(--font-label); font-weight: 600; font-size: 14px;
  letter-spacing: .08em; color: #fff; white-space: nowrap; flex: none;
  display: inline-flex; align-items: center; gap: .4em;
}

/* ---- still have questions panel ---- */
.questions-panel {
  background: var(--steel-soft); border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
}
.questions-panel h2 { margin-bottom: .35em; }
.questions-panel p { font-size: 18px; max-width: 60ch; margin-bottom: 24px; color: var(--steel-ink); }

/* ---- enroll: lime pill form on sage card ---- */
.enroll-head { text-align: center; }
.enroll-head h1 { margin: 0; }
.form-card-enroll {
  background: var(--sage); border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md);
}
.form-card-enroll h2 { color: var(--forest-deep); font-size: clamp(30px, 4vw, 42px); margin-bottom: 28px; }
.form-card-enroll .field label { color: var(--teal-dark); }
.form-card-enroll .field .req { color: var(--teal-dark); }
.form-card-enroll .field input,
.form-card-enroll .field select {
  background: var(--lime); border: none; border-radius: var(--r-pill);
  padding: 15px 22px; color: var(--ink);
}
.form-card-enroll .field textarea {
  background: var(--lime); border: none; border-radius: var(--r-md);
  padding: 15px 22px; color: var(--ink);
}
.form-card-enroll .field input::placeholder,
.form-card-enroll .field textarea::placeholder { color: rgba(9,20,5,.45); }
.form-card-enroll .field input:focus,
.form-card-enroll .field select:focus,
.form-card-enroll .field textarea:focus {
  outline: none; box-shadow: 0 0 0 3px var(--teal);
}
.btn-submit-bar {
  display: block; width: 100%; text-align: center;
  background: var(--teal); color: #fff; border: none;
  font-family: var(--font-label); font-weight: 500; font-size: 18px;
  padding: 17px 24px; border-radius: var(--r-sm); cursor: pointer;
  transition: background var(--ease) .2s;
}
.btn-submit-bar:hover { background: var(--teal-dark); }
.form-card-enroll .form-status { color: var(--ink); }
.enroll-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 56px; }
@media (max-width: 820px) { .enroll-cols { grid-template-columns: 1fr; gap: 32px; } }
.enroll-col h3 { text-align: center; margin-bottom: .6em; }
.enroll-col .enroll-diamond {
  display: block; width: 18px; height: 18px; margin: 0 auto 16px;
  background: var(--sage); transform: rotate(45deg); border-radius: 3px;
}
