:root {
  --brand: #64b5bc;
  --brand-dark: #4a9aa0;
  --brand-soft: #a8d5da;
  --brand-ink: #2a5c62;
  --bg: #f4fafb;
  --bg-tint: #e8f4f5;
  --surface: #ffffff;
  --text: #2a3536;
  --muted: #5c6e70;
  --line: rgba(45, 58, 58, 0.08);
  --placeholder: #b5bcbe;
  --placeholder-dark: #9aa3a5;
  --shadow: 0 12px 40px rgba(42, 92, 98, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --header-h: 64px;
  --font: "Calibri", "Segoe UI", "Candara", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0));
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader__logo {
  width: min(76vw, 360px);
  height: auto;
  opacity: 0;
  transform: translateX(42px);
  animation: loaderSlideIn 2.4s ease-out forwards;
}

@keyframes loaderSlideIn {
  0% {
    opacity: 0;
    transform: translateX(42px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  top: 12px;
  padding: 0.5rem 0.75rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 200;
  transform: translateY(-140%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  direction: ltr;
  align-items: center;
  justify-items: center;
  min-height: var(--header-h);
}

.header-call {
  grid-column: 1;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 0;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.header-call:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}

.brand {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  justify-self: center;
}

.brand__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.brand__wordmark {
  display: none;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--brand);
}

.brand__wordmark.is-visible {
  display: block;
}

.menu-toggle {
  grid-column: 3;
  justify-self: end;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.menu-toggle:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}

.menu-toggle__bars {
  width: 20px;
  height: 14px;
  background: linear-gradient(
    to bottom,
    var(--text) 0 2px,
    transparent 2px 6px,
    var(--text) 6px 8px,
    transparent 8px 12px,
    var(--text) 12px 14px
  );
}

.site-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 96%, white);
}

.site-nav[hidden] {
  display: none;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--bg-tint);
  color: var(--brand-ink);
}

/* Sections */
.section {
  padding: 2.25rem 0;
}

.section--tint {
  background: var(--bg-tint);
}

.section__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-title {
  font-size: clamp(1.5rem, 4.5vw, 1.85rem);
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-weight: 500;
}

.section-subtitle--center {
  text-align: center;
}

.section-kicker {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-kicker--center {
  text-align: center;
}

/* Hero */
.section--hero {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.section--after-hero {
  padding-top: 1.5rem;
}

.section--about {
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}

.about-intro .section-title {
  margin-bottom: 0.5rem;
}

.about-title-rule {
  width: 44px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--brand);
}

.about-intro .section-subtitle {
  margin-bottom: 1.5rem;
}

.about-layout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 1.15rem;
}

.about-photo {
  margin: 0;
  line-height: 0;
}

.about-photo__img {
  width: 100%;
  min-height: 220px;
  max-height: 380px;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-prose {
  padding: 0.1rem 0.35rem 0.2rem;
}

.hero-visual {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #0f1415;
}

/* 576×1024 (9:16) — גובה המיכל נגזר מהסרטון; max-width כדי שלא יחרוג מ־88vh */
.hero-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  line-height: 0;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-mute {
  position: absolute;
  bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  inset-inline-end: 0.65rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.65));
}

.hero-mute:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-mute__icon {
  grid-area: 1 / 1;
}

.hero-mute__icon[hidden] {
  display: none;
}

.img-placeholder {
  background: linear-gradient(145deg, var(--placeholder) 0%, var(--placeholder-dark) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn--outline {
  background: transparent;
  color: var(--brand-ink);
  border-color: var(--brand);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--bg-tint);
}

.btn--block {
  width: 100%;
}

/* About */
.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  text-align: right;
}

.prose .btn {
  margin-top: 0.5rem;
}

@media (min-width: 760px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    align-items: center;
    padding: 1.1rem;
  }

  .about-prose {
    padding-inline: 0.25rem 0.5rem;
  }

  .about-intro .section-subtitle {
    margin-bottom: 1.7rem;
  }
}

/* Stats banner */
.section--stats-banner {
  padding-top: 0.5rem;
  padding-bottom: 2.25rem;
}

.stats-banner {
  background: linear-gradient(160deg, color-mix(in srgb, var(--bg-tint) 78%, white), #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.2rem 1rem 1.1rem;
}

.stats-banner .section-title {
  margin-bottom: 0.3rem;
}

.stats-banner .section-kicker {
  margin-bottom: 1rem;
}

.stat-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: color-mix(in srgb, var(--surface) 86%, var(--bg-tint));
  border: 1px solid color-mix(in srgb, var(--line) 72%, white);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.9rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(42, 92, 98, 0.08);
}

.stat-card__num {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.25rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
}

.stat-card__label {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-weight: 500;
}

/* Service cards */
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.service-card:last-child {
  margin-bottom: 0;
}

.img-placeholder--card {
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
}

.service-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--brand-ink);
}

.service-card__text {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--brand-ink);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Course section */
.section--course {
  padding-top: 2.5rem;
  padding-bottom: 2.6rem;
}

.course-hero {
  margin-bottom: 1.2rem;
}

.course-hero__eyebrow {
  margin: 0 0 0.55rem;
  text-align: center;
  color: var(--brand-ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.course-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.course-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(42, 92, 98, 0.08);
  line-height: 0;
}

.course-media__img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.course-media--clinical .course-media__img {
  max-height: 400px;
  object-position: center 35%;
}

.course-media--unique .course-media__img {
  max-height: 400px;
  object-position: center 40%;
}

.course-media--unique {
  margin-bottom: 0;
}

.course-media--unique + .course-process {
  margin-top: -0.35rem;
}

.course-card,
.course-process {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(42, 92, 98, 0.08);
  padding: 1rem;
}

.course-card__title {
  margin: 0 0 0.75rem;
  color: var(--brand-ink);
  font-size: 1.2rem;
}

.course-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.course-list li {
  position: relative;
  padding-inline-start: 1.15rem;
  color: var(--muted);
}

.course-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.course-topics {
  display: grid;
  gap: 0.7rem;
}

.course-topics p {
  margin: 0;
  color: var(--muted);
}

.course-topics strong {
  color: var(--text);
}

.course-card--wide {
  margin-bottom: 1rem;
}

.course-list--chips {
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.course-list--chips li {
  background: color-mix(in srgb, var(--bg-tint) 72%, white);
  border: 1px solid color-mix(in srgb, var(--line) 70%, white);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
}

.course-list--chips li::before {
  display: none;
}

.course-process {
  margin-bottom: 1rem;
}

.course-process__title {
  text-align: center;
}

.process-timeline {
  margin: 0;
  padding: 0;
  padding-inline-end: 0.2rem;
  list-style: none;
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  inset-inline-start: 0.45rem;
  width: 2px;
  background: color-mix(in srgb, var(--brand) 40%, var(--line));
}

.process-timeline li {
  position: relative;
  padding-block: 0.2rem;
  padding-inline-start: 2.85rem;
  padding-inline-end: 0.35rem;
  color: var(--muted);
  text-align: start;
}

.process-timeline li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.52rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: #fff;
  box-sizing: border-box;
}

.course-card-quote {
  margin: 0;
  margin-top: auto;
  padding: 0.85rem 0 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 85%, var(--brand-soft));
}

.course-card-quote__text {
  margin: 0 0 0.35rem;
  text-align: center;
  color: var(--brand-ink);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
}

.course-card-quote__attrib {
  margin: 0;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.course-cta {
  text-align: center;
  background: linear-gradient(160deg, color-mix(in srgb, var(--brand-soft) 45%, white), #ffffff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1rem;
}

.course-cta p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

/* Brand spotlight (ORSONG) */
.brand-spotlight {
  margin: 0;
}

.brand-spotlight__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.brand-spotlight__img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-spotlight__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-spotlight__text-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 4.5rem;
}

.brand-spotlight__text {
  margin: 0;
  color: var(--brand-ink);
  font-weight: 600;
  font-size: clamp(0.95rem, 3.4vw, 1.1rem);
  line-height: 1.55;
  text-align: center;
  max-width: 34rem;
}

.brand-spotlight__btn {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 2rem);
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(42, 92, 98, 0.18);
}

/* Upcoming course dates */
.section--course-dates {
  padding-top: 2.25rem;
  padding-bottom: 2.35rem;
}

.course-dates-list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.course-dates-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  box-shadow: var(--shadow);
}

.course-dates-list__day {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  min-width: 2.35rem;
  text-align: center;
}

.course-dates-list__meta {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  text-align: right;
}

.course-dates-list__month {
  font-weight: 600;
  color: var(--brand-ink);
  font-size: 0.98rem;
}

.course-dates-list__year {
  font-size: 0.8rem;
  color: var(--muted);
}

.course-dates-disclaimer {
  margin-bottom: 0.85rem;
}

.course-dates-cta {
  max-width: 420px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .course-dates-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Before / after carousel */
.section--before-after .section__inner:first-of-type {
  margin-bottom: 1rem;
}

.ba-carousel-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-inline-start: calc(50% - 50vw);
  margin-inline-end: calc(50% - 50vw);
}

.ba-carousel {
  direction: ltr;
  margin-bottom: 0.35rem;
}

.ba-carousel__viewport {
  overflow: hidden;
  width: 100%;
  background: var(--surface);
}

.ba-carousel__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 0.08, 0.25, 1);
  will-change: transform;
}

.ba-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.ba-carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.ba-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.85rem 1rem 0.15rem;
  direction: rtl;
}

.ba-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 35%, #ccc);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.ba-carousel__dot:hover {
  transform: scale(1.15);
}

.ba-carousel__dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.ba-carousel__dot.is-active {
  background: var(--brand);
  transform: scale(1.2);
}

.ba-after-carousel {
  padding-top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .ba-carousel__track {
    transition-duration: 0.01ms;
  }
}

/* Course gallery - 2 photos per slide */
.section--course-gallery {
  padding-top: 2.1rem;
  padding-bottom: 2.3rem;
}

.course-gallery {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.course-gallery__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.course-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.course-gallery__slide img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
}

.course-gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.course-gallery__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 35%, #ccc);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.course-gallery__dot.is-active {
  background: var(--brand);
  transform: scale(1.2);
}

.course-gallery__dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .course-gallery__slide {
    transition-duration: 0.01ms;
  }
}

/* Testimonials video */
.testimonials-video-wrap {
  position: relative;
  max-width: 400px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0f1415;
  line-height: 0;
}

.testimonials-video {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-mute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.42);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
  transition: background 0.2s, transform 0.2s;
  line-height: 1.2;
  white-space: nowrap;
}

.testimonials-mute:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -50%) scale(1.02);
}

.testimonials-mute:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.testimonials-mute__text {
  font-size: 0.95rem;
  font-weight: 700;
}

.fine-print {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
}

.fine-print--center {
  text-align: center;
}

/* Contact */
.section--contact .contact-form {
  max-width: 420px;
  margin: 0 auto;
}

.field {
  display: block;
  margin-bottom: 1rem;
  text-align: right;
}

.field__label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--brand-ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
  background: var(--surface);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--brand-soft);
  border-color: var(--brand);
}

/* Social follow reels */
.section--social-follow {
  padding-top: 2rem;
  padding-bottom: 2.1rem;
}

.social-follow__icons {
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
}

.social-follow__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s;
}

.social-follow__icon:hover {
  transform: scale(1.05);
}

.social-follow__icon:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.social-follow__icon--ig {
  background: linear-gradient(200deg, #6bcad0, #64b5bc 40%, #c98bc9);
}

.social-follow__icon--tt {
  background: #121212;
}

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

.social-reels__item {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #0f1415;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  padding: 2rem 0 6rem;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 96%, #fff);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.footer-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: var(--brand-ink);
}

.footer-phone {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--brand-ink);
  font-weight: 700;
  text-decoration: none;
}

.footer-contact p {
  margin: 0.12rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-policies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.footer-policies a {
  color: var(--brand-ink);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-policies a:hover {
  text-decoration: underline;
}

.site-footer .fine-print {
  margin-top: 0.35rem;
  text-align: center;
}

/* FABs */
.fab-stack {
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom, 0));
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 90;
}

.fab-stack--social {
  right: 1rem;
  left: auto;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s;
}

.fab:hover {
  transform: scale(1.05);
}

.fab--wa {
  background: var(--brand);
}

.fab--ig {
  background: linear-gradient(200deg, #6bcad0, #64b5bc 40%, #c98bc9);
  color: #fff;
}

.fab--accessibility {
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom, 0));
  left: 1rem;
  right: auto;
  background: linear-gradient(180deg, #53b7c0, #3fa4ae);
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: #fff;
  z-index: 90;
}

.fab--accessibility:hover {
  transform: scale(1.07);
}

.accessibility-panel {
  position: fixed;
  left: 1rem;
  bottom: calc(132px + env(safe-area-inset-bottom, 0));
  z-index: 92;
  width: min(76vw, 240px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.accessibility-panel[hidden] {
  display: none !important;
}

.accessibility-panel__title {
  margin: 0;
  color: var(--brand-ink);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}

.accessibility-panel__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.accessibility-panel button,
.accessibility-panel a {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  padding: 0.45rem 0.55rem;
  text-align: center;
  text-decoration: none;
}

.accessibility-panel button:hover,
.accessibility-panel a:hover {
  background: var(--bg-tint);
}

body.a11y-high-contrast {
  --bg: #ffffff;
  --text: #121212;
  --muted: #2c2c2c;
  --line: rgba(0, 0, 0, 0.35);
  --brand-ink: #003e45;
}

body.a11y-links-emphasis a {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

/* Sticky bottom CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: block;
  text-align: center;
  padding: 0.62rem 1rem calc(0.62rem + env(safe-area-inset-bottom, 0));
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 -6px 24px rgba(42, 92, 98, 0.15);
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.26s ease, opacity 0.26s ease, background 0.2s;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta:hover {
  background: var(--brand-dark);
}

/* Larger screens */
@media (min-width: 640px) {
  .stat-cards {
    flex-direction: row;
    gap: 0.8rem;
  }

  .stat-card {
    flex: 1;
  }

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

  .course-media {
    grid-column: 1 / -1;
  }

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