:root {
  --color-ink: #edf4f9;
  --color-ink-deep: #ffffff;
  --color-panel: #223b4d;
  --color-panel-soft: #43657e;
  --color-accent: #f26b21;
  --color-accent-deep: #cc5115;
  --color-sand: #b8d0e0;
  --color-sand-soft: #57758f;
  --color-kicker: #f26b21;
  --color-cream: #20394b;
  --color-paper: #29465a;
  --color-surface: #35566e;
  --color-surface-soft: #456985;
  --color-mist: #64849d;
  --color-mist-deep: #7d9eb7;
  --color-white: #ffffff;
  --color-line: rgba(255, 255, 255, 0.1);
  --color-line-strong: rgba(255, 255, 255, 0.16);
  --color-muted: rgba(237, 244, 249, 0.78);
  --color-muted-soft: rgba(237, 244, 249, 0.62);
  --color-panel-line: rgba(255, 255, 255, 0.12);
  --color-panel-muted: rgba(255, 255, 255, 0.8);
  --gradient-surface: rgba(53, 86, 110, 0.985);
  --gradient-surface-soft: rgba(69, 105, 133, 0.98);
  --gradient-surface-tint: rgba(91, 130, 159, 0.98);
  --gradient-panel: #294456;
  --gradient-panel-soft: rgba(93, 132, 161, 0.96);
  --accent-wash: rgba(242, 107, 33, 0.12);
  --shadow-lg: 0 36px 92px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 22px 58px rgba(0, 0, 0, 0.34);
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.24);
  --radius-2xl: 28px;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-swift: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 180ms;
  --duration-medium: 320ms;
  --duration-slow: 780ms;
  --container: min(calc(100vw - 2rem), 1380px);
  --texture-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.06' stroke-width='1.1'%3E%3Cpath d='M0 66c30-22 74-22 104 0s73 22 103 0 74-22 104 0'/%3E%3Cpath d='M0 104c34-25 84-25 118 0s84 25 118 0 84-25 118 0'/%3E%3Cpath d='M0 146c26-18 63-18 89 0s63 18 89 0 63-18 89 0 63 18 89 0'/%3E%3Cpath d='M0 192c42-26 98-26 140 0s98 26 140 0'/%3E%3Cpath d='M0 236c29-19 69-19 98 0s69 19 98 0 69-19 98 0'/%3E%3C/g%3E%3C/svg%3E");
  --texture-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.08' stroke-width='1.1'%3E%3Cpath d='M0 66c30-22 74-22 104 0s73 22 103 0 74-22 104 0'/%3E%3Cpath d='M0 104c34-25 84-25 118 0s84 25 118 0 84-25 118 0'/%3E%3Cpath d='M0 146c26-18 63-18 89 0s63 18 89 0 63-18 89 0 63 18 89 0'/%3E%3Cpath d='M0 192c42-26 98-26 140 0s98 26 140 0'/%3E%3Cpath d='M0 236c29-19 69-19 98 0s69 19 98 0 69-19 98 0'/%3E%3C/g%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
}

body.js-motion {
  --reveal-distance: 2rem;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 0.96;
}

.container {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  background: rgba(32, 57, 75, 0.4);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--duration-fast) var(--ease-swift), border-color var(--duration-fast) var(--ease-swift), box-shadow var(--duration-fast) var(--ease-swift);
}

.site-header--scrolled {
  box-shadow: 0 14px 30px rgba(10, 22, 31, 0.16);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 5.95rem;
  padding: 0.56rem 0;
}

.site-header__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: clamp(13.8rem, 18vw, 17rem);
  padding-right: clamp(1rem, 1.8vw, 1.8rem);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  min-width: 0;
}

.site-logo__image-wrap {
  display: block;
  width: 8.8rem;
  flex: none;
}

.site-logo__image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform var(--duration-medium) var(--ease-standard), opacity var(--duration-fast) var(--ease-swift);
}

.site-logo--light .site-logo__image-wrap {
  width: 10rem;
}

.site-logo:hover .site-logo__image {
  transform: translateY(-2px) scale(1.02);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  margin-left: auto;
}

.site-header .site-logo {
  display: flex;
  align-items: center;
  padding: 0;
}

.site-header .site-logo__image-wrap {
  width: auto;
  height: clamp(4.6rem, 5.15vw, 5.85rem);
}

.site-header .site-logo__image {
  width: auto;
  height: 100%;
  max-width: none;
  transform-origin: left center;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.site-nav__list li {
  position: relative;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: rgba(237, 244, 249, 0.9);
  transition: color var(--duration-fast) var(--ease-swift), transform var(--duration-fast) var(--ease-swift), opacity var(--duration-fast) var(--ease-swift);
}

.site-header .site-nav__cta .button {
  padding: 0.8rem 1.22rem;
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(242, 101, 34, 0.22);
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav__list li:hover a::after,
.site-nav__list .current-menu-item a::after {
  transform: scaleX(1);
}

.site-nav__list li:hover a {
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 1);
}

.site-header__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-panel);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  transition: transform var(--duration-fast) var(--ease-swift), background var(--duration-fast) var(--ease-swift), box-shadow var(--duration-fast) var(--ease-swift);
}

.site-header__toggle span:not(.screen-reader-text) {
  width: 1.15rem;
  height: 2px;
  background: var(--color-white);
  transition: transform 260ms var(--ease-standard), opacity 220ms var(--ease-swift), background var(--duration-fast) var(--ease-swift);
}

.site-header__toggle:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.18);
}

.site-header__toggle.is-active span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.site-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.site-header__toggle.is-active span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  border-radius: 16px;
  padding: 0.88rem 1.4rem;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.015em;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--duration-fast) var(--ease-swift), box-shadow var(--duration-fast) var(--ease-swift), background var(--duration-fast) var(--ease-swift), border-color var(--duration-fast) var(--ease-swift), color var(--duration-fast) var(--ease-swift);
}

.button::before {
  content: none;
}

.button > span,
.button > small {
  position: relative;
  z-index: 1;
}

.button:hover {
  transform: translateY(-1px);
}

.button:hover::before {
  opacity: 0;
  transform: none;
}

.button small {
  font-size: 1rem;
  transition: transform var(--duration-fast) var(--ease-swift);
}

.button:hover small {
  transform: translateX(0.18rem);
}

.button--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 14px 32px rgba(242, 107, 33, 0.28);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--color-white);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
}

.button--full {
  width: 100%;
}

.section {
  padding: clamp(4.2rem, 7vw, 6.4rem) 0;
  position: relative;
  overflow: hidden;
}

.section:not(.section--pattern):not(.section--soft):not(.section--dark) {
  background: transparent;
}

.section--tight {
  padding-top: 2rem;
}

.section--pattern {
  background: var(--gradient-surface-soft), var(--texture-light);
}

.section--dark {
  background: var(--gradient-panel), var(--texture-dark);
}

.section--soft {
  background: var(--gradient-surface), var(--texture-light);
}

.section-heading__eyebrow {
  margin-bottom: 0.85rem;
  color: var(--color-kicker);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
}

.home-hero__eyebrow,
.page-hero__eyebrow {
  margin-bottom: 0.85rem;
  color: rgba(242, 101, 34, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-heading__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 3.8vw, 4.35rem);
  line-height: 1.02;
}

.section-heading__copy {
  max-width: 44rem;
  font-size: 1rem;
  color: var(--color-muted);
}

.section-heading__actions {
  margin-top: 1.2rem;
}

.hero__actions,
.page-hero__actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.home-hero {
  padding: 1.5rem 0 0;
  background: transparent;
}

.home-hero__shell,
.page-hero__shell,
.about-panel,
.calendar-showcase,
.training-panel,
.enrollment-panel,
.split-card,
.feature-band,
.form-shell,
.schedule-table-wrap,
.info-card,
.quote-card,
.course-highlights__card,
.cta-panel,
.process-grid article {
  background: var(--gradient-surface), var(--texture-light);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

:where(
  .proof-card,
  .academy-showcase__grid article,
  .icon-grid article,
  .pillar-grid article,
  .mission-grid article,
  .path-grid article,
  .module-grid article,
  .employer-grid article,
  .stats-row article,
  .course-card,
  .faq-card
) {
  transition: transform var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard), border-color var(--duration-medium) var(--ease-standard), background-color var(--duration-medium) var(--ease-standard);
}

:where(
  .info-card,
  .quote-card,
  .course-highlights__card,
  .process-grid article,
  .proof-card,
  .academy-showcase__grid article,
  .icon-grid article,
  .pillar-grid article,
  .mission-grid article,
  .path-grid article,
  .module-grid article,
  .employer-grid article,
  .stats-row article,
  .course-card,
  .faq-card
):hover {
  transform: translateY(-0.22rem);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 255, 255, 0.2);
}

.home-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.home-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.45rem, 4vw, 3.8rem);
  background: var(--gradient-surface), var(--texture-light);
  border-right: 1px solid var(--color-line);
  position: relative;
}

.home-hero__panel::after {
  content: none;
}

.home-hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.45rem, 3.35vw, 3.95rem);
  color: var(--color-ink-deep);
  line-height: 1;
  max-width: 15.25ch;
  text-wrap: balance;
}

.home-hero__lede {
  max-width: 30rem;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.home-hero__signals {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.35rem 0 1.15rem;
  max-width: 30rem;
}

.home-hero__signals li {
  position: relative;
  padding: 0 0 0 1.55rem;
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  line-height: 1.16;
  font-weight: 700;
  border: 0;
  background: none;
  box-shadow: none;
}

.home-hero__signals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--color-accent);
  transform: none;
}

.home-hero__body {
  max-width: 30rem;
  font-size: 0.97rem;
  line-height: 1.68;
  color: var(--color-muted-soft);
}

.home-hero__outcomes {
  max-width: 30rem;
  margin: 0.9rem 0 1rem;
  padding-left: 1.45rem;
  color: var(--color-muted-soft);
  font-size: 0.97rem;
  line-height: 1.68;
  list-style: lower-alpha;
}

.home-hero__outcomes li + li {
  margin-top: 0.22rem;
}

.home-hero__outcomes li::marker {
  color: var(--color-accent);
  font-weight: 700;
}

.home-hero__media,
.page-hero__media,
.about-panel__portrait,
.academy-showcase__image,
.outreach-band__media,
.training-panel__media,
.split-card__media,
.feature-band__media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-hero__media img {
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
}

.home-hero .hero__actions {
  margin-top: 1.55rem;
}

:where(
  .home-hero__media img,
  .academy-showcase__image img,
  .outreach-band__media img,
  .training-panel__media img,
  .split-card__media img,
  .feature-band__media img,
  .page-hero__media img,
  .about-panel__portrait img
) {
  transition: transform 1s var(--ease-standard), filter var(--duration-medium) var(--ease-standard);
  will-change: transform;
  backface-visibility: hidden;
}

.home-hero__shell:hover .home-hero__media img,
.about-panel:hover .about-panel__portrait img,
.academy-showcase__header:hover .academy-showcase__image img,
.outreach-band:hover .outreach-band__media img,
.training-panel:hover .training-panel__media img,
.split-card:hover .split-card__media img,
.feature-band:hover .feature-band__media img,
.page-hero__shell:hover .page-hero__media img {
  transform: scale(1.035);
}

.home-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 28, 0.2);
  pointer-events: none;
  transition: transform 1s var(--ease-standard);
  transform-origin: center center;
  will-change: transform;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-trust__item {
  padding: 0.95rem 0.95rem 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-line);
}

.hero-trust__item strong,
.inline-facts strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-trust__item span,
.inline-facts span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-muted-soft);
}

.media-badge {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  max-width: 18.5rem;
  padding: 1.05rem 1.15rem;
  border-radius: 22px;
  background: rgba(10, 20, 30, 0.9);
  border: 1px solid rgba(242, 107, 33, 0.16);
  box-shadow: 0 18px 44px rgba(7, 12, 18, 0.32);
  color: var(--color-white);
  backdrop-filter: blur(12px);
}

.media-badge--hero {
  right: 1.6rem;
  bottom: 1.7rem;
}

.media-badge__label,
.card-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: rgba(242, 101, 34, 0.94);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-badge strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-badge p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.proof-band {
  position: relative;
  z-index: 2;
  margin-top: -1.25rem;
}

.proof-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--gradient-panel), var(--texture-dark);
  border-radius: var(--radius-2xl);
  color: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.proof-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.85rem 1.55rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  align-content: start;
}

.proof-card:last-child {
  border-right: 0;
}

.proof-card__index {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: rgba(242, 101, 34, 0.88);
}

.proof-card h2 {
  margin-bottom: 0.25rem;
  font-size: 1.24rem;
  line-height: 1.08;
}

.proof-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.72);
}

.proof-card h2,
.calendar-showcase__intro h2,
.training-panel__content h2,
.enrollment-panel h2,
.about-panel__content h2,
.outreach-band__content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) minmax(0, 0.7fr);
  gap: 1.5rem;
  padding: 1.35rem;
}

.about-panel__portrait img,
.academy-showcase__image img,
.outreach-band__media img,
.training-panel__media img,
.split-card__media img,
.feature-band__media img {
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-2xl) - 0.55rem);
}

.about-panel__content {
  padding: 0.7rem 0.55rem;
}

.about-panel__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3vw, 3.05rem);
  line-height: 1.04;
}

.about-panel__signature {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.4rem;
}

.detail-list,
.quote-pillars,
.outreach-band__list,
.calendar-showcase__pills,
.hero-chip-list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
}

.detail-list {
  display: grid;
  gap: 0.75rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.45rem;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.about-panel__signature span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted-soft);
}

.about-panel__signature strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.about-panel__signature small {
  display: block;
  max-width: 28rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--color-muted-soft);
}

.about-panel__quote {
  padding: 1.9rem;
  background: var(--gradient-surface-tint), var(--texture-light);
  align-self: center;
  position: relative;
  overflow: hidden;
}

.about-panel__quote-mark {
  display: grid;
  place-items: center;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.about-panel__quote p {
  font-weight: 600;
  font-size: 1.12rem;
}

.quote-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quote-pillars li,
.calendar-showcase__pills li,
.hero-chip-list li {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.academy-showcase {
  display: grid;
  gap: 1.65rem;
}

.academy-showcase__header {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.7rem;
  align-items: center;
}

.academy-showcase__grid,
.icon-grid,
.pillar-grid,
.mission-grid,
.path-grid,
.module-grid,
.employer-grid {
  display: grid;
  gap: 1rem;
}

.academy-showcase__grid,
.path-grid,
.module-grid,
.icon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-grid,
.mission-grid,
.employer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-ledger {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.project-ledger article {
  padding: 1.45rem 1.35rem;
  background: var(--gradient-surface), var(--texture-light);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard), border-color var(--duration-medium) var(--ease-standard);
}

.project-ledger article:hover {
  transform: translateY(-0.22rem);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.project-ledger__meta {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--color-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-ledger h3 {
  margin-bottom: 0.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.45rem, 1.85vw, 1.9rem);
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-transform: uppercase;
}

.project-ledger__client {
  margin-bottom: 0.5rem;
  color: var(--color-panel-muted);
}

.project-ledger p:last-child {
  margin-bottom: 0;
}

.academy-showcase__grid article,
.icon-grid article,
.pillar-grid article,
.mission-grid article,
.path-grid article,
.module-grid article,
.employer-grid article,
.stats-row article {
  padding: 1.45rem 1.35rem;
  background: var(--gradient-surface), var(--texture-light);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.academy-showcase__grid article {
  position: relative;
  padding-top: 1.95rem;
  min-height: 100%;
}

.academy-showcase__grid article::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1.45rem;
  width: 2.35rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent);
}

.academy-showcase__grid h3,
.icon-grid h3,
.pillar-grid h2,
.mission-grid h2,
.path-grid h3,
.module-grid h3,
.employer-grid h2,
.stats-row strong,
.info-card h2,
.course-highlights__card h2,
.quote-card span,
.page-hero__title,
.course-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.academy-showcase__grid h3,
.icon-grid h3,
.pillar-grid h2,
.mission-grid h2,
.path-grid h3,
.module-grid h3,
.employer-grid h2,
.info-card h2,
.course-highlights__card h2,
.course-card h3 {
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
}

.outreach-band {
  display: grid;
  grid-template-columns: 0.28fr 1fr 0.9fr;
  gap: 1.65rem;
  padding: 1.7rem;
  background: var(--gradient-panel), var(--texture-dark);
  border: 1px solid var(--color-panel-line);
  border-radius: var(--radius-2xl);
  color: var(--color-white);
}

.outreach-band__seal {
  display: grid;
  place-items: center;
}

.outreach-band__seal span {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 2px solid rgba(242, 101, 34, 0.62);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.02);
}

.outreach-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 34rem;
}

.outreach-band__list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.3rem;
}

.outreach-band__list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.8);
}

.outreach-band__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.outreach-band__partner {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.outreach-band__partner a {
  color: var(--color-accent);
  font-weight: 700;
}

.outreach-band__partner a:hover {
  opacity: 0.88;
}

.street-angels-page {
  padding: clamp(2rem, 4vw, 3.4rem) 0 clamp(4.5rem, 7vw, 6rem);
}

.street-angels-page .container {
  width: var(--container);
}

.street-angels-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.92fr);
  gap: clamp(2rem, 2.8vw, 3.2rem);
  padding: clamp(1.4rem, 2vw, 1.75rem);
  border-radius: 32px;
  border: 1px solid rgba(111, 171, 231, 0.22);
  background: var(--gradient-panel), var(--texture-dark);
  box-shadow: 0 32px 80px rgba(2, 11, 22, 0.36);
  overflow: hidden;
}

.street-angels-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(111, 171, 231, 0.08), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(111, 171, 231, 0.05), transparent 30%);
  pointer-events: none;
}

.street-angels-showcase__content,
.street-angels-showcase__media {
  position: relative;
  z-index: 1;
}

.street-angels-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
  padding: clamp(1.5rem, 2.4vw, 2.4rem);
}

.street-angels-showcase__top {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
  gap: clamp(1.4rem, 2vw, 2.15rem);
  align-items: start;
}

.street-angels-showcase__seal {
  padding-top: 0.45rem;
}

.street-angels-showcase__seal img {
  width: 100%;
  max-width: 15.8rem;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.24));
}

.street-angels-showcase__intro {
  align-self: start;
}

.street-angels-showcase__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 4.6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.94;
  color: #ffffff;
  text-transform: none;
}

.street-angels-showcase__subtitle {
  margin: 0.5rem 0 0;
  font-size: clamp(1.65rem, 2.2vw, 2.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #6fb5ff;
}

.street-angels-showcase__divider {
  display: block;
  width: clamp(8rem, 18vw, 15rem);
  height: 2px;
  margin: 1.15rem 0 1.3rem;
  background: rgba(111, 181, 255, 0.72);
  border-radius: 999px;
}

.street-angels-showcase__copy {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
}

.street-angels-showcase__copy p {
  margin: 0;
  font-size: clamp(1.08rem, 1.24vw, 1.28rem);
  line-height: 1.58;
  color: rgba(237, 244, 249, 0.94);
}

.street-angels-showcase__copy strong {
  color: #ffffff;
  font-weight: 700;
}

.street-angels-showcase__statement {
  font-size: clamp(1.3rem, 1.55vw, 1.72rem) !important;
  font-weight: 700;
  line-height: 1.32 !important;
  color: #72b7ff !important;
}

.street-angels-features {
  list-style: none;
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
}

.street-angels-features li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(114, 183, 255, 0.18);
  color: rgba(237, 244, 249, 0.96);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.42;
}

.street-angels-features__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2.15rem 2.15rem;
}

.street-angels-features__icon--food {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2369b0ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14l-1.5 6.2a2 2 0 0 1-1.95 1.53H8.45A2 2 0 0 1 6.5 18.2z'/%3E%3Cpath d='M8 8c0-1.7.62-3 1.86-4M12 8c0-2.5.84-4.5 2.5-6M16 8c0-1.7.62-3 1.86-4'/%3E%3Cpath d='M4.2 10.8h15.6'/%3E%3C/svg%3E");
}

.street-angels-features__icon--aid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2369b0ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='6' width='16' height='14' rx='2'/%3E%3Cpath d='M9 6V4.7A2.7 2.7 0 0 1 11.7 2h.6A2.7 2.7 0 0 1 15 4.7V6'/%3E%3Cpath d='M12 9v8M8 13h8'/%3E%3C/svg%3E");
}

.street-angels-features__icon--support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2369b0ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5a8 8 0 0 1 8 8v1.3a4.3 4.3 0 0 1-2.6 4l-2.4 1v-3.1a4 4 0 0 0-2.8-3.8L9 10V8.7A4.7 4.7 0 0 1 13.7 4z'/%3E%3Cpath d='M8.7 6.2A8 8 0 0 0 4 13.5v1.1a4.7 4.7 0 0 0 2.7 4.2l4.6 2.2h1.8'/%3E%3Cpath d='M10.7 14.4c.6-.7 1.38-1.05 2.3-1.05 1.86 0 3.36 1.48 3.36 3.3S14.86 20 13 20s-3.36-1.48-3.36-3.3c0-.66.18-1.26.54-1.8'/%3E%3C/svg%3E");
}

.street-angels-features__icon--heart {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2369b0ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20s-6.7-4.2-8.5-8.1C1.9 8.6 3.9 5 7.8 5c1.8 0 3.34.82 4.2 2.12A5.05 5.05 0 0 1 16.2 5c3.9 0 5.9 3.6 4.3 6.9C18.7 15.8 12 20 12 20Z'/%3E%3Cpath d='M8.3 11.3 10.7 13.7 15.7 8.7'/%3E%3C/svg%3E");
}

.street-angels-features__icon--team {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2369b0ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='2.6'/%3E%3Ccircle cx='16' cy='8.8' r='2.2'/%3E%3Ccircle cx='12.5' cy='15.3' r='3'/%3E%3Cpath d='M3.8 18.8a4.8 4.8 0 0 1 4.8-4.8h.5M14.9 14.8h.6a4.7 4.7 0 0 1 4.7 4.7M7.6 20.5a5.7 5.7 0 0 1 5.7-5.7h.4a5.7 5.7 0 0 1 5.7 5.7'/%3E%3C/svg%3E");
}

.street-angels-showcase__closing {
  max-width: 44rem;
  margin: 0.15rem 0 0;
  font-size: clamp(1.15rem, 1.34vw, 1.42rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.street-angels-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: min(100%, 34rem);
  min-height: 4.9rem;
  margin-top: 0.2rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(133, 193, 255, 0.9);
  border-radius: 20px;
  background: #3b78b3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 18px 36px rgba(7, 23, 42, 0.28);
  color: #ffffff;
  font-size: clamp(1.1rem, 1.46vw, 1.58rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--duration-medium) var(--ease-standard),
    background var(--duration-fast) var(--ease-swift),
    box-shadow var(--duration-fast) var(--ease-swift),
    border-color var(--duration-fast) var(--ease-swift);
}

.street-angels-button small {
  font-size: 1.45em;
  line-height: 1;
}

.street-angels-button:hover {
  transform: translateY(-2px);
  background: #4a89c5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 22px 42px rgba(7, 23, 42, 0.34);
}

.street-angels-showcase__media {
  display: flex;
}

.street-angels-showcase__media img {
  width: 100%;
  height: 100%;
  min-height: 46rem;
  border-radius: 30px;
  object-fit: cover;
  object-position: 57% center;
  box-shadow: 0 26px 52px rgba(4, 17, 29, 0.3);
}

.street-angels-showcase--home,
.street-angels-showcase--page {
  grid-template-columns: minmax(0, 1.14fr) minmax(22rem, 0.86fr);
  gap: clamp(1.5rem, 2.4vw, 2.55rem);
}

.street-angels-showcase--home .street-angels-showcase__content,
.street-angels-showcase--page .street-angels-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: clamp(1.35rem, 2vw, 2rem);
}

.street-angels-showcase--home .street-angels-showcase__top,
.street-angels-showcase--page .street-angels-showcase__top {
  display: grid;
  grid-template-columns: minmax(12.75rem, 14rem) minmax(0, 1fr);
  grid-template-areas:
    "seal title"
    "seal subtitle"
    "copy copy";
  align-items: start;
  column-gap: clamp(1.35rem, 1.9vw, 1.9rem);
  row-gap: 0;
}

.street-angels-showcase--home .street-angels-showcase__seal,
.street-angels-showcase--page .street-angels-showcase__seal {
  grid-area: seal;
  align-self: start;
  justify-self: center;
  width: 100%;
  padding-top: 0.2rem;
}

.street-angels-showcase--home .street-angels-showcase__seal img,
.street-angels-showcase--page .street-angels-showcase__seal img {
  max-width: 13.25rem;
}

.street-angels-showcase--home .street-angels-showcase__intro,
.street-angels-showcase--page .street-angels-showcase__intro {
  display: contents;
}

.street-angels-showcase--home .street-angels-showcase__title {
  grid-area: title;
  font-size: clamp(2.2rem, 3vw, 3.55rem);
}

.street-angels-showcase--page .street-angels-showcase__title {
  grid-area: title;
  font-size: clamp(2.45rem, 3.2vw, 3.95rem);
}

.street-angels-showcase--home .street-angels-showcase__subtitle,
.street-angels-showcase--page .street-angels-showcase__subtitle {
  grid-area: subtitle;
  font-size: clamp(1.55rem, 2vw, 2.3rem);
  margin-top: 0.35rem;
}

.street-angels-showcase--home .street-angels-showcase__divider,
.street-angels-showcase--page .street-angels-showcase__divider {
  grid-column: 1 / -1;
  width: 100%;
  margin: 1rem 0 1.2rem;
}

.street-angels-showcase--home .street-angels-showcase__copy,
.street-angels-showcase--page .street-angels-showcase__copy {
  grid-column: 1 / -1;
  max-width: none;
}

.street-angels-showcase--home .street-angels-showcase__closing,
.street-angels-showcase--page .street-angels-showcase__closing {
  max-width: none;
  margin: 0;
  font-size: clamp(1.04rem, 1.08vw, 1.15rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.88);
}

.street-angels-showcase--home .street-angels-button,
.street-angels-showcase--page .street-angels-button {
  align-self: flex-start;
  width: min(100%, 34rem);
  max-width: 34rem;
  min-height: 4.15rem;
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.24;
}

.street-angels-showcase--home .street-angels-features,
.street-angels-showcase--page .street-angels-features {
  grid-area: features;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1rem, 1.6vw, 1.5rem);
}

.street-angels-showcase--home .street-angels-features li,
.street-angels-showcase--page .street-angels-features li {
  align-items: start;
  padding: 0.75rem 0;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.street-angels-showcase--home .street-angels-showcase__media img {
  min-height: 38.5rem;
  object-position: 54% center;
}

.street-angels-showcase--page .street-angels-showcase__media img {
  min-height: 42rem;
  object-position: 54% center;
}

.training-panel {
  display: grid;
  grid-template-columns: 0.22fr 0.96fr 0.82fr;
  gap: 1.55rem;
  padding: 1.5rem;
  align-items: center;
}

.training-panel__badge {
  display: grid;
  place-items: center;
}

.training-panel__badge-card {
  width: min(100%, 10.35rem);
  min-height: 9.65rem;
  padding: 1.08rem 1rem;
  border-radius: 26px;
  border: 1px solid rgba(133, 193, 255, 0.28);
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(91, 130, 159, 0.22) 0%, rgba(47, 76, 99, 0.18) 100%),
    var(--gradient-surface-soft),
    var(--texture-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.training-panel__badge-card img {
  width: 100%;
  max-width: 8.95rem;
  height: auto;
}

.training-panel__content h2 {
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.02;
  max-width: 16ch;
}

.training-panel__lede,
.training-panel__body,
.training-panel__subheading {
  max-width: 40rem;
}

.training-panel__lede {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--color-ink-deep);
}

.training-panel__body {
  margin: 0 0 1.05rem;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--color-muted);
}

.training-panel__subheading {
  margin: 0 0 0.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-deep);
}

.training-panel__media img {
  min-height: 22rem;
  object-position: 74% center;
}

.inline-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.35rem 0 1.55rem;
}

.inline-facts article {
  padding: 1rem 0.95rem;
  border-radius: 18px;
  background: var(--gradient-surface-soft), var(--texture-light);
  border: 1px solid var(--color-line);
}

.inline-facts--light article {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.inline-facts--light span {
  color: rgba(255, 255, 255, 0.74);
}

.calendar-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: 1.55rem;
  padding: 1.55rem;
}

.calendar-showcase__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 20rem;
}

.calendar-showcase__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.45rem;
}

.calendar-showcase__cards {
  display: block;
  min-width: 0;
}

.course-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.course-cards--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--gradient-surface), var(--texture-light);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.course-card__date {
  min-width: 4.4rem;
  align-self: start;
  border-radius: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: 0.8rem 0.55rem;
  transition: transform var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard);
}

.course-card:hover .course-card__date {
  transform: translateY(-0.18rem);
  box-shadow: 0 14px 28px rgba(242, 101, 34, 0.24);
}

.course-card__date span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.course-card__date strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.course-card__body h3 {
  font-size: 1.45rem;
  line-height: 0.94;
  margin-bottom: 0.55rem;
}

.course-card__body p {
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
}

.course-card__body small {
  display: block;
  font-size: 0.76rem;
  color: var(--color-muted-soft);
}

.course-card__meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--color-line);
  font-weight: 700;
  font-size: 0.8rem;
}

.course-card__meta a,
.table-link {
  color: var(--color-accent);
  transition: color var(--duration-fast) var(--ease-swift), transform var(--duration-fast) var(--ease-swift), opacity var(--duration-fast) var(--ease-swift);
}

.course-card__meta a:hover,
.table-link:hover,
.info-card a:not(.button):hover {
  transform: translateX(0.15rem);
  opacity: 0.88;
}

.enrollment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.55rem;
  padding: 1.55rem 1.7rem;
}

.enrollment-panel__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.5rem;
  border-right: 1px solid var(--color-line);
}

.enrollment-panel__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 20px;
  background: var(--gradient-surface-soft), var(--texture-light);
  color: var(--color-accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
}

.enrollment-panel__payment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.3rem;
}

.enrollment-panel__label {
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--color-muted-soft);
}

.enrollment-panel__payment h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
}

.enrollment-panel__contact {
  display: grid;
  gap: 0.18rem;
  margin-top: 0.8rem;
  font-weight: 600;
}

.enrollment-panel__trust-note {
  margin: 0.95rem 0 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.enrollment-panel__contact span:last-child {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-muted-soft);
}

.payment-brands {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
}

.payment-brands li {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform var(--duration-fast) var(--ease-swift), border-color var(--duration-fast) var(--ease-swift), background var(--duration-fast) var(--ease-swift);
}

.payment-brands li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
}

.payment-brands--dark li {
  background: rgba(255, 255, 255, 0.08);
}

.payment-brands--stack {
  margin-bottom: 1rem;
}

.page-hero {
  padding: 1.5rem 0 0;
  background: transparent;
}

.page-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background: var(--gradient-panel), var(--texture-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.page-hero__content {
  padding: clamp(2.45rem, 4.5vw, 3.7rem);
  align-self: center;
  display: flex;
  flex-direction: column;
}

.page-hero__title {
  font-size: clamp(3rem, 5vw, 4.85rem);
  line-height: 0.92;
}

.page-hero__copy {
  max-width: 30rem;
  font-size: 1rem;
  color: var(--color-panel-muted);
}

.page-hero__quote {
  max-width: 30rem;
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.18;
  color: var(--color-white);
}

.hero-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.page-hero .hero-chip-list li {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.page-hero__media img {
  min-height: 26rem;
  height: 100%;
  object-fit: cover;
}

.page-hero--compact .page-hero__content {
  padding: clamp(2.05rem, 4vw, 3rem);
}

.page-hero--compact .page-hero__copy {
  max-width: 34rem;
}

.page-hero--compact .page-hero__media img {
  min-height: 23rem;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 28, 0.16);
  pointer-events: none;
  transition: transform 1s var(--ease-standard);
  transform-origin: center center;
  will-change: transform;
}

.home-hero__shell:hover .home-hero__media::before,
.page-hero__shell:hover .page-hero__media::after {
  transform: scale(1.035);
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  padding: 1.35rem;
}

.split-card--course {
  grid-template-columns: 1fr 1fr;
}

.split-card__media--stack {
  display: grid;
  gap: 1rem;
}

.split-card__content {
  padding: 0.8rem 0.4rem;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr minmax(0, 0.88fr);
  gap: 1.5rem;
  padding: 1.35rem;
  background: var(--gradient-panel), var(--texture-dark);
  color: var(--color-white);
  border-color: var(--color-panel-line);
}

.feature-band--reverse {
  grid-template-columns: minmax(0, 0.88fr) 1fr;
}

.feature-band--reverse .feature-band__media {
  order: -1;
}

.feature-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.45rem;
}

.check-list,
.info-list,
.site-footer__list,
.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li,
.info-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before,
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.check-list--light li::before {
  background: var(--color-sand);
}

.narrative-grid,
.registration-layout,
.course-highlights {
  display: grid;
  gap: 1.2rem;
}

.narrative-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(19rem, 0.78fr);
  align-items: start;
}

.narrative-grid > article {
  max-width: 46rem;
}

.narrative-grid .section-heading {
  margin-bottom: 1.35rem;
}

.narrative-grid .section-heading__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.82rem, 2.22vw, 2.7rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.quote-card {
  padding: 1.8rem;
  align-self: start;
}

.narrative-grid .quote-card {
  max-width: 35rem;
  padding: 1.55rem 1.7rem 1.45rem;
  justify-self: end;
}

.quote-card p {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  line-height: 1.18;
}

.narrative-grid .quote-card p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.04rem, 1.12vw, 1.32rem);
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.quote-card span {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.narrative-grid .quote-card span {
  margin-top: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.about-legal-card {
  align-self: start;
}

.about-legal-card h2 {
  margin-bottom: 0.75rem;
}

.about-legal-card p + p {
  margin-top: 0.65rem;
}

.quote-card--dark,
.course-highlights__card--dark,
.info-card--dark {
  background: var(--gradient-panel), var(--texture-dark);
  color: var(--color-white);
  border-color: var(--color-panel-line);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stats-row article {
  text-align: left;
  display: grid;
  gap: 0.35rem;
}

.stats-row strong {
  display: block;
  font-size: 2.25rem;
  color: var(--color-accent);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.7rem 1.85rem;
  background: var(--gradient-panel), var(--texture-dark);
  color: var(--color-white);
  border-color: var(--color-panel-line);
}

.cta-panel--stack {
  display: grid;
}

.course-highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-highlights__card {
  padding: 1.7rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.faq-card {
  padding: 1.55rem 1.45rem;
  background: var(--gradient-surface), var(--texture-light);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.faq-card h3 {
  margin-bottom: 0.75rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.faq-card p {
  margin: 0;
  color: var(--color-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  padding: 1.45rem 1.35rem;
}

.process-grid__step {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

.process-grid h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.registration-flow {
  padding-bottom: 1.5rem;
  background: var(--color-paper);
}

.registration-section {
  padding-top: 1.5rem;
  background: var(--color-cream);
}

.registration-section--priority {
  padding-top: 0.9rem;
  scroll-margin-top: 7rem;
}

.registration-section--priority .form-shell__intro .section-heading__title {
  max-width: 34rem;
}

.registration-section--priority + .registration-flow {
  padding-top: 0.75rem;
}

.registration-flow .process-grid article {
  padding: 1.15rem 1.2rem;
  background: var(--gradient-surface-soft), var(--texture-light);
  border: 1px solid var(--color-line);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.registration-flow .process-grid h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 1.5vw, 1.65rem);
}

.registration-flow .process-grid p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-muted-soft);
}

.schedule-table-wrap {
  overflow: auto;
  padding: 1.1rem;
}

.schedule-table-wrap__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.2rem;
  align-items: end;
  padding: 0.8rem 0.6rem 1.35rem;
}

.schedule-table-wrap__note {
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  background: var(--gradient-surface-tint), var(--texture-light);
  border: 1px solid var(--color-line);
}

.schedule-table-wrap__note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 52rem;
}

.schedule-table th,
.schedule-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.schedule-table thead th {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-soft);
  border-bottom: 1px solid var(--color-line);
  white-space: nowrap;
}

.schedule-table tbody tr + tr td {
  border-top: 1px solid var(--color-line);
}

.schedule-table tbody tr {
  transition: background-color var(--duration-fast) var(--ease-swift);
}

.schedule-table tbody tr:hover {
  background: rgba(242, 107, 33, 0.08);
}

.registration-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(20rem, 0.72fr);
  align-items: start;
  gap: 1.75rem;
}

.form-shell {
  padding: 2rem;
  background: var(--gradient-surface), var(--texture-light);
  position: relative;
  overflow: hidden;
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.38rem;
  background: var(--color-accent);
}

.form-shell__intro {
  margin-bottom: 1.4rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--color-line);
  position: relative;
  z-index: 1;
}

.form-shell__callout,
.registration-form-panel,
.registration-layout__sidebar .info-card {
  position: relative;
  z-index: 1;
}

.form-shell__callout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.2rem;
  align-items: end;
  padding: 1.25rem 1.3rem;
  margin-bottom: 0.95rem;
  border-radius: 24px;
  background: var(--gradient-panel-soft), var(--texture-dark);
  border: 1px solid var(--color-panel-line);
  color: var(--color-white);
}

.form-shell__callout-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: rgba(242, 101, 34, 0.96);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-shell__callout h3 {
  margin-bottom: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-shell__callout p {
  margin: 0;
  max-width: 34rem;
  align-self: center;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.form-shell__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.25rem;
}

.form-shell__meta li {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.registration-form-panel {
  padding: 1.45rem;
  border-radius: 26px;
  background: rgba(8, 18, 28, 0.84);
  border: 1px solid var(--color-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  scroll-margin-top: 7.5rem;
}

.registration-form-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-line);
}

.registration-form-panel__eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted-soft);
}

.registration-form-panel__header h3 {
  margin-bottom: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 2.1vw, 2.45rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.registration-form-panel__header p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.registration-status-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.45rem;
  border-radius: 26px;
  background: rgba(8, 18, 28, 0.84);
  border: 1px solid var(--color-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

.registration-status-card__header {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 1rem;
  align-items: end;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-line);
}

.registration-status-card__header h3 {
  margin-bottom: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 2.1vw, 2.45rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.registration-status-card__header p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.registration-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.registration-status-grid article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.registration-status-grid span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted-soft);
}

.registration-status-grid strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--color-ink);
}

.registration-status-card__instructions {
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(127, 152, 174, 0.08);
  border: 1px solid var(--color-line);
}

.registration-status-card__instructions h3 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.registration-status-card__instructions > :last-child {
  margin-bottom: 0;
}

.registration-status-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.form-shell__footer-note {
  display: grid;
  gap: 0.3rem;
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: var(--gradient-surface-tint), var(--texture-light);
  border: 1px solid rgba(127, 152, 174, 0.22);
}

.form-shell__footer-note span {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted-soft);
}

.form-shell__footer-note strong {
  font-size: 0.96rem;
  line-height: 1.45;
}

.info-card {
  padding: 1.55rem;
}

.info-card a:not(.button) {
  display: block;
  color: var(--color-accent);
  font-weight: 700;
}

.info-card p:last-child,
.quote-card p:last-child {
  margin-bottom: 0;
}

.info-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.content-shell {
  padding: 4rem 0;
  background: var(--color-paper);
}

.content-shell--narrow .container {
  max-width: 54rem;
}

.entry-card {
  padding: 2rem;
}

.entry-card__content > :last-child {
  margin-bottom: 0;
}

.wpforms-container-full .wpforms-form {
  display: grid;
  gap: 1.05rem;
}

.registration-form-panel .wpforms-container-full {
  --wpforms-field-text-color: var(--color-ink);
  --wpforms-field-menu-color: rgba(12, 21, 31, 0.98);
  --wpforms-label-color: var(--color-ink-deep);
  --wpforms-label-sublabel-color: var(--color-muted);
  --wpforms-label-error-color: #d63637;
  --wpforms-field-border-color: rgba(255, 255, 255, 0.14);
  --wpforms-field-background-color: rgba(255, 255, 255, 0.05);
  --wpforms-button-background-color: var(--color-accent);
  --wpforms-button-text-color: var(--color-white);
}

.wpforms-container-full .wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
}

.wpforms-container-full .wpforms-field {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.wpforms-container-full .wpforms-field[data-field-id="1"],
.wpforms-container-full .wpforms-field[data-field-id="8"],
.wpforms-container-full .wpforms-field[data-field-id="9"] {
  grid-column: 1 / -1;
}

.wpforms-container-full .wpforms-field-label {
  display: block;
  margin-bottom: 0.5rem !important;
  font-weight: 700;
  color: var(--color-ink-deep) !important;
  font-size: 0.94rem !important;
  line-height: 1.35 !important;
}

.wpforms-container-full fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.wpforms-container-full legend.wpforms-field-label {
  margin-bottom: 0.7rem !important;
  color: var(--color-ink-deep) !important;
}

.wpforms-container-full label,
.wpforms-container-full .wpforms-field-label-inline,
.wpforms-container-full .wpforms-field-label-inline a,
.wpforms-container-full .wpforms-field-label-inline span {
  color: var(--color-ink-deep) !important;
}

.wpforms-container-full .wpforms-required-label {
  color: var(--color-accent) !important;
}

.wpforms-container-full .wpforms-field-row {
  gap: 0.8rem !important;
}

.wpforms-container-full .wpforms-field-name .wpforms-field-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.9rem !important;
  margin: 0 !important;
}

.wpforms-container-full .wpforms-field-name .wpforms-field-row-block,
.wpforms-container-full .wpforms-field-row-block {
  margin: 0 !important;
}

.wpforms-container-full .wpforms-field-name .wpforms-field-row-block {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
}

.wpforms-container-full .wpforms-field-name .wpforms-field-row-block.wpforms-first {
  grid-column: 1;
  grid-row: 1;
}

.wpforms-container-full .wpforms-field-name .wpforms-field-row-block:not(.wpforms-first) {
  grid-column: 2;
  grid-row: 1;
}

.wpforms-container-full .wpforms-field-sublabel {
  margin-top: 0.42rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted) !important;
}

.wpforms-container-full input,
.wpforms-container-full textarea,
.wpforms-container-full select {
  width: 100% !important;
  height: auto !important;
  min-height: 3.4rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  padding: 0.92rem 1rem !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.96rem !important;
  line-height: 1.45 !important;
  color: var(--color-ink) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  transition: border-color var(--duration-fast) var(--ease-swift), box-shadow var(--duration-fast) var(--ease-swift), background var(--duration-fast) var(--ease-swift) !important;
}

.wpforms-container-full input:focus,
.wpforms-container-full textarea:focus,
.wpforms-container-full select:focus {
  border-color: rgba(242, 107, 33, 0.52) !important;
  box-shadow: 0 0 0 4px rgba(242, 107, 33, 0.13) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.wpforms-container-full input::placeholder,
.wpforms-container-full textarea::placeholder {
  color: rgba(237, 244, 249, 0.42) !important;
}

.wpforms-container-full textarea {
  height: auto !important;
  min-height: 11rem !important;
  resize: vertical !important;
}

.wpforms-container-full select {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23edf4f9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-position: calc(100% - 1rem) 50% !important;
  background-size: 0.9rem 0.9rem !important;
  background-repeat: no-repeat !important;
  padding-right: 2.9rem !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices {
  margin: 0 !important;
  font-family: "Montserrat", sans-serif !important;
}

.registration-form-panel .wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.registration-form-panel .wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices__inner {
  display: flex !important;
  align-items: center !important;
  min-height: 3.4rem !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--color-ink) !important;
  box-shadow: none !important;
  transition: border-color var(--duration-fast) var(--ease-swift), box-shadow var(--duration-fast) var(--ease-swift), background var(--duration-fast) var(--ease-swift) !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices:hover .choices__inner {
  background: rgba(255, 255, 255, 0.08) !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices.is-focused .choices__inner,
.registration-form-panel .wpforms-field-select-style-modern .choices.is-open .choices__inner {
  border-color: rgba(242, 107, 33, 0.52) !important;
  box-shadow: 0 0 0 4px rgba(242, 107, 33, 0.13) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.registration-form-panel .wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices__list--single {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: calc(3.4rem - 2px) !important;
  padding: 0 2.9rem 0 1rem !important;
}

.registration-form-panel .wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices__list--single .choices__item {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  color: var(--color-ink) !important;
  font-size: 0.96rem !important;
  line-height: 1.45 !important;
  padding-right: 0 !important;
}

.registration-form-panel .wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices__button {
  display: none !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices__placeholder {
  color: rgba(237, 244, 249, 0.42) !important;
  opacity: 1 !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices[data-type*="select-one"]::after {
  top: 50% !important;
  right: 1rem !important;
  margin-top: 0 !important;
  border-color: var(--color-ink) transparent transparent !important;
  border-width: 0.42rem 0.34rem 0 !important;
  transform: translateY(-50%) !important;
  transition: transform var(--duration-fast) var(--ease-swift), border-color var(--duration-fast) var(--ease-swift) !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices.is-open[data-type*="select-one"]::after {
  transform: translateY(-50%) rotate(180deg) !important;
  border-color: var(--color-ink-deep) transparent transparent !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices__list--dropdown,
.registration-form-panel .wpforms-field-select-style-modern .choices__list[aria-expanded] {
  z-index: 36 !important;
  margin-top: 0.55rem !important;
  padding: 0.45rem !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px !important;
  background: rgba(12, 21, 31, 0.98) !important;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices__list--dropdown .choices__item,
.registration-form-panel .wpforms-field-select-style-modern .choices__list[aria-expanded] .choices__item {
  padding: 0.82rem 0.9rem !important;
  border-radius: 14px !important;
  color: var(--color-ink) !important;
  font-size: 0.95rem !important;
  line-height: 1.45 !important;
  transition: background var(--duration-fast) var(--ease-swift), color var(--duration-fast) var(--ease-swift), transform var(--duration-fast) var(--ease-swift) !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices__list--dropdown .choices__item--choice.is-highlighted,
.registration-form-panel .wpforms-field-select-style-modern .choices__list[aria-expanded] .choices__item--choice.is-highlighted {
  background: rgba(127, 152, 174, 0.14) !important;
  color: var(--color-ink-deep) !important;
  transform: translateX(2px) !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices__list--dropdown .choices__item--selectable.is-selected,
.registration-form-panel .wpforms-field-select-style-modern .choices__list[aria-expanded] .choices__item--selectable.is-selected {
  background: rgba(242, 107, 33, 0.12) !important;
  color: var(--color-ink-deep) !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices__list--dropdown .choices__item--disabled,
.registration-form-panel .wpforms-field-select-style-modern .choices__list[aria-expanded] .choices__item--disabled {
  display: none !important;
}

.registration-form-panel .wpforms-field-select-style-modern .choices__list--dropdown::-webkit-scrollbar,
.registration-form-panel .wpforms-field-select-style-modern .choices__list[aria-expanded]::-webkit-scrollbar {
  width: 0.55rem;
}

.registration-form-panel .wpforms-field-select-style-modern .choices__list--dropdown::-webkit-scrollbar-thumb,
.registration-form-panel .wpforms-field-select-style-modern .choices__list[aria-expanded]::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.wpforms-container-full .wpforms-field.wpforms-has-error {
  border-color: transparent;
}

.wpforms-container-full .wpforms-field.wpforms-has-error input,
.wpforms-container-full .wpforms-field.wpforms-has-error textarea,
.wpforms-container-full .wpforms-field.wpforms-has-error select {
  border-color: rgba(214, 54, 55, 0.28) !important;
}

.wpforms-container-full .wpforms-field.wpforms-has-error .choices__inner {
  border-color: rgba(214, 54, 55, 0.4) !important;
  box-shadow: 0 0 0 4px rgba(214, 54, 55, 0.08) !important;
}

.wpforms-container-full .wpforms-error {
  margin-top: 0.45rem !important;
  font-size: 0.82rem !important;
}

.wpforms-container-full .wpforms-submit-container {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.2rem;
  padding: 1.15rem 0 0;
  border-radius: 0;
  background: rgba(127, 152, 174, 0.08);
  border-top: 1px solid var(--color-line);
}

.wpforms-container-full .wpforms-submit-container::before {
  content: "Secure card checkout powered by Square. Your selected session and contact details carry forward to payment.";
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.wpforms-container-full .wpforms-submit {
  width: 100% !important;
  min-height: 3.7rem !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  padding: 1rem 1.35rem !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 16px 34px rgba(242, 107, 33, 0.26);
  transition: transform var(--duration-fast) var(--ease-swift), box-shadow var(--duration-fast) var(--ease-swift), filter var(--duration-fast) var(--ease-swift) !important;
}

.wpforms-container-full button.wpforms-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.72rem !important;
}

.wpforms-container-full button.wpforms-submit::before {
  content: "";
  width: 4rem;
  height: 1rem;
  flex: 0 0 4rem;
  background: url("../images/square-logo-white.svg") center / contain no-repeat;
}

.wpforms-container-full input.wpforms-submit {
  background: url("../images/square-logo-white.svg") 1.25rem 50% / 4rem 1rem no-repeat, var(--color-accent) !important;
  padding-left: 6rem !important;
}

.wpforms-container-full .wpforms-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(242, 107, 33, 0.32);
  filter: saturate(1.03);
}

.wpforms-container-full .wpforms-submit-spinner {
  margin: 0 auto;
}

.registration-layout__sidebar {
  display: grid;
  gap: 1.05rem;
  position: sticky;
  top: 6.5rem;
}

.registration-layout__sidebar .info-card {
  padding: 1.45rem;
}

.registration-layout__sidebar .info-card h2 {
  margin-bottom: 0.7rem;
}

.registration-layout__sidebar .info-card:first-child {
  background: var(--gradient-surface-soft), var(--texture-light);
}

.site-footer {
  margin-top: 5rem;
  background: var(--gradient-panel), var(--texture-dark);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr 0.95fr 1fr 1.2fr;
  gap: 1.65rem;
  padding: 3.7rem 0 2.65rem;
}

.site-footer__brand p {
  max-width: 18rem;
}

.site-footer__service-area {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__column h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.site-footer__column .site-nav__list,
.site-footer__list,
.site-footer__contact {
  display: grid;
  gap: 0.55rem;
}

.site-footer__column .site-nav__list a,
.site-footer__list li,
.site-footer__contact li,
.site-footer__contact a {
  font-size: 0.95rem;
}

.site-footer__column .site-nav__list a,
.site-footer__contact a {
  transition: color var(--duration-fast) var(--ease-swift), opacity var(--duration-fast) var(--ease-swift);
}

.site-footer__column .site-nav__list a:hover,
.site-footer__contact a:hover {
  color: var(--color-white);
  opacity: 0.82;
}

body.js-motion .reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 520ms var(--ease-standard),
    transform 520ms var(--ease-standard);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer__tagline {
  display: block;
  margin-top: 1rem;
  color: var(--color-accent);
  font-weight: 700;
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1200px) {
  .site-header__brand {
    min-width: clamp(12rem, 17vw, 14.75rem);
    padding-right: clamp(0.8rem, 1.4vw, 1.25rem);
  }

  .site-nav__list {
    gap: 1rem;
  }

  .site-nav__list a {
    font-size: 0.8rem;
  }

  .proof-band__grid,
  .academy-showcase__grid,
  .course-cards,
  .path-grid,
  .module-grid,
  .icon-grid,
  .pillar-grid,
  .mission-grid,
  .employer-grid,
  .stats-row,
  .process-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-panel,
  .academy-showcase__header,
  .calendar-showcase,
  .street-angels-showcase,
  .training-panel,
  .outreach-band,
  .enrollment-panel,
  .split-card,
  .feature-band,
  .narrative-grid,
  .course-highlights,
  .registration-layout,
  .cta-panel,
  .page-hero__shell {
    grid-template-columns: 1fr;
  }

  .about-panel__quote,
  .training-panel__badge,
  .outreach-band__seal {
    justify-self: start;
  }

  .street-angels-showcase__top {
    grid-template-columns: 1fr;
  }

  .street-angels-showcase--home .street-angels-showcase__content,
  .street-angels-showcase--page .street-angels-showcase__content {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-areas: none;
    gap: 1.55rem;
  }

  .street-angels-showcase--home .street-angels-showcase__top,
  .street-angels-showcase--page .street-angels-showcase__top {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: none;
    column-gap: 0;
    row-gap: 1.15rem;
  }

  .street-angels-showcase--home .street-angels-showcase__seal,
  .street-angels-showcase--home .street-angels-showcase__intro,
  .street-angels-showcase--home .street-angels-showcase__closing,
  .street-angels-showcase--home .street-angels-button,
  .street-angels-showcase--home .street-angels-features,
  .street-angels-showcase--page .street-angels-showcase__seal,
  .street-angels-showcase--page .street-angels-showcase__intro,
  .street-angels-showcase--page .street-angels-showcase__closing,
  .street-angels-showcase--page .street-angels-button,
  .street-angels-showcase--page .street-angels-features {
    grid-area: auto;
  }

  .street-angels-showcase--home .street-angels-showcase__intro,
  .street-angels-showcase--page .street-angels-showcase__intro {
    display: block;
    width: 100%;
  }

  .street-angels-showcase__seal {
    justify-self: center;
  }

  .street-angels-showcase__seal img {
    max-width: 14rem;
  }

  .street-angels-showcase__media img {
    min-height: 34rem;
  }

  .street-angels-showcase--home .street-angels-showcase__closing,
  .street-angels-showcase--page .street-angels-showcase__closing {
    max-width: 44rem;
    font-size: clamp(1.15rem, 1.34vw, 1.42rem);
    color: rgba(255, 255, 255, 0.94);
  }

  .street-angels-showcase--home .street-angels-button,
  .street-angels-showcase--page .street-angels-button {
    width: min(100%, 34rem);
    max-width: 34rem;
    min-height: 4.9rem;
    padding: 0.9rem 1.6rem;
    font-size: clamp(1.1rem, 1.46vw, 1.58rem);
  }

  .street-angels-showcase--home .street-angels-features,
  .street-angels-showcase--page .street-angels-features {
    grid-template-columns: 1fr;
  }

  .street-angels-showcase--home .street-angels-showcase__media img,
  .street-angels-showcase--page .street-angels-showcase__media img {
    min-height: 34rem;
  }

  .enrollment-panel__cta {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 1.5rem;
  }

  .hero-trust,
  .inline-facts,
  .schedule-table-wrap__header {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-shell__callout,
  .registration-form-panel__header,
  .registration-status-card__header {
    grid-template-columns: 1fr;
  }

  .form-shell__meta {
    gap: 0.6rem;
  }

  .registration-status-grid {
    grid-template-columns: 1fr;
  }

  .wpforms-container-full .wpforms-field-container {
    grid-template-columns: 1fr;
  }

  .wpforms-container-full .wpforms-field[data-field-id="1"],
  .wpforms-container-full .wpforms-field[data-field-id="8"],
  .wpforms-container-full .wpforms-field[data-field-id="9"] {
    grid-column: auto;
  }

  .registration-layout__sidebar {
    position: static;
    top: auto;
  }

  .calendar-showcase__intro {
    max-width: none;
  }
}

@media (max-width: 860px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    padding: 0;
    background: rgba(32, 57, 75, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(10, 22, 31, 0.12);
  }

  .site-header .site-logo {
    color: var(--color-ink);
  }

  .site-header .site-logo__image-wrap {
    width: auto;
    height: 3.55rem;
  }

  .site-header__inner {
    min-height: 5.15rem;
    padding: 0.56rem 0;
  }

  .site-header__toggle {
    display: inline-flex;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  }

  .site-nav {
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    top: calc(100% + 0.5rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(32, 57, 75, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.85rem) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 260ms var(--ease-standard),
      transform 260ms var(--ease-standard),
      visibility 0s linear 260ms;
  }

  .site-nav--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .site-nav__list a {
    color: rgba(16, 31, 44, 0.94);
    min-height: 2.7rem;
  }

  .site-nav__cta .button {
    width: 100%;
  }

  .home-hero__shell,
  .page-hero__shell {
    grid-template-columns: 1fr;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .home-hero__media,
  .page-hero__media {
    order: 1;
    position: relative;
  }

  .home-hero__panel,
  .page-hero__content {
    order: 2;
    margin: -5.2rem 0.9rem 0;
    padding: 1.6rem 1.35rem 1.7rem;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
  }

  .home-hero__panel {
    background: var(--color-panel), var(--texture-dark);
    color: var(--color-white);
  }

  .page-hero__content {
    background: var(--color-panel), var(--texture-dark);
    color: var(--color-white);
  }

  .home-hero__title,
  .page-hero__title {
    color: var(--color-white);
  }

  .home-hero__lede,
  .home-hero__body {
    color: rgba(255, 255, 255, 0.78);
  }

  .home-hero__panel::after {
    content: none;
  }

  .home-hero__signals li {
    padding-left: 1.3rem;
    font-size: 1.05rem;
  }

  .home-hero__media img,
  .page-hero__media img {
    min-height: 22rem;
    border-radius: 26px;
  }

  .home-hero__media::after,
  .page-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: rgba(19, 32, 43, 0.44);
    pointer-events: none;
  }

  .home-hero__signals {
    gap: 0.65rem;
    margin: 1.15rem 0;
  }

  .home-hero__signals li {
    padding-left: 1.3rem;
    font-size: 1.05rem;
  }

  .home-hero__signals li::before,
  .check-list li::before,
  .info-list li::before {
    top: 0.45rem;
  }

  .home-hero__body,
  .page-hero__copy {
    max-width: none;
    font-size: 0.96rem;
  }

  .proof-band {
    margin-top: 1.5rem;
  }

  .hero-trust,
  .inline-facts,
  .schedule-table-wrap__header,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-shell {
    padding: 1.2rem;
  }

  .form-shell__callout,
  .registration-form-panel {
    padding: 1rem;
  }

  .registration-status-card {
    padding: 1rem;
  }

  .form-shell__meta {
    margin-bottom: 1rem;
  }

  .hero-trust {
    margin-top: 1.4rem;
  }

  .media-badge,
  .media-badge--hero {
    right: 0.9rem;
    left: 0.9rem;
    bottom: 0.9rem;
    max-width: none;
  }

  .media-badge--hero {
    display: none;
  }

  .proof-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .proof-card:last-child {
    border-bottom: 0;
  }

  .hero__actions,
  .page-hero__actions,
  .cta-panel__actions {
    width: 100%;
  }

  .hero__actions .button,
  .page-hero__actions .button,
  .cta-panel__actions .button {
    width: 100%;
  }

  .cta-panel,
  .enrollment-panel__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .wpforms-container-full .wpforms-field-name .wpforms-field-row {
    grid-template-columns: 1fr !important;
  }

  .training-panel__badge-card {
    width: min(100%, 8.8rem);
    min-height: 7.8rem;
    padding: 0.85rem 0.75rem;
  }

  .training-panel__badge-card img {
    max-width: 7.4rem;
  }

  .street-angels-showcase {
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 28px;
  }

  .street-angels-showcase__content {
    padding: 1.2rem 1.05rem 0.8rem;
  }

  .street-angels-showcase__title {
    font-size: clamp(2.7rem, 10vw, 4.4rem);
  }

  .street-angels-showcase__subtitle {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .street-angels-showcase__media img {
    min-height: 28rem;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(calc(100vw - 1rem), 1380px);
  }

  .site-header__inner {
    min-height: 4.85rem;
    padding: 0.54rem 0;
  }

  .site-logo__image-wrap {
    width: 6.4rem;
  }

  .site-header .site-logo__image-wrap {
    width: auto;
    height: 3.24rem;
  }

  .site-logo--light .site-logo__image-wrap {
    width: 8.9rem;
  }

  .home-hero__title,
  .page-hero__title {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .home-hero__panel,
  .page-hero__content {
    margin: -4.2rem 0.5rem 0;
    padding: 1.45rem 1.15rem 1.5rem;
  }

  .home-hero__media img,
  .page-hero__media img {
    min-height: 18rem;
  }

  .home-hero__panel,
  .page-hero__content,
  .split-card,
  .feature-band,
  .training-panel,
  .calendar-showcase,
  .about-panel,
  .enrollment-panel,
  .form-shell,
  .schedule-table-wrap {
    border-radius: 22px;
  }

  .proof-band__grid,
  .academy-showcase__grid,
  .course-cards,
  .path-grid,
  .module-grid,
  .icon-grid,
  .pillar-grid,
  .mission-grid,
  .employer-grid,
  .stats-row,
  .process-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    grid-template-columns: 1fr;
  }

  .course-card__date {
    width: 100%;
    min-width: 0;
  }

  .quote-pillars,
  .calendar-showcase__pills,
  .hero-chip-list {
    gap: 0.45rem;
  }

  .quote-pillars li,
  .calendar-showcase__pills li,
  .hero-chip-list li {
    font-size: 0.7rem;
  }

  .form-shell__callout h3,
  .registration-form-panel__header h3 {
    font-size: clamp(1.75rem, 10vw, 2.25rem);
  }

  .wpforms-container-full .wpforms-submit-container {
    padding-top: 1rem;
  }

  .hero__actions,
  .page-hero__actions {
    flex-direction: column;
  }

  .enrollment-panel__cta {
    padding-bottom: 1.25rem;
  }

  .outreach-band,
  .training-panel {
    padding: 1.2rem;
  }

  .street-angels-page .container {
    width: var(--container);
  }

  .street-angels-showcase {
    padding: 0.8rem;
    border-radius: 24px;
  }

  .street-angels-showcase__content {
    gap: 1.15rem;
    padding: 0.95rem 0.8rem 0.5rem;
  }

  .street-angels-showcase__seal img {
    max-width: 12.4rem;
  }

  .training-panel__lede,
  .training-panel__body,
  .training-panel__subheading {
    max-width: none;
  }

  .street-angels-showcase__copy p,
  .street-angels-features li {
    font-size: 1rem;
  }

  .street-angels-showcase__closing {
    font-size: 1.02rem;
  }

  .street-angels-features li {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
  }

  .street-angels-features__icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .street-angels-features__icon svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .street-angels-button {
    width: 100%;
    min-height: 4.2rem;
    padding: 0.8rem 1.1rem;
    border-radius: 18px;
  }

  .street-angels-showcase__media img {
    min-height: 22rem;
    border-radius: 20px;
  }

  .site-footer {
    margin-top: 4rem;
  }

  .site-footer__grid {
    padding-top: 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
