* {
  box-sizing: border-box;
}

:root {
  --ink: #2d2654;
  --muted: #6b647f;
  --purple: #5840ad;
  --purple-2: #9b6be2;
  --lavender: #f2ebff;
  --lavender-2: #fbf8ff;
  --lavender-3: #f8f3ff;
  --yellow: #ffd95c;
  --line: #ded3fb;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(92, 66, 177, 0.13);
  --shadow-soft: 0 14px 34px rgba(92, 66, 177, 0.08);
  --radius: 20px;
  --container: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 20px 0 18px;
  background: rgba(251, 248, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 0;
}

.site-header .container {
  width: min(100% - 48px, 1500px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 68px);
  min-height: 74px;
  padding: 0 28px 0 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(92, 66, 177, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: clamp(196px, 17vw, 274px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.35vw, 40px);
  color: #36305f;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links .nav-career-mobile {
  display: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 48px;
  height: 8px;
  background: url("assets/images/Line 2.webp") center / contain no-repeat;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.career-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 12px 24px rgba(92, 66, 177, 0.2);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.career-btn {
  min-height: 52px;
  padding: 0 30px 0 25px;
  font-size: clamp(16px, 1.5vw, 17px);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(92, 66, 177, 0.2);
}

.career-btn::before {
  content: "";
  width: 31px;
  height: 25px;
  background: url("assets/images/Object.webp") center / contain no-repeat;
  flex: 0 0 auto;
}

.btn:hover,
.career-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(92, 66, 177, 0.24);
}

.career-btn.is-active {
  background: var(--purple-2);
}

.btn.secondary {
  color: var(--purple);
  background: var(--white);
  border: 2px solid var(--purple);
  box-shadow: none;
}

.btn.light {
  color: var(--purple);
  background: var(--lavender);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: 0;
  line-height: 1;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
}

.menu-toggle::before {
  top: 16px;
  box-shadow: 0 6px 0 var(--white);
}

.menu-toggle::after {
  top: 28px;
}

.hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  background: #f9f7fd;
  z-index: 10;
}

.hero::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);

  width: 100%;
  max-width: 1400px;
  margin-inline: auto;

  padding:
    clamp(4rem, 8vw, 7rem)
    clamp(1.25rem, 4vw, 3rem)
    clamp(3rem, 6vw, 5rem);
}

/* Laptop */
@media (max-width: 1200px) {
  .hero-grid {
    max-width: 1100px;
    gap: 3rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero-grid > * {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-grid {
    padding:
      4rem
      1.25rem
      3rem;
    gap: 2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-grid {
    padding:
      3rem
      1rem
      2.5rem;
    gap: 1.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--lavender);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow::before {
  content: "*";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--yellow);
  font-weight: 900;
}

.eyebrow.star-eyebrow::before {
  content: "\2605";
  width: auto;
  height: auto;
  border-radius: 0;
  color: #ff9b37;
  background: transparent;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin: 20px 0 18px;
  color: var(--ink);
  font-size: clamp(46px, 6.15vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span,
h2 span,
h3 span {
  color: var(--purple-2);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 1.8vw, 28px);
  line-height: 1.22;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-art {
  position: relative;
  align-self: end;
}

.hero-art::before {
  content: "ADHD Centre";
  position: absolute;
  right: 8%;
  top: 8%;
  z-index: 1;
  padding: 10px 16px;
  border: 1px solid rgba(92, 66, 177, 0.12);
  border-radius: 999px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.whatsapp-chip {
  position: absolute;
  right: 7%;
  bottom: 12%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: #2fce67;
  box-shadow: 0 12px 26px rgba(47, 206, 103, 0.28);
  font-size: 11px;
  font-weight: 900;
}

.hero-art::after,
.visual-card::after,
.process-step::after,
.team-card::after {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: 2;
  border-radius: 34% 46% 42% 36% / 38% 34% 46% 40%;
  pointer-events: none;
  opacity: 0.72;
  background:
    repeating-linear-gradient(90deg, var(--purple-2) 0 8px, transparent 8px 18px) top left / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, var(--purple-2) 0 8px, transparent 8px 18px) bottom left / 100% 2px no-repeat,
    repeating-linear-gradient(180deg, var(--purple-2) 0 8px, transparent 8px 18px) top left / 2px 100% no-repeat,
    repeating-linear-gradient(180deg, var(--purple-2) 0 8px, transparent 8px 18px) top right / 2px 100% no-repeat;
  animation: dashed-walk 1.2s linear infinite;
}

.hero-art::after {
  inset: 13% 7% 9%;
}

.hero-art img {
  width: min(100%, 690px);
  margin-inline: auto;
  filter: drop-shadow(0 20px 38px rgba(92, 66, 177, 0.14));
}

.hero-home .hero-grid {
  grid-template-columns: minmax(610px, 1.12fr) minmax(450px, 0.88fr);
  min-height: clamp(520px, 48vw, 690px);
  padding-top: clamp(44px, 4.2vw, 64px);
  padding-bottom: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 25px;
  align-self: center;
}

.hero-home .hero-copy {
  transform: translateY(-55px);
}

.hero-home h1 {
  position: relative;
  max-width: 960px;
  margin-bottom: clamp(3px, 2.4vw, 26px);
  color: var(--ink);
  font-size: clamp(26px, 7.55vw, 94px);
  line-height: 0.98;
}

.hero-home h1 span {
  display: block;
}

.hero-title-dark,
.hero-title-accent {
  white-space: nowrap;
}

.hero-title-accent {
  color: var(--purple-2);
}

.hero-title-dark {
  color: var(--ink);
}

.hero-title-last {
  position: relative;
  color: var(--ink);
  width: fit-content;
  white-space: nowrap;
}

.hero-the-mark,
.hero-thrive {
  position: relative;
  display: inline-block !important;
  color: inherit;
}

.hero-title-line {
  position: absolute;
  left: 0;
  bottom: -22px;
  z-index: -1;
  width: clamp(185px, 18vw, 310px);
  height: auto;
  pointer-events: none;
}

.hero-spark {
  position: absolute;
  z-index: 1;
  height: auto;
  pointer-events: none;
  transform-origin: center bottom;
}

.hero-spark-one {
  left: 116%;
  top: -30%;
  width: clamp(10px, 0.9vw, 15px);
  transform: rotate(8deg);
}

.hero-spark-two {
  left: 135%;
  top: 18%;
  width: clamp(7px, 0.62vw, 10px);
  transform: rotate(18deg);
}

.hero-spark-three {
  left: 108%;
  top: 44%;
  width: clamp(6px, 0.52vw, 9px);
  transform: rotate(-16deg);
}

.hero-home .lead {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.35;
}

.hero-description span {
  display: block;
  white-space: nowrap;
}

.home-hero-art {
  min-height: clamp(430px, 45vw, 665px);
  transform: translate(-3%, 0px);
  align-self: end;
  isolation: isolate;
  position: relative;
  z-index: 2;
  overflow: visible;
  margin-right: calc(-1 * max(16px, (100vw - 1240px) / 2));
  padding-right: calc(max(16px, (100vw - 1240px) / 2));
}

.home-hero-art::before,
.home-hero-art::after {
  display: none;
}

.home-hero-art .hero-bg {
  position: absolute;
  z-index: 0;
  right: -32%;
  bottom: -17%;
  width: min(194%, 10325px);
  max-width: none;
  filter: none;
  opacity: 0.98;
}

.home-hero-art .hero-person {
  position: absolute;
  z-index: 2;
  bottom: -11%;
  width: auto;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(92, 66, 177, 0.12));
}

.home-hero-art .hero-person-left {
  right: 2%;
  height: min(100%, 1048px);
}

.home-hero-art .hero-person-right {
  right: -20%;
  height: min(100%, 1078px);
}

.about-hero .hero-grid {
  grid-template-columns: minmax(610px, 1.12fr) minmax(450px, 0.88fr);
  min-height: clamp(520px, 48vw, 690px);
  padding-top: clamp(44px, 4.2vw, 64px);
  padding-bottom: 0;
}

.about-hero-copy {
  width: 105%;
  max-width: 700px;
  position: relative;
  z-index: 10;
  transform: translateY(clamp(-76px, -5.2vw, -46px));
}

@media (min-width: 993px) and (max-width: 1400px) {
  .about-hero-copy {
    transform: translateY(-100px);
  }
}

.about-hero h1 {
  max-width: 720px;
  margin: 18px 0 16px;
  font-size: clamp(54px, 4.9vw, 78px);
  line-height: 0.92;
}

.about-hero h1 span {
  display: block;
  white-space: nowrap;
}

.about-hero-title-dark {
  color: var(--ink);
}

.about-hero-title-accent {
  color: var(--purple-2);
}

.about-hero .lead {
  max-width: none;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.45;
}

.about-hero .hero-actions {
  margin-top: 24px;
}

.about-hero .btn {
  min-height: 36px;
  padding: 0 20px;
  font-size: 13px;
}

.about-hero .btn.secondary {
  background: var(--white);
}

.about-hero-art {
  min-height: clamp(430px, 45vw, 665px);
  transform: translate(-3%, clamp(-76px, -5.2vw, -46px));
  align-self: end;
  isolation: isolate;
}

.about-hero-art::before,
.about-hero-art::after {
  display: none;
}

.about-hero-art .hero-bg {
 position: absolute;
  z-index: 0;
  right: -32%;
  bottom: -17%;
  width: min(194%, 10325px);
  max-width: none;
  filter: none;
  opacity: 0.98;
}

.about-hero-art .hero-person {
  position: absolute;
  z-index: 2;
  bottom: -11%;
  width: auto;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(92, 66, 177, 0.12));
}

.about-hero-art .about-person-left {
  right: 30%;
  height: min(100%, 1548px);
}

.about-hero-art .about-person-right {
   right: -20%;
  height: min(100%, 1548px);
}

.hero-service .hero-grid {
  grid-template-columns: minmax(610px, 1.12fr) minmax(450px, 0.88fr);
  min-height: clamp(520px, 48vw, 690px);
  padding-top: clamp(44px, 4.2vw, 64px);
  padding-bottom: 0;
}

.service-hero-copy {
  max-width: 570px;
  transform: translateY(clamp(-76px, -5.2vw, -46px));
}

.hero-service h1 {
  max-width: 610px;
  margin: 18px 0 16px;
  font-size: clamp(54px, 4.9vw, 78px);
  line-height: 0.92;
}

.hero-service h1 span {
  display: block;
  white-space: nowrap;
}

.service-hero-title-dark {
  color: var(--ink);
}

.service-hero-title-accent {
  color: var(--purple-2);
}

.hero-service .lead {
  max-width: 500px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.45;
}

.hero-service .hero-actions {
  margin-top: 24px;
}

.hero-service .btn {
  min-height: 36px;
  padding: 0 20px;
  font-size: 13px;
}

.hero-service .btn.secondary {
  background: var(--white);
}

.service-hero-art {
  min-height: clamp(430px, 45vw, 665px);
  transform: translate(-3%, clamp(-76px, -5.2vw, -46px));
  align-self: end;
  isolation: isolate;
}

.service-hero-art::before,
.service-hero-art::after {
  display: none;
}

.service-hero-art .hero-bg {
  position: absolute;
  z-index: 0;
  right: -32%;
  bottom: -17%;
  width: min(194%, 10325px);
  max-width: none;
  filter: none;
  opacity: 0.98;
}

.service-hero-art .service-hero-person {
  position: absolute;
  z-index: 2;
  right: 10%;
  bottom: -11%;
  width: auto;
  height: min(100%, 1092px);
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(92, 66, 177, 0.12));
}

.hero-curriculum .hero-grid {
  grid-template-columns: minmax(610px, 1.12fr) minmax(450px, 0.88fr);
  min-height: clamp(520px, 48vw, 690px);
  padding-top: clamp(44px, 4.2vw, 64px);
  padding-bottom: 0;
}

.curriculum-hero-copy {
  max-width: 610px;
  transform: translateY(clamp(-76px, -5.2vw, -46px));
}

.hero-curriculum h1 {
  max-width: 650px;
  margin: 18px 0 16px;
  font-size: clamp(54px, 4.9vw, 78px);
  line-height: 0.92;
}

.hero-curriculum h1 span {
  display: block;
  white-space: nowrap;
}

.curriculum-hero-title-dark {
  color: var(--ink);
}

.curriculum-hero-title-accent {
  color: var(--purple-2);
}

.hero-curriculum .lead {
  max-width: 520px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.45;
}

.hero-curriculum .hero-actions {
  margin-top: 24px;
}

.hero-curriculum .btn {
  min-height: 36px;
  padding: 0 20px;
  font-size: 13px;
}

.hero-curriculum .btn.secondary {
  background: var(--white);
}

.curriculum-hero-art {
  min-height: clamp(430px, 45vw, 665px);
  transform: translate(-3%, clamp(-76px, -5.2vw, -46px));
  align-self: end;
  isolation: isolate;
}

.curriculum-hero-art::before,
.curriculum-hero-art::after {
  display: none;
}

.curriculum-hero-art .hero-bg {
 position: absolute;
  z-index: 0;
  right: -32%;
  bottom: -17%;
  width: min(194%, 10325px);
  max-width: none;
  filter: none;
  opacity: 0.98;
}

.curriculum-hero-art .curriculum-hero-person {
 position: absolute;
  z-index: 2;
  right: -13%;
  bottom: -11%;
  width: auto;
  height: min(120%, 1092px);
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(92, 66, 177, 0.12));
}

.hero-facility .hero-grid {
  grid-template-columns: minmax(610px, 1.12fr) minmax(450px, 0.88fr);
  min-height: clamp(520px, 48vw, 690px);
  padding-top: clamp(44px, 4.2vw, 64px);
  padding-bottom: 0;
}

.facility-hero-copy {
  max-width: 650px;
  transform: translateY(clamp(-120px, -8vw, -70px));
}

.hero-facility h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(48px, 4.35vw, 72px);
  line-height: 0.95;
}

.hero-facility h1 span {
  display: block;
  white-space: nowrap;
}

.facility-hero-title-dark {
  color: var(--ink);
}

.facility-hero-title-accent {
  color: var(--purple-2);
}

.hero-facility .lead {
  max-width: 520px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.45;
}

.hero-facility .hero-actions {
  margin-top: 24px;
}

.hero-facility .btn {
  min-height: 36px;
  padding: 0 20px;
  font-size: 13px;
}

.hero-facility .btn.secondary {
  background: var(--white);
}

.facility-hero-art {
  min-height: clamp(430px, 45vw, 665px);
  transform: translate(-3%, clamp(-76px, -5.2vw, -46px));
  align-self: end;
  isolation: isolate;
}

.facility-hero-art::before,
.facility-hero-art::after {
  display: none;
}

.facility-hero-art .hero-bg {
  position: absolute;
  z-index: 0;
  right: -32%;
  bottom: -17%;
  width: min(194%, 10325px);
  max-width: none;
  filter: none;
  opacity: 0.98;
}

.facility-hero-art .facility-hero-person {
  position: absolute;
  z-index: 2;
  right: -13%;
  bottom: -11%;
  width: auto;
  height: min(103%, 1050px);
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(92, 66, 177, 0.12));
}

.hero-contact .hero-grid {
  grid-template-columns: minmax(610px, 1.12fr) minmax(450px, 0.88fr);
  min-height: clamp(520px, 48vw, 690px);
  padding-top: clamp(44px, 4.2vw, 64px);
  padding-bottom: 0;
}

.contact-hero-copy {
  max-width: 610px;
  transform: translateY(clamp(-76px, -5.2vw, -46px));
}

.hero-contact h1 {
  max-width: 650px;
  margin: 18px 0 16px;
  font-size: clamp(54px, 4.9vw, 78px);
  line-height: 0.92;
}

.hero-contact h1 span {
  display: block;
  white-space: nowrap;
}

.contact-hero-title-dark {
  color: var(--ink);
}

.contact-hero-title-accent {
  color: var(--purple-2);
}

.hero-contact .lead {
  max-width: 520px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.45;
}

.hero-contact .hero-actions {
  margin-top: 24px;
}

.hero-contact .btn {
  min-height: 36px;
  padding: 0 20px;
  font-size: 13px;
}

.hero-contact .btn.secondary {
  background: var(--white);
}

.contact-hero-art {
  min-height: clamp(430px, 45vw, 665px);
  transform: translate(-3%, clamp(-76px, -5.2vw, -46px));
  align-self: end;
  isolation: isolate;
}

.contact-hero-art::before,
.contact-hero-art::after {
  display: none;
}

.contact-hero-art .hero-bg {
 position: absolute;
  z-index: 0;
  right: -32%;
  bottom: -17%;
  width: min(194%, 10325px);
  max-width: none;
  filter: none;
  opacity: 0.98;
}

.contact-hero-art .contact-hero-person {
  position: absolute;
  z-index: 2;
  bottom: -11%;
  width: auto;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(92, 66, 177, 0.12));
}

.contact-hero-art .contact-person-left {
  right: 10%;
  height: min(100%, 1092px);
}

.contact-hero-art .contact-person-right {
  right: -10%;
  height: min(104%, 1050px);
}

.hero-career .hero-grid {
  grid-template-columns: minmax(610px, 1.12fr) minmax(450px, 0.88fr);
  min-height: clamp(520px, 48vw, 690px);
  padding-top: clamp(44px, 4.2vw, 64px);
  padding-bottom: 0;
}

.career-hero-copy {
  max-width: 860px;
  transform: translateY(clamp(-76px, -5.2vw, -46px));
}

.hero-career h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(48px, 4.35vw, 72px);
  line-height: 0.95;
}

.hero-career h1 span {
  display: block;
  white-space: nowrap;
}

.career-hero-title-dark {
  color: var(--ink);
}

.career-hero-title-accent {
  color: var(--purple-2);
}

.hero-career .lead {
  max-width: 560px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.45;
}

.hero-career .hero-actions {
  margin-top: 24px;
}

.hero-career .btn {
  min-height: 36px;
  padding: 0 20px;
  font-size: 13px;
}

.hero-career .btn.secondary {
  background: var(--white);
}

.career-hero-art {
  min-height: clamp(430px, 45vw, 665px);
  transform: translate(-3%, clamp(-76px, -5.2vw, -46px));
  align-self: end;
  isolation: isolate;
}

.career-hero-art::before,
.career-hero-art::after {
  display: none;
}

.career-hero-art .hero-bg {
  position: absolute;
  z-index: 0;
  right: -32%;
  bottom: -17%;
  width: min(194%, 10325px);
  max-width: none;
  filter: none;
  opacity: 0.98;
}

.career-hero-art .career-hero-person {
  position: absolute;
  z-index: 2;
  bottom: -11%;
  width: auto;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(92, 66, 177, 0.12));
}

.career-hero-art .career-person-left {
  right: 30%;
  height: min(100%, 1548px);
}

.career-hero-art .career-person-right {
  right: -20%;
  height: min(100%, 1548px);
}

.home-process {
  position: relative;
}

.home-process::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: calc(clamp(170px, 13vw, 224px) + 54px);
  z-index: 0;
  height: 6px;
  background-image: radial-gradient(circle, rgba(75, 61, 153, 0.9) 2.7px, transparent 3px);
  background-repeat: repeat-x;
  background-size: 38px 6px;
}

.home-process .story-step {
  z-index: 1;
}

.home-process .step-number {
  margin: 0 0 18px;
}

.section {
  position: relative;
  padding: clamp(72px, 7.4vw, 122px) 0;
}

.section.soft {
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 217, 92, 0.09), transparent 18%),
    radial-gradient(circle at 92% 20%, rgba(157, 110, 228, 0.1), transparent 20%),
    var(--lavender-2);
}

.section.testimonial-section {
  background: #faf6fd;
}

.home-article-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 217, 92, 0.18), transparent 19%),
    radial-gradient(circle at 10% 18%, rgba(155, 107, 226, 0.11), transparent 20%),
    var(--white);
  padding-top: clamp(66px, 5.4vw, 94px);
  padding-bottom: clamp(66px, 5.2vw, 92px);
}

.home-article-container {
  width: min(100% - 64px, 1280px);
}

.home-article-head {
  max-width: 980px;
  margin-bottom: clamp(30px, 3vw, 46px);
}

.home-article-head h2 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.04;
}

.home-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.home-article-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(143, 99, 220, 0.18);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(92, 66, 177, 0.11);
}

.home-article-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.42 / 1;
  background: var(--lavender);
}

.home-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.home-article-card:hover .home-article-cover img {
  transform: scale(1.04);
}

.home-article-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.home-article-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 2vw, 26px);
}

.home-article-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.14;
}

.home-article-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
}

.home-article-button {
  justify-self: start;
  margin-top: 4px;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(88, 64, 173, 0.18);
}

.article-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  align-items: center;
  overflow: hidden;
  padding: 24px;
  box-sizing: border-box;
}

.article-popup.is-open {
  display: grid;
}

.article-popup-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(27, 20, 55, 0.62);
  backdrop-filter: blur(9px);
}

.article-popup-dialog {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(24, 18, 52, 0.3);
  overscroll-behavior: contain;
  box-sizing: border-box;
}

.article-popup-image {
  display: grid;
  place-items: center;
  min-height: unset;
  max-height: 400px;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: var(--lavender);
  overflow: hidden;
}

.article-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-popup-content {
  min-height: 0;
  overflow: visible;
  padding: clamp(26px, 3vw, 42px);
}

.article-popup-content .eyebrow {
  margin-bottom: 16px;
}

.article-popup-content h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.article-popup-text {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.7;
}

.article-popup-text p {
  margin: 0;
}

.article-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

body.article-popup-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .home-article-container {
    width: min(100% - 36px, 760px);
  }

  .home-article-grid {
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px calc((100% - 82%) / 2) 14px;
    scroll-padding-inline: calc((100% - 82%) / 2);
  }

  .home-article-card {
    scroll-snap-align: center;
  }

  .article-popup-dialog {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
    max-height: 90vh;
  }

  .article-popup-image {
    min-height: unset;
    max-height: 300px;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .home-article-section {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .home-article-head h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .home-article-grid {
    grid-auto-columns: 88%;
    padding: 4px calc((100% - 88%) / 2) 14px;
    scroll-padding-inline: calc((100% - 88%) / 2);
  }

  .article-popup {
    padding: 18px 14px;
  }

  .article-popup-dialog {
    max-height: 90dvh;
    border-radius: 24px;
  }

  .article-popup-content {
    padding: 24px 20px;
  }
}

.section:has(+ .section.cta) {
  padding-bottom: clamp(16px, 2.1vw, 32px);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.large-section-head {
  max-width: 1120px;
}

.large-section-head h2 {
  font-size: clamp(44px, 4.3vw, 68px);
  line-height: 1.04;
}

.large-section-head .lead {
  max-width: 760px;
  margin-inline: auto;
}

.process-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(68px, 5.2vw, 92px);
  padding-bottom: clamp(66px, 5vw, 90px);
}

.process-container {
  width: min(100% - 96px, 1280px);
}

.process-section .section-head {
  max-width: 980px;
  margin-bottom: clamp(28px, 2.5vw, 42px);
}

.process-section .section-head h2 {
  font-size: clamp(40px, 3.6vw, 64px);
  line-height: 1.04;
}

.process-section .large-section-head h2 {
  font-size: clamp(44px, 4.3vw, 68px);
}

.process-section .section-head .lead {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.04fr) minmax(0, 0.96fr);
}

.visual-card {
  position: relative;
}

.visual-card img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(var(--shadow));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.visual-card:hover img {
  transform: translateY(-4px);
  filter: drop-shadow(0 24px 58px rgba(92, 66, 177, 0.17));
}

.text-stack p {
  max-width: 650px;
  color: var(--muted);
}

.service-problem-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(48px, 5vw, 76px);
  padding-bottom: clamp(42px, 4.6vw, 66px);
}

.service-problem-layout {
  display: grid;
  grid-template-columns: minmax(560px, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 4.2vw, 58px);
}

.service-problem-copy {
  position: relative;
  z-index: 2;
}

.service-problem-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px 0 12px;
  border-radius: 999px;
  color: var(--purple);
  background: #f0e8ff;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
}

.service-problem-badge::before {
  content: "i";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--purple);
  background: #ffd95a;
  font-size: clamp(16px, 1.5vw, 17px);
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.service-problem-copy h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 24px 0 42px;
  color: var(--ink);
  font-size: clamp(30px, 2.25vw, 38px);
  line-height: 1.06;
  letter-spacing: 0;
}

.service-problem-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.service-problem-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.service-problem-line {
  position: absolute;
  left: 0;
  bottom: -24px;
  z-index: -1;
  width: clamp(170px, 15vw, 244px);
  height: auto;
  pointer-events: none;
}

.service-problem-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.04vw, 17px);
  line-height: 1.38;
  text-align: justify;
}

.service-problem-copy .section-actions {
  justify-content: flex-start;
  margin-top: clamp(30px, 3.3vw, 48px);
}

.service-problem-btn {
  min-height: 52px;
  padding: 0 34px;
  border-radius: 999px;
}

.service-problem-btn::after {
  content: " \2192";
  margin-left: 8px;
}

.service-problem-visual {
  position: relative;
  min-height: clamp(280px, 31vw, 430px);
}

.service-problem-visual img {
  position: absolute;
  top: 50%;
  right: max(-10px, -1.4vw);
  width: min(100%, 650px);
  max-height: clamp(280px, 31vw, 430px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 44px rgba(92, 66, 177, 0.11));
}

.service-list-section {
  overflow: hidden;
  background: #fbf7ff;
  padding-top: clamp(58px, 5.5vw, 92px);
  padding-bottom: clamp(52px, 5vw, 82px);
}

.service-list-container {
  width: min(100% - 64px, 1320px);
}

.service-list-head {
  max-width: 960px;
  margin: 0 auto clamp(36px, 3.4vw, 54px);
}

.service-list-head .eyebrow {
  min-height: 40px;
  margin-bottom: 22px;
  padding-inline: 24px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(16px, 1.5vw, 17px);
}

.service-list-head h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(42px, 3.65vw, 58px);
  line-height: 1.03;
  text-align: center;
}

.service-list-head h2 span {
  display: block;
  color: var(--ink);
}

.service-list-head h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.service-list-head .lead {
  max-width: 660px;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.34;
  text-align: center;
}

.service-list-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.58fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(26px, 2.8vw, 42px);
}

.service-list-image {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1.35 / 1;
  border-radius: 40px;
  box-shadow: 0 22px 54px rgba(92, 66, 177, 0.12);
}

.service-list-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-list-image span {
  position: absolute;
  left: 32px;
  top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
}

.service-list-board {
  box-sizing: border-box;
  display: grid;
  align-content: start;
  gap: 10px;
  transform: none;
}

.service-list-title {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
  text-align: center;
}

.service-list-active {
  position: relative;
  border-radius: 7px;
  color: var(--white);
  background: transparent;
}

.service-list-active::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: 8px;
  height: 23px;
  border-radius: 999px;
  background: var(--purple);
}

.service-list-active h3 {
  overflow: hidden;
  margin: 0 0 0 28px;
  min-height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple-2);
  border-radius: 7px 7px 0 0;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
  text-align: center;
}

.service-list-content {
  border-radius: 12px 0 12px 12px;
  background: var(--purple);
  padding: clamp(20px, 1.7vw, 28px);
}

.service-list-content p,
.service-list-content li {
  color: var(--white);
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.55;
}

.service-list-content p {
  margin: 0 0 16px;
}

.service-list-content strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: clamp(13px, 0.86vw, 15px);
  font-weight: 900;
}

.service-list-content ul {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding-left: 18px;
}

.service-list-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: var(--white);
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 900;
}

.service-list-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--purple-2);
  font: inherit;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.service-list-row:hover,
.service-list-row:focus-visible {
  background: var(--purple);
  box-shadow: 0 12px 26px rgba(92, 66, 177, 0.16);
  transform: translateX(2px);
}

.service-list-row span {
  font-size: 19px;
  line-height: 1;
}

.service-uncertain-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(54px, 4.8vw, 78px);
  padding-bottom: clamp(56px, 5vw, 82px);
}

.service-uncertain-layout {
  display: grid;
  grid-template-columns: minmax(500px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(68px, 6.6vw, 112px);
}

.service-uncertain-visual img {
  width: min(112%, 675px);
  max-width: none;
  display: block;
  margin-left: -26px;
  filter: drop-shadow(0 24px 48px rgba(92, 66, 177, 0.14));
}

.service-uncertain-copy {
  max-width: 720px;
}

.service-uncertain-eyebrow {
  min-height: 40px;
  margin-bottom: 34px;
  padding: 0 28px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 14px 30px rgba(92, 66, 177, 0.18);
}

.service-uncertain-eyebrow::before {
  width: 25px;
  height: 25px;
  background-image: url("assets/images/Layer_2.webp");
  background-size: contain;
  background-color: transparent;
}

.service-uncertain-copy h2 {
  position: relative;
  margin: 0 0 50px;
  color: var(--ink);
  font-size: clamp(34px, 2.55vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-uncertain-copy h2::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -30px;
  width: clamp(170px, 13vw, 250px);
  height: 18px;
  background: url("assets/images/Line 4.webp") center / contain no-repeat;
  pointer-events: none;
}

.service-uncertain-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.service-uncertain-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.service-uncertain-copy p {
  max-width: 700px;
  margin: 0 0 28px;
  color: #272133;
  font-size: clamp(16px, 1.02vw, 18px);
  line-height: 1.45;
  text-align: justify;
}

.service-uncertain-list {
  display: grid;
  gap: 5px;
  margin: 0 0 36px;
  padding-left: 18px;
  color: #272133;
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.32;
}

.service-uncertain-btn {
  position: relative;
  display: inline-flex;
  min-height: 43px;
  padding: 0 55px 0 26px;
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(92, 66, 177, 0.22);
  font-size: clamp(13px, 0.84vw, 14px);
  line-height: 1;
}

.service-uncertain-copy .service-uncertain-btn.btn.light {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

.service-uncertain-copy .service-uncertain-btn.btn.light::before,
.service-uncertain-copy .service-uncertain-btn.btn.light::after {
  display: none;
}

.service-uncertain-btn .cta-wa-icon {
  right: -29px;
  width: 66px;
  height: 66px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.service-uncertain-btn .cta-wa-icon svg {
  width: 50px;
  height: 50px;
}

.service-uncertain-btn .cta-wa-icon img {
  width: 66px;
  height: 66px;
  display: block;
  object-fit: contain;
}

.service-focus-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(58px, 5vw, 84px);
  padding-bottom: clamp(56px, 4.8vw, 82px);
}

.service-focus-layout {
  display: grid;
  grid-template-columns: minmax(560px, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: clamp(86px, 7.4vw, 132px);
}

.service-focus-copy {
  max-width: 720px;
}

.service-focus-eyebrow {
  min-height: 40px;
  margin-bottom: 34px;
  padding: 0 28px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 14px 30px rgba(92, 66, 177, 0.18);
}

.service-focus-eyebrow::before {
  width: 25px;
  height: 25px;
  background-image: url("assets/images/Layer_2.webp");
  background-size: contain;
  background-color: transparent;
}

.service-focus-copy h2 {
  position: relative;
  margin: 0 0 48px;
  color: var(--ink);
  font-size: clamp(34px, 2.6vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.service-focus-copy h2::after {
  content: "";
  position: absolute;
  left: 24%;
  bottom: -26px;
  width: clamp(150px, 12vw, 230px);
  height: 17px;
  background: url("assets/images/Line 4.webp") center / contain no-repeat;
  pointer-events: none;
}

.service-focus-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.service-focus-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.service-focus-copy p {
  max-width: 660px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(16px, 0.98vw, 18px);
  line-height: 1.45;
  text-align: justify;
}

.service-focus-list {
  display: grid;
  gap: 7px;
  max-width: 610px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: clamp(14px, 0.88vw, 16px);
  line-height: 1.32;
  list-style: none;
}

.service-focus-list li::before {
  content: "\2022";
  margin-right: 2px;
}

.service-focus-btn {
  min-height: 52px;
  padding-inline: 34px;
  border-radius: 999px;
  font-size: clamp(13px, 0.9vw, 15px);
}

.service-focus-visual img {
  width: min(112%, 720px);
  max-width: none;
  display: block;
  margin-left: auto;
  margin-right: -82px;
  filter: drop-shadow(0 24px 48px rgba(92, 66, 177, 0.14));
}

.service-choice-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(62px, 5vw, 88px);
  padding-bottom: clamp(58px, 4.8vw, 82px);
}

.service-choice-layout {
  display: grid;
  width: min(100% - 88px, 1320px);
  grid-template-columns: minmax(540px, 0.95fr) minmax(560px, 1.05fr);
  align-items: center;
  gap: clamp(46px, 4.6vw, 76px);
}

.service-choice-visual img {
  width: min(114%, 720px);
  max-width: none;
  display: block;
  margin-left: -36px;
  filter: drop-shadow(0 22px 48px rgba(92, 66, 177, 0.13));
}

.service-choice-copy {
  max-width: 700px;
}

.service-choice-copy .eyebrow {
  margin-bottom: 20px;
  min-height: 30px;
  padding-inline: 18px;
  font-size: clamp(11px, 0.76vw, 13px);
}

.service-choice-copy h2 {
  position: relative;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(34px, 2.72vw, 50px);
  line-height: 0.98;
  letter-spacing: 0;
}

.service-choice-copy h2::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 54%;
  width: clamp(132px, 10.4vw, 188px);
  height: 15px;
  background: url("assets/images/Line 4.webp") center / contain no-repeat;
  pointer-events: none;
}

.service-choice-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.service-choice-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.service-choice-copy p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(16px, 1.02vw, 18px);
  line-height: 1.45;
  text-align: justify;
}

.service-choice-copy .section-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
}

.service-choice-copy .btn {
  min-height: 48px;
  width: auto;
  min-width: 0;
  padding-inline: 28px;
  border-radius: 999px;
  font-size: clamp(13px, 0.86vw, 15px);
  white-space: nowrap;
}

.service-choice-copy .btn.secondary {
  color: var(--purple);
  border-color: var(--purple);
  background: var(--white);
}

.about-understand-section {
  padding-top: clamp(54px, 5vw, 78px);
  padding-bottom: clamp(52px, 4.8vw, 76px);
  background: var(--white);
}

.about-understand-layout {
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 5.2vw, 86px);
}

.about-understand-copy {
  max-width: 690px;
}

.about-understand-eyebrow {
  margin-bottom: 20px;
}

.about-understand-copy h2 {
  position: relative;
  margin: 0 0 40px;
  color: var(--ink);
  font-size: clamp(32px, 2.45vw, 44px);
  line-height: 1.03;
  letter-spacing: 0;
}

.about-understand-copy h2::after {
  content: "";
  position: absolute;
  left: 38%;
  bottom: -24px;
  width: clamp(160px, 13vw, 250px);
  height: 17px;
  background: url("assets/images/Line 4.webp") center / contain no-repeat;
  pointer-events: none;
}

.about-understand-copy .understand-title-line {
  display: block;
  color: var(--ink);
  white-space: normal;
}

.about-understand-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.about-understand-copy p {
  max-width: 660px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.44;
  text-align: justify;
}

.about-understand-copy p:last-child {
  margin-bottom: 0;
}

.about-understand-visual img {
  width: min(105%, 720px);
  max-width: none;
  display: block;
  margin-left: auto;
  margin-right: -24px;
  filter: drop-shadow(0 24px 48px rgba(92, 66, 177, 0.12));
}

.about-focus-section {
  padding-top: clamp(52px, 5.4vw, 84px);
  padding-bottom: clamp(54px, 5.7vw, 88px);
  background: #fbf7ff;
}

.about-focus-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(50px, 5.6vw, 92px);
}

.about-focus-visual img {
  width: min(100%, 560px);
  max-width: none;
  display: block;
  margin-left: -24px;
  filter: drop-shadow(0 24px 48px rgba(92, 66, 177, 0.12));
}

.about-focus-copy {
  max-width: 810px;
}

.focus-eyebrow {
  margin-bottom: 18px;
}

.about-focus-copy h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(38px, 3.05vw, 54px);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-focus-copy .focus-title-line {
  display: block;
  white-space: normal;
}

.about-focus-copy h2 span {
  color: var(--ink);
}

.about-focus-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.about-focus-copy p {
  max-width: 790px;
  margin: 0 0 28px;
  color: #282435;
  font-size: clamp(16px, 1.03vw, 18px);
  line-height: 1.48;
  text-align: justify;
}

.about-focus-copy h3 {
  margin: 0 0 26px;
  color: #111026;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.25;
  font-weight: 700;
}

.about-focus-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: clamp(14px, 0.94vw, 16px);
  line-height: 1.48;
}

.about-focus-copy li {
  margin: 0;
}

.about-label-section {
  padding-top: clamp(56px, 5.2vw, 86px);
  padding-bottom: clamp(58px, 5.5vw, 92px);
  background: var(--white);
}

.about-label-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 5.2vw, 86px);
}

.about-label-visual img {
  width: min(108%, 650px);
  max-width: none;
  display: block;
  margin-left: -34px;
  filter: drop-shadow(0 24px 48px rgba(92, 66, 177, 0.12));
}

.about-label-copy {
  max-width: 760px;
}

.about-label-copy .eyebrow {
  margin-bottom: 22px;
}

.about-label-copy h2 {
  position: relative;
  margin: 0 0 42px;
  color: var(--ink);
  font-size: clamp(34px, 2.45vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-label-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  width: clamp(150px, 12vw, 220px);
  height: 16px;
  background: url("assets/images/Line 4.webp") center / contain no-repeat;
  pointer-events: none;
}

.about-label-copy .label-title-line {
  display: block;
  color: var(--ink);
  white-space: normal;
}

.about-label-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.about-label-copy p {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.46;
  text-align: justify;
}

.about-label-copy p:last-child {
  margin-bottom: 0;
}

.about-approach-section {
  padding-top: clamp(76px, 6.5vw, 108px);
  padding-bottom: clamp(72px, 6vw, 104px);
  background: #fbf7ff;
}

.about-approach-layout {
  display: grid;
  grid-template-columns: minmax(680px, 1.08fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(116px, 8vw, 158px);
}

.about-approach-copy {
  max-width: 1060px;
}

.approach-eyebrow {
  margin-bottom: 26px;
  padding: 9px 19px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 13px 28px rgba(92, 66, 177, 0.18);
  font-size: clamp(13px, 0.95vw, 16px);
}

.approach-eyebrow::before {
  content: "\1F465";
  width: auto;
  height: auto;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.about-approach-copy h2 {
  max-width: 1040px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(36px, 3.05vw, 52px);
  line-height: 1.08;
}

.about-approach-copy .approach-title-line {
  display: block;
  color: var(--ink);
  white-space: normal;
}

.about-approach-copy h2 em {
  position: relative;
  display: inline-block;
  color: inherit;
  font-style: normal;
}

.about-approach-copy h2 em::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -11px;
  z-index: -1;
  width: 112%;
  height: 18px;
  background: url("assets/images/Line 4.webp") center / contain no-repeat;
  pointer-events: none;
}

.about-approach-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.about-approach-copy > p {
  max-width: 700px;
  margin: 0 0 28px;
  color: #38324c;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.56;
}

.approach-list {
  display: grid;
  gap: clamp(16px, 1.35vw, 22px);
}

.approach-list article h3 {
  margin: 0 0 5px;
  color: #151026;
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.28;
  font-weight: 700;
}

.approach-list article p {
  max-width: 700px;
  margin: 0;
  color: #363142;
  font-size: clamp(15px, 0.94vw, 17px);
  line-height: 1.5;
}

.about-approach-section .section-actions {
  margin-top: clamp(26px, 2.2vw, 34px);
}

.approach-btn {
  min-height: 52px;
  padding-inline: 30px;
  font-size: clamp(16px, 1.5vw, 17px);
}

.about-approach-visual img {
  width: min(145%, 980px);
  max-width: none;
  display: block;
  margin-left: -45;
  transform: translateX(38px);
  filter: drop-shadow(0 24px 48px rgba(92, 66, 177, 0.14));
}

.about-approach-photo {
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 2.8vw, 44px);
  background: #f1e9ff;
  box-shadow: 0 24px 48px rgba(92, 66, 177, 0.14);
}

.about-approach-photo img {
  width: 100%;
  max-width: none;
  aspect-ratio: 1.04 / 1;
  object-fit: cover;
  object-position: 42% center;
  margin: 0;
  transform: none;
  filter: none;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 5.4vw, 84px) 0 clamp(46px, 4.8vw, 72px);
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
}

.about-copy {
  position: relative;
  z-index: 2;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 22px 0 10px;
  border-radius: 999px;
  color: var(--purple);
  background: #f0e8ff;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 900;
}

.about-badge img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.about-copy h2 {
  position: relative;
  width: fit-content;
  margin: 22px 0 42px;
  color: var(--ink);
  font-size: clamp(32px, 2.75vw, 44px);
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-copy h2 span {
  color: var(--purple-2);
}

.about-line {
  position: absolute;
  left: 0;
  bottom: -26px;
  z-index: -1;
  width: clamp(150px, 13vw, 215px);
  height: auto;
  pointer-events: none;
}

.about-copy p {
  max-width: 670px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.38;
  text-align: justify;
}

.about-copy .section-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 18px 34px rgba(92, 66, 177, 0.2);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 900;
}

.about-btn span {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1;
}

.about-visual {
  position: relative;
  min-height: clamp(300px, 29vw, 410px);
}

.about-visual img {
  position: absolute;
  right: -1%;
  top: 50%;
  width: min(100%, 710px);
  max-height: clamp(300px, 29vw, 410px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 44px rgba(92, 66, 177, 0.11));
}

.problem-section {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 5vw, 76px) 0 clamp(42px, 4.7vw, 70px);
  background: var(--white);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(440px, 0.98fr) minmax(430px, 1.02fr);
  align-items: center;
  gap: clamp(34px, 5.4vw, 78px);
}

.problem-visual {
  position: relative;
  min-height: clamp(270px, 27vw, 388px);
}

.problem-visual img {
  position: absolute;
  left: max(-8px, -1vw);
  top: 50%;
  width: min(100%, 575px);
  max-height: clamp(268px, 27vw, 388px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 42px rgba(92, 66, 177, 0.1));
}

.problem-copy {
  position: relative;
  z-index: 2;
}

.problem-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 20px 0 9px;
  border-radius: 999px;
  color: var(--purple);
  background: #f0e8ff;
  font-size: clamp(15px, 1.3vw, 16px);
  font-weight: 900;
}

.problem-badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.problem-copy h2 {
  position: relative;
  max-width: 700px;
  margin: 22px 0 36px;
  color: var(--ink);
  font-size: clamp(26px, 2.05vw, 34px);
  line-height: 1.02;
  letter-spacing: 0;
}

.problem-copy h2 span {
  display: block;
  color: var(--ink);
}

.problem-copy h2 span:first-child {
  white-space: nowrap;
}

.problem-copy h2 strong {
  color: var(--purple-2);
  font-weight: 900;
}

.problem-line {
  position: absolute;
  left: 0;
  bottom: -22px;
  z-index: -1;
  width: clamp(142px, 13vw, 210px);
  height: auto;
  transform: translateX(-1%);
  pointer-events: none;
}

.problem-copy p {
  max-width: 650px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.56;
  text-align: justify;
}

.consult-section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5.2vw, 78px) 0 clamp(44px, 4.6vw, 68px);
  background:
    radial-gradient(circle at 12% 26%, rgba(255, 217, 92, 0.08), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(157, 110, 228, 0.16), transparent 28%),
    #faf7ff;
}

.consult-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
}

.consult-copy {
  position: relative;
  z-index: 2;
}

.consult-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 0 22px 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 14px 28px rgba(92, 66, 177, 0.18);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 900;
}

.consult-badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.consult-copy h2 {
  position: relative;
  max-width: 780px;
  margin: 26px 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 2.45vw, 42px);
  line-height: 1.05;
}

.consult-title-main,
.consult-title-accent {
  display: block;
}

.consult-title-main {
  color: var(--ink);
  white-space: nowrap;
}

.consult-title-accent {
  position: relative;
  width: fit-content;
  color: var(--purple-2);
}

.consult-line {
  position: absolute;
  left: calc(100% + 32px);
  top: 48%;
  z-index: -1;
  width: clamp(132px, 11vw, 184px);
  height: auto;
  transform: translateY(-44%);
  pointer-events: none;
}

.consult-copy p {
  max-width: 690px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.58;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 18px 34px rgba(92, 66, 177, 0.2);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 900;
}

.consult-btn span {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1;
}

.consult-visual {
  position: relative;
  min-height: clamp(300px, 29vw, 408px);
}

.consult-visual img {
  position: absolute;
  right: -1%;
  bottom: -1%;
  width: min(100%, 720px);
  max-height: clamp(300px, 30vw, 410px);
  object-fit: contain;
  filter: drop-shadow(0 20px 42px rgba(92, 66, 177, 0.13));
}

.services-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 36px;
}

.services-section {
  padding: clamp(60px, 5.6vw, 86px) 0 clamp(58px, 5.2vw, 82px);
  background: #fbf7ff;
}

.services-head {
  max-width: 1000px;
  margin-bottom: clamp(38px, 4vw, 58px);
}

.services-head .eyebrow {
  min-height: 42px;
  padding: 0 25px;
  color: var(--white);
  background: var(--purple);
  box-shadow: none;
  font-size: clamp(16px, 1.5vw, 18px);
}

.services-head .eyebrow::before {
  content: "\2605";
  width: auto;
  height: auto;
  color: #ff9b37;
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.services-head h2 {
  margin-top: 18px;
  font-size: clamp(44px, 4.3vw, 68px);
  line-height: 1.02;
}

.services-head .lead {
  max-width: 690px;
  margin: 14px auto 0;
  color: var(--ink);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.38;
}

.services-section .services-panel {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.44fr);
  gap: clamp(26px, 3vw, 40px);
  align-items: center;
  margin-top: 0;
}

.services-section .service-tabs {
  position: relative;
  display: grid;
  gap: 11px;
}

.services-section .service-tabs::before {
  content: "Pilihan Layanan untuk Kebutuhan Anak";
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-bottom: 4px;
  border-radius: 14px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 900;
  text-align: center;
}

.services-section .service-pill {
  position: relative;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple-2);
  font-family: inherit;
  font-size: clamp(15px, 1.3vw, 16px);
  font-weight: 800;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.services-section .service-pill.is-active {
  background: var(--purple-2);
}

.services-section .service-pill:hover,
.services-section .service-pill:focus-visible {
  transform: translateY(-1px);
  background: var(--purple);
  outline: none;
}

.services-section .service-pill.is-active::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 10px;
  height: 42px;
  border-radius: 999px;
  background: var(--purple);
  transform: translateY(-50%);
}

.services-section .info-box {
  position: relative;
  min-height: 292px;
  padding: clamp(40px, 3.8vw, 54px) clamp(54px, 5vw, 76px);
  border: 2px solid var(--purple);
  border-radius: 44px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.services-section .info-box h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}

.services-section .info-box p,
.services-section .info-box li {
  color: var(--ink);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.22;
}

.services-section .info-box p {
  max-width: 690px;
  margin: 0;
}

.services-section .info-box ul {
  margin: 26px 0 26px;
  padding-left: 0;
  list-style: none;
}

.services-section .info-box ul::before {
  content: "Cocok untuk :";
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.services-section .info-box li {
  margin: 0;
}

.services-section .info-box li::before {
  content: "\2022 ";
}

.services-section .info-box .section-actions {
  position: absolute;
  right: 42px;
  bottom: -27px;
  margin: 0;
}

.curriculum-list-section {
  padding: clamp(54px, 7vw, 92px) 0 clamp(64px, 8vw, 108px);
  background: #fbf8ff;
}

.curriculum-list-head {
  margin-bottom: clamp(36px, 4vw, 50px);
}

.curriculum-list-head .eyebrow {
  min-height: 42px;
  padding: 0 24px;
  color: var(--white);
  background: var(--purple);
  box-shadow: none;
  font-size: clamp(16px, 1.5vw, 18px);
}

.curriculum-list-head .eyebrow::before {
  content: "\2605";
  width: auto;
  height: auto;
  color: #ff9b37;
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.curriculum-list-head h2 {
  margin-top: 18px;
  color: #211b46;
  font-size: clamp(42px, 3.95vw, 60px);
  font-weight: 700;
  line-height: 1.03;
}

.curriculum-list-head .lead {
  max-width: 770px;
  margin: 14px auto 0;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.38;
}

.curriculum-list-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.38fr);
  gap: clamp(26px, 3vw, 40px);
  align-items: stretch;
  width: min(100%, 1010px);
  margin: 0 auto;
}

.curriculum-list-tabs {
  position: relative;
  display: grid;
  align-self: start;
  gap: 10px;
}

.curriculum-list-tabs::before {
  content: "Pilihan Program Curriculum";
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-bottom: 4px;
  border-radius: 14px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 900;
  text-align: center;
}

.curriculum-list-tab {
  position: relative;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple-2);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.curriculum-list-tab.is-active {
  background: var(--purple-2);
}

.curriculum-list-tab:hover,
.curriculum-list-tab:focus-visible {
  transform: translateY(-1px);
  background: var(--purple);
  outline: none;
}

.curriculum-list-tab.is-active::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 10px;
  height: 42px;
  border-radius: 999px;
  background: var(--purple);
  transform: translateY(-50%);
}

.curriculum-list-detail {
  position: relative;
  min-height: 440px;
  padding: clamp(46px, 4.4vw, 66px) clamp(50px, 5vw, 72px);
  border: 2px solid var(--purple);
  border-radius: 44px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.curriculum-list-detail h3 {
  margin: 0 0 30px;
  color: var(--purple);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.08;
}

.curriculum-list-detail p,
.curriculum-list-detail li {
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.23;
}

.curriculum-list-detail p {
  max-width: 720px;
  margin: 0 0 22px;
}

.curriculum-list-detail .curriculum-focus-label {
  margin: 30px 0 10px;
}

.curriculum-list-detail ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.curriculum-list-detail li::before {
  content: "\2022 ";
}

.curriculum-list-detail .section-actions {
  margin-top: auto;
  align-self: flex-end;
}

.curriculum-list-detail .btn {
  min-height: 42px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: clamp(15px, 1.3vw, 16px);
}

.services-section .info-box .btn {
  min-height: 54px;
  padding: 0 31px;
  border-radius: 999px;
  font-size: clamp(16px, 1.5vw, 17px);
  box-shadow: none;
}

.services-section .info-box .btn span {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1;
}

.services-panel.revised {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.services-panel.frame-like {
  grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
}

.service-board {
  display: grid;
  gap: 10px;
}

.service-board-title {
  display: block;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(15px, 1.3vw, 16px);
  font-weight: 900;
  text-align: center;
}

.service-option {
  display: block;
  padding: 13px 18px;
  border-radius: 9px;
  color: var(--white);
  background: var(--purple-2);
  font-size: clamp(15px, 1.3vw, 16px);
  font-weight: 900;
  text-align: center;
}

.service-option.is-active {
  background: var(--purple);
}

.service-detail {
  margin-top: 4px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 16px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 18px 42px rgba(92, 66, 177, 0.2);
}

.service-detail p,
.service-detail li {
  color: #efe9ff;
}

.frame-tabs {
  display: grid;
  gap: 11px;
}

.frame-tab-title,
.frame-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.frame-tab {
  background: var(--purple-2);
}

.frame-tab.is-active {
  background: var(--purple);
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.story-step {
  position: relative;
  text-align: center;
}

.story-step img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}

.story-step strong {
  display: block;
  color: var(--purple);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-step p {
  max-width: 220px;
  margin: 6px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 17px);
  line-height: 1.45;
}

.home-process.story-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 36px);
  margin-top: clamp(26px, 2.4vw, 38px);
}

.home-process .story-step {
  text-align: left;
}

.home-process .story-step img {
  height: clamp(170px, 13vw, 224px);
  margin-bottom: 28px;
  object-position: center bottom;
}

.home-process .step-number {
  position: relative;
  z-index: 2;
  width: clamp(42px, 2.7vw, 50px);
  height: clamp(42px, 2.7vw, 50px);
  color: var(--white);
  background: var(--purple-2);
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1;
  box-shadow: 0 0 0 9px var(--white);
}

.home-process .story-step strong {
  max-width: 260px;
  color: var(--purple);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.2;
  letter-spacing: 0;
}

.home-process .story-step p {
  max-width: 280px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.5;
}

.contact-info-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 8% 8%, rgba(255, 217, 92, 0.16) 0%, rgba(255, 217, 92, 0) 28%),
    radial-gradient(ellipse at 92% 12%, rgba(157, 110, 228, 0.18) 0%, rgba(157, 110, 228, 0) 30%),
    radial-gradient(ellipse at 50% 96%, rgba(88, 64, 173, 0.12) 0%, rgba(88, 64, 173, 0) 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 240, 255, 0.96) 50%, rgba(255, 255, 255, 0.86) 100%),
    #fbf7ff;
}

.contact-info-section::before,
.contact-info-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.contact-info-section::before {
  left: max(22px, 7vw);
  top: 92px;
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 1;
  border-radius: 42% 58% 66% 34% / 42% 38% 62% 58%;
  background:
    radial-gradient(circle at 32% 34%, rgba(255, 255, 255, 0.86) 0 3px, transparent 4px),
    radial-gradient(circle at 56% 62%, rgba(255, 217, 92, 0.82) 0 5px, transparent 6px),
    linear-gradient(135deg, rgba(157, 110, 228, 0.12), rgba(255, 255, 255, 0));
  box-shadow: 0 24px 80px rgba(88, 64, 173, 0.08);
  opacity: 0.72;
  transform: rotate(-12deg);
}

.contact-info-section::after {
  right: max(26px, 8vw);
  bottom: 72px;
  width: clamp(170px, 20vw, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(157, 110, 228, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 217, 92, 0.72) 0 5px, transparent 6px),
    radial-gradient(circle at 24% 78%, rgba(157, 110, 228, 0.38) 0 7px, transparent 8px),
    radial-gradient(circle, rgba(255, 255, 255, 0) 56%, rgba(157, 110, 228, 0.11) 57%, rgba(157, 110, 228, 0.11) 59%, transparent 60%);
  opacity: 0.62;
}

.contact-info-container {
  position: relative;
  z-index: 1;
}

.contact-info-head h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 3.4vw, 58px);
}

.contact-info-head h2::after {
  content: "";
  display: block;
  width: clamp(132px, 11vw, 178px);
  height: 16px;
  margin: 2px auto 0;
  background: url("assets/images/Line 4.webp") center / contain no-repeat;
}

.contact-info-head .lead {
  max-width: 600px;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.38;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(30px, 3vw, 42px);
  align-items: stretch;
  margin-top: clamp(34px, 3vw, 48px);
}

.contact-prep-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(52px, 5.1vw, 78px);
  padding-bottom: clamp(46px, 4.8vw, 72px);
}

.contact-prep-layout {
  display: grid;
  grid-template-columns: minmax(580px, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: clamp(32px, 4.4vw, 68px);
}

.contact-prep-copy {
  position: relative;
  z-index: 2;
}

.contact-prep-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 14px 28px rgba(92, 66, 177, 0.16);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
}

.contact-prep-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-prep-copy h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 32px 0 46px;
  color: var(--ink);
  font-size: clamp(30px, 2.16vw, 36px);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-prep-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.contact-prep-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.contact-prep-line {
  position: absolute;
  left: 46%;
  bottom: -25px;
  z-index: -1;
  width: clamp(170px, 15vw, 250px);
  height: auto;
  transform: translateX(-18%);
  pointer-events: none;
}

.contact-prep-copy p,
.contact-prep-list {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(13px, 0.94vw, 15px);
  line-height: 1.43;
}

.contact-prep-copy p {
  margin: 0;
  text-align: justify;
}

.contact-prep-list {
  margin: 6px 0 28px;
  padding-left: 20px;
  list-style: disc;
}

.contact-prep-list li {
  margin-bottom: 8px;
}

.contact-prep-note {
  margin-top: 28px !important;
}

.contact-prep-note strong {
  color: #111;
  font-weight: 900;
}

.contact-prep-visual {
  position: relative;
  min-height: clamp(320px, 34vw, 500px);
}

.contact-prep-visual img {
  position: absolute;
  right: max(-10px, -1vw);
  top: 50%;
  width: min(100%, 620px);
  max-height: clamp(320px, 34vw, 500px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 42px rgba(92, 66, 177, 0.12));
}

.career-work-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(46px, 4.1vw, 64px);
  padding-bottom: clamp(46px, 4.2vw, 68px);
}

.career-work-layout {
  display: grid;
  grid-template-columns: minmax(480px, 0.96fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
}

.career-work-copy {
  position: relative;
  z-index: 2;
}

.career-work-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 5px 21px 5px 10px;
  border-radius: 999px;
  background: #f0e9ff;
  color: var(--purple);
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(92, 66, 177, 0.08);
}

.career-work-badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.career-work-copy h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 24px 0 38px;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

.career-work-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.career-work-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.career-work-line {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: clamp(160px, 17vw, 280px);
  height: auto;
  pointer-events: none;
}

.career-work-copy p {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.45;
  text-align: justify;
}

.career-work-visual {
  position: relative;
  min-height: clamp(260px, 27vw, 410px);
}

.career-work-visual img {
  position: absolute;
  right: max(-8px, -0.6vw);
  top: 50%;
  width: min(100%, 680px);
  max-height: clamp(260px, 29vw, 420px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 42px rgba(92, 66, 177, 0.12));
}

.curriculum-program-section {
  overflow: hidden;
  padding-top: clamp(58px, 5.4vw, 86px);
  padding-bottom: clamp(54px, 5.2vw, 82px);
  background: var(--white);
}

.curriculum-program-layout {
  display: grid;
  grid-template-columns: minmax(500px, 0.98fr) minmax(520px, 1.02fr);
  align-items: center;
  gap: clamp(42px, 5.6vw, 84px);
}

.curriculum-program-copy {
  position: relative;
  z-index: 2;
}

.curriculum-program-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px 0 12px;
  border-radius: 999px;
  color: var(--purple);
  background: #f0e8ff;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
}

.curriculum-program-badge::before {
  content: "i";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--purple);
  background: #ffd95a;
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 1.5vw, 17px);
  font-weight: 900;
}

.curriculum-program-copy h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 24px 0 42px;
  color: var(--ink);
  font-size: clamp(28px, 2.32vw, 42px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.curriculum-program-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.curriculum-program-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.curriculum-program-line {
  position: absolute;
  left: 0;
  bottom: -24px;
  z-index: -1;
  width: clamp(175px, 15vw, 244px);
  height: auto;
  pointer-events: none;
}

.curriculum-program-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(15px, 1.04vw, 17px);
  line-height: 1.38;
  text-align: justify;
}

.curriculum-program-copy p:last-child {
  margin-bottom: 0;
}

.curriculum-program-copy p strong {
  color: var(--ink);
  font-weight: 900;
}

.curriculum-program-visual {
  position: relative;
  min-height: clamp(282px, 30vw, 420px);
}

.curriculum-program-visual img {
  position: absolute;
  top: 50%;
  right: max(-10px, -1vw);
  width: min(100%, 650px);
  max-height: clamp(282px, 30vw, 420px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 44px rgba(92, 66, 177, 0.1));
}

.curriculum-audience-section {
  overflow: hidden;
  padding-top: clamp(62px, 5.8vw, 92px);
  padding-bottom: clamp(60px, 5.6vw, 90px);
  background: #fbf7ff;
}

.curriculum-audience-layout {
  display: grid;
  grid-template-columns: minmax(480px, 0.98fr) minmax(500px, 1.02fr);
  align-items: center;
  gap: clamp(58px, 7vw, 108px);
}

.curriculum-audience-visual {
  position: relative;
  min-height: clamp(410px, 36vw, 520px);
}

.curriculum-audience-visual img {
  position: absolute;
  top: 50%;
  left: max(-6px, -0.6vw);
  width: min(100%, 560px);
  max-height: clamp(410px, 36vw, 520px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 44px rgba(92, 66, 177, 0.12));
}

.curriculum-audience-copy {
  color: #1f1a45;
}

.curriculum-audience-copy h2 {
  margin: 0 0 30px;
  color: #201a44;
  font-family: "Anek Latin", Arial, sans-serif;
  font-size: clamp(50px, 4.45vw, 66px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.curriculum-audience-copy h2 span {
  display: block;
  color: #201a44;
}

.curriculum-audience-copy h2 strong {
  color: var(--purple-2);
  font-weight: 700;
}

.curriculum-audience-copy p {
  margin: 0 0 34px;
  color: #2f2a43;
  font-size: clamp(18px, 1.22vw, 21px);
  line-height: 1.45;
}

.curriculum-audience-copy h3 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 900;
}

.curriculum-audience-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: clamp(15px, 1.06vw, 18px);
  line-height: 1.25;
}

.curriculum-audience-copy li::marker {
  color: var(--ink);
  font-size: 0.8em;
}

.curriculum-random-section {
  overflow: hidden;
  padding-top: clamp(74px, 6.8vw, 112px);
  padding-bottom: clamp(78px, 7vw, 118px);
  background: var(--white);
}

.curriculum-random-container {
  width: min(100% - 86px, 1260px);
}

.curriculum-random-head {
  max-width: 1120px;
  margin: 0 auto clamp(42px, 4vw, 64px);
  text-align: center;
}

.curriculum-random-head .eyebrow {
  margin-bottom: 24px;
  background: #f0e8ff;
  color: var(--purple);
  box-shadow: none;
}

.curriculum-random-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Anek Latin", Arial, sans-serif;
  font-size: clamp(44px, 4.55vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.curriculum-random-head h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.curriculum-random-head .lead {
  max-width: 880px;
  margin: 20px auto 0;
  color: #3f394f;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.45;
}

.curriculum-random-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 44px);
}

.curriculum-random-step {
  position: relative;
  min-width: 0;
}

.curriculum-random-step img {
  display: block;
  width: 100%;
  height: clamp(170px, 14.5vw, 230px);
  margin: 0 auto 22px;
  object-fit: contain;
  object-position: center bottom;
}

.curriculum-random-marker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.curriculum-random-marker::after {
  content: "";
  flex: 1;
  height: 4px;
  background-image: radial-gradient(circle, #6f5cc3 2px, transparent 2.5px);
  background-size: 20px 4px;
  background-repeat: repeat-x;
  background-position: left center;
}

.curriculum-random-marker span {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(34px, 2.7vw, 44px);
  height: clamp(34px, 2.7vw, 44px);
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple-2);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1;
}

.curriculum-random-step h3 {
  max-width: 250px;
  margin: 0;
  color: #5140aa;
  font-family: "Anek Latin", Arial, sans-serif;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.facility-intro-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(48px, 4.8vw, 74px);
  padding-bottom: clamp(44px, 4.5vw, 68px);
}

.facility-intro-layout {
  display: grid;
  grid-template-columns: minmax(610px, 1.02fr) minmax(500px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 4.8vw, 76px);
}

.facility-intro-copy {
  position: relative;
  z-index: 2;
}

.facility-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 5px 18px 5px 9px;
  border-radius: 999px;
  background: #f0e9ff;
  color: var(--purple);
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(92, 66, 177, 0.08);
}

.facility-intro-badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.facility-intro-copy h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 24px 0 42px;
  color: var(--ink);
  font-size: clamp(28px, 2.35vw, 42px);
  line-height: 1.03;
  letter-spacing: 0;
}

.facility-intro-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.facility-intro-copy h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.facility-intro-line {
  position: absolute;
  left: 35%;
  bottom: -24px;
  width: clamp(150px, 14vw, 235px);
  height: auto;
  pointer-events: none;
}

.facility-intro-copy p {
  max-width: 690px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.45;
  text-align: justify;
}

.facility-intro-copy .section-actions {
  margin-top: 28px;
}

.facility-intro-copy .section-actions .btn {
  min-height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1;
  box-shadow: none;
}

.facility-intro-visual {
  position: relative;
  min-height: clamp(270px, 28vw, 420px);
}

.facility-intro-visual img {
  position: absolute;
  right: max(-36px, -2.2vw);
  top: 50%;
  width: min(100%, 680px);
  max-height: clamp(270px, 30vw, 430px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 42px rgba(92, 66, 177, 0.12));
}

.facility-program-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(40px, 4.2vw, 64px);
  padding-bottom: clamp(40px, 4vw, 60px);
}

.facility-program-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(500px, 1fr);
  align-items: center;
  gap: clamp(38px, 5.8vw, 96px);
}

.facility-program-visual {
  position: relative;
  min-height: clamp(245px, 24vw, 360px);
}

.facility-program-visual img {
  position: absolute;
  top: 50%;
  left: max(-18px, -1vw);
  width: min(100%, 640px);
  max-height: clamp(245px, 26vw, 380px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 18px 42px rgba(92, 66, 177, 0.12));
}

.facility-program-copy {
  position: relative;
  z-index: 2;
}

.facility-program-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 6px 18px 6px 12px;
  border-radius: 999px;
  background: #f0e9ff;
  color: var(--purple);
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 700;
  line-height: 1;
}

.facility-program-badge::before {
  content: "\2605";
  color: #ff8a3d;
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1;
}

.facility-program-copy h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 22px 0 40px;
  color: var(--ink);
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.facility-program-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.facility-program-copy h2 strong {
  color: var(--purple-2);
  font-weight: 700;
}

.facility-program-line {
  position: absolute;
  left: 0;
  bottom: -23px;
  width: clamp(150px, 15vw, 235px);
  height: auto;
  pointer-events: none;
}

.facility-program-copy p {
  max-width: 650px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(14px, 0.88vw, 16px);
  line-height: 1.42;
  text-align: justify;
}

.facility-program-list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  color: var(--ink);
  font-size: clamp(14px, 0.88vw, 16px);
  line-height: 1.42;
}

.facility-program-list li {
  margin-bottom: 8px;
}

.facility-list-section {
  overflow: hidden;
  background: #fbf7ff;
  padding-top: clamp(58px, 5.5vw, 92px);
  padding-bottom: clamp(52px, 5vw, 82px);
}

.facility-list-container {
  width: min(100% - 64px, 1320px);
}

.facility-list-head {
  max-width: 1040px;
  margin: 0 auto clamp(34px, 3.2vw, 50px);
}

.facility-list-head .eyebrow {
  min-height: 40px;
  margin-bottom: 22px;
  padding-inline: 24px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(16px, 1.5vw, 17px);
}

.facility-list-head h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 3.65vw, 58px);
  font-weight: 700;
  line-height: 1.03;
  text-align: center;
  letter-spacing: 0;
}

.facility-list-head h2 span {
  display: block;
  color: var(--ink);
}

.facility-list-head h2 strong {
  color: var(--purple-2);
  font-weight: 700;
}

.facility-list-head .lead {
  max-width: 660px;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.34;
  text-align: center;
}

.facility-list-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.58fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(26px, 2.8vw, 42px);
}

.facility-list-image {
  position: relative;
  overflow: visible;
  min-height: 0;
  aspect-ratio: 1.43 / 1;
  border-radius: 36px;
  box-shadow: 0 22px 54px rgba(92, 66, 177, 0.12);
}

.facility-list-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

.facility-list-image span {
  position: absolute;
  left: 50%;
  bottom: -24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(92, 66, 177, 0.18);
  transform: translateX(-50%);
}

.facility-list-board {
  box-sizing: border-box;
  display: grid;
  align-content: start;
  gap: 10px;
}

.facility-list-title {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
  text-align: center;
}

.facility-list-active {
  position: relative;
  border-radius: 7px;
  color: var(--white);
  background: transparent;
}

.facility-list-active::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: 8px;
  height: 23px;
  border-radius: 999px;
  background: var(--purple);
}

.facility-list-active h3 {
  overflow: hidden;
  margin: 0 0 0 28px;
  min-height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple-2);
  border-radius: 7px 7px 0 0;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
  text-align: center;
}

.facility-list-content {
  border-radius: 12px 0 12px 12px;
  background: var(--purple);
  padding: clamp(20px, 1.7vw, 28px);
}

.facility-list-content p,
.facility-list-content li {
  color: var(--white);
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.55;
}

.facility-list-content p {
  margin: 0 0 14px;
}

.facility-list-content strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: clamp(13px, 0.86vw, 15px);
  font-weight: 900;
}

.facility-list-content ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.facility-list-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--purple-2);
  font: inherit;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.facility-list-row:hover,
.facility-list-row:focus-visible {
  background: var(--purple);
  box-shadow: 0 12px 26px rgba(92, 66, 177, 0.16);
  transform: translateX(2px);
}

.facility-list-row span {
  font-size: 19px;
  line-height: 1;
}

@media (min-width: 981px) and (max-width: 1366px) {
  .service-page .service-list-section,
  .facility-page .facility-list-section {
    padding-top: clamp(54px, 4.6vw, 68px);
    padding-bottom: clamp(54px, 4.6vw, 68px);
  }

  .service-page .service-list-head,
  .facility-page .facility-list-head {
    max-width: min(100%, 920px);
    margin-bottom: clamp(28px, 2.6vw, 38px);
  }

  .service-page .service-list-head .eyebrow,
  .facility-page .facility-list-head .eyebrow {
    min-height: 34px;
    margin-bottom: clamp(14px, 1.4vw, 20px);
    padding-inline: 20px;
    font-size: clamp(13px, 1vw, 15px);
  }

  .service-page .service-list-head h2,
  .facility-page .facility-list-head h2 {
    max-width: min(100%, 850px);
    margin-inline: auto;
    margin-bottom: clamp(14px, 1.4vw, 20px);
    font-size: clamp(38px, 3.25vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.015em;
  }

  .service-page .service-list-head .lead,
  .facility-page .facility-list-head .lead {
    max-width: 620px;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.42;
  }

  .service-page .service-list-grid,
  .facility-page .facility-list-grid {
    grid-template-columns: minmax(520px, 1.48fr) minmax(330px, 0.92fr);
    gap: clamp(24px, 2.5vw, 36px);
  }

  .service-page .service-list-image span,
  .facility-page .facility-list-image span,
  .service-page .service-list-title,
  .facility-page .facility-list-title,
  .service-page .service-list-active h3,
  .facility-page .facility-list-active h3,
  .service-page .service-list-row,
  .facility-page .facility-list-row {
    font-size: clamp(15px, 1.08vw, 17px);
  }

  .service-page .service-list-title,
  .facility-page .facility-list-title,
  .service-page .service-list-active h3,
  .facility-page .facility-list-active h3,
  .service-page .service-list-row,
  .facility-page .facility-list-row {
    min-height: 44px;
  }

  .service-page .service-list-row,
  .facility-page .facility-list-row {
    padding-inline: 18px;
  }

  .service-page .service-list-content,
  .facility-page .facility-list-content {
    padding: clamp(18px, 1.5vw, 22px);
  }

  .service-page .service-list-content p,
  .service-page .service-list-content li,
  .facility-page .facility-list-content p,
  .facility-page .facility-list-content li {
    font-size: clamp(13.8px, 1.03vw, 15.5px);
    line-height: 1.58;
  }

  .service-page .service-list-content strong,
  .facility-page .facility-list-content strong {
    font-size: clamp(13px, 0.95vw, 14.5px);
  }

  .service-page .service-list-content a {
    min-height: 32px;
    padding-inline: 16px;
    font-size: clamp(11.5px, 0.82vw, 13px);
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .service-page .service-list-head h2,
  .facility-page .facility-list-head h2 {
    max-width: 720px;
    font-size: clamp(34px, 3.4vw, 40px);
  }

  .service-page .service-list-grid,
  .facility-page .facility-list-grid {
    grid-template-columns: minmax(460px, 1.34fr) minmax(300px, 0.9fr);
    gap: 24px;
  }

  .service-page .service-list-content,
  .facility-page .facility-list-content {
    padding: 16px;
  }

  .service-page .service-list-content p,
  .service-page .service-list-content li,
  .facility-page .facility-list-content p,
  .facility-page .facility-list-content li {
    font-size: clamp(13.5px, 1.18vw, 15px);
    line-height: 1.58;
  }
}

.facility-area-section {
  overflow: hidden;
  background: var(--lavender-2);
  padding-top: clamp(42px, 4.2vw, 64px);
  padding-bottom: clamp(40px, 4vw, 60px);
}

.facility-area-layout {
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
}

.facility-area-copy {
  position: relative;
  z-index: 2;
}

.facility-area-copy .eyebrow {
  min-height: 34px;
  padding: 6px 18px 6px 13px;
  background: var(--purple);
  color: var(--white);
  font-size: clamp(12px, 0.78vw, 14px);
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(92, 66, 177, 0.08);
}

.facility-area-copy .eyebrow.star-eyebrow::before {
  content: "\2605";
  color: #ff9d3d;
  background: transparent;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1;
}

.facility-area-copy h2 {
  margin: 16px 0 24px;
  color: var(--ink);
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(36px, 2.8vw, 48px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.facility-area-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.facility-area-copy h2 strong {
  color: var(--purple-2);
  font-weight: 800;
}

.facility-area-copy p {
  max-width: 620px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(14px, 0.88vw, 16px);
  line-height: 1.42;
  text-align: justify;
}

.facility-area-label {
  margin-top: 12px !important;
}

.facility-area-list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  color: var(--ink);
  font-size: clamp(14px, 0.88vw, 16px);
  line-height: 1.42;
}

.facility-area-list li {
  margin-bottom: 8px;
}

.facility-area-visual {
  position: relative;
  min-height: clamp(250px, 24vw, 360px);
}

.facility-area-visual img {
  position: absolute;
  top: 50%;
  right: max(-18px, -1vw);
  width: min(100%, 640px);
  max-height: clamp(245px, 26vw, 380px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 18px 42px rgba(92, 66, 177, 0.12));
}

.facility-need-section {
  overflow: hidden;
  background: var(--lavender-2);
  padding-top: clamp(42px, 4.5vw, 68px);
  padding-bottom: clamp(42px, 4.2vw, 64px);
}

.facility-need-layout {
  display: grid;
  grid-template-columns: minmax(560px, 0.98fr) minmax(500px, 1.02fr);
  align-items: center;
  gap: clamp(34px, 5vw, 84px);
}

.facility-need-copy {
  position: relative;
  z-index: 2;
}

.facility-need-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 6px 18px 6px 11px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 700;
  line-height: 1;
}

.facility-need-badge::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffd95c;
  color: var(--purple);
  font-weight: 900;
  font-size: 14px;
}

.facility-need-copy h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 24px 0 44px;
  color: var(--ink);
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 2.45vw, 44px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.facility-need-copy h2 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.facility-need-copy h2 strong {
  color: var(--purple-2);
  font-weight: 700;
}

.facility-need-line {
  position: absolute;
  left: 22%;
  bottom: -24px;
  width: clamp(150px, 15vw, 235px);
  height: auto;
  pointer-events: none;
}

.facility-need-copy p {
  max-width: 650px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(14px, 0.88vw, 16px);
  line-height: 1.42;
  text-align: justify;
}

.facility-need-label {
  margin-bottom: 0 !important;
  font-weight: 800;
}

.facility-need-list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  color: var(--ink);
  font-size: clamp(14px, 0.88vw, 16px);
  line-height: 1.42;
}

.facility-need-list li {
  margin-bottom: 8px;
}

.facility-need-visual {
  position: relative;
  min-height: clamp(250px, 24vw, 360px);
}

.facility-need-visual img {
  position: absolute;
  top: 50%;
  right: max(-20px, -1.2vw);
  width: min(100%, 640px);
  max-height: clamp(245px, 26vw, 380px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 18px 42px rgba(92, 66, 177, 0.12));
}

.career-apply-section {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(50px, 4.8vw, 72px);
  padding-bottom: clamp(46px, 4.5vw, 68px);
}

.career-apply-layout {
  display: grid;
  grid-template-columns: minmax(410px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 5.4vw, 92px);
}

.career-apply-copy {
  position: relative;
  z-index: 2;
}

.career-apply-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 5px 22px 5px 10px;
  border-radius: 999px;
  background: #f0e9ff;
  color: var(--purple);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(92, 66, 177, 0.08);
}

.career-apply-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.career-apply-copy h2 {
  position: relative;
  width: max-content;
  max-width: calc(100% - 28px);
  margin: 26px 0 34px;
  color: var(--ink);
  font-size: clamp(28px, 2.32vw, 40px);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.career-apply-copy h2 span {
  color: var(--purple-2);
}

.career-apply-line {
  position: absolute;
  right: -4px;
  bottom: -24px;
  width: clamp(150px, 15vw, 245px);
  height: auto;
  pointer-events: none;
}

.career-apply-copy p,
.career-apply-list {
  max-width: 565px;
  color: var(--ink);
  font-size: clamp(13px, 0.88vw, 15px);
  line-height: 1.34;
}

.career-apply-copy p {
  margin: 0 0 24px;
  text-align: justify;
}

.career-apply-subtitle {
  display: block;
  margin-bottom: 9px;
  color: #111;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
}

.career-apply-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-apply-list li {
  margin: 0;
}

.career-apply-list li::before {
  content: "\2022 ";
}

.career-apply-visual {
  position: relative;
  min-height: clamp(270px, 28vw, 420px);
}

.career-apply-visual img {
  position: absolute;
  right: max(-10px, -1vw);
  top: 50%;
  width: min(100%, 680px);
  max-height: clamp(270px, 30vw, 430px);
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 42px rgba(92, 66, 177, 0.12));
}

.map-card,
.contact-card {
  overflow: hidden;
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(92, 66, 177, 0.16);
}

.map-card {
  display: block;
  min-height: clamp(330px, 31vw, 440px);
  border: 6px solid rgba(255, 255, 255, 0.92);
  line-height: 0;
}

.map-card img,
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(330px, 31vw, 440px);
  border: 0;
  object-fit: cover;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  padding: clamp(16px, 2.5vw, 42px);
}

.contact-item:nth-child(odd) {
  grid-column: span 7;
}

.contact-item:nth-child(even) {
  grid-column: span 5;
}

.contact-item {
  display: grid;
  grid-template-columns: clamp(54px, 4.7vw, 72px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  min-height: 122px;
  padding: 20px clamp(12px, 1.5vw, 22px);
  border-bottom: 1px solid rgba(157, 110, 228, 0.2);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

a.contact-item:hover {
  background: rgba(157, 110, 228, 0.035);
  transform: translateY(-1px);
}

.contact-whatsapp,
.contact-location {
  border-right: 1px solid rgba(157, 110, 228, 0.2);
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(18px, 1.12vw, 22px);
  line-height: 1.1;
  font-weight: 900;
}

.contact-item p,
.jam-container {
  margin: 0;
  color: #111022;
  font-size: clamp(13px, 0.82vw, 14px);
  line-height: 1.28;
  font-weight: 500;
}

.contact-item p + p {
  margin-top: 4px;
}

.contact-location p span {
  display: block;
}

.contact-email p,
.contact-whatsapp p {
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.jam-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(12px, 2vw, 32px);
  row-gap: 8px;
}
.jam-col {
  display: flex;
  flex-direction: column;
}
.jam-col span {
  white-space: nowrap;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: clamp(54px, 4.7vw, 72px);
  height: clamp(54px, 4.7vw, 72px);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #34d86e, #0dbb4a);
  box-shadow: 0 12px 24px rgba(92, 66, 177, 0.12);
  font-family: Arial, sans-serif;
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 900;
}

.contact-icon svg {
  width: 72%;
  height: 72%;
  display: block;
}

.contact-whatsapp .contact-icon {
  background: #e4f9eb;
  box-shadow: 0 13px 24px rgba(37, 211, 102, 0.16);
}

.contact-email .contact-icon {
  background: #f1edff;
}

.contact-location .contact-icon {
  background: #f1edff;
}

.contact-hours .contact-icon {
  color: var(--purple);
  background: #efe8ff;
  border: 5px solid #f7f2ff;
}

.contact-hours p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 0;
  white-space: nowrap;
}

.contact-social {
  grid-column: span 3 !important;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  min-height: 114px;
  text-align: center;
  border-bottom: 0;
}

.contact-instagram,
.contact-threads,
.contact-facebook {
  border-right: 1px solid rgba(157, 110, 228, 0.2);
}

.contact-social .contact-icon {
  width: 52px;
  height: 52px;
  font-size: 28px;
}

.contact-social .contact-icon svg {
  width: 68%;
  height: 68%;
}

.contact-instagram .contact-icon {
  background: radial-gradient(circle at 30% 110%, #feda75, #fa7e1e 26%, #d62976 52%, #962fbf 72%, #4f5bd5);
}

.contact-facebook .contact-icon {
  background: #1877f2;
}

.contact-threads .contact-icon {
  background: #111;
}

.contact-tiktok .contact-icon {
  background: #111;
}

.contact-social p {
  margin-top: 8px;
  color: #111022;
  font-size: clamp(13px, 0.82vw, 14px);
  line-height: 1.28;
  font-weight: 500;
}

.career-jobs-section {
  overflow: hidden;
}

.career-jobs-container {
  max-width: 1080px;
}

.career-jobs-head {
  margin-bottom: clamp(28px, 3.2vw, 46px);
}

.career-jobs-head h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(44px, 4.9vw, 70px);
  line-height: 1;
}

.career-jobs-head h2 span {
  color: var(--purple-2);
}

.career-jobs-head .lead {
  max-width: 730px;
  margin-inline: auto;
  color: #2f2a45;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.35;
}

.career-job-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.career-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 26px;
  border: 2px solid var(--purple);
  border-radius: 999px;
  color: var(--purple);
  background: var(--white);
  font-size: clamp(15px, 1.3vw, 16px);
  font-weight: 900;
}

.career-tool-btn span[aria-hidden="true"] {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  font-size: 0;
  line-height: 1;
}

.career-job-tools .career-tool-btn:first-child span[aria-hidden="true"] {
  background: center / 17px 17px no-repeat url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.25 4.25H14.75L10.35 9.2V13.05L7.65 14.35V9.2L3.25 4.25Z' stroke='%235B3FAE' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M6.7 7.1H11.3' stroke='%235B3FAE' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.career-job-tools .career-tool-btn:first-child span[aria-hidden="true"]::before,
.career-job-tools .career-tool-btn:first-child span[aria-hidden="true"]::after {
  display: none;
}

.career-job-tools .career-tool-btn:nth-child(2) span[aria-hidden="true"]::before {
  content: "";
  position: absolute;
  inset: 1px 5px 5px 1px;
  border: 3px solid var(--purple);
  border-radius: 50%;
}

.career-job-tools .career-tool-btn:nth-child(2) span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
  transform: rotate(45deg);
}

.job-row {
  display: grid;
  grid-auto-columns: clamp(272px, 21.7vw, 318px);
  grid-auto-flow: column;
  gap: clamp(14px, 1.25vw, 20px);
  overflow-x: auto;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 6px 18px 28px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
  user-select: none;
}

.job-row::-webkit-scrollbar {
  display: none;
}

.job-row.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.job-row:focus-visible {
  outline: 3px solid rgba(91, 63, 174, 0.24);
  outline-offset: 8px;
  border-radius: 18px;
}

.career-empty-state {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px) clamp(22px, 4vw, 48px);
  border: 1px solid rgba(91, 63, 174, 0.18);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(70, 45, 133, 0.08);
  text-align: center;
}

.career-empty-state h3 {
  margin: 0 0 10px;
  color: var(--purple-2);
  font-size: clamp(24px, 3vw, 34px);
}

.career-empty-state p {
  max-width: 560px;
  margin: 0 auto;
  color: #4d4664;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
}

.career-carousel-frame {
  width: min(100vw, 1160px);
  margin-left: calc((100vw - min(1080px, 100vw - 36px)) / -2);
  overflow: hidden;
}

.career-carousel-frame img {
  display: block;
  width: clamp(1030px, 113vw, 1220px);
  max-width: none;
  height: auto;
  margin-left: max(0px, calc((100vw - 1365px) * 0.1));
}
.job-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: clamp(390px, 30vw, 440px);
  border-radius: 0 0 8px 8px;
  color: var(--white);
  background: transparent;
  scroll-snap-align: start;
}

.job-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: clamp(80px, 8vw, 110px) 0 0 0;
  background: url("assets/images/Rectangle 27.webp") center bottom / 100% 100% no-repeat;
}

.job-card::after {
  display: none;
}

.job-photo {
  position: relative;
  z-index: 2;
  width: 84%;
  height: clamp(200px, 16vw, 230px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 42px 42px 34px 34px;
  background: var(--white);
}
.job-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.job-card:nth-child(1) .job-photo img {
  object-position: 45% center;
}

.job-card:nth-child(2) .job-photo img {
  object-position: center;
}

.job-card:nth-child(3) .job-photo img {
  object-position: center;
}

.job-card:nth-child(4) .job-photo img {
  object-fit: cover;
  object-position: center;
}

.job-card-body {
  position: relative;
  z-index: 2;
  margin-top: clamp(20px, 1.45vw, 26px);
  padding: 0 clamp(22px, 1.6vw, 26px) clamp(18px, 1.5vw, 22px);
  text-align: center;
}

.job-card-body::before {
  display: none;
}

.job-card-body > * {
  position: relative;
  z-index: 1;
}

.job-card h3 {
  margin-bottom: clamp(18px, 1.45vw, 24px);
  color: var(--white);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.08;
}

.job-card p {
  min-height: clamp(50px, 4.2vw, 62px);
  margin-bottom: clamp(18px, 1.5vw, 24px);
  color: #efe9ff;
  font-size: clamp(9px, 0.6vw, 11px);
  line-height: 1.45;
  text-align: justify;
}

.job-actions {
  display: flex;
  gap: clamp(10px, 0.9vw, 14px);
  justify-content: center;
  margin-top: 12px;
}

.mini-btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(86px, 7.5vw, 110px);
  min-height: clamp(28px, 2.2vw, 36px);
  padding: 0 clamp(16px, 1.2vw, 24px);
  border-radius: 999px;
  color: var(--purple);
  background: var(--white);
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.mini-btn-accent {
  font-size: 0;
}

.mini-btn-accent::before {
  content: "Upload CV \2192";
  font-size: clamp(9px, 0.7vw, 11px);
}

.mini-btn-accent {
  color: var(--white);
  background: var(--purple-2);
}

.career-job-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: -6px;
}

.career-job-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  opacity: 0.42;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.career-job-dots button.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.career-job-dots button:focus-visible {
  outline: 3px solid rgba(91, 63, 174, 0.24);
  outline-offset: 3px;
}

.career-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.career-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.career-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 62, 0.48);
  backdrop-filter: blur(8px);
}

.career-detail-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(22px, 3vw, 42px);
  width: min(920px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 42px));
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(151, 98, 224, 0.28);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--white) 0%, #fbf7ff 100%);
  box-shadow: 0 34px 84px rgba(42, 29, 99, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s ease;
}

.career-detail-modal.is-open .career-detail-dialog {
  transform: translateY(0) scale(1);
}

.career-detail-close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--purple);
  background: #f0e8ff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.career-detail-image {
  align-self: stretch;
  min-height: 300px;
  overflow: hidden;
  border-radius: 30px;
  background: #f0e8ff;
  box-shadow: 0 18px 38px rgba(91, 63, 174, 0.14);
}

.career-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}

.career-detail-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--purple);
  background: #f0e8ff;
  font-size: 13px;
  font-weight: 900;
}

.career-detail-kicker::before {
  content: "\2605";
  color: #ff8a3d;
}

.career-detail-content h2 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.05;
}

.career-detail-content p {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
}

.career-detail-list-wrap {
  padding: 18px;
  border: 1px solid rgba(151, 98, 224, 0.24);
  border-radius: 18px;
  background: var(--white);
}

.career-detail-list-wrap strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(15px, 1.3vw, 16px);
}

.career-detail-list-wrap ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--purple);
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.45;
}

.career-detail-apply {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: clamp(15px, 1.3vw, 16px);
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(91, 63, 174, 0.24);
}

body.career-modal-open {
  overflow: hidden;
}

.career-apply-modal {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.career-apply-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.career-apply-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 62, 0.54);
  backdrop-filter: blur(8px);
}

.career-apply-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 42px));
  overflow: auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(151, 98, 224, 0.28);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--white) 0%, #fbf7ff 100%);
  box-shadow: 0 34px 84px rgba(42, 29, 99, 0.3);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s ease;
}

.career-apply-modal.is-open .career-apply-dialog {
  transform: translateY(0) scale(1);
}

.career-apply-close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--purple);
  background: #f0e8ff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.career-apply-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--purple);
  background: #f0e8ff;
  font-size: 13px;
  font-weight: 900;
}

.career-apply-modal-kicker::before {
  content: "\2605";
  color: #ff8a3d;
}

.career-apply-dialog h2 {
  margin: 16px 42px 10px 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.career-apply-dialog h2 span {
  color: var(--purple-2);
}

.career-apply-dialog p {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
}

.career-apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.career-apply-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.career-apply-form label:nth-of-type(4),
.career-apply-file,
.career-apply-form .btn {
  grid-column: 1 / -1;
}

.career-apply-form input,
.career-apply-form textarea {
  width: 100%;
  border: 1px solid rgba(151, 98, 224, 0.26);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  font: inherit;
}

.career-apply-form input {
  min-height: 46px;
  padding: 0 14px;
}

.career-apply-form textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
}

.career-apply-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.career-application-alert {
  max-width: 760px;
  margin: 0 auto 22px;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.55;
}

.career-application-alert.success {
  border: 1px solid rgba(47, 189, 103, 0.24);
  color: #137a45;
  background: rgba(47, 189, 103, 0.1);
}

.career-application-alert.error {
  border: 1px solid rgba(214, 66, 93, 0.24);
  color: #9d2440;
  background: rgba(214, 66, 93, 0.08);
}

.career-application-alert ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

@media (max-width: 760px) {
  .career-detail-dialog {
    grid-template-columns: 1fr;
    width: min(480px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 22px;
  }

  .career-detail-image {
    min-height: 220px;
    max-height: 300px;
  }

  .career-detail-content {
    padding-right: 0;
  }

  .career-detail-apply {
    width: 100%;
  }

  .career-apply-dialog {
    width: min(480px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 22px;
  }

  .career-apply-form {
    grid-template-columns: 1fr;
  }

  .career-apply-dialog h2 {
    margin-right: 32px;
  }
}

.service-tabs {
  display: grid;
  gap: 14px;
}

.service-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple-2);
  box-shadow: none;
  font-weight: 900;
}

.service-pill.is-active {
  background: var(--purple);
}

.info-box {
  padding: clamp(24px, 4vw, 36px);
  border: 2px solid var(--purple-2);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.info-box ul,
.check-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.info-box li,
.check-list li {
  margin-bottom: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(157, 110, 228, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card p,
.process-step p,
.testimonial p,
.program-detail p,
.program-detail li {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 19px);
}

.card:hover,
.process-step:hover,
.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 110, 228, 0.42);
  box-shadow: 0 22px 48px rgba(92, 66, 177, 0.13);
}

.card .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--purple);
  background: var(--lavender);
  font-size: 26px;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 118px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(92, 66, 177, 0.15) 50%, transparent 0);
  background-size: 18px 2px;
}

.process-step {
  position: relative;
  padding: 18px 14px 20px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.process-step::after {
  inset: 14px 18px auto;
  height: 154px;
  border-radius: 30% 42% 38% 34% / 32% 34% 42% 36%;
  opacity: 0.5;
}

.process-step img {
  width: 100%;
  height: 142px;
  object-fit: contain;
  margin-bottom: 16px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple-2);
  font-weight: 900;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  min-height: 174px;
  padding: 20px 22px 20px 82px;
  border-radius: 24px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 18px 42px rgba(92, 66, 177, 0.18);
  position: relative;
  overflow: hidden;
}

.testimonial > img {
  position: absolute;
  left: 22px;
  top: 20px;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  object-fit: cover;
  object-position: top center;
  background: var(--white);
}

.testimonial::after {
  content: "\201D";
  position: absolute;
  right: 18px;
  bottom: -26px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 112px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.stars {
  color: var(--yellow);
  letter-spacing: 2px;
  font-size: 13px;
}

.testimonial p {
  color: #efe9ff;
  font-size: clamp(16px, 1.5vw, 17px);
  line-height: 1.55;
}

.testimonial-carousel {
  position: relative;
  max-width: 1360px;
  margin: 42px auto 0;
  background: transparent;
  outline: none;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 6px 0 20px;
  background: transparent;
}

.testimonial-track {
  display: flex;
  background: transparent;
  transform: translateX(0);
  transition: transform 0.42s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.25vw, 32px);
  padding-inline: 12px;
  background: transparent;
}

.testimonial-carousel .testimonial {
  min-height: 206px;
  padding: 28px 34px 30px 118px;
  border-radius: 24px;
  box-shadow: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.testimonial-carousel .testimonial > img {
  left: 30px;
  top: 28px;
  width: 66px;
  height: 66px;
  border-width: 4px;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.testimonial-carousel .testimonial::after {
  content: "\201D";
  right: 26px;
  bottom: -28px;
  font-size: 126px;
}

.testimonial-carousel .testimonial strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.2;
}

.testimonial-carousel .stars {
  font-size: 13px;
  line-height: 1;
}

.testimonial-carousel .testimonial p {
  max-width: 340px;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 700;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-carousel .testimonial.expanded p {
  -webkit-line-clamp: unset;
}

.testimonial-read-more {
  display: inline-block;
  background: transparent;
  border: none;
  color: var(--warning);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  font-family: inherit;
}

.testimonial-read-more:hover {
  text-decoration: underline;
}
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c7b4ef;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-dots button.is-active {
  background: var(--ink);
  transform: scale(1.18);
}

.testimonial-nav {
  position: absolute;
  top: calc(50% - 24px); /* Vertically centered, slightly adjusted for controls height */
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--purple);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  z-index: 10;
}

.testimonial-prev {
  left: -22px;
}

.testimonial-next {
  right: -22px;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  color: var(--white);
  background: var(--purple);
  transform: translateY(-1px);
}

.testimonial-nav svg {
  width: 24px;
  height: 24px;
}

.testimonial-carousel:focus-visible {
  outline: 3px solid rgba(157, 110, 228, 0.4);
  outline-offset: 10px;
}

.faq-section {
  background: var(--white);
}

.faq-title span {
  display: block;
  color: var(--ink);
}

.faq-title strong {
  color: var(--purple-2);
  font-weight: 700;
}

.faq {
  max-width: 1140px;
  margin: 0 auto;
}

.faq details {
  margin-bottom: 13px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
}

.faq details:hover {
  transform: none;
  box-shadow: none;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 28px;
  border-radius: 10px;
  color: var(--white);
  background: var(--purple);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--white);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq-answer {
  margin: -2px 12px 0;
  padding: 20px 26px 22px;
  border: 1.5px solid var(--purple);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: var(--white);
}

.faq p {
  max-width: 980px;
  margin: 0;
  padding: 0;
  color: var(--purple);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
}

.section.cta {
  padding-top: clamp(8px, 1.4vw, 18px);
  padding-bottom: 0;
}

.cta {
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 49%, var(--lavender-2) 49%, var(--lavender-2) 100%);
}

.cta-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.31fr) minmax(0, 0.69fr);
  align-items: end;
  max-width: 1048px;
  min-height: clamp(392px, 32vw, 418px);
  overflow: visible;
  border-radius: 0 0 58px 0;
  background: transparent;
  color: var(--white);
  isolation: isolate;
}

.cta-box::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: clamp(270px, 27%, 300px);
  right: clamp(38px, 4vw, 54px);
  bottom: 0;
  height: clamp(258px, 18.2vw, 276px);
  border-radius: 0 0 58px 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 217, 92, 0.16), transparent 18%),
    linear-gradient(135deg, #9b6be2 0%, #9666df 48%, #8b5bd4 100%);
  box-shadow: 0 22px 46px rgba(92, 66, 177, 0.12);
}

.cta-box::after {
  display: none;
}

.cta-chat-bubble {
  position: absolute;
  z-index: 4;
  right: clamp(28px, 3vw, 42px);
  top: calc(100% - clamp(286px, 20.4vw, 304px));
  width: clamp(78px, 7vw, 96px);
  color: var(--yellow);
  filter: drop-shadow(0 9px 16px rgba(45, 38, 84, 0.18));
  pointer-events: none;
}

.cta-chat-bubble svg {
  display: block;
  width: 100%;
  height: auto;
}

.cta-box img {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: end;
  width: min(100%, 382px);
  max-height: clamp(392px, 32vw, 430px);
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(72px);
  filter: drop-shadow(0 18px 34px rgba(68, 54, 116, 0.09));
}

.cta-content {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 720px;
  min-height: clamp(258px, 18.2vw, 276px);
  padding: clamp(54px, 4.2vw, 64px) clamp(92px, 7.6vw, 112px) clamp(38px, 3.2vw, 48px) clamp(42px, 4vw, 54px);
}

.cta-content::before {
  display: none;
}

.cta-content h2 {
  max-width: 680px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(29px, 2.35vw, 36px);
  line-height: 1.1;
}

.cta-content p {
  max-width: 640px;
  margin-bottom: 24px;
  color: #f8f3ff;
  font-size: 13px;
  line-height: 1.45;
}

.cta-content .section-actions {
  justify-content: flex-start;
}

.cta-content .btn.light {
  position: relative;
  min-height: 39px;
  padding: 0 56px 0 24px;
  font-size: 11px;
  color: var(--purple);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(45, 38, 84, 0.12);
}

.cta-content .cta-wa-btn {
  padding-right: 62px;
}

.cta-content .cta-wa-btn::before,
.cta-content .cta-wa-btn::after {
  content: none;
}

.cta-wa-icon {
  position: absolute;
  right: -18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 5px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: #31c85f;
  transform: translateY(-50%);
  box-shadow: 0 10px 20px rgba(45, 38, 84, 0.16);
}

.cta-wa-icon svg {
  display: block;
  width: 34px;
  height: 34px;
}

.cta-wa-icon .wa-bubble {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linejoin: round;
}

.cta-wa-icon .wa-phone {
  fill: currentColor;
}

.cta-content .btn.light::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 5px solid var(--white);
  border-radius: 999px;
  background: #31c85f;
  transform: translateY(-50%);
  box-shadow: 0 10px 20px rgba(45, 38, 84, 0.16);
}

.cta-content .btn.light::before {
  content: "\260E";
  position: absolute;
  z-index: 2;
  right: -4px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%) rotate(92deg);
}

.cta-content .btn.light.cta-wa-btn::before,
.cta-content .btn.light.cta-wa-btn::after {
  display: none;
  content: none;
}

/* Match the approved CTA composition on compact desktop viewports. */
@media (min-width: 993px) and (max-width: 1280px) {
  .cta-box::before {
    left: clamp(185px, calc(330px - 11vw), 220px);
    right: clamp(18px, 2vw, 28px);
    height: clamp(290px, 29vw, 350px);
    border-radius: 0 0 clamp(58px, 6vw, 72px) 0;
  }

  .cta-chat-bubble {
    right: -8px;
    top: calc(100% - clamp(318px, 31vw, 372px));
  }
}

@media (min-width: 1500px) {
  .section.cta {
    padding-top: 8px;
  }

  .cta {
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 68%, var(--lavender-2) 68%, var(--lavender-2) 100%);
  }

  .cta-box {
    display: block;
    width: min(100% - 32px, 1500px);
    max-width: 1500px;
    min-height: 660px;
  }

  .cta-box::before {
    left: 380px;
    right: 0;
    height: 430px;
    border-radius: 0 0 86px 0;
  }

  .cta-chat-bubble {
    right: -32px;
    top: 204px;
    width: 134px;
  }

  .cta-box img {
    position: absolute;
    left: 60px;
    bottom: 0;
    width: 583px;
    max-height: 660px;
    transform: none;
  }

  .cta-content {
    position: absolute;
    left: 535px;
    right: 70px;
    bottom: 0;
    max-width: none;
    min-height: 430px;
    padding: 96px 72px 74px 0;
  }

  .cta-content h2 {
    max-width: 980px;
    margin-bottom: 24px;
    font-size: 45px;
    line-height: 1.16;
  }

  .cta-content p {
    max-width: 930px;
    margin-bottom: 48px;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.35;
  }

  .cta-content .btn.light {
    min-height: 52px;
    padding: 0 76px 0 32px;
    font-size: clamp(15px, 1.3vw, 16px);
  }

  .cta-content .cta-wa-btn {
    padding-right: 88px;
  }

  .cta-content .btn.light::after {
    right: -28px;
    width: 70px;
    height: 70px;
    border-width: 7px;
  }

  .cta-content .btn.light::before {
    right: -6px;
    width: 40px;
    height: 40px;
    font-size: 31px;
  }

  .cta-wa-icon {
    right: -28px;
    width: 70px;
    height: 70px;
    border-width: 7px;
  }

  .cta-wa-icon svg {
    width: 49px;
    height: 49px;
  }

  .cta-wa-icon .wa-bubble {
    stroke-width: 3;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  outline: 2px dashed rgba(157, 110, 228, 0.55);
  outline-offset: 6px;
  animation: gallery-dash-pulse 1.8s ease-in-out infinite alternate;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery img:hover {
  transform: scale(1.025);
  box-shadow: 0 20px 42px rgba(92, 66, 177, 0.16);
}

.facility-gallery-section {
  padding-top: clamp(88px, 8vw, 132px);
  padding-bottom: clamp(86px, 7vw, 124px);
  background: var(--white);
}

.facility-gallery-container {
  width: min(100% - 64px, 1140px);
}

.facility-gallery-head {
  max-width: 900px;
  margin: 0 auto clamp(42px, 4.2vw, 58px);
  text-align: center;
}

.facility-gallery-head .eyebrow {
  margin-bottom: 18px;
  background: #5541aa;
  color: var(--white);
  box-shadow: none;
}

.facility-gallery-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Anek Latin", Arial, sans-serif;
  font-size: clamp(48px, 4.9vw, 66px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.facility-gallery-head h2 strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.facility-gallery-head .lead {
  max-width: 790px;
  margin: 18px auto 0;
  color: #443f62;
  font-size: 20px;
  line-height: 1.55;
}

.facility-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 190px 190px 172px;
  gap: 22px;
}

.facility-gallery-grid.is-compact-gallery {
  grid-template-rows: 190px 190px;
}

.facility-gallery-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #221f2b;
}

.facility-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.facility-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 18, 0.56);
}

.facility-gallery-card figcaption {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px;
  color: var(--white);
  text-align: center;
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 800;
  line-height: 1.02;
}

.facility-gallery-card figcaption span {
  display: block;
  max-width: 86%;
}

.facility-gallery-card figcaption i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1.6px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 19px);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.gallery-screening {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.gallery-brainwave {
  grid-column: 4 / 7;
  grid-row: 1;
}

.gallery-consultation {
  grid-column: 7 / 10;
  grid-row: 1;
}

.gallery-sensory {
  grid-column: 10 / 13;
  grid-row: 1 / 3;
}

.gallery-concentration {
  grid-column: 4 / 7;
  grid-row: 2;
}

.gallery-learning {
  grid-column: 7 / 10;
  grid-row: 2;
}

.gallery-cbt {
  grid-column: 1 / 5;
  grid-row: 3;
}

.gallery-admin {
  grid-column: 5 / 9;
  grid-row: 3;
}

.gallery-lounge {
  grid-column: 9 / 13;
  grid-row: 3;
}

.gallery-extra {
  grid-column: span 4;
  min-height: 172px;
}

.facility-gallery-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px dashed rgba(88, 64, 173, 0.28);
  border-radius: 18px;
  background: rgba(157, 102, 224, 0.08);
  color: #443f62;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.about-facility-section {
  padding-top: clamp(88px, 8vw, 132px);
  padding-bottom: clamp(84px, 7vw, 122px);
  background: #fbf7ff;
}

.about-facility-section .section-head {
  max-width: 1040px;
  margin-bottom: clamp(54px, 4.8vw, 76px);
}

.about-facility-section .eyebrow {
  padding: 8px 18px;
  font-size: clamp(13px, 0.9vw, 15px);
}

.about-facility-section .eyebrow.star-eyebrow::before {
  font-size: 22px;
}

.about-facility-title {
  max-width: 980px;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(62px, 5vw, 86px);
  line-height: 1.03;
}

.about-facility-title span {
  display: block;
  color: var(--ink);
}

.about-facility-title strong {
  color: var(--purple-2);
  font-weight: inherit;
}

.about-facility-gallery {
  display: grid;
  grid-template-columns: minmax(188px, 230px) minmax(306px, 356px) minmax(306px, 356px) minmax(188px, 230px);
  grid-template-areas:
    "photo1 photo2 photo3 photo4"
    "photo1 quote quote photo4";
  align-items: start;
  justify-content: center;
  column-gap: clamp(24px, 2.6vw, 34px);
  row-gap: clamp(28px, 2.8vw, 42px);
}

.about-facility-gallery .facility-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: none;
}

.about-facility-gallery .facility-photo:nth-child(1) {
  grid-area: photo1;
}

.about-facility-gallery .facility-photo:nth-child(2) {
  grid-area: photo2;
}

.about-facility-gallery .facility-photo:nth-child(3) {
  grid-area: photo3;
}

.about-facility-gallery .facility-photo:nth-child(4) {
  grid-area: photo4;
}

.about-facility-gallery .facility-photo-tall {
  aspect-ratio: 184 / 287;
}

.about-facility-gallery .facility-photo-wide {
  aspect-ratio: 284 / 187;
}

.about-facility-quote {
  grid-area: quote;
  align-self: start;
  width: min(900px, 100%);
  max-width: 900px;
  margin: 8px auto 0;
  color: #27223f;
  font-family: "Anek Latin", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
}

.about-facility-quote span {
  display: block;
  white-space: nowrap;
}

@keyframes dashed-walk {
  from {
    background-position:
      0 0,
      0 100%,
      0 0,
      100% 0;
  }
  to {
    background-position:
      18px 0,
      -18px 100%,
      0 18px,
      100% -18px;
  }
}

@keyframes gallery-dash-pulse {
  from {
    outline-color: rgba(157, 110, 228, 0.35);
    outline-offset: 5px;
  }
  to {
    outline-color: rgba(92, 64, 178, 0.75);
    outline-offset: 8px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-card {
  position: relative;
  padding: 20px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(92, 66, 177, 0.1);
  text-align: center;
}

.team-card::after {
  inset: 12px 16px auto;
  height: 250px;
  opacity: 0.38;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 14px;
}


.about-team-section {
  padding: clamp(58px, 7vw, 92px) 0 clamp(68px, 7vw, 96px);
  overflow: hidden;
  background: var(--white);
}

.about-team-container {
  width: min(100% - 36px, 1220px);
}

.about-team-head {
  margin-bottom: clamp(42px, 4.8vw, 64px);
}

.about-team-head .eyebrow {
  min-height: 34px;
  padding: 0 24px;
  color: #4f3fab;
  background: #f1e9ff;
  box-shadow: none;
  font-size: clamp(15px, 1.3vw, 16px);
}

.about-team-head .eyebrow::before {
  content: "\2605";
  width: auto;
  height: auto;
  color: #ff8f31;
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.about-team-head h2 {
  margin-top: 18px;
  color: #211b46;
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-team-head h2 span {
  color: var(--purple-2);
}

.about-team-head .lead {
  max-width: 850px;
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(14px, 0.88vw, 16px);
  font-weight: 300;
  line-height: 1.5;
}

.about-team-carousel {
  width: min(100vw, 1320px);
  margin: 0 auto;
}

.about-team-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(250px, 19vw, 286px);
  justify-content: start;
  gap: clamp(28px, 2.8vw, 42px);
  overflow-x: auto;
  padding: 12px clamp(22px, 7vw, 130px) 34px;
  scroll-snap-type: x proximity;
  scroll-padding-inline: clamp(22px, 7vw, 130px);
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.about-team-track::-webkit-scrollbar {
  display: none;
}

.about-team-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.about-team-track.is-dragging .about-team-card {
  pointer-events: none;
}

.about-team-card {
  position: relative;
  min-height: clamp(318px, 24.6vw, 360px);
  padding: clamp(236px, 18vw, 266px) clamp(24px, 1.9vw, 30px) 24px;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  text-align: center;
  scroll-snap-align: center;
  box-shadow: none;
}

.about-team-card::before {
  content: "";
  position: absolute;
  inset: clamp(112px, 8.6vw, 126px) 0 0;
  border-radius: 22px;
  background: var(--purple);
  z-index: 0;
}

.about-team-photo {
  position: absolute;
  left: 50%;
  top: clamp(0px, -2vw, 4px);
  width: 100%;
  aspect-ratio: 1 / 1;
  background: transparent;
  transform: translateX(-50%);
  z-index: 1;
}

.about-team-photo img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.about-team-photo-doctor img,
.about-team-photo-ayuningtias img,
.about-team-photo-widia img,
.about-team-photo-irfana img,
.about-team-photo-wahyuni img,
.about-team-photo-monika img,
.about-team-photo-anesia img,
.about-team-photo-indah img {
  object-position: center 48%;
}

.about-team-card h3,
.about-team-card p {
  position: relative;
  z-index: 2;
}

.about-team-card h3 {
  margin: 0 auto 12px;
  max-width: 100%;
  color: var(--white);
  font-size: clamp(15px, 1.02vw, 18px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-team-card p {
  margin: 0;
  color: var(--white);
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 300;
  line-height: 1.35;
}

.about-team-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.about-team-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--purple);
  opacity: 0.45;
  transition: opacity 180ms ease, transform 180ms ease;
}

.about-team-dots span.is-active {
  opacity: 1;
  transform: scale(1.18);
}

@media (max-width: 900px) {
  .about-team-head h2 {
    font-size: clamp(36px, 9vw, 52px);
  }

  .about-team-head .lead {
    max-width: 92%;
  }

  .about-team-track {
    justify-content: start;
    grid-auto-columns: min(78vw, 320px);
    padding-inline: max(18px, calc((100vw - 620px) / 2));
  }
}

@media (max-width: 560px) {
  .about-team-card {
    min-height: 362px;
    padding-top: 236px;
  }
}

.program-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 28px;
}

.program-menu {
  display: grid;
  gap: 12px;
}

.program-menu span {
  display: block;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--purple-2);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.program-detail {
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.footer {
  padding: 50px 0 26px;
  background: #fbf8ff;
  border-top: 1px solid rgba(92, 66, 177, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.8fr);
  gap: 34px;
}

.footer img {
  width: 230px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 16px);
}

.footer h4 {
  margin: 0 0 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.social-links svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-contact-items {
  display: grid;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-item svg {
  flex: 0 0 18px;
  display: block;
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.copyright {
  margin-top: 34px;
  color: #9a94ae;
  font-size: 14px;
  text-align: center;
}

.float-contact {
  position: fixed;
  right: clamp(14px, 2.4vw, 34px);
  bottom: clamp(14px, 2.2vw, 32px);
  z-index: 90;
  display: block;
  width: clamp(214px, 18vw, 313px);
  line-height: 0;
  filter: drop-shadow(0 16px 28px rgba(33, 177, 92, 0.22));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.float-contact:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 20px 36px rgba(33, 177, 92, 0.3));
}

.float-contact img {
  display: block;
  width: 100%;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-art::after,
  .visual-card::after,
  .process-step::after,
  .team-card::after,
  .gallery img {
    animation: none;
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 6px);
    display: none;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .career-btn {
    display: none;
  }

  .about-facility-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "photo1 photo2"
      "photo3 photo4"
      "quote quote";
    max-width: 860px;
    margin-inline: auto;
  }

  .about-facility-gallery .facility-photo-tall,
  .about-facility-gallery .facility-photo-wide {
    aspect-ratio: 1.1 / 1;
  }

  .about-approach-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .about-approach-copy {
    max-width: none;
  }

  .about-approach-visual {
    order: -1;
  }

  .about-approach-visual img {
    width: min(100%, 860px);
    margin-inline: auto;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .about-layout,
  .about-understand-layout,
  .about-focus-layout,
  .about-label-layout,
  .service-problem-layout,
  .service-list-grid,
  .facility-list-grid,
  .service-uncertain-layout,
  .service-focus-layout,
  .service-choice-layout,
  .problem-layout,
  .consult-layout,
  .contact-prep-layout,
  .career-work-layout,
  .facility-intro-layout,
  .career-apply-layout,
  .services-panel,
  .services-panel.revised,
  .services-panel.frame-like,
  .program-layout,
  .cta-box,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-choice-layout {
    width: min(100% - 40px, var(--container));
    gap: 32px;
  }

  .service-list-container {
    width: min(100% - 40px, var(--container));
  }

  .facility-list-container {
    width: min(100% - 40px, var(--container));
  }

  .service-list-grid {
    max-width: 760px;
    
  }

  .facility-list-grid {
    max-width: 760px;
    
  }

  .service-list-board {
    padding-left: 0;
    transform: none;
  }

  .facility-list-board {
    padding-left: 0;
    transform: none;
  }

  .service-list-active::before {
    display: none;
  }

  .facility-list-active::before {
    display: none;
  }

  .service-list-image {
    min-height: 0;
  }

  .facility-list-image {
    min-height: 0;
  }

  .service-uncertain-layout {
    gap: 34px;
  }

  .service-uncertain-visual img {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .service-uncertain-copy {
    max-width: 760px;
    
    
  }

  

  .service-uncertain-list {
    width: fit-content;
    
    text-align: left;
  }

  .service-focus-layout {
    gap: 34px;
  }

  .service-focus-copy {
    max-width: 760px;
    
    
  }

  .service-focus-visual {
    order: -1;
  }

  .service-focus-visual img {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .service-choice-visual img {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .service-choice-copy {
    max-width: 760px;
    
    
  }

  

  .service-choice-copy .section-actions {
    justify-content: center;
  }

  .hero-grid {
    min-height: 0;
    text-align: center;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .about-hero .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .hero-service .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .hero-curriculum .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .hero-facility .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .hero-contact .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .hero-career .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .about-hero-copy {
    max-width: none;
    transform: none;
  }

  .service-hero-copy {
    max-width: none;
    transform: none;
  }

  .curriculum-hero-copy {
    max-width: none;
    transform: none;
  }

  .facility-hero-copy {
    max-width: none;
    transform: none;
  }

  .contact-hero-copy {
    max-width: none;
    transform: none;
  }

  .career-hero-copy {
    max-width: none;
    transform: none;
  }

  .about-hero h1 {
    margin-inline: auto;
  }

  .hero-service h1 {
    margin-inline: auto;
  }

  .hero-curriculum h1 {
    margin-inline: auto;
  }

  .hero-facility h1 {
    margin-inline: auto;
    font-size: clamp(44px, 7.4vw, 68px);
  }

  .hero-contact h1 {
    margin-inline: auto;
  }

  .hero-career h1 {
    margin-inline: auto;
    font-size: clamp(44px, 7.4vw, 68px);
  }

  .hero-home h1 {
    margin-inline: auto;
    font-size: clamp(46px, 8vw, 72px);
  }

  .hero-title-dark,
  .hero-title-accent {
    white-space: nowrap;
  }

  .hero-title-last {
    margin-inline: auto;
  }

  .hero-title-line {
    left: 0;
    width: clamp(190px, 32vw, 300px);
    transform: none;
  }

  .hero-spark {
    display: block;
    width: 13px;
  }

  .home-hero-art {
    min-height: clamp(390px, 68vw, 520px);
    width: min(100%, 650px);
    justify-self: center;
    transform: none;
  }

  .about-hero-art {
    min-height: clamp(390px, 68vw, 520px);
    width: min(100%, 650px);
    justify-self: center;
    transform: none;
  }

  .service-hero-art {
    min-height: clamp(390px, 68vw, 520px);
    width: min(100%, 650px);
    justify-self: center;
    transform: none;
  }

  .curriculum-hero-art {
    min-height: clamp(390px, 68vw, 520px);
    width: min(100%, 650px);
    justify-self: center;
    transform: none;
  }

  .facility-hero-art {
    min-height: clamp(390px, 68vw, 520px);
    width: min(100%, 650px);
    justify-self: center;
    transform: none;
  }

  .contact-hero-art {
    min-height: clamp(390px, 68vw, 520px);
    width: min(100%, 650px);
    justify-self: center;
    transform: none;
  }

  .career-hero-art {
    min-height: clamp(390px, 68vw, 520px);
    width: min(100%, 650px);
    justify-self: center;
    transform: none;
  }

  .home-hero-art .hero-bg {
    right: -20%;
    bottom: -7%;
    width: 196%;
  }

  .about-hero-art .hero-bg {
    right: -20%;
    bottom: -7%;
    width: 196%;
  }

  .service-hero-art .hero-bg {
    right: -20%;
    bottom: -7%;
    width: 196%;
  }

  .curriculum-hero-art .hero-bg {
    right: -20%;
    bottom: -7%;
    width: 196%;
  }

  .facility-hero-art .hero-bg {
    right: -20%;
    bottom: -7%;
    width: 196%;
  }

  .contact-hero-art .hero-bg {
    right: -20%;
    bottom: -7%;
    width: 196%;
  }

  .career-hero-art .hero-bg {
    right: -20%;
    bottom: -7%;
    width: 196%;
  }

  .home-hero-art .hero-person-left {
    right: 54%;
    height: min(80%, 438px);
  }

  .home-hero-art .hero-person-right {
    right: 24%;
    height: min(85%, 468px);
  }

  .about-hero-art .about-person-left,
  .career-hero-art .career-person-left {
    right: 54%;
    height: min(80%, 438px);
  }

  .about-hero-art .about-person-right,
  .career-hero-art .career-person-right {
    right: 24%;
    height: min(85%, 468px);
  }

  .service-hero-art .service-hero-person {
    right: 31%;
    height: min(100%, 1086px);
  }

  .curriculum-hero-art .curriculum-hero-person {
    right: 28%;
    height: min(100%, 1020px);
  }

  .facility-hero-art .facility-hero-person {
    right: 28%;
    height: min(94%, 520px);
  }

  .contact-hero-art .contact-person-left {
    right: 52%;
    height: min(84%, 464px);
  }

  .contact-hero-art .contact-person-right {
    right: 24%;
    height: min(91%, 504px);
  }

  .hero .lead,
  .hero-actions,
  .section-actions {
    justify-content: center;
    margin-inline: auto;
  }

  .split {
    text-align: center;
  }

  .text-stack p {
    margin-inline: auto;
  }

  .service-problem-section {
    padding: 58px 0 60px;
  }

  .service-problem-layout {
    gap: 34px;
    
  }

  

  

  .service-problem-copy .section-actions {
    justify-content: center;
  }

  .service-problem-line {
    left: 50%;
    transform: translateX(-50%);
  }

  .service-problem-visual {
    min-height: 330px;
  }

  .service-problem-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }

  .about-understand-layout {
    max-width: 860px;
    margin-inline: auto;
    
  }

  .about-understand-copy {
    max-width: none;
  }

  .about-understand-copy h2 {
    width: fit-content;
    
  }

  .about-understand-copy h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  

  .about-understand-visual img {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .about-focus-layout {
    max-width: 820px;
    margin-inline: auto;
    
  }

  .about-focus-visual img {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .about-focus-copy {
    max-width: none;
  }

  

  .about-focus-copy ul {
    width: fit-content;
    max-width: 100%;
    
    text-align: left;
  }

  .about-label-layout {
    max-width: 820px;
    margin-inline: auto;
    
  }

  .about-label-visual img {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .about-label-copy {
    max-width: none;
  }

  .about-label-copy h2 {
    width: fit-content;
    
  }

  .about-label-copy h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  

  .about-section {
    padding: 58px 0 62px;
  }

  .about-layout {
    gap: 28px;
    
  }

  

  .about-copy .section-actions {
    justify-content: center;
  }

  .about-line {
    left: 50%;
    width: 172px;
    transform: translateX(-50%);
  }

  .about-visual {
    min-height: 330px;
  }

  .about-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 650px);
    transform: translate(-50%, -50%);
  }

  .problem-section {
    padding: 56px 0 58px;
  }

  .problem-layout {
    gap: 30px;
    
  }

  .problem-visual {
    order: 2;
    min-height: 330px;
  }

  .problem-visual img {
    left: 50%;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }

  .problem-copy {
    order: 1;
  }

  

  .problem-copy h2 span:first-child {
    white-space: normal;
  }

  .problem-line {
    left: 50%;
    bottom: -19px;
    width: 154px;
    transform: translateX(-50%);
  }

  

  .consult-section {
    padding: 58px 0 60px;
  }

  .consult-layout {
    gap: 28px;
    
  }

  

  .consult-title-main {
    white-space: normal;
  }

  .consult-title-accent {
    margin-inline: auto;
  }

  .consult-line {
    left: calc(100% + 20px);
    top: 52%;
    width: 142px;
    transform: translateY(-42%);
  }

  .consult-visual {
    min-height: 320px;
  }

  .consult-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 660px);
    transform: translateX(-50%);
  }

  .contact-prep-section {
    padding: 58px 0 60px;
  }

  .contact-prep-layout {
    gap: 30px;
    
  }

  

  .contact-prep-copy h2 {
    width: fit-content;
  }

  .contact-prep-copy h2 span {
    white-space: normal;
  }

  

  .contact-prep-line {
    left: 0;
    transform: none;
  }

  .contact-prep-visual {
    min-height: 320px;
  }

  .contact-prep-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }

  .career-work-section {
    padding: 58px 0 60px;
  }

  .career-work-layout {
    gap: 28px;
    
  }

  

  .career-work-copy h2 {
    width: fit-content;
  }

  .career-work-line {
    left: 50%;
    transform: translateX(-50%);
  }

  

  .career-work-visual {
    min-height: 300px;
  }

  .career-work-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }

  .facility-intro-section {
    padding: 58px 0 60px;
  }

  .facility-intro-layout {
    gap: 28px;
    
  }

  

  .facility-intro-copy h2 {
    width: fit-content;
  }

  .facility-intro-line {
    left: 50%;
    transform: translateX(-50%);
  }

  

  .facility-intro-copy .section-actions {
    justify-content: center;
  }

  .facility-intro-visual {
    min-height: 300px;
  }

  .facility-intro-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }

  .facility-program-section {
    padding: 56px 0 58px;
  }

  .facility-program-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
    
  }

  .facility-program-visual {
    min-height: 300px;
  }

  .facility-program-visual img {
    left: 50%;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }


  .facility-area-section {
    padding: 56px 0 58px;
  }

  .facility-area-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
    
  }

  

  .facility-area-copy h2 span {
    white-space: normal;
  }

  

  .facility-area-list {
    width: fit-content;
    text-align: left;
  }

  .facility-area-visual {
    min-height: 300px;
  }

  .facility-area-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }

  .facility-need-section {
    padding: 56px 0 58px;
  }

  .facility-need-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
    
  }


  .facility-need-visual {
    min-height: 300px;
  }

  .facility-need-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }

  .career-apply-section {
    padding: 58px 0 60px;
  }

  .career-apply-layout {
    gap: 28px;
    
  }

  

  .career-apply-copy h2 {
    width: fit-content;
  }

  .career-apply-line {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  

  .career-apply-visual {
    min-height: 300px;
  }

  .career-apply-visual img {
    left: 50%;
    right: auto;
    width: min(100%, 620px);
    transform: translate(-50%, -50%);
  }

  .services-head h2 {
    font-size: clamp(38px, 6vw, 56px);
  }

  .services-section .services-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
    margin-inline: auto;
  }

  .services-section .service-pill.is-active::before {
    left: 0;
    width: 7px;
  }

  .services-section .info-box {
    min-height: 0;
    padding: 34px 38px 48px;
    border-radius: 30px;
  }

  .services-section .info-box .section-actions {
    position: static;
    justify-content: flex-end;
    margin-top: 26px;
  }

  .faq {
    max-width: 860px;
  }

  .faq summary {
    min-height: 62px;
    padding: 0 24px;
    font-size: clamp(18px, 2vw, 20px);
  }

  .faq-answer {
    margin-inline: 8px;
  }

  .card-grid,
  .testimonial-row,
  .gallery,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .story-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-container {
    width: min(100% - 40px, var(--container));
  }

  .process-section .section-head h2 {
    font-size: clamp(34px, 6vw, 48px);
  }

  .large-section-head h2,
  .process-section .large-section-head h2 {
    font-size: clamp(38px, 6vw, 56px);
  }

  .home-process.story-strip {
    gap: 34px 24px;
  }

  .home-process .story-step {
    text-align: center;
  }

  .home-process .story-step img {
    height: clamp(160px, 25vw, 210px);
    margin-bottom: 18px;
  }

  .home-process .step-number {
    margin-inline: auto;
    box-shadow: none;
  }

  .home-process .story-step strong,
  .home-process .story-step p {
    margin-inline: auto;
  }

  .home-process::before {
    display: none;
  }

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

  .contact-item,
  .contact-social {
    grid-column: auto;
  }

  .contact-item,
  .contact-item:nth-child(odd) {
    border-right: 0;
  }

  .contact-whatsapp,
  .contact-location,
  .contact-instagram,
  .contact-threads,
  .contact-facebook {
    border-right: 0;
  }

  .process::before {
    display: none;
  }

  .section.cta {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .cta-box {
    grid-template-columns: minmax(185px, 0.34fr) minmax(0, 0.66fr);
    max-width: min(100% - 28px, 900px);
    min-height: 286px;
    text-align: left;
  }

  .cta-box::before {
    left: clamp(178px, 30%, 238px);
    height: 68%;
  }

  .cta-chat-bubble {
    right: 24px;
    top: 18px;
    width: 72px;
  }

  .cta-box img {
    justify-self: end;
    order: 0;
    max-height: 330px;
    transform: translateX(26px);
  }

  .cta-content {
    min-height: 205px;
    padding: 46px 58px 34px 48px;
  }

  .cta-content .section-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Keep the approved CTA composition on landscape and portrait tablets. */
@media (min-width: 761px) and (max-width: 992px) {
  .cta-box {
    --tablet-cta-panel-height: clamp(315px, 38vw, 365px);
    min-height: clamp(380px, 48vw, 450px);
  }

  .cta-box::before {
    left: clamp(170px, 24%, 215px);
    right: clamp(18px, 3vw, 28px);
    height: var(--tablet-cta-panel-height);
    border-radius: clamp(28px, 4.8vw, 42px) 0 clamp(48px, 6vw, 58px) 0;
  }

  .cta-box > img.cta-person-default {
    width: auto;
    height: calc(var(--tablet-cta-panel-height) * 1.38);
    max-height: calc(var(--tablet-cta-panel-height) * 1.38);
    transform: translateX(112px) !important;
  }

  .cta-content {
    min-height: var(--tablet-cta-panel-height);
  }

  .cta-chat-bubble {
    right: clamp(8px, 2vw, 18px);
    top: calc(100% - var(--tablet-cta-panel-height) - 26px);
  }
}

/* Close the last neck gap on wider portrait/foldable tablet viewports. */
@media (min-width: 840px) and (max-width: 992px) {
  .cta-box::before {
    left: clamp(135px, 18%, 165px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header .container {
    width: min(100% - 24px, var(--container));
  }

  .brand img {
    width: 178px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  h2 {
    font-size: clamp(29px, 8.4vw, 40px);
  }

  .large-section-head h2,
  .process-section .large-section-head h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  h3 {
    font-size: 21px;
  }

  .section {
    padding: 58px 0;
  }

  .about-section {
    padding: 42px 0 46px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-badge {
    min-height: 36px;
    padding-right: 16px;
    font-size: 13px;
  }

  .about-badge img {
    width: 24px;
    height: 24px;
  }

  .about-copy h2 {
    margin-top: 18px;
    margin-bottom: 34px;
    font-size: clamp(30px, 8vw, 38px);
    white-space: normal;
  }

  .about-line {
    bottom: -18px;
    width: 118px;
  }

  .about-copy p {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.55;
    
  }

  .about-copy .section-actions {
    margin-top: 22px;
  }

  .about-btn {
    min-height: 44px;
    padding: 0 22px;
    font-size: 14px;
  }

  .about-visual {
    min-height: 230px;
  }

  .about-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .problem-section {
    padding: 42px 0 44px;
  }

  .problem-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .problem-badge {
    min-height: 34px;
    padding-right: 16px;
    font-size: 13px;
  }

  .problem-badge img {
    width: 22px;
    height: 22px;
  }

  .problem-copy h2 {
    margin-top: 18px;
    margin-bottom: 32px;
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.06;
  }

  .problem-line {
    bottom: -15px;
    width: 112px;
  }

  .problem-copy p {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.58;
  }

  .problem-visual {
    min-height: 230px;
  }

  .problem-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .consult-section {
    padding: 42px 0 46px;
  }

  .consult-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consult-badge {
    min-height: 38px;
    padding-right: 16px;
    font-size: 13px;
  }

  .consult-badge img {
    width: 30px;
    height: 30px;
  }

  .consult-copy h2 {
    margin-top: 20px;
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.05;
  }

  .consult-line {
    left: calc(100% + 12px);
    top: 52%;
    width: 78px;
    transform: translateY(-40%);
  }

  .consult-copy p {
    font-size: clamp(16px, 1.5vw, 17px);
  }

  .consult-btn {
    min-height: 44px;
    padding: 0 22px;
    font-size: 14px;
  }

  .consult-visual {
    min-height: 230px;
  }

  .consult-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .contact-prep-section {
    padding: 42px 0 46px;
  }

  .contact-prep-badge {
    min-height: 38px;
    padding-right: 16px;
    font-size: 13px;
  }

  .contact-prep-badge img {
    width: 26px;
    height: 26px;
  }

  .contact-prep-copy h2 {
    margin-top: 20px;
    margin-bottom: 34px;
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.06;
  }

  .contact-prep-line {
    bottom: -16px;
    width: 116px;
  }



  .contact-prep-visual {
    min-height: 230px;
  }

  .contact-prep-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .facility-area-section {
    padding: 42px 0 46px;
  }

  .facility-area-copy .eyebrow {
    min-height: 34px;
    padding-right: 16px;
    font-size: 13px;
  }

  .facility-area-copy h2 {
    margin: 18px 0 20px;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.05;
  }

  .facility-area-copy p,
  .facility-area-list {
    font-size: 14px;
    line-height: 1.46;
  }

  .facility-area-visual {
    min-height: 230px;
  }

  .facility-area-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .facility-need-section {
    padding: 42px 0 46px;
  }

  .facility-need-badge {
    min-height: 34px;
    padding-right: 16px;
    font-size: 13px;
  }

  .facility-need-copy h2 {
    margin: 18px 0 34px;
    font-size: clamp(28px, 7.4vw, 36px);
    line-height: 1.06;
  }

  .facility-need-line {
    bottom: -16px;
    width: 116px;
  }

  .facility-need-copy p,
  .facility-need-list {
    font-size: 14px;
    line-height: 1.46;
  }

  .facility-need-visual {
    min-height: 230px;
  }

  .facility-need-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .career-work-section {
    padding: 42px 0 46px;
  }

  .career-work-badge {
    min-height: 34px;
    padding-right: 16px;
    font-size: 13px;
  }

  .career-work-badge img {
    width: 22px;
    height: 22px;
  }

  .career-work-copy h2 {
    margin-top: 18px;
    margin-bottom: 32px;
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.06;
  }

  .career-work-copy h2 span {
    white-space: normal;
  }

  .career-work-line {
    bottom: -15px;
    width: 116px;
  }

  .career-work-copy p {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.48;
  }

  .career-work-visual {
    min-height: 230px;
  }

  .career-work-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .facility-intro-section {
    padding: 42px 0 46px;
  }

  .facility-intro-badge {
    min-height: 34px;
    padding-right: 16px;
    font-size: 13px;
  }

  .facility-intro-badge img {
    width: 22px;
    height: 22px;
  }

  .facility-intro-copy h2 {
    margin-top: 18px;
    margin-bottom: 32px;
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.06;
  }

  .facility-intro-copy h2 span {
    white-space: normal;
  }

  .facility-intro-line {
    bottom: -15px;
    width: 116px;
  }

  .facility-intro-copy p {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.48;
  }

  .facility-intro-visual {
    min-height: 230px;
  }

  .facility-intro-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .facility-program-section {
    padding: 42px 0 46px;
  }

  .facility-program-badge {
    min-height: 34px;
    padding-right: 16px;
    font-size: 13px;
  }

  .facility-program-copy h2 {
    margin: 18px 0 34px;
    font-size: clamp(28px, 7.2vw, 34px);
    line-height: 1.06;
  }

  .facility-program-line {
    bottom: -16px;
    width: 116px;
  }

  .facility-program-copy p,
  .facility-program-list {
    font-size: 14px;
    line-height: 1.46;
  }

  .facility-program-visual {
    min-height: 230px;
  }

  .facility-program-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .career-apply-section {
    padding: 42px 0 46px;
  }

  .career-apply-badge {
    min-height: 34px;
    padding-right: 16px;
    font-size: 13px;
  }

  .career-apply-badge img {
    width: 22px;
    height: 22px;
  }

  .career-apply-copy h2 {
    margin-top: 18px;
    margin-bottom: 32px;
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.06;
    white-space: normal;
  }

  .career-apply-line {
    bottom: -15px;
    width: 116px;
  }

  .career-apply-copy p,
  .career-apply-subtitle,
  .career-apply-list {
    font-size: 14px;
    line-height: 1.48;
  }

  .career-apply-visual {
    min-height: 230px;
  }

  .career-apply-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .services-section {
    padding: 48px 0 56px;
  }

  .services-head {
    margin-bottom: 32px;
  }

  .services-head .eyebrow {
    min-height: 36px;
    padding: 0 18px;
    font-size: 14px;
  }

  .services-head h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .services-head .lead {
    font-size: clamp(16px, 1.5vw, 17px);
  }

  .services-section .service-tabs::before {
    min-height: 50px;
    border-radius: 12px;
    font-size: 14px;
  }

  .services-section .service-pill {
    min-height: 40px;
    font-size: 13px;
  }

  .services-section .service-pill.is-active::before {
    left: 0;
    height: 34px;
    width: 6px;
  }

  .services-section .info-box {
    padding: 28px 24px 34px;
    border-radius: 24px;
  }

  .services-section .info-box h3 {
    font-size: clamp(18px, 2vw, 20px);
  }

  .services-section .info-box p,
  .services-section .info-box li {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.45;
  }

  .services-section .info-box ul {
    margin: 20px 0;
  }

  .services-section .info-box .section-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .services-section .info-box .btn {
    min-height: 44px;
    padding: 0 22px;
    font-size: 13px;
  }

  .faq summary {
    min-height: 54px;
    padding: 0 18px;
    font-size: clamp(16px, 1.5vw, 17px);
  }

  .faq summary::after {
    font-size: 26px;
  }

  .faq-answer {
    margin-inline: 5px;
    padding: 14px 16px 16px;
  }

  .faq p {
    font-size: clamp(15px, 1.3vw, 16px);
    line-height: 1.55;
  }

  .hero-grid {
    padding: 46px 0 42px;
  }

  .hero-home .hero-grid {
    padding-bottom: 18px;
  }

  .about-hero .hero-grid {
    padding-bottom: 18px;
  }

  .hero-service .hero-grid {
    padding-bottom: 18px;
  }

  .hero-curriculum .hero-grid {
    padding-bottom: 18px;
  }

  .hero-facility .hero-grid {
    padding-bottom: 18px;
  }

  .hero-contact .hero-grid {
    padding-bottom: 18px;
  }

  .hero-career .hero-grid {
    padding-bottom: 18px;
  }

  .hero-home h1 {
    font-size: clamp(32px, 8vw, 42px);
    line-height: 1.04;
  }

  .about-hero h1 {
    font-size: clamp(38px, 10.5vw, 54px);
    line-height: 0.95;
  }

  .hero-service h1 {
    font-size: clamp(38px, 10.5vw, 54px);
    line-height: 0.95;
  }

  .hero-curriculum h1 {
    font-size: clamp(38px, 10.5vw, 54px);
    line-height: 0.95;
  }

  .hero-facility h1 {
    font-size: clamp(32px, 9.2vw, 46px);
    line-height: 0.98;
  }

  .hero-contact h1 {
    font-size: clamp(38px, 10.5vw, 54px);
    line-height: 0.95;
  }

  .hero-career h1 {
    font-size: clamp(32px, 9.2vw, 46px);
    line-height: 0.98;
  }

  .hero-title-line {
    bottom: -14px;
    width: min(210px, 64vw);
  }

  .hero-description span {
    white-space: normal;
  }

  .home-hero-art {
    min-height: clamp(330px, 92vw, 430px);
  }

  .about-hero-art {
    min-height: clamp(330px, 92vw, 430px);
  }

  .service-hero-art {
    min-height: clamp(330px, 92vw, 430px);
  }

  .curriculum-hero-art {
    min-height: clamp(330px, 92vw, 430px);
  }

  .facility-hero-art {
    min-height: clamp(330px, 92vw, 430px);
  }

  .contact-hero-art {
    min-height: clamp(330px, 92vw, 430px);
  }

  .career-hero-art {
    min-height: clamp(330px, 92vw, 430px);
  }

  .home-hero-art .hero-bg {
    right: -80%;
    bottom: -8%;
    width: 230%;
  }

  .about-hero-art .hero-bg {
    right: -80%;
    bottom: -8%;
    width: 230%;
  }

  .service-hero-art .hero-bg {
    right: -80%;
    bottom: -8%;
    width: 230%;
  }

  .curriculum-hero-art .hero-bg {
    right: -80%;
    bottom: -8%;
    width: 230%;
  }

  .facility-hero-art .hero-bg {
    right: -80%;
    bottom: -8%;
    width: 230%;
  }

  .contact-hero-art .hero-bg {
    right: -80%;
    bottom: -8%;
    width: 230%;
  }

  .career-hero-art .hero-bg {
    right: -80%;
    bottom: -8%;
    width: 230%;
  }

  .home-hero-art .hero-person-left {
    right: 40%;
    height: min(75%, 328px);
  }

  .home-hero-art .hero-person-right {
    right: 5%;
    height: min(80%, 354px);
  }

  .about-hero-art .about-person-left,
  .career-hero-art .career-person-left {
    right: 40%;
    height: min(75%, 328px);
  }

  .about-hero-art .about-person-right,
  .career-hero-art .career-person-right {
    right: 5%;
    height: min(80%, 354px);
  }

  .service-hero-art .service-hero-person {
    right: 20%;
    height: min(82%, 364px);
  }

  .curriculum-hero-art .curriculum-hero-person {
    right: 17%;
    height: min(88%, 392px);
  }

  .facility-hero-art .facility-hero-person {
    right: 17%;
    height: min(88%, 392px);
  }

  .contact-hero-art .contact-person-left {
    right: 39%;
    height: min(78%, 348px);
  }

  .contact-hero-art .contact-person-right {
    right: 6%;
    height: min(84%, 374px);
  }

  .btn {
    width: 100%;
  }

  .card-grid,
  .testimonial-row,
  .gallery,
  .team-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .about-facility-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo1"
      "photo2"
      "quote"
      "photo3"
      "photo4";
  }

  .about-facility-title {
    font-size: clamp(38px, 10vw, 50px);
  }

  .about-facility-quote {
    font-size: clamp(18px, 2vw, 20px);
  }

  .about-facility-quote span {
    white-space: normal;
  }

  .about-understand-copy h2 {
    font-size: clamp(32px, 8.8vw, 42px);
  }

  .service-choice-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .service-list-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .facility-list-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .service-list-head {
    margin-bottom: 34px;
  }

  .facility-list-head {
    margin-bottom: 34px;
  }

  .service-list-head h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .facility-list-head h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .service-list-image {
    min-height: 0;
    border-radius: 0 28px 0 28px;
  }

  .service-list-image span {
    left: 20px;
    top: 20px;
    min-width: 112px;
    min-height: 40px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .facility-list-image {
    min-height: 0;
    border-radius: 28px;
  }

  .facility-list-image span {
    min-width: 180px;
    min-height: 38px;
    padding-inline: 18px;
    font-size: 14px;
    bottom: -20px;
  }

  .service-list-title,
  .service-list-row {
    min-height: 46px;
    font-size: clamp(16px, 1.35vw, 18px);
  }

  .facility-list-title,
  .facility-list-row {
    min-height: 46px;
    font-size: clamp(16px, 1.35vw, 18px);
  }

  .service-list-content {
    padding: 20px;
  }

  .facility-list-content {
    padding: 20px;
  }

  .service-uncertain-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .service-uncertain-eyebrow {
    margin-bottom: 22px;
  }

  .service-uncertain-copy h2 {
    margin-bottom: 38px;
    font-size: clamp(32px, 8.8vw, 42px);
  }

  .service-uncertain-copy h2 span {
    white-space: normal;
  }

  .service-uncertain-copy h2::after {
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
  }

  .service-uncertain-btn {
    width: min(100%, 300px);
    min-height: 46px;
    padding-left: 22px;
    padding-right: 56px;
    justify-content: center;
  }

  .service-uncertain-btn .cta-wa-icon {
    right: -18px;
    width: 50px;
    height: 50px;
  }

  .service-focus-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .service-focus-eyebrow {
    margin-bottom: 22px;
  }

  .service-focus-copy h2 {
    margin-bottom: 36px;
    font-size: clamp(32px, 8.8vw, 42px);
  }

  .service-focus-copy h2 span {
    white-space: normal;
  }

  .service-focus-copy h2::after {
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
  }

  .service-choice-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .service-choice-copy h2 span {
    white-space: normal;
  }

  .service-choice-copy h2::after {
    left: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(-50%);
  }

  .service-choice-copy .section-actions {
    flex-wrap: wrap;
  }

  .service-choice-copy .btn {
    width: 100%;
    justify-content: center;
  }

  .about-understand-copy .understand-title-line {
    white-space: normal;
  }

  .about-focus-copy h2 {
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .about-focus-copy .focus-title-line {
    white-space: normal;
  }

  .about-label-copy h2 {
    font-size: clamp(32px, 8.8vw, 42px);
  }

  .about-label-copy .label-title-line {
    white-space: normal;
  }

  .about-approach-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-approach-copy .approach-title-line {
    white-space: normal;
  }

  .approach-list {
    gap: 14px;
  }

  .approach-btn {
    width: auto;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
  }

  .service-pill {
    min-height: 46px;
    font-size: clamp(15px, 1.3vw, 16px);
  }

  .process-step img {
    height: 136px;
  }

  .visual-card img {
    max-height: 430px;
  }

  .service-problem-section {
    padding: 42px 0 46px;
  }

  .service-problem-badge {
    min-height: 34px;
    padding-right: 16px;
    font-size: 13px;
  }

  .service-problem-badge::before {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .service-problem-copy h2 {
    width: auto;
    margin-top: 18px;
    margin-bottom: 32px;
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.08;
  }

  .service-problem-line {
    bottom: -15px;
    width: 126px;
  }

  .service-problem-copy p {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.58;
  }

  .service-problem-btn {
    min-height: 44px;
    padding: 0 24px;
  }

  .service-problem-visual {
    min-height: 230px;
  }

  .service-problem-visual img {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .story-strip {
    grid-template-columns: 1fr;
  }

  .process-container {
    width: min(100% - 32px, var(--container));
  }

  .process-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .testimonial,
  .testimonial-carousel .testimonial {
    padding-left: 88px;
  }

  .testimonial-carousel .testimonial > img {
    left: 20px;
    top: 22px;
    width: 52px;
    height: 52px;
  }

  .story-step img {
    height: 150px;
  }

  .home-process .story-step img {
    height: 168px;
    margin-bottom: 14px;
  }

  .home-process .story-step strong {
    font-size: clamp(17px, 1.8vw, 19px);
  }

  .map-card,
  .map-card img,
  .map-card iframe {
    min-height: 280px;
  }

  .section.cta {
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .cta {
    background: var(--lavender-2);
  }

  .cta-box {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
    border-radius: 28px;
    background:
      radial-gradient(circle at 88% 18%, rgba(255, 217, 92, 0.22), transparent 18%),
      linear-gradient(135deg, #9b6be2 0%, #6c4ac1 100%);
    text-align: center;
  }

  .cta-box::before,
  .cta-box::after,
  .cta-content::before,
  .cta-chat-bubble {
    display: none;
  }

  .cta-box img {
    width: min(76%, 280px);
    max-height: 300px;
    margin: 0 auto -22px;
    order: 0;
    transform: none;
  }

  .cta-content {
    padding: 28px 22px 30px;
  }

  .cta-content h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .cta-content p {
    font-size: clamp(16px, 1.5vw, 18px);
  }

  .cta-content .section-actions {
    justify-content: center;
  }

  .cta-content .btn.light {
    width: auto;
    max-width: 100%;
    padding-right: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-art::before {
    right: 50%;
    top: 2%;
    transform: translateX(50%);
  }

  .hero-art::after,
  .visual-card::after {
    inset: 10%;
    opacity: 0.58;
  }

  .process-step::after {
    height: 146px;
  }

  .float-contact {
    right: 12px;
    bottom: 12px;
    width: min(210px, calc(100vw - 24px));
  }
}

@media (max-width: 992px) {
  .curriculum-program-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .curriculum-program-copy {
    max-width: 680px;
    margin: 0 auto;
  }

  .curriculum-program-copy h2 {
    width: auto;
    font-size: clamp(32px, 7vw, 44px);
  }

  .curriculum-program-copy h2 span {
    white-space: normal;
  }

  .curriculum-program-copy p {
    max-width: 100%;
  }

  .curriculum-program-visual {
    min-height: 0;
    text-align: center;
  }

  .curriculum-program-visual img {
    position: static;
    width: min(100%, 620px);
    max-height: none;
    transform: none;
  }

  .curriculum-audience-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .curriculum-audience-visual {
    min-height: 0;
    text-align: center;
  }

  .curriculum-audience-visual img {
    position: static;
    width: min(100%, 520px);
    max-height: none;
    transform: none;
  }

  .curriculum-audience-copy {
    max-width: 680px;
    margin: 0 auto;
  }

  .curriculum-audience-copy h2 {
    font-size: clamp(38px, 8vw, 54px);
  }

  .curriculum-random-container {
    width: min(100% - 42px, 760px);
  }

  .curriculum-random-head h2 {
    font-size: clamp(38px, 7.5vw, 54px);
  }

  .curriculum-random-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
  }

  .curriculum-random-step img {
    height: clamp(170px, 24vw, 220px);
  }

  .facility-gallery-container {
    width: min(100% - 36px, 720px);
  }

  .facility-gallery-head h2 {
    font-size: clamp(38px, 8vw, 52px);
  }

  .facility-gallery-head .lead {
    font-size: clamp(17px, 1.8vw, 19px);
  }

  .facility-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 18px;
  }

  .facility-gallery-card,
  .gallery-screening,
  .gallery-brainwave,
  .gallery-consultation,
  .gallery-sensory,
  .gallery-concentration,
  .gallery-learning,
  .gallery-cbt,
  .gallery-admin,
  .gallery-lounge,
  .gallery-extra {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 620px) {
  .curriculum-program-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .curriculum-program-badge {
    min-height: 36px;
    font-size: 13px;
  }

  .curriculum-program-copy h2 {
    margin-bottom: 34px;
    font-size: clamp(28px, 10vw, 38px);
  }

  .curriculum-program-line {
    width: 172px;
    bottom: -19px;
  }

  .curriculum-program-copy p {
    font-size: clamp(16px, 1.5vw, 17px);
    text-align: left;
  }

  .curriculum-audience-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .curriculum-audience-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .curriculum-audience-copy p {
    margin-bottom: 24px;
    font-size: clamp(16px, 1.5vw, 18px);
  }

  .curriculum-audience-copy h3 {
    margin-bottom: 18px;
    font-size: clamp(16px, 1.5vw, 17px);
  }

  .curriculum-audience-copy ul {
    gap: 7px;
    font-size: 14px;
  }

  .curriculum-random-section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .curriculum-random-container {
    width: min(100% - 28px, 430px);
  }

  .curriculum-random-head {
    margin-bottom: 34px;
  }

  .curriculum-random-head .eyebrow {
    margin-bottom: 16px;
  }

  .curriculum-random-head h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .curriculum-random-head .lead {
    font-size: clamp(16px, 1.5vw, 17px);
  }

  .curriculum-random-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .curriculum-random-step img {
    height: auto;
    max-height: 220px;
  }

  .curriculum-random-step h3 {
    max-width: 100%;
    font-size: clamp(15px, 1.3vw, 16px);
  }

  .facility-gallery-section {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .facility-gallery-container {
    width: min(100% - 28px, 440px);
  }

  .facility-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .facility-gallery-card,
  .gallery-screening,
  .gallery-brainwave,
  .gallery-consultation,
  .gallery-sensory,
  .gallery-concentration,
  .gallery-learning,
  .gallery-cbt,
  .gallery-admin,
  .gallery-lounge,
  .gallery-extra {
    aspect-ratio: 1.32 / 1;
  }

  .facility-gallery-card figcaption {
    font-size: clamp(16px, 1.5vw, 18px);
  }
}

@media (max-width: 760px) {
  .home-page {
    overflow-x: hidden;
  }

  .home-page .site-header {
    padding: 10px 0;
  }

  .home-page .site-header .container {
    width: min(100% - 24px, var(--container));
  }

  .home-page .nav {
    min-height: 58px;
    padding: 8px 12px;
    border-radius: 999px;
  }

  .home-page .brand img {
    width: clamp(158px, 44vw, 206px);
  }

  .home-page .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .home-page .nav-links {
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    gap: 2px;
    padding: 12px;
    border-radius: 22px;
  }

  .home-page .nav-links a {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    text-align: left;
  }

  .home-page .hero-home {
    padding: 30px 0 18px;
  }

  .home-page .hero-home .hero-grid {
    gap: 8px;
    padding-top: 0;
    padding-bottom: 8px;
    text-align: left;
  }

  .home-page .hero-copy {
    max-width: 100%;
    text-align: left;
  }

  .home-page .hero-home h1 {
    width: 100%;
    margin: 0;
    font-size: clamp(38px, 12.2vw, 58px);
    line-height: 0.97;
    letter-spacing: 0;
  }

  .home-page .hero-home h1 span {
    display: block;
  }

  .home-page .hero-title-dark,
  .home-page .hero-title-accent,
  .home-page .hero-title-last {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .home-page .hero-title-last {
    margin-inline: 0;
    font-size: 0.92em;
  }

  .home-page .hero-the-mark,
  .home-page .hero-thrive {
    display: inline-block;
  }

  .home-page .hero-title-line {
    left: 2px;
    bottom: -0.18em;
    width: clamp(132px, 37vw, 190px);
  }

  .home-page .hero-spark {
    width: clamp(8px, 2.5vw, 12px);
  }

  .home-page .hero-description {
    max-width: 34rem;
    margin: 20px 0 0;
    font-size: clamp(13px, 3.4vw, 15px);
    line-height: 1.48;
  }

  .home-page .hero-description span {
    display: inline;
  }

  .home-page .hero-description span + span::before {
    content: " ";
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 22px 0 0;
    justify-content: start;
  }

  .home-page .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
    text-align: center;
  }

  .home-page .home-hero-art {
    width: min(100%, 420px);
    min-height: clamp(280px, 82vw, 370px);
    margin: 6px auto 0;
    overflow: visible;
  }

  .home-page .home-hero-art .hero-bg {
    right: -42%;
    bottom: -4%;
    width: 192%;
    max-width: none;
  }

  .home-page .home-hero-art .hero-person-left {
    right: 48%;
    height: min(80%, 310px);
  }

  .home-page .home-hero-art .hero-person-right {
    right: 10%;
    height: min(86%, 335px);
  }

  .home-page .about-section,
  .home-page .problem-section,
  .home-page .consult-section,
  .home-page .services-section,
  .home-page .process-section,
  .home-page .testimonial-section,
  .home-page .faq-section,
  .home-page .section.cta {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .home-page .about-layout,
  .home-page .problem-layout,
  .home-page .consult-layout,
  .home-page .services-panel {
    gap: 24px;
    text-align: left;
  }

  .home-page .about-copy,
  .home-page .problem-copy,
  .home-page .consult-copy,
  .home-page .section-head {
    text-align: left;
  }

  .home-page .section-head {
    margin-inline: 0;
  }

  .home-page .section-head .eyebrow,
  .home-page .about-badge,
  .home-page .problem-badge,
  .home-page .consult-badge {
    margin-inline: 0;
  }

  .home-page .section-head h2,
  .home-page .about-copy h2,
  .home-page .problem-copy h2,
  .home-page .consult-copy h2 {
    width: 100%;
    margin-inline: 0;
    font-size: clamp(31px, 8.9vw, 42px);
    line-height: 1.08;
    text-align: left;
  }

  .home-page .section-head .lead,
  .home-page .about-copy p,
  .home-page .problem-copy p,
  .home-page .consult-copy p {
    max-width: 100%;
    margin-inline: 0;
    color: var(--ink);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.65;
    text-align: left;
  }

  .home-page .about-line,
  .home-page .problem-line {
    left: 0;
    transform: none;
  }

  .home-page .consult-title-accent {
    margin-inline: 0;
  }

  .home-page .consult-line {
    left: 0;
    top: auto;
    bottom: -17px;
    width: 118px;
    transform: none;
  }

  .home-page .section-actions {
    justify-content: flex-start;
  }

  .home-page .about-visual,
  .home-page .problem-visual,
  .home-page .consult-visual {
    min-height: clamp(230px, 62vw, 330px);
  }

  .home-page .about-visual img,
  .home-page .problem-visual img,
  .home-page .consult-visual img {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    display: block;
    margin: 0 auto;
    width: min(100%, 430px);
    max-height: none;
  }

  .home-page .problem-visual {
    order: 2;
  }

  .home-page .problem-copy {
    order: 1;
  }

  .home-page .services-section .services-panel {
    max-width: none;
  }

  .home-page .service-tabs {
    gap: 10px;
  }

  .home-page .service-pill {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
  }

  .home-page .services-section .service-pill.is-active::before {
    left: -3px;
    width: 6px;
  }

  .home-page .services-section .info-box {
    padding: 26px 22px 28px;
    border-radius: 24px;
  }

  .home-page .services-section .info-box .section-actions {
    justify-content: flex-start;
  }

  .home-page .process-container {
    width: min(100% - 24px, var(--container));
  }

  .home-page .home-process.story-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-page .home-process .story-step {
    display: grid;
    grid-template-columns: 82px 1fr;
    column-gap: 16px;
    align-items: start;
    text-align: left;
  }

  .home-page .home-process .story-step img {
    grid-row: span 3;
    width: 82px;
    height: 82px;
    margin: 0;
    object-fit: contain;
  }

  .home-page .home-process .step-number {
    margin: 0 0 8px;
  }

  .home-page .home-process .story-step strong,
  .home-page .home-process .story-step p {
    margin-inline: 0;
  }

  .home-page .testimonial-slide {
    grid-template-columns: 1fr;
  }

  .home-page .testimonial-carousel .testimonial {
    min-height: 0;
    padding: 22px 22px 26px;
  }

  .home-page .testimonial-carousel .testimonial > img {
    width: 58px;
    height: 58px;
  }

  .home-page .faq {
    max-width: none;
  }

  .home-page .faq-title {
    text-align: left;
  }

  .home-page .faq-title span {
    display: inline;
  }

  .home-page .faq summary {
    min-height: 58px;
    padding: 0 48px 0 18px;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.25;
  }

  .home-page .faq-answer {
    margin-inline: 6px;
    padding: 14px 16px 18px;
  }

  .home-page .cta {
    background: var(--lavender-2);
  }

  .home-page .cta-box {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    max-width: min(100% - 24px, 520px);
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #9b6be2 0%, #8b5bd4 100%);
    text-align: left;
  }

  .home-page .cta-box::before,
  .home-page .cta-box::after,
  .home-page .cta-chat-bubble {
    display: none;
  }

  .home-page .cta-box img {
    justify-self: center;
    width: min(70%, 230px);
    max-height: 260px;
    margin-top: -14px;
    transform: none;
  }

  .home-page .cta-content {
    min-height: 0;
    padding: 8px 24px 30px;
  }

  .home-page .cta-content h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .home-page .cta-content p {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.55;
  }

  .home-page .cta-content .section-actions {
    width: 100%;
  }

  .home-page .cta-content .cta-wa-btn {
    width: min(100%, 310px);
    min-height: 44px;
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 420px) {
  .home-page .hero-home h1 {
    font-size: clamp(34px, 11.3vw, 44px);
  }

  .home-page .hero-title-last {
    font-size: 0.88em;
  }

  .home-page .hero-actions {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero-art {
    min-height: 282px;
  }

  .home-page .home-hero-art .hero-bg {
    right: -48%;
    width: 205%;
  }

  .home-page .home-hero-art .hero-person-left {
    right: 47%;
    height: min(77%, 275px);
  }

  .home-page .home-hero-art .hero-person-right {
    right: 8%;
    height: min(83%, 300px);
  }

  .home-page .section-head h2,
  .home-page .about-copy h2,
  .home-page .problem-copy h2,
  .home-page .consult-copy h2 {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  .home-page .home-process .story-step {
    grid-template-columns: 70px 1fr;
    column-gap: 14px;
  }

  .home-page .home-process .story-step img {
    width: 70px;
    height: 70px;
  }

  .home-page .float-contact {
    right: 12px;
    bottom: 12px;
    width: min(72vw, 250px);
  }
}

/* Facility mobile layout: keep the desktop composition intact. */
@media (max-width: 760px) {
  .facility-page {
    overflow-x: hidden;
  }

  .facility-page .hero-facility .hero-grid,
  .facility-page .facility-intro-layout,
  .facility-page .facility-program-layout,
  .facility-page .facility-need-layout,
  .facility-page .facility-area-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: min(100% - 32px, 520px);
    margin-inline: auto;
  }

  .facility-page .hero-facility .hero-copy,
  .facility-page .facility-intro-copy,
  .facility-page .facility-program-copy,
  .facility-page .facility-need-copy,
  .facility-page .facility-area-copy {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .facility-page .hero-facility h1,
  .facility-page .facility-intro-copy h2,
  .facility-page .facility-program-copy h2,
  .facility-page .facility-need-copy h2,
  .facility-page .facility-area-copy h2 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .facility-page .facility-intro-copy h2 span,
  .facility-page .facility-program-copy h2 span,
  .facility-page .facility-need-copy h2 span,
  .facility-page .facility-area-copy h2 span {
    white-space: normal;
  }

  .facility-page .hero-facility h1 {
    font-size: clamp(35px, 10vw, 46px);
    line-height: 1.02;
  }

  .facility-page .hero-facility .lead,
  .facility-page .facility-intro-copy p,
  .facility-page .facility-program-copy p,
  .facility-page .facility-need-copy p,
  .facility-page .facility-area-copy p,
  .facility-page .facility-area-list {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.55;
    text-align: left;
  }

  .facility-page .facility-hero-art,
  .facility-page .facility-intro-visual,
  .facility-page .facility-program-visual,
  .facility-page .facility-need-visual,
  .facility-page .facility-area-visual {
    width: 100%;
    min-height: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
  }

  .facility-page .facility-hero-art {
    min-height: 300px;
  }

  .facility-page .facility-hero-art .hero-bg {
    position: absolute;
    inset: 0;
    width: 150%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    transform: translateX(-3%);
  }

  .facility-page .facility-hero-art .facility-hero-person {
    position: relative;
    inset: auto;
    display: block;
    width: min(72%, 330px);
    max-width: none;
    height: auto;
    margin-inline: auto;
    transform: none;
  }

  .facility-page .facility-intro-visual img,
  .facility-page .facility-program-visual img,
  .facility-page .facility-need-visual img,
  .facility-page .facility-area-visual img {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
    width: min(100%, 440px);
    max-width: 100%;
    height: auto;
    margin-inline: auto;
    transform: none;
  }

  .facility-page .facility-intro-section,
  .facility-page .facility-program-section,
  .facility-page .facility-need-section,
  .facility-page .facility-area-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .facility-page .facility-list-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .facility-page .facility-list-head {
    width: min(100% - 32px, 520px);
    
    text-align: center;
  }

  .facility-page .facility-list-head h2 {
    font-size: clamp(32px, 9.5vw, 44px);
    line-height: 1.05;
  }

  .facility-page .facility-list-head .lead {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.5;
  }

  .facility-page .facility-list-grid {
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: min(100% - 32px, 520px);
    
  }

  .facility-page .facility-list-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 0.82;
    border-radius: 28px;
  }

  .facility-page .facility-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .facility-page .facility-list-board {
    width: 100%;
    min-width: 0;
  }

  .facility-page .facility-list-title,
  .facility-page .facility-list-row {
    min-height: 48px;
    width: 100%;
    font-size: clamp(16px, 1.35vw, 18px);
  }

  .facility-page .facility-list-active {
    width: 100%;
    border-radius: 0 0 18px 18px;
  }

  .facility-page .facility-list-content {
    padding: 22px 20px 24px;
    font-size: clamp(15px, 1.3vw, 16px);
    line-height: 1.56;
  }

  .facility-page .facility-gallery-head {
    width: min(100% - 32px, 520px);
    margin-inline: auto;
    text-align: center;
  }

  .facility-page .facility-gallery-head h2 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.05;
  }

  .facility-page .facility-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
    width: min(100% - 32px, 520px);
    margin-inline: auto;
  }

  .facility-page .facility-gallery-card,
  .facility-page .gallery-screening,
  .facility-page .gallery-brainwave,
  .facility-page .gallery-consultation,
  .facility-page .gallery-sensory,
  .facility-page .gallery-concentration,
  .facility-page .gallery-learning,
  .facility-page .gallery-cbt,
  .facility-page .gallery-admin,
  .facility-page .gallery-lounge,
  .facility-page .gallery-extra {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1.35 / 1;
    min-height: 0;
  }

  .facility-page .facility-gallery-card figcaption {
    font-size: clamp(16px, 1.5vw, 17px);
  }
}

@media (max-width: 420px) {
  .facility-page .hero-facility .hero-grid,
  .facility-page .facility-intro-layout,
  .facility-page .facility-program-layout,
  .facility-page .facility-need-layout,
  .facility-page .facility-area-layout,
  .facility-page .facility-list-grid,
  .facility-page .facility-list-head,
  .facility-page .facility-gallery-grid,
  .facility-page .facility-gallery-head {
    width: min(100% - 28px, 390px);
  }

  .facility-page .facility-hero-art {
    min-height: 270px;
  }

  .facility-page .facility-hero-art .facility-hero-person {
    width: min(76%, 300px);
  }

  .facility-page .facility-list-image {
    aspect-ratio: 1 / 0.78;
  }

  .facility-page .facility-intro-copy h2,
  .facility-page .facility-program-copy h2,
  .facility-page .facility-need-copy h2,
  .facility-page .facility-area-copy h2 {
    font-size: clamp(25px, 7vw, 29px);
    line-height: 1.12;
  }

  .facility-page .facility-program-copy p,
  .facility-page .facility-program-list,
  .facility-page .facility-need-copy p,
  .facility-page .facility-need-list,
  .facility-page .facility-area-copy p,
  .facility-page .facility-area-list {
    font-size: 15px;
    line-height: 1.55;
  }

  .facility-page .facility-program-section,
  .facility-page .facility-need-section,
  .facility-page .facility-area-section {
    padding-bottom: 86px;
  }
}

/* Keep the facility hero artwork fully visible on narrow screens. */
@media (max-width: 760px) {
  .facility-page .hero.hero-facility {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .facility-page .hero-facility .hero-grid {
    height: auto;
    min-height: 0;
    padding-bottom: 32px;
    overflow: visible;
  }

  .facility-page .facility-hero-art {
    flex: 0 0 clamp(280px, 78vw, 360px);
    height: clamp(280px, 78vw, 360px);
    min-height: clamp(280px, 78vw, 360px);
    max-height: none;
    overflow: visible;
    isolation: isolate;
  }

  .facility-page .facility-hero-art .hero-bg {
    position: absolute;
    inset: 0;
    width: 125%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .facility-page .facility-hero-art .facility-hero-person {
    position: relative;
    inset: auto;
    z-index: 2;
    display: block;
    width: min(82%, 340px);
    height: auto;
    max-height: 100%;
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 420px) {
  .facility-page .facility-hero-art {
    flex-basis: clamp(260px, 76vw, 330px);
    height: clamp(260px, 76vw, 330px);
    min-height: clamp(260px, 76vw, 330px);
  }

  .facility-page .facility-hero-art .facility-hero-person {
    width: min(84%, 310px);
  }
}

@media (max-width: 760px) {
  .about-page {
    overflow-x: hidden;
  }

  .about-page .site-header {
    padding: 10px 0;
  }

  .about-page .site-header .container {
    width: min(100% - 24px, var(--container));
  }

  .about-page .nav {
    min-height: 58px;
    padding: 8px 12px;
    border-radius: 999px;
  }

  .about-page .brand img {
    width: clamp(158px, 44vw, 206px);
  }

  .about-page .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .about-page .nav-links {
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    gap: 2px;
    padding: 12px;
    border-radius: 22px;
  }

  .about-page .nav-links a {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    text-align: left;
  }

  .about-page .hero.about-hero {
    padding: 30px 0 18px;
  }

  .about-page .about-hero .hero-grid {
    gap: 8px;
    padding-top: 0;
    padding-bottom: 8px;
    text-align: left;
  }

  .about-page .about-hero-copy {
    max-width: 100%;
    text-align: left;
  }

  .about-page .about-hero .eyebrow,
  .about-page .about-understand-eyebrow,
  .about-page .star-eyebrow,
  .about-page .approach-eyebrow,
  .about-page .section-head .eyebrow {
    margin-inline: 0;
  }

  .about-page .about-hero h1 {
    width: 100%;
    margin: 0;
    font-size: clamp(42px, 13vw, 60px);
    line-height: 0.96;
    letter-spacing: 0;
    text-align: left;
  }

  .about-page .about-hero h1 span {
    display: block;
    white-space: nowrap;
  }

  .about-page .about-hero .lead {
    max-width: 34rem;
    margin: 18px 0 0;
    color: var(--ink);
    font-size: clamp(15px, 3.5vw, 17px);
    line-height: 1.5;
    text-align: left;
  }

  .about-page .about-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 22px 0 0;
    justify-content: start;
  }

  .about-page .about-hero .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
    text-align: center;
  }

  .about-page .about-hero-art,
  .hero-career .career-hero-art {
    width: min(100%, 420px);
    min-height: clamp(280px, 82vw, 370px);
    margin: 6px auto 0;
    overflow: visible;
  }

  .about-page .about-hero-art .hero-bg {
    right: -42%;
    bottom: -4%;
    width: 192%;
    max-width: none;
  }

  .about-page .about-hero-art .about-person-left,
  .hero-career .career-hero-art .career-person-left {
    right: 48%;
    height: min(80%, 310px);
  }

  .about-page .about-hero-art .about-person-right,
  .hero-career .career-hero-art .career-person-right {
    right: 10%;
    height: min(86%, 335px);
  }

  .about-page .about-understand-section,
  .about-page .about-focus-section,
  .about-page .about-label-section,
  .about-page .about-approach-section,
  .about-page .about-team-section,
  .about-page .about-facility-section,
  .about-page .faq-section,
  .about-page .section.cta {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .about-page .about-understand-layout,
  .about-page .about-focus-layout,
  .about-page .about-label-layout,
  .about-page .about-approach-layout {
    max-width: none;
    gap: 24px;
    text-align: left;
  }

  .about-page .about-understand-copy,
  .about-page .about-focus-copy,
  .about-page .about-label-copy,
  .about-page .about-approach-copy,
  .about-page .section-head {
    max-width: none;
    text-align: left;
  }

  .about-page .section-head {
    margin-inline: 0;
  }

  .about-page .about-understand-copy h2,
  .about-page .about-focus-copy h2,
  .about-page .about-label-copy h2,
  .about-page .about-approach-copy h2,
  .about-page .section-head h2 {
    width: 100%;
    margin-inline: 0;
    font-size: clamp(31px, 8.8vw, 42px);
    line-height: 1.08;
    text-align: left;
  }

  .about-page .about-understand-copy .understand-title-line,
  .about-page .about-focus-copy .focus-title-line,
  .about-page .about-label-copy .label-title-line,
  .about-page .about-approach-copy .approach-title-line {
    white-space: normal;
  }

  .about-page .about-understand-copy h2::after,
  .about-page .about-label-copy h2::after {
    left: 0;
    transform: none;
  }

  .about-page .about-approach-copy h2 em::after {
    left: 0;
    transform: none;
  }

  .about-page .about-understand-copy p,
  .about-page .about-focus-copy p,
  .about-page .about-label-copy p,
  .about-page .about-approach-copy > p,
  .about-page .section-head .lead {
    max-width: 100%;
    margin-inline: 0;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.65;
    text-align: left;
  }

  .about-page .about-focus-copy ul,
  .about-page .approach-list {
    width: 100%;
    margin-inline: 0;
    text-align: left;
  }

  .about-page .approach-list {
    gap: 14px;
  }

  .about-page .approach-list article h3 {
    font-weight: 650;
    line-height: 1.35;
  }

  .about-page .approach-list article p {
    line-height: 1.55;
  }

  .about-page .about-understand-visual,
  .about-page .about-focus-visual,
  .about-page .about-label-visual,
  .about-page .about-approach-visual {
    min-height: clamp(230px, 62vw, 330px);
  }

  .about-page .about-understand-visual img,
  .about-page .about-focus-visual img,
  .about-page .about-label-visual img,
  .about-page .about-approach-visual img {
    width: min(100%, 430px);
    max-height: none;
    margin-inline: auto;
  }

  .about-page .about-focus-visual,
  .about-page .about-label-visual {
    order: 2;
  }

  .about-page .about-focus-copy,
  .about-page .about-label-copy {
    order: 1;
  }

  .about-page .about-approach-section .section-actions {
    justify-content: flex-start;
    margin-inline: 0;
  }

  .about-page .approach-btn {
    width: auto;
    min-width: 176px;
  }

  .about-page .about-team-head {
    text-align: center;
  }

  .about-page .about-team-head .eyebrow {
    margin-inline: auto;
  }

  .about-page .about-team-head h2 {
    text-align: center;
  }

  .about-page .about-team-head .lead {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
  }

  .about-page .about-team-carousel {
    margin-inline: calc(50% - 50vw);
    padding: 18px 20px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .about-page .about-team-carousel::-webkit-scrollbar {
    display: none;
  }

  .about-page .about-team-track {
    width: max-content;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 4px;
    transform: none;
  }

  .about-page .about-team-card {
    flex: 0 0 clamp(210px, 66vw, 250px);
    min-height: 332px;
    scroll-snap-align: center;
  }

  .about-page .about-team-photo {
    width: 240px; height: 240px; margin-top: -107px;
  }

  .about-page .about-team-photo img {
    object-fit: contain;
    object-position: center;
  }

  .about-page .about-team-card h3 {
    margin-top: 94px;
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.08;
    font-weight: 650;
  }

  .about-page .about-team-card p {
    font-size: clamp(15px, 1.3vw, 16px);
    line-height: 1.35;
  }

  .about-page .about-facility-section .large-section-head {
    text-align: center;
  }

  .about-page .about-facility-section .large-section-head .eyebrow {
    margin-inline: auto;
  }

  .about-page .about-facility-title {
    text-align: center;
    font-size: clamp(28px, 7.6vw, 32px);
    line-height: 1.08;
  }

  .about-page .about-facility-title span {
    white-space: nowrap;
  }

  .about-page .about-facility-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "photo1 photo2"
      "quote quote"
      "photo3 photo4";
    gap: 12px;
  }

  .about-page .facility-photo {
    width: 100%;
    min-height: 0;
    border-radius: 18px;
    object-fit: cover;
  }

  .about-page .facility-photo-tall {
    aspect-ratio: 0.78;
  }

  .about-page .facility-photo-wide {
    aspect-ratio: 1.18;
  }

  .about-page .about-facility-quote {
    max-width: 100%;
    padding: 4px 2px;
    font-size: clamp(16px, 4.2vw, 20px);
    line-height: 1.22;
    text-align: center;
  }

  .about-page .about-facility-quote span {
    white-space: normal;
  }

  .about-page .faq {
    max-width: none;
  }

  .about-page .faq-title {
    text-align: left;
  }

  .about-page .faq-title span {
    display: inline;
  }

  .about-page .faq summary {
    min-height: 58px;
    padding: 0 48px 0 18px;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.25;
  }

  .about-page .faq-answer {
    margin-inline: 6px;
    padding: 14px 16px 18px;
  }

  .about-page .cta {
    background: var(--lavender-2);
  }

  .about-page .cta-box {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    max-width: min(100% - 24px, 520px);
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #9b6be2 0%, #8b5bd4 100%);
    text-align: left;
  }

  .about-page .cta-box::before,
  .about-page .cta-box::after,
  .about-page .cta-chat-bubble {
    display: none;
  }

  .about-page .cta-box img {
    justify-self: center;
    width: min(70%, 230px);
    max-height: 260px;
    margin-top: -14px;
    transform: none;
  }

  .about-page .cta-content {
    min-height: 0;
    padding: 8px 24px 30px;
  }

  .about-page .cta-content h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .about-page .cta-content p {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.55;
  }

  .about-page .cta-content .section-actions {
    width: 100%;
  }

  .about-page .cta-content .cta-wa-btn {
    width: min(100%, 310px);
    min-height: 44px;
  }

  .about-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 420px) {
  .about-page .about-hero h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .about-page .about-hero .hero-actions {
    grid-template-columns: 1fr;
  }

  .about-page .about-hero-art,
  .hero-career .career-hero-art {
    min-height: 282px;
  }

  .about-page .about-hero-art .hero-bg {
    right: -48%;
    width: 205%;
  }

  .about-page .about-hero-art .about-person-left,
  .hero-career .career-hero-art .career-person-left {
    right: 47%;
    height: min(77%, 275px);
  }

  .about-page .about-hero-art .about-person-right,
  .hero-career .career-hero-art .career-person-right {
    right: 8%;
    height: min(83%, 300px);
  }

  .about-page .about-understand-copy h2,
  .about-page .about-focus-copy h2,
  .about-page .about-label-copy h2,
  .about-page .about-approach-copy h2,
  .about-page .section-head h2 {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  .about-page .about-team-card {
    flex-basis: min(74vw, 230px);
    min-height: 322px;
  }

  .about-page .about-team-photo {
    width: 220px; height: 220px; margin-top: -96px;
  }

  .about-page .about-team-card h3 {
    margin-top: 88px;
    font-size: clamp(16px, 1.5vw, 18px);
  }

  .about-page .about-facility-gallery {
    gap: 10px;
  }

  .about-page .float-contact {
    right: 12px;
    bottom: 12px;
    width: min(72vw, 250px);
  }
}

@media (max-width: 760px) {
  .service-page {
    overflow-x: hidden;
  }

  .service-page .site-header {
    padding: 14px 0 8px;
  }

  .service-page .nav {
    width: min(100% - 22px, 520px);
    min-height: 58px;
    padding: 10px 12px;
    border-radius: 30px;
    gap: 10px;
  }

  .service-page .brand img {
    width: clamp(150px, 44vw, 190px);
  }

  .service-page .career-btn {
    min-height: 38px;
    padding: 0 18px;
    font-size: 13px;
  }

  .service-page .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    gap: 13px;
    padding-top: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-page .nav-links::-webkit-scrollbar {
    display: none;
  }

  .service-page .nav-links a {
    flex: 0 0 auto;
    font-size: 11px;
  }

  .service-page .section {
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .service-page .hero-service {
    min-height: 0;
    padding: 32px 0 24px;
  }

  .service-page .hero-service .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }

  .service-page .service-hero-copy {
    max-width: none;
    text-align: left;
  }

  .service-page .service-hero-copy .eyebrow {
    margin: 0 0 14px;
  }

  .service-page .hero-service h1 {
    max-width: 7.2em;
    margin: 0;
    font-size: clamp(44px, 13vw, 62px);
    line-height: .96;
    letter-spacing: 0;
    text-align: left;
  }

  .service-page .hero-service h1 span {
    display: block;
    white-space: nowrap;
  }

  .service-page .hero-service .lead {
    max-width: 34rem;
    margin: 18px 0 0;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.55;
    text-align: left;
  }

  .service-page .hero-service .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 360px);
    margin-top: 20px;
  }

  .service-page .hero-service .btn {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    justify-content: center;
    white-space: nowrap;
  }

  .service-page .service-hero-art {
    width: min(100%, 430px);
    min-height: clamp(284px, 80vw, 374px);
    margin: -4px auto 0;
  }

  .service-page .service-hero-art .hero-bg {
    right: -44%;
    bottom: -5%;
    width: 198%;
    max-width: none;
  }

  .service-page .service-hero-art .service-hero-person {
    right: 16%;
    bottom: 0;
    height: min(86%, 334px);
    max-width: none;
  }

  .service-page .service-problem-layout,
  .service-page .service-uncertain-layout,
  .service-page .service-focus-layout,
  .service-page .service-choice-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
  }

  .service-page .service-problem-copy,
  .service-page .service-uncertain-copy,
  .service-page .service-focus-copy,
  .service-page .service-choice-copy {
    max-width: none;
    text-align: left;
  }

  .service-page .service-problem-copy h2,
  .service-page .service-uncertain-copy h2,
  .service-page .service-focus-copy h2,
  .service-page .service-choice-copy h2,
  .service-page .section-head h2 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.05;
    text-align: left;
  }

  .service-page .service-problem-copy h2 span,
  .service-page .service-uncertain-copy h2 span,
  .service-page .service-focus-copy h2 span,
  .service-page .service-choice-copy h2 span,
  .service-page .section-head h2 span {
    display: inline;
  }

  .service-page .service-problem-line,
  .service-page .service-choice-copy h2 img {
    width: 145px;
  }

  .service-page .service-problem-copy p,
  .service-page .service-uncertain-copy p,
  .service-page .service-focus-copy p,
  .service-page .service-choice-copy p,
  .service-page .service-focus-list,
  .service-page .service-uncertain-list {
    font-size: 14px;
    line-height: 1.58;
  }

  .service-page .service-problem-visual,
  .service-page .service-uncertain-visual,
  .service-page .service-focus-visual,
  .service-page .service-choice-visual {
    justify-self: center;
    width: min(100%, 440px);
    order: -1;
  }

  .service-page .service-problem-visual img,
  .service-page .service-uncertain-visual img,
  .service-page .service-focus-visual img,
  .service-page .service-choice-visual img {
    width: 100%;
    height: auto;
  }

  .service-page .service-problem-section .service-problem-copy,
  .service-page .service-focus-section .service-focus-copy {
    order: 1;
  }

  .service-page .service-problem-section .service-problem-visual,
  .service-page .service-focus-section .service-focus-visual {
    order: 2;
  }

  .service-page .service-list-head {
    text-align: center;
  }

  

  .service-page .service-list-head h2 {
    text-align: center;
  }

  .service-page .service-list-head h2 span {
    display: block;
  }

  .service-page .service-list-head .lead {
    max-width: 36rem;
    
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.5;
    text-align: center;
  }

  .service-page .service-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-page .service-list-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.18;
    border-radius: 24px;
    overflow: hidden;
  }

  .service-page .service-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-page .service-list-image span {
    left: 18px;
    top: 18px;
    min-height: 38px;
    padding: 0 22px;
    font-size: 13px;
  }

  .service-page .service-list-board {
    width: 100%;
  }

  .service-page .service-list-title,
  .service-page .service-list-row,
  .service-page .service-list-active h3 {
    min-height: 46px;
    font-size: clamp(15px, 1.3vw, 17px);
  }

  .service-page .service-list-active {
    border-radius: 16px;
  }

  .service-page .service-list-content {
    padding: 20px 22px 22px;
    font-size: clamp(14.5px, 1.24vw, 16px);
    line-height: 1.56;
  }

  .service-page .service-uncertain-copy .section-actions,
  .service-page .service-choice-copy .section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .service-page .service-uncertain-btn {
    width: min(100%, 292px);
  }

  .service-page .service-choice-copy .btn {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .service-page .process-section .large-section-head,
  .service-page .faq-section .large-section-head {
    text-align: center;
  }

  .service-page .process-section .large-section-head .eyebrow,
  .service-page .faq-section .large-section-head .eyebrow {
    margin-inline: auto;
  }

  .service-page .process-section .large-section-head h2,
  .service-page .faq-section .large-section-head h2 {
    text-align: center;
  }

  .service-page .home-process {
    margin-inline: calc(50% - 50vw);
    padding: 6px 18px 12px;
    overflow-x: auto;
    display: flex;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-page .home-process::-webkit-scrollbar {
    display: none;
  }

  .service-page .story-step {
    flex: 0 0 min(74vw, 270px);
    scroll-snap-align: center;
  }

  .service-page .faq {
    max-width: none;
  }

  .service-page .faq-title span {
    display: inline;
  }

  .service-page .faq summary {
    min-height: 58px;
    padding: 0 48px 0 18px;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.25;
  }

  .service-page .faq-answer {
    margin-inline: 6px;
    padding: 14px 16px 18px;
  }

  .service-page .cta {
    background: var(--lavender-2);
  }

  .service-page .cta-box {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    max-width: min(100% - 24px, 520px);
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #9b6be2 0%, #8b5bd4 100%);
    text-align: left;
  }

  .service-page .cta-box::before,
  .service-page .cta-box::after,
  .service-page .cta-chat-bubble {
    display: none;
  }

  .service-page .cta-box > img {
    justify-self: center;
    width: min(70%, 230px);
    max-height: 260px;
    margin-top: -14px;
    transform: none;
  }

  .service-page .cta-content {
    min-height: 0;
    padding: 8px 24px 30px;
  }

  .service-page .cta-content h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .service-page .cta-content p {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.55;
  }

  .service-page .cta-content .section-actions {
    width: 100%;
  }

  .service-page .cta-content .cta-wa-btn {
    width: min(100%, 310px);
    min-height: 44px;
  }

  .service-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 420px) {
  .service-page .hero-service h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .service-page .hero-service .hero-actions {
    grid-template-columns: 1fr;
  }

  .service-page .service-hero-art {
    min-height: 280px;
  }

  .service-page .service-hero-art .hero-bg {
    right: -54%;
    width: 212%;
  }

  .service-page .service-hero-art .service-hero-person {
    right: 13%;
    height: min(82%, 285px);
  }

  .service-page .service-problem-copy h2,
  .service-page .service-uncertain-copy h2,
  .service-page .service-focus-copy h2,
  .service-page .service-choice-copy h2,
  .service-page .section-head h2 {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  .service-page .service-list-image {
    aspect-ratio: .95;
  }

  .service-page .service-choice-copy .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-page .float-contact {
    right: 12px;
    bottom: 12px;
    width: min(72vw, 250px);
  }
}

@media (max-width: 992px) {
  .nav-links a {
    display: flex;
    align-items: center;
  }

  .nav-links a::after {
    left: 14px;
    bottom: 4px;
    transform: scaleX(0);
    transform-origin: left center;
  }

  .nav-links a:hover::after,
  .nav-links a.is-active::after {
    transform: scaleX(1);
  }
}

@media (max-width: 760px) {
  .home-page .hero-home {
    padding: 14px 0 20px;
    overflow: visible;
  }

  .home-page .hero-home .container {
    width: min(100% - 24px, var(--container));
  }

  .home-page .hero-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 8px 0 0;
    overflow: visible;
  }

  .home-page .hero-home .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding-top: 4px;
    transform: none;
    overflow: visible;
  }

  .home-page .hero-home h1 {
    margin: 0;
    overflow: visible;
    font-size: clamp(34px, 10.2vw, 46px);
    line-height: 1.04;
  }

  .home-page .hero-title-dark,
  .home-page .hero-title-accent,
  .home-page .hero-title-last {
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .home-page .hero-title-last {
    font-size: 1em;
  }

  .home-page .hero-title-line {
    width: clamp(118px, 34vw, 164px);
    bottom: -0.17em;
  }

  .home-page .hero-spark {
    width: clamp(8px, 2.4vw, 11px);
  }

  .home-page .hero-description {
    max-width: 100%;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.48;
  }

  .home-page .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .home-page .hero-actions .btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }

  .home-page .home-hero-art {
    width: min(100%, 390px);
    min-height: clamp(292px, 76vw, 340px);
    margin: 0 auto;
    overflow: hidden;
  }

  .home-page .home-hero-art .hero-bg {
    right: -63%;
    bottom: -8%;
    width: 232%;
    max-width: none;
  }

  .home-page .home-hero-art .hero-person-left {
    right: 47%;
    bottom: 0;
    height: min(69%, 238px);
  }

  .home-page .home-hero-art .hero-person-right {
    right: 11%;
    bottom: 0;
    height: min(75%, 258px);
  }
}

@media (max-width: 420px) {
  .home-page .hero-home {
    padding-top: 12px;
  }

  .home-page .hero-home .hero-grid {
    gap: 12px;
  }

  .home-page .hero-home h1 {
    font-size: clamp(32px, 9.5vw, 40px);
    line-height: 1.04;
  }

  .home-page .hero-description {
    margin-top: 15px;
  }

  .home-page .home-hero-art {
    min-height: 308px;
  }

  .home-page .home-hero-art .hero-bg {
    right: -66%;
    bottom: -7%;
    width: 238%;
  }

  .home-page .home-hero-art .hero-person-left {
    right: 47%;
    height: min(68%, 232px);
  }

  .home-page .home-hero-art .hero-person-right {
    right: 12%;
    height: min(73%, 252px);
  }
}

@media (max-width: 760px) {
  .about-page .about-team-section {
    padding-top: 42px;
    padding-bottom: 50px;
    overflow: hidden;
  }

  .about-page .about-team-head {
    width: min(100% - 28px, 520px);
    margin-inline: auto;
  }

  .about-page .about-team-head h2 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.05;
  }

  .about-page .about-team-head .lead {
    max-width: 34rem;
    font-size: clamp(15px, 1.3vw, 16px);
    line-height: 1.55;
  }

  .about-page .about-team-carousel {
    width: 100vw;
    margin: 34px 0 0 calc(50% - 50vw);
    padding: 0;
    overflow-x: hidden;
  }

  .about-page .about-team-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 316px);
    gap: 18px;
    width: auto;
    justify-content: start;
    overflow-x: auto;
    padding: 0 calc((100vw - min(82vw, 316px)) / 2) 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc((100vw - min(82vw, 316px)) / 2);
    -webkit-overflow-scrolling: touch;
  }

  .about-page .about-team-card {
    min-height: 318px;
    padding: 188px 22px 24px;
    scroll-snap-align: center;
  }

  .about-page .about-team-card::before {
    inset: 108px 0 0;
    border-radius: 20px;
  }

  .about-page .about-team-photo {
    top: -34px; width: 251px; height: 251px;
    margin: 0;
    
  }

  .about-page .about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .about-page .about-team-card h3 {
    margin: 0 auto 10px;
    max-width: 15.5em;
    font-size: clamp(16px, 4.7vw, 19px);
    line-height: 1.08;
    font-weight: 560;
  }

  .about-page .about-team-card p {
    font-size: clamp(13px, 3.2vw, 14px);
    line-height: 1.35;
    font-weight: 300;
  }

  .about-page .about-team-dots {
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .about-page .about-team-carousel {
    margin-top: 32px;
  }

  .about-page .about-team-track {
    grid-auto-columns: min(82vw, 306px);
    padding-inline: calc((100vw - min(82vw, 306px)) / 2);
    scroll-padding-inline: calc((100vw - min(82vw, 306px)) / 2);
  }

  .about-page .about-team-card {
    min-height: 306px;
    padding-top: 182px;
  }

  .about-page .about-team-card::before {
    inset: 104px 0 0;
  }

  .about-page .about-team-photo {
    width: 240px; height: 240px;
  }

  .about-page .about-team-card h3 {
    font-size: clamp(17px, 1.8vw, 19px);
  }
}

@media (max-width: 760px) {
  .about-page .about-team-card {
    min-height: 376px;
    padding-top: 254px;
  }

  .about-page .about-team-card::before {
    inset: 132px 0 0;
  }

  .about-page .about-team-photo {
    top: -38px; width: 234px; height: 234px;
  }

  .about-page .about-team-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 540;
  }
}

@media (max-width: 420px) {
  .about-page .about-team-card {
    min-height: 366px;
    padding-top: 246px;
  }

  .about-page .about-team-card::before {
    inset: 128px 0 0;
  }

  .about-page .about-team-photo {
    top: -34px; width: 223px; height: 223px;
  }

  .about-page .about-team-card h3 {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.1;
  }
}

@media (max-width: 760px) {
  .home-page .process-section {
    overflow: hidden;
  }

  .home-page .process-container {
    width: 100%;
  }

  .home-page .process-section .section-head {
    width: min(100% - 28px, 520px);
    margin-inline: auto;
  }

  .home-page .home-process.story-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 310px);
    grid-template-columns: none;
    gap: 16px;
    margin: 24px 0 0;
    padding: 4px calc((100vw - min(78vw, 310px)) / 2) 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc((100vw - min(78vw, 310px)) / 2);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .home-process.story-strip::-webkit-scrollbar {
    display: none;
  }

  .home-page .home-process .story-step {
    display: block;
    min-height: 360px;
    padding: 18px 20px 22px;
    border: 1px solid rgba(151, 98, 224, 0.2);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(91, 63, 174, 0.12);
    text-align: center;
    scroll-snap-align: center;
  }

  .home-page .home-process .story-step img {
    display: block;
    width: 100%;
    height: 168px;
    margin: 0 auto 14px;
    object-fit: contain;
  }

  .home-page .home-process .step-number {
    margin: 0 auto 10px;
  }

  .home-page .home-process .story-step strong {
    display: block;
    max-width: none;
    margin: 0 auto 8px;
    font-size: clamp(17px, 1.8vw, 19px);
    line-height: 1.18;
  }

  .home-page .home-process .story-step p {
    max-width: none;
    margin: 0;
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .home-page .home-process.story-strip {
    grid-auto-columns: min(82vw, 300px);
    padding-inline: calc((100vw - min(82vw, 300px)) / 2);
    scroll-padding-inline: calc((100vw - min(82vw, 300px)) / 2);
  }

  .home-page .home-process .story-step {
    min-height: 344px;
    padding: 16px 18px 20px;
  }

  .home-page .home-process .story-step img {
    height: 154px;
  }
}

@media (max-width: 760px) {
  .home-page .testimonial-carousel .testimonial {
    padding: 24px 24px 28px 92px;
  }

  .home-page .testimonial-carousel .testimonial > img {
    left: 24px;
    top: 24px;
    width: 54px;
    height: 54px;
  }

  .home-page .testimonial-carousel .testimonial strong,
  .home-page .testimonial-carousel .stars,
  .home-page .testimonial-carousel .testimonial p {
    position: relative;
    z-index: 1;
  }

  .home-page .testimonial-carousel .testimonial p {
    margin-top: 14px;
  }
}

@media (max-width: 420px) {
  .home-page .testimonial-carousel .testimonial {
    padding: 22px 22px 26px 86px;
  }

  .home-page .testimonial-carousel .testimonial > img {
    left: 22px;
    top: 22px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 760px) {
  .cta-box {
    padding-top: 18px;
  }

  .cta-box > img {
    display: block;
    justify-self: center;
    align-self: end;
    width: min(64%, 220px);
    max-height: 255px;
    height: auto;
    margin: 0 auto;
    transform: translateX(38px) !important;
    object-fit: contain;
    object-position: center top;
  }

  .cta-content {
    padding-top: 14px;
  }
}

@media (max-width: 420px) {
  .cta-box {
    padding-top: 20px;
  }

  .cta-box > img {
    width: min(62%, 210px);
    max-height: 245px;
    margin-inline: auto;
    transform: translateX(42px) !important;
  }
}

@media (max-width: 760px) {
  .float-contact,
  .home-page .float-contact,
  .about-page .float-contact,
  .service-page .float-contact {
    right: 10px;
    bottom: 12px;
    width: min(54vw, 190px);
    filter: drop-shadow(0 10px 18px rgba(33, 177, 92, 0.22));
  }
}

@media (max-width: 420px) {
  .float-contact,
  .home-page .float-contact,
  .about-page .float-contact,
  .service-page .float-contact {
    right: 8px;
    bottom: 10px;
    width: min(50vw, 168px);
  }
}

@media (max-width: 760px) {
  .faq-title span,
  .home-page .faq-title span,
  .about-page .faq-title span,
  .service-page .faq-title span {
    display: block;
  }

  .faq-title span + span,
  .home-page .faq-title span + span,
  .about-page .faq-title span + span,
  .service-page .faq-title span + span {
    margin-top: 4px;
  }
}

@media (max-width: 760px) {
  .about-page .about-team-carousel {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding: 28px 0 0;
    overflow: hidden;
  }

  .about-page .about-team-track {
    grid-auto-columns: min(74vw, 300px);
    gap: 26px;
    padding: 0 calc((100vw - min(74vw, 300px)) / 2) 12px;
    scroll-padding-inline: calc((100vw - min(74vw, 300px)) / 2);
  }

  .about-page .about-team-card {
    min-height: 392px;
    padding: 292px 18px 20px;
  }

  .about-page .about-team-card::before {
    inset: 150px 0 0;
    border-radius: 18px;
  }

  .about-page .about-team-photo {
    top: -46px; width: 316px; height: 316px;
    
  }

  .about-page .about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 34%;
  }

  .about-page .about-team-card h3 {
    margin: 0 auto 7px;
    max-width: 14em;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 520;
    line-height: 1.08;
  }

  .about-page .about-team-card p {
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .about-page .about-team-track {
    grid-auto-columns: min(76vw, 286px);
    padding-inline: calc((100vw - min(76vw, 286px)) / 2);
    scroll-padding-inline: calc((100vw - min(76vw, 286px)) / 2);
  }

  .about-page .about-team-card {
    min-height: 386px;
    padding: 288px 16px 18px;
  }

  .about-page .about-team-card::before {
    inset: 148px 0 0;
    border-radius: 18px;
  }

  .about-page .about-team-photo {
    width: 308px; height: 308px;
  }

  .about-page .about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 34%;
  }

  .about-page .about-team-card h3 {
    font-size: 14.5px;
    font-weight: 520;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .float-contact,
  .home-page .float-contact,
  .about-page .float-contact,
  .service-page .float-contact,
  .curriculum-page .float-contact,
  .facility-page .float-contact,
  .contact-page .float-contact,
  .career-page .float-contact {
    right: 12px;
    bottom: 12px;
    width: min(72vw, 250px);
    max-width: calc(100vw - 24px);
    filter: drop-shadow(0 10px 18px rgba(33, 177, 92, 0.22));
  }
}

@media (max-width: 420px) {
  .float-contact,
  .home-page .float-contact,
  .about-page .float-contact,
  .service-page .float-contact,
  .curriculum-page .float-contact,
  .facility-page .float-contact,
  .contact-page .float-contact,
  .career-page .float-contact {
    right: 12px;
    bottom: 12px;
    width: min(72vw, 250px);
    max-width: calc(100vw - 24px);
  }
}

@media (max-width: 760px) {
  .about-page .about-approach-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
  }

  .about-page .about-approach-visual img {
    display: block;
    width: min(108vw, 456px);
    max-width: none;
    margin-inline: auto;
    transform: translateX(-3%);
  }
}

@media (max-width: 420px) {
  .about-page .about-approach-visual img {
    width: min(112vw, 432px);
    transform: translateX(-4%);
  }
}

@media (max-width: 760px) {
  .about-page .about-approach-section {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .about-page .about-approach-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-inline: 18px;
  }

  .about-page .about-approach-copy {
    width: 100%;
  }

  .about-page .approach-eyebrow {
    margin-bottom: 14px;
  }

  .about-page .about-approach-copy h2 {
    max-width: 360px;
    margin: 0 0 18px;
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.06;
    letter-spacing: 0;
  }

  .about-page .about-approach-copy .approach-title-line {
    display: block;
    white-space: normal;
  }

  .about-page .about-approach-copy h2 em::after {
    width: 150px;
    height: 11px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-page .about-approach-copy > p {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
  }

  .about-page .approach-list {
    display: grid;
    gap: 14px;
    max-width: 360px;
  }

  .about-page .approach-list article {
    padding: 0;
  }

  .about-page .approach-list article h3 {
    margin-bottom: 6px;
    font-size: clamp(16px, 1.5vw, 17px);
    font-weight: 680;
    line-height: 1.35;
  }

  .about-page .approach-list article p {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.62;
  }

  .about-page .about-approach-section .section-actions {
    justify-content: flex-start;
    max-width: 360px;
    margin-top: 22px;
  }

  .about-page .approach-btn {
    min-width: 190px;
    min-height: 46px;
    border-radius: 999px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .about-page .about-approach-layout {
    padding-inline: 14px;
  }

  .about-page .about-approach-copy h2 {
    max-width: 328px;
    font-size: clamp(27px, 8vw, 31px);
  }

  .about-page .about-approach-copy > p,
  .about-page .approach-list,
  .about-page .about-approach-section .section-actions {
    max-width: 328px;
  }
}

@media (max-width: 760px) {
  .curriculum-page .hero-curriculum {
    padding-top: 18px;
    overflow: hidden;
  }

  .curriculum-page .hero-curriculum .hero-grid {
    width: min(100% - 28px, 420px);
    padding-top: 18px;
    padding-bottom: 34px;
    gap: 18px;
    text-align: left;
  }

  .curriculum-page .curriculum-hero-copy {
    max-width: 100%;
    text-align: left;
  }

  .curriculum-page .curriculum-hero-copy .eyebrow {
    margin-bottom: 14px;
  }

  .curriculum-page .hero-curriculum h1 {
    max-width: 350px;
    margin: 0 0 14px;
    font-size: clamp(42px, 13.4vw, 56px);
    line-height: 0.98;
  }

  .curriculum-page .hero-curriculum h1 span {
    display: block;
    white-space: normal;
  }

  .curriculum-page .hero-curriculum .lead {
    max-width: 350px;
    margin-bottom: 18px;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
  }

  .curriculum-page .hero-curriculum .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .curriculum-page .hero-curriculum .hero-actions .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .curriculum-page .curriculum-hero-art {
    width: 100%;
    min-height: 360px;
    margin-top: 4px;
    overflow: hidden;
  }

  .curriculum-page .curriculum-hero-art .hero-bg {
    right: -48%;
    bottom: -4%;
    width: 210%;
    max-width: none;
  }

  .curriculum-page .curriculum-hero-art .curriculum-hero-person {
    right: 18%;
    bottom: 0;
    height: min(92%, 380px);
  }

  .curriculum-page .curriculum-program-section,
  .curriculum-page .curriculum-list-section,
  .curriculum-page .curriculum-random-section,
  .curriculum-page .curriculum-audience-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .curriculum-page .curriculum-program-layout,
  .curriculum-page .curriculum-audience-layout,
  .curriculum-page .curriculum-list-section .container,
  .curriculum-page .curriculum-random-container {
    width: min(100% - 28px, 420px);
  }

  .curriculum-page .curriculum-program-layout,
  .curriculum-page .curriculum-audience-layout {
    gap: 22px;
    text-align: left;
  }

  .curriculum-page .curriculum-program-copy,
  .curriculum-page .curriculum-audience-copy {
    max-width: 100%;
  }

  .curriculum-page .curriculum-program-badge {
    margin-bottom: 14px;
  }

  .curriculum-page .curriculum-program-copy h2,
  .curriculum-page .curriculum-audience-copy h2,
  .curriculum-page .curriculum-list-head h2,
  .curriculum-page .curriculum-random-head h2 {
    max-width: 360px;
    font-size: clamp(29px, 8.6vw, 35px);
    line-height: 1.08;
  }

  .curriculum-page .curriculum-program-copy h2 span,
  .curriculum-page .curriculum-audience-copy h2 span {
    display: block;
    white-space: normal;
  }

  .curriculum-page .curriculum-program-line {
    width: 148px;
    bottom: -16px;
  }

  .curriculum-page .curriculum-program-copy p,
  .curriculum-page .curriculum-audience-copy p,
  .curriculum-page .curriculum-audience-copy li,
  .curriculum-page .curriculum-list-head .lead,
  .curriculum-page .curriculum-random-head .lead {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.62;
  }

  .curriculum-page .curriculum-program-visual,
  .curriculum-page .curriculum-audience-visual {
    min-height: 0;
    text-align: center;
  }

  .curriculum-page .curriculum-program-visual img,
  .curriculum-page .curriculum-audience-visual img {
    position: static;
    width: min(112%, 430px);
    max-height: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .curriculum-page .curriculum-list-head {
    margin-bottom: 26px;
  }

  .curriculum-page .curriculum-list-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .curriculum-page .curriculum-list-tabs {
    display: grid;
    width: 100%;
    gap: 9px;
    padding-left: 14px;
  }

  .curriculum-page .curriculum-list-tabs::before {
    display: none;
  }

  .curriculum-page .curriculum-list-tab {
    min-height: 42px;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 13px;
    text-align: center;
  }

  .curriculum-page .curriculum-list-tab.is-active::before {
    left: -12px;
    width: 6px;
    height: 22px;
    border-radius: 999px;
  }

  .curriculum-page .curriculum-list-detail {
    min-height: 0;
    border-radius: 26px;
    padding: 24px 18px;
  }

  .curriculum-page .curriculum-list-detail h3 {
    font-size: 26px;
    line-height: 1.1;
  }

  .curriculum-page .curriculum-list-detail p,
  .curriculum-page .curriculum-list-detail li {
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: 1.6;
  }

  .curriculum-page .curriculum-list-detail .section-actions {
    justify-content: flex-start;
    align-self: flex-start;
    margin-top: 32px;
  }

  .curriculum-page .curriculum-random-head {
    margin-bottom: 28px;
    text-align: center;
  }

  .curriculum-page .curriculum-random-head h2,
  .curriculum-page .curriculum-random-head .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .curriculum-page .curriculum-random-steps {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 78vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
  }

  .curriculum-page .curriculum-random-step {
    scroll-snap-align: center;
  }

  .curriculum-page .curriculum-random-step img {
    width: 100%;
    height: 150px;
    max-height: none;
    object-fit: contain;
  }

  .curriculum-page .curriculum-random-marker {
    margin-top: 6px;
  }

  .curriculum-page .curriculum-random-step h3 {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.35;
  }

  .curriculum-page .curriculum-audience-copy ul {
    gap: 10px;
    padding-left: 18px;
  }

  .curriculum-page .faq-title span:first-child {
    margin-right: 0.16em;
  }
}

@media (max-width: 420px) {
  .curriculum-page .hero-curriculum .hero-grid,
  .curriculum-page .curriculum-program-layout,
  .curriculum-page .curriculum-audience-layout,
  .curriculum-page .curriculum-list-section .container,
  .curriculum-page .curriculum-random-container {
    width: min(100% - 24px, 390px);
  }

  .curriculum-page .hero-curriculum h1 {
    max-width: 330px;
    font-size: clamp(38px, 12.4vw, 46px);
  }

  .curriculum-page .curriculum-hero-art {
    min-height: 330px;
  }

  .curriculum-page .curriculum-hero-art .hero-bg {
    right: -58%;
    width: 226%;
  }

  .curriculum-page .curriculum-hero-art .curriculum-hero-person {
    right: 14%;
    height: min(90%, 350px);
  }

  .curriculum-page .curriculum-program-copy h2,
  .curriculum-page .curriculum-audience-copy h2,
  .curriculum-page .curriculum-list-head h2,
  .curriculum-page .curriculum-random-head h2 {
    max-width: 330px;
    font-size: clamp(28px, 8.4vw, 32px);
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 86px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header .nav {
    position: relative;
  }

  .menu-toggle {
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    z-index: 1000;
  }
}

/* Service page mobile refinement. Desktop rules remain unchanged. */
@media (max-width: 992px) {
  body.service-page {
    overflow-x: hidden;
  }

  .service-page .section,
  .service-page .hero-service {
    overflow: hidden;
  }

  .service-page .hero-service {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .service-page .hero-service .hero-grid {
    gap: 16px;
  }

  .service-page .hero-service .hero-copy,
  .service-page .hero-service .lead {
    width: 100%;
    max-width: 360px;
    
  }

  .service-page .hero-service h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(38px, 10.8vw, 52px);
    line-height: .96;
  }

  .service-page .hero-service .lead {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.5;
  }

  .service-page .hero-service .hero-actions {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .service-page .service-hero-art {
    width: 100%;
    min-height: 330px;
  }

  .service-page .service-hero-art .hero-bg {
    right: -46%;
    width: 208%;
  }

  .service-page .service-hero-art .service-hero-person {
    right: 17%;
    height: min(90%, 330px);
  }

  .service-page .service-problem-section,
  .service-page .service-list-section,
  .service-page .service-uncertain-section,
  .service-page .service-focus-section,
  .service-page .service-choice-section {
    padding-block: 44px;
  }

  .service-page .service-problem-layout,
  .service-page .service-uncertain-layout,
  .service-page .service-focus-layout,
  .service-page .service-choice-layout {
    gap: 24px;
  }

  .service-page .service-problem-copy,
  .service-page .service-uncertain-copy,
  .service-page .service-focus-copy,
  .service-page .service-choice-copy {
    max-width: 360px;
    
    
  }

  .service-page .service-problem-copy h2,
  .service-page .service-uncertain-copy h2,
  .service-page .service-focus-copy h2,
  .service-page .service-choice-copy h2,
  .service-page .section-head h2 {
    max-width: 360px;
    
    font-size: clamp(29px, 8.5vw, 36px);
    line-height: 1.03;
  }

  .service-page .service-problem-copy p,
  .service-page .service-uncertain-copy p,
  .service-page .service-focus-copy p,
  .service-page .service-choice-copy p,
  .service-page .service-problem-copy ul,
  .service-page .service-uncertain-copy ol,
  .service-page .service-focus-copy ul,
  .service-page .service-choice-copy ul {
    max-width: 360px;
    
    font-size: clamp(15px, 1.3vw, 16px);
    line-height: 1.55;
  }

  .service-page .service-problem-copy .section-actions,
  .service-page .service-uncertain-copy .section-actions,
  .service-page .service-focus-copy .section-actions,
  .service-page .service-choice-copy .section-actions {
    justify-content: center;
  }

  .service-page .service-problem-visual,
  .service-page .service-uncertain-visual,
  .service-page .service-focus-visual,
  .service-page .service-choice-visual {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .service-page .service-list-head .lead {
    max-width: 360px;
    
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.5;
  }

  .service-page .service-list-grid {
    gap: 24px;
  }

  .service-page .service-list-image,
  .service-page .service-list-board {
    width: min(100%, 390px);
    
  }

  .service-page .service-list-image {
    aspect-ratio: 1.2;
  }

  .service-page .service-list-title {
    min-height: 46px;
    border-radius: 999px;
  }

  .service-page .service-list-row {
    min-height: 48px;
  }

  .service-page .service-list-active {
    border-radius: 0 0 16px 16px;
  }

  .service-page .service-list-content {
    font-size: 14px;
    line-height: 1.52;
  }

  .service-page .process-section .large-section-head h2,
  .service-page .faq-section .large-section-head h2 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.04;
  }

  .service-page .cta-box > img {
    width: min(68%, 235px);
    transform: none !important;
  }

  .service-page .float-contact {
    right: 12px;
    bottom: 14px;
    width: min(50vw, 178px);
  }
}

@media (max-width: 420px) {
  .service-page .hero-service h1 {
    max-width: 340px;
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .service-page .hero-service .lead,
  .service-page .service-problem-copy p,
  .service-page .service-uncertain-copy p,
  .service-page .service-focus-copy p,
  .service-page .service-choice-copy p {
    font-size: clamp(16px, 1.5vw, 17px);
  }

  .service-page .service-hero-art {
    min-height: 290px;
  }

  .service-page .service-hero-art .hero-bg {
    right: -54%;
    width: 212%;
  }

  .service-page .service-hero-art .service-hero-person {
    right: 13%;
    height: min(82%, 285px);
  }

  .service-page .service-problem-copy h2,
  .service-page .service-uncertain-copy h2,
  .service-page .service-focus-copy h2,
  .service-page .service-choice-copy h2,
  .service-page .section-head h2 {
    max-width: 340px;
    font-size: clamp(27px, 8.6vw, 33px);
  }

  .service-page .service-list-image {
    aspect-ratio: 1.05;
  }

  .service-page .service-choice-copy .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-page .float-contact {
    right: 12px;
    bottom: 12px;
    width: min(50vw, 168px);
  }
}

/* Keep the mobile active-menu marker directly below the menu label. */
@media (max-width: 992px) {
  .site-header .nav-links a::after,
  .site-header .nav-links a:hover::after,
  .site-header .nav-links a.is-active::after {
    left: 14px;
    right: auto;
    bottom: 4px;
    width: 34px;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left center;
  }

  .site-header .nav-links a:hover::after,
  .site-header .nav-links a.is-active::after {
    transform: scaleX(1);
  }
}

/* Let the service problem heading wrap inside the mobile viewport. */
@media (max-width: 760px) {
  .service-page .service-list-title,
  .service-page .service-list-row,
  .service-page .service-list-active h3 {
    min-height: 46px;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.2;
  }

  .service-page .service-list-content {
    padding: 18px 18px 20px;
  }

  .service-page .service-list-content p,
  .service-page .service-list-content li {
    font-size: clamp(15.5px, 1.35vw, 17px);
    line-height: 1.5;
  }

  .service-page .service-list-content strong {
    font-size: 14px;
    line-height: 1.35;
  }

  .service-page .service-list-content ul {
    gap: 4px;
    padding-left: 16px;
  }

  .service-page .service-problem-copy {
    min-width: 0;
    width: 100%;
  }

  .service-page .service-problem-copy h2 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: normal;
    white-space: normal;
  }

  .service-page .service-problem-copy h2 span {
    max-width: 100%;
    white-space: normal;
  }

.service-page .service-problem-line {
    max-width: 140px;
  }
}

/* Contact page mobile layout. Desktop rules above remain unchanged. */
@media (max-width: 760px) {
  .contact-page {
    overflow-x: hidden;
  }

  .contact-page .hero-contact {
    padding: 34px 0 18px;
  }

  .contact-page .hero-contact .hero-grid,
  .contact-page .contact-prep-layout,
  .contact-page .contact-info-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .contact-page .contact-hero-copy,
  .contact-page .contact-prep-copy {
    width: 100%;
    max-width: none;
    
  }

  .contact-page .contact-hero-copy h1 {
    max-width: 100%;
    margin: 12px auto 14px;
    font-size: clamp(34px, 10vw, 48px);
    line-height: .98;
    overflow-wrap: anywhere;
  }

  .contact-page .contact-hero-copy .lead,
  .contact-page .contact-prep-copy p {
    max-width: 36rem;
    
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.55;
  }

  .contact-page .contact-hero-copy .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-page .contact-hero-art {
    position: relative;
    width: 100%;
    min-height: 310px;
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
  }

  .contact-page .contact-hero-art .hero-bg {
    inset: 8% -18% -4% -18%;
    width: 136%;
    max-width: none;
  }

  .contact-page .contact-hero-art .contact-person-left {
    left: 6%;
    bottom: 0;
    width: 57%;
    max-width: none;
  }

  .contact-page .contact-hero-art .contact-person-right {
    right: 2%;
    bottom: 0;
    width: 56%;
    max-width: none;
  }

  .contact-page .contact-prep-section,
  .contact-page .contact-info-section {
    padding: 48px 0;
  }

  .contact-page .contact-prep-copy h2 {
    width: 100%;
    max-width: 100%;
    margin: 10px auto 16px;
    font-size: clamp(30px, 8.6vw, 42px);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .contact-page .contact-prep-copy .contact-prep-list {
    max-width: 34rem;
    margin: 18px 0 0;
    text-align: left;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.55;
  }

  .contact-page .contact-prep-visual {
    width: 100%;
    min-height: 280px;
    max-width: 430px;
    margin-inline: auto;
  }

  .contact-page .contact-prep-visual img {
    width: 100%;
    max-width: 430px;
  }

  .contact-page .contact-info-section .section-head {
    max-width: 100%;
    margin-bottom: 26px;
    text-align: center;
  }

  .contact-page .contact-info-section .section-head h2 {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.05;
  }

  .contact-page .contact-info-section .section-head p {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.5;
  }

  .contact-page .contact-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .contact-page .map-card,
  .contact-page .contact-card {
    width: 100%;
    min-width: 0;
  }

  .contact-page .map-card {
    min-height: 250px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 24px;
  }

  .contact-page .map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 0;
  }

  .contact-page .contact-card {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .contact-page .contact-card .contact-item,
  .contact-page .contact-card .contact-social {
    grid-column: auto;
    min-width: 0;
  }

  .contact-page .contact-card .contact-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(104, 74, 180, .14);
  }

  .contact-page .contact-card .contact-item:last-of-type {
    border-bottom: 0;
  }

  .contact-page .contact-card .contact-item h3,
  .contact-page .contact-card .contact-item p {
    margin: 0;
    overflow-wrap: anywhere;
  }

  .contact-page .contact-card .contact-social {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(104, 74, 180, .14);
  }

  .contact-page .contact-card .contact-social .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-page .contact-card .contact-social p {
    min-width: 0;
    margin: 0;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .contact-page .section.cta {
    padding: 48px 0 64px;
  }
}

@media (max-width: 420px) {
  .contact-page .hero-contact {
    padding-top: 24px;
  }

  .contact-page .contact-hero-copy h1 {
    font-size: 34px;
  }

  .contact-page .contact-hero-art {
    min-height: 270px;
  }

  .contact-page .contact-hero-art .hero-bg {
    inset: 10% -26% -5% -26%;
    width: 152%;
  }

  .contact-page .contact-prep-copy h2,
  .contact-page .contact-info-section .section-head h2 {
    font-size: 31px;
  }

  .contact-page .contact-card .contact-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }
}

/* Keep the contact hero artwork tall and proportional on narrow screens. */
@media (max-width: 760px) {
  .contact-page .contact-hero-art {
    height: clamp(360px, 104vw, 450px);
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
  }

  .contact-page .contact-hero-art .hero-bg {
    top: 0;
    right: -24%;
    bottom: 0;
    left: -24%;
    width: 148%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .contact-page .contact-hero-art .contact-person-left {
    left: 7%;
    right: auto;
    bottom: 0;
    width: 49%;
    height: auto;
  }

  .contact-page .contact-hero-art .contact-person-right {
    right: 5%;
    bottom: 0;
    width: 50%;
    height: auto;
  }
}

@media (max-width: 420px) {
  .contact-page .contact-hero-art {
    height: 345px;
  }

  .contact-page .contact-hero-art .hero-bg {
    right: -30%;
    left: -30%;
    width: 160%;
  }
}

/* Match the two contact hero figures by visual height on narrow screens. */
@media (max-width: 760px) {
  .contact-page .contact-hero-art .contact-person-left,
  .contact-page .contact-hero-art .contact-person-right {
    top: auto;
    bottom: 0;
    width: auto;
    height: 82%;
    max-width: none;
  }

  .contact-page .contact-hero-art .contact-person-left {
    left: 12%;
    right: auto;
  }

  .contact-page .contact-hero-art .contact-person-right {
    left: 42%;
    right: auto;
  }
}
/* Keep the mobile footer easy to scan and clear of the floating WhatsApp CTA. */
@media (max-width: 760px) {
  .footer {
    padding: 34px 0 104px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-col {
    min-width: 0;
  }

  .footer-desc {
    max-width: 34rem;
    line-height: 1.55;
  }

  .footer-contact-items {
    gap: 12px;
  }

  .footer-contact-item {
    min-height: 24px;
    line-height: 1.4;
  }

  .footer-bottom-wrapper {
    margin-top: 26px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    line-height: 1.4;
  }

  .footer-bottom-links a {
    font-size: 13px;
  }
}
.footer {
  background: #fbf8ff;
  border-top: 1px solid #eae5f5;
  padding-top: 60px;
  color: var(--muted);
  font-family: inherit;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.7fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img {
  max-width: 220px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.6;
  margin-bottom: 24px;
  color: #5d5d67;
  max-width: 480px;
}

.footer-supported {
  margin-top: 24px;
}

.supported-label {
  display: block;
  font-size: 18px;
  color: #333;
  margin-bottom: 14px;
}

.supported-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  max-width: 420px;
}

.supported-logos img {
  height: auto;
  max-height: 38px;
  max-width: 100px;
  object-fit: contain;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--purple);
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-links a:hover {
  opacity: 0.8;
}
.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-col h4 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  color: #2d2654;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: clamp(15px, 1.3vw, 16px);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--purple);
}
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 1.3vw, 16px);
  color: var(--muted);
  line-height: 1.4;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--purple);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer-contact-item a:hover {
  color: var(--purple);
}
.footer-contact-socials {
  margin-top: 18px;
}
.footer-bottom-wrapper {
  border-top: 1px solid #eae5f5;
  background: #fbf8ff;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 17px);
  color: var(--muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: var(--purple);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Header brand refresh: wider pill, larger logo, and ADHD Centre lockup. */
@media (min-width: 993px) {
  .site-header .container {
    width: min(100% - 32px, 1680px);
  }

  .site-header .nav {
    justify-content: flex-start;
    gap: clamp(18px, 2.1vw, 46px);
    min-height: 78px;
    padding: 0 clamp(18px, 2.4vw, 38px) 0 clamp(24px, 3vw, 48px);
  }

  .brand {
    flex: 0 0 auto;
    gap: clamp(18px, 2vw, 34px);
    min-width: clamp(360px, 32vw, 560px);
    text-decoration: none;
  }

  .brand img {
    width: clamp(230px, 20vw, 330px);
  }

  .brand-title {
    display: inline-flex;
    align-items: center;
    color: #008ec7;
    font-size: clamp(20px, 1.9vw, 32px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .nav-links {
    margin-left: auto;
    gap: clamp(13px, 1.3vw, 27px);
    font-size: clamp(12px, 0.78vw, 14.5px);
    line-height: 1;
  }

  .career-btn {
    margin-left: clamp(14px, 1.7vw, 28px);
  }
}

@media (min-width: 993px) and (max-width: 1280px) {
  .brand {
    min-width: clamp(300px, 28vw, 390px);
    gap: 14px;
  }

  .brand img {
    width: clamp(190px, 18vw, 240px);
  }

  .brand-title {
    color: #008ec7;
    font-size: clamp(15px, 1.45vw, 20px);
  }

  .nav-links {
    gap: clamp(9px, 1vw, 16px);
    font-size: clamp(10.5px, 0.9vw, 12px);
  }

  .career-btn {
    min-width: 120px;
    padding-inline: 18px;
  }
}

@media (max-width: 992px) {
  .brand-title {
    display: inline-flex;
    align-items: center;
    color: #008ec7;
    font-size: clamp(14px, 4.2vw, 19px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-left: -4px;
    white-space: nowrap;
  }
  .brand img {
    width: clamp(145px, 40vw, 185px) !important;
  }
}

.article-page-section {
  padding-top: clamp(90px, 8vw, 140px);
}

@media (max-width: 992px) {
  .article-page-section {
    padding-top: clamp(120px, 15vw, 150px) !important;
  }
}

/* Global Hero Art & Copy Full Cover Fix */
.home-hero-art,
.about-hero-art,
.service-hero-art,
.curriculum-hero-art,
.facility-hero-art,
.contact-hero-art,
.career-hero-art {
  transform: translate(-3%, 0px) !important;
  position: relative;
  z-index: 2;
  margin-right: calc(-1 * max(16px, (100vw - 1240px) / 2)) !important;
  padding-right: calc(max(16px, (100vw - 1240px) / 2)) !important;
  overflow: visible !important;
}

.hero-home .hero-copy,
.service-hero-copy,
.curriculum-hero-copy,
.contact-hero-copy,
.career-hero-copy {
  transform: translateY(0px) !important;
}


/* Fix Hero Person Bottom Bounds Globally */
.home-hero-art .hero-person,
.about-hero-art .hero-person,
.service-hero-art .service-hero-person,
.curriculum-hero-art .curriculum-hero-person,
.facility-hero-art .facility-hero-person,
.contact-hero-art .contact-hero-person,
.contact-hero-art .contact-person-left,
.contact-hero-art .contact-person-right,
.career-hero-art .career-hero-person,
.career-hero-art .career-person-left,
.career-hero-art .career-person-right {
  bottom: 0 !important;
}

/* Fix Hero Person Right Bounds and Height for Desktop only */
@media (min-width: 993px) {
  .home-hero-art .hero-person-left,
  .about-hero-art .about-person-left,
  .career-hero-art .career-person-left {
    right: 50% !important;
    height: min(80%, 548px) !important;
  }
  .home-hero-art .hero-person-right,
  .about-hero-art .about-person-right,
  .career-hero-art .career-person-right {
    right: 14% !important;
    height: min(84%, 578px) !important;
  }
  .service-hero-art .service-hero-person {
    right: 30% !important;
  }
  .curriculum-hero-art .curriculum-hero-person {
    right: 27% !important;
  }
  .facility-hero-art .facility-hero-person {
    right: 26% !important;
  }
  .contact-hero-art .contact-person-left {
    right: 47% !important;
    height: min(86%, 592px) !important;
  }
  .contact-hero-art .contact-person-right {
    right: 17% !important;
    height: min(94%, 650px) !important;
  }
}


/* Fix About Team Photo Grey Gaps */



/* Interactive Hover Effects for Facility Gallery */

/* 1. Base transitions for smooth animations */
.facility-gallery-card img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.facility-gallery-card::after {
  transition: background 0.5s ease !important;
}
.facility-gallery-card figcaption {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.facility-gallery-card figcaption i {
  transition: transform 0.4s ease, background-color 0.3s ease, color 0.3s ease !important;
}

/* 2. Hover behaviors (Only applied on devices that support mouse hover) */
@media (hover: hover) and (pointer: fine) {
  /* Default State (Brighter, text hidden) */
  .facility-gallery-card::after {
    background: rgba(13, 12, 18, 0.15) !important; /* Make image much brighter by default */
  }
  .facility-gallery-card figcaption {
    opacity: 0 !important;
    transform: translateY(24px) !important; /* Push text down initially */
  }
  .facility-gallery-card img {
    transform: scale(1.0) !important;
  }

  /* Hover State (Zoom, Darken, Slide Up) */
  .facility-gallery-card:hover::after {
    background: rgba(13, 12, 18, 0.7) !important; /* Darken so text pops out clearly */
  }
  .facility-gallery-card:hover figcaption {
    opacity: 1 !important;
    transform: translateY(0) !important; /* Slide text up smoothly */
  }
  .facility-gallery-card:hover img {
    transform: scale(1.08) !important; /* Elegant zoom in on the photo */
  }
  
  /* Micro-interaction for the + Icon */
  .facility-gallery-card:hover figcaption i {
    transform: rotate(90deg) scale(1.15) !important; /* Rotate icon and slightly enlarge */
    background-color: var(--white) !important; /* Fill icon background */
    color: #221f2b !important; /* Change + color to dark */
  }
}


/* Professional Side Drawer Mobile Menu Override */
@media (max-width: 992px) {
  /* Prevent body scrolling when menu is open */
  body:has(.nav-links.is-open) {
    overflow: hidden !important;
  }

  /* Dark Backdrop Overlay */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(13, 12, 18, 0.4);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
  }
  
  body:has(.nav-links.is-open)::after {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer Setup */
  .site-header .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 280px !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 100px 24px 24px !important; /* Top padding to clear hamburger */
    border-radius: 0 !important;
    border: none !important;
    border-left: 1px solid rgba(0,0,0,0.05) !important;
    background: var(--white) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    
    /* Layout */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    
    /* Slide Animation */
    transform: translateX(100%) !important;
    visibility: hidden !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s !important;
  }

  .site-header .nav-links.is-open {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  /* Link Styles inside Drawer */
  .site-header .nav-links a {
    text-align: left !important;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    color: #3b3558 !important;
    transition: background 0.2s ease, color 0.2s ease !important;
  }
  
  .site-header .nav-links a:hover,
  .site-header .nav-links a.is-active {
    background: #f4effa !important;
    color: var(--purple) !important;
  }
  
  /* Hide the underline effect inside the drawer since we use background highlight */
  .site-header .nav-links a::after {
    display: none !important;
  }

  .site-header .nav-links .nav-career-mobile {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 48px;
    margin-top: 8px;
    color: var(--white) !important;
    background: var(--purple) !important;
    box-shadow: 0 12px 24px rgba(92, 66, 177, 0.2);
    font-weight: 900 !important;
    text-align: center !important;
  }

  .site-header .nav-links .nav-career-mobile::before {
    content: "";
    width: 25px;
    height: 21px;
    flex: 0 0 auto;
    background: url("assets/images/Object.webp") center / contain no-repeat;
  }

  .site-header .nav-links .nav-career-mobile:hover,
  .site-header .nav-links .nav-career-mobile.is-active {
    color: var(--white) !important;
    background: var(--purple-2) !important;
  }

  /* Hamburger to X Animation */
  .site-header .menu-toggle {
    z-index: 1001 !important;
  }
  
  .site-header .menu-toggle::before,
  .site-header .menu-toggle::after {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  /* When open, morph into an X */
  body:has(.nav-links.is-open) .menu-toggle::before {
    transform: translateY(6px) rotate(45deg) !important;
    box-shadow: none !important; /* Hide middle line */
  }
  body:has(.nav-links.is-open) .menu-toggle::after {
    transform: translateY(-6px) rotate(-45deg) !important;
  }
}


/* Fix Drawer Blur Overlay (move overlay inside site-header to fix z-index stacking context) */
@media (max-width: 992px) {
  body::after {
    display: none !important; /* Disable previous buggy overlay */
  }
  
  .site-header::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(13, 12, 18, 0.4);
    backdrop-filter: blur(2px);
    z-index: 998; /* Sits exactly below nav-links (1000) and menu-toggle (1001) */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
  }
  
  body:has(.nav-links.is-open) .site-header::before {
    opacity: 1;
    visibility: visible;
  }
}


/* --- Image Lightbox CSS --- */
#gallery-lightbox {
  position: fixed;
  z-index: 99999; /* Ensure it stays on top of absolutely everything */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(13, 12, 18, 0.88);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#gallery-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

#gallery-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#gallery-lightbox.is-active img {
  transform: scale(1); /* Smooth pop-in effect */
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 32px;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover {
  color: #c9bcf0;
  transform: scale(1.15);
}

/* Make gallery cards visually indicate they are clickable for the lightbox */
.facility-gallery-card {
  cursor: zoom-in;
}

/* Career Interactive Tools CSS */
.career-job-tools.interactive-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.career-tool-group {
  position: relative;
  display: flex;
  align-items: center;
}

.career-tool-group .career-tool-icon {
  position: absolute;
  left: 16px;
  color: var(--purple);
  font-size: 20px;
  pointer-events: none;
}

.career-tool-input {
  appearance: none;
  background: var(--white);
  border: 1.5px solid var(--purple);
  border-radius: 999px;
  padding: 12px 24px 12px 48px;
  font-family: inherit;
  font-size: clamp(16px, 1.5vw, 17px);
  color: var(--ink);
  min-width: 240px;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(92, 66, 177, 0.08);
}

.career-tool-input:focus {
  box-shadow: 0 0 0 4px rgba(92, 66, 177, 0.15);
  border-color: var(--accent);
}

select.career-tool-input {
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%235C42B1" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* Career Carousel Controls */
.career-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.career-nav-btn {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.career-nav-btn:hover {
  background: var(--lavender);
  border-color: var(--purple);
  color: var(--purple);
  transform: scale(1.05);
}

.career-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Hide job cards cleanly during filter */
.job-card[hidden] {
  display: none !important;
}

/* ==========================================================================
   MOBILE VISUAL REORDERING (Image Layout Fix)
   ========================================================================== */
@media (max-width: 768px) {
  /* 
    Pola Layout HP: 
    - Foto/Konteks Utama berada di ATAS teks (order: -1)
    - Ilustrasi abstrak/pemanis berada di BAWAH teks (order: 2)
  */

  /* facility-program-visual berisi foto ruangan/terapis -> Taruh di ATAS */
  .facility-program-visual {
    order: -1 !important;
    margin-bottom: 24px !important;
    margin-top: 0 !important;
  }

  /* facility-intro, facility-need, facility-area berisi ilustrasi abstrak -> Taruh di BAWAH sebagai penutup manis */
  .facility-intro-visual,
  .facility-need-visual,
  .facility-area-visual {
    order: 2 !important;
    margin-top: 32px !important;
    margin-bottom: -20px !important; /* Tarik sedikit ke bawah agar estetik */
    align-self: center !important;
  }

  /* Pastikan copy (teks) selalu berada di tengah/urutan normal */
  .facility-intro-copy,
  .facility-program-copy,
  .facility-need-copy,
  .facility-area-copy {
    order: 1 !important;
  }
}

@media (max-width: 768px) {
  /* Fix ukuran gambar orang di CTA Box agar lebih proporsional */
  .cta-box > img,
  .service-page .cta-box > img,
  .home-page .cta-box > img,
  .about-page .cta-box > img {
    display: block !important;
    justify-self: center !important;
    width: min(65%, 220px) !important;
    max-height: 240px !important;
    margin: 24px auto 0 !important;
    object-fit: contain !important;
  }
}






@media (max-width: 768px) {
  /* Fix posisi diamond tim agar tidak terpotong oleh ujung container slider */
  .about-page .about-team-photo,
  .home-page .about-team-photo {
    top: 0 !important;
  }

  /* Beri jarak antara gambar diamond yang turun dengan teks nama agar tidak mepet */
  .about-page .about-team-card h3,
  .home-page .about-team-card h3 {
    margin-top: 0 !important;
  }
}

/* Stacking the contact panel earlier to prevent the dense contact card from squishing */
@media (max-width: 1100px) {
  .contact-page .contact-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
  }
  .contact-page .map-card,
  .contact-page .contact-card {
    width: 100% !important;
    max-width: none !important;
  }
}

/* --- Facility Gallery Modal --- */
.facility-modal-open {
  overflow: hidden;
}

.facility-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.facility-detail-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.facility-detail-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 16, 34, 0.7);
  backdrop-filter: blur(4px);
}

.facility-detail-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background-color: var(--white);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 32px;
  gap: 32px;
}

.facility-detail-modal.is-open .facility-detail-dialog {
  transform: translateY(0) scale(1);
}

@media (min-width: 768px) {
  .facility-detail-dialog {
    flex-direction: row;
    align-items: center;
    padding: 40px;
    gap: 40px;
    overflow-y: visible;
  }
}

.facility-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--lavender);
  background-color: var(--white);
  color: var(--purple);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s, color 0.2s;
}

.facility-detail-close:hover {
  background-color: var(--lavender);
}

.facility-detail-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .facility-detail-image-wrapper {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .facility-detail-slider {
    gap: 14px;
  }

  .facility-detail-image-stage {
    width: 86%;
    height: 86%;
  }

  .facility-detail-nav {
    width: 40px;
    height: 40px;
  }

  .facility-detail-nav-prev {
    left: -8px;
  }

  .facility-detail-nav-next {
    right: -8px;
  }

  .facility-detail-slider-ui {
    bottom: -14px;
    gap: 8px;
    padding: 8px 10px;
  }

  .facility-detail-counter {
    font-size: 10px;
  }
}

/* Organic Blob Frame */
.facility-blob-frame {
  position: absolute;
  inset: 0;
  background-color: var(--lavender);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
  transform: scale(1.05);
  animation: morphBlob 8s ease-in-out infinite alternate;
}

@keyframes morphBlob {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.facility-detail-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.facility-detail-slider {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 16px;
}

.facility-detail-image-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 90%;
  height: 90%;
}

.facility-detail-nav {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(42px, 4.2vw, 48px);
  height: clamp(42px, 4.2vw, 48px);
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 14px 30px rgba(88, 64, 173, 0.26);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.facility-detail-nav:hover {
  filter: brightness(1.04);
  box-shadow: 0 18px 38px rgba(88, 64, 173, 0.34);
  transform: translateY(-50%) scale(1.06);
}

.facility-detail-nav:focus-visible {
  outline: 3px solid rgba(255, 217, 92, 0.8);
  outline-offset: 3px;
}

.facility-detail-nav svg {
  width: 24px;
  height: 24px;
}

.facility-detail-nav[hidden],
.facility-detail-counter[hidden],
.facility-detail-slider-ui[hidden] {
  display: none;
}

.facility-detail-nav-prev {
  left: clamp(-18px, -2vw, -10px);
}

.facility-detail-nav-next {
  right: clamp(-18px, -2vw, -10px);
}

.facility-detail-slider-ui {
  position: absolute;
  left: 50%;
  bottom: clamp(-18px, -2vw, -10px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(92%, 340px);
  padding: 9px 12px;
  border: 1px solid rgba(229, 220, 247, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(88, 64, 173, 0.16);
  transform: translateX(-50%);
}

.facility-detail-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.facility-detail-dot {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(88, 64, 173, 0.28);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.facility-detail-dot.is-active {
  width: 24px;
  background: var(--purple);
}

.facility-detail-dot:focus-visible {
  outline: 2px solid rgba(255, 217, 92, 0.9);
  outline-offset: 3px;
}

.facility-detail-counter {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--lavender);
  font-size: 11px;
  font-weight: 900;
}

/* Decorative elements */
.facility-decorative-elements {
  position: absolute;
  inset: -20px;
  z-index: 0;
  pointer-events: none;
}

.facility-shape {
  position: absolute;
}

.facility-shape.blob1 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--purple-2);
  top: -10px;
  left: 10px;
  opacity: 0.7;
}

.facility-shape.star1 {
  width: 20px;
  height: 20px;
  background-color: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  top: 10%;
  right: 5%;
}

.facility-shape.star2 {
  width: 14px;
  height: 14px;
  background-color: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  bottom: 15%;
  left: 0;
}

.facility-shape.pencil {
  width: 20px;
  height: 60px;
  background-color: var(--purple-2);
  bottom: 0px;
  right: 15px;
  border-radius: 4px 4px 0 0;
  transform: rotate(20deg);
  opacity: 0.8;
}

.facility-shape.cylinder {
  width: 40px;
  height: 30px;
  background-color: var(--purple);
  bottom: -5px;
  left: 20%;
  border-radius: 8px;
  opacity: 0.6;
}

.facility-detail-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.facility-detail-content h2 {
  color: var(--purple);
  font-size: clamp(22px, 2vw, 26px);
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.facility-detail-content div {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.facility-detail-content p {
  margin-bottom: 12px;
}

.facility-detail-content ul {
  margin-top: 8px;
  padding-left: 20px;
  list-style-type: disc;
}

.facility-detail-content li {
  margin-bottom: 6px;
}

/* Hover style for gallery items */
.facility-gallery-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.facility-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* --- Global Mobile Hero Bottom & Contact Card Layout Fix --- */
@media (max-width: 760px) {
  /* Fix contact card overlap issue by forcing full width */
  .contact-page .contact-card .contact-item,
  .contact-page .contact-card .contact-social {
    grid-column: 1 / -1 !important;
    border-right: none !important;
  }

  /* Force all hero people images to stick to the absolute bottom of the hero section */
  .hero {
    padding-bottom: 0 !important;
  }
  
  .hero-grid {
    padding-bottom: 0 !important;
  }

  .hero-art {
    margin-bottom: 0 !important;
  }

  .hero-person,
  .hero-person-left,
  .hero-person-right,
  .about-person-left,
  .about-person-right,
  .contact-person-left,
  .contact-person-right,
  .career-person-left,
  .career-person-right {
    bottom: 0 !important;
  }

  /* Fix contact hero person 2 being too close to person 1 */
  .contact-page .contact-hero-art .contact-person-left {
    left: 0 !important;
    right: auto !important;
    width: auto !important;
  }
  
  .contact-page .contact-hero-art .contact-person-right {
    left: auto !important;
    right: 0 !important;
    width: auto !important;
  }

  /* Center single-person hero images on mobile */
  .service-page .service-hero-art .service-hero-person,
  .curriculum-page .curriculum-hero-art .curriculum-hero-person,
  .facility-page .facility-hero-art .facility-hero-person,
  .service-consultation-page .service-hero-art .service-hero-person {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}

.cta-mobile-card {
  display: none;
}

/* TASK CTA C: dedicated mobile CTA based on CODEX_CTA_MOBILE_HANDOFF.md. */
@media (max-width: 640px) {
  .section.cta {
    position: relative;
    min-height: clamp(790px, 216vw, 896px);
    overflow: hidden;
    padding: clamp(32px, 9vw, 44px) 0 clamp(42px, 11vw, 56px);
    background:
      radial-gradient(circle at 4% 10%, rgba(155, 107, 226, 0.2), transparent 27%),
      radial-gradient(circle at 96% 88%, rgba(255, 217, 92, 0.22), transparent 24%),
      linear-gradient(180deg, #fbf8ff 0%, #f2ebff 100%);
  }

  .cta-box,
  .home-page .cta-box,
  .about-page .cta-box,
  .service-page .cta-box {
    display: block;
    width: min(calc(100% - 40px), 460px);
    max-width: 460px;
    min-height: 0;
    overflow: visible;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #2d2654;
    text-align: center;
  }

  .cta-box::before,
  .cta-box::after,
  .home-page .cta-box::before,
  .home-page .cta-box::after,
  .about-page .cta-box::before,
  .about-page .cta-box::after,
  .service-page .cta-box::before,
  .service-page .cta-box::after,
  .cta-box > img.cta-person-default,
  .cta-box > .cta-chat-bubble,
  .cta-box > .cta-content {
    display: none !important;
  }

  .cta-mobile-card {
    --cta-purple: #5840ad;
    --cta-purple-accent: #9b6be2;
    --cta-lavender: #f2ebff;
    --cta-lavender-soft: #fbf8ff;
    --cta-yellow: #ffd95c;
    --cta-ink: #2d2654;
    --cta-whatsapp: #25d366;
    --cta-card: #ffffff;
    --cta-shadow: 0 24px 64px rgba(88, 64, 173, 0.16);
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: clamp(28px, 7.5vw, 32px) clamp(20px, 6vw, 26px) 32px;
    border: 1px solid rgba(155, 107, 226, 0.13);
    border-radius: clamp(44px, 12vw, 52px);
    background: linear-gradient(180deg, var(--cta-card) 0%, var(--cta-lavender-soft) 100%);
    box-shadow: var(--cta-shadow);
    color: var(--cta-ink);
    text-align: center;
  }

  .cta-mobile-card::before,
  .cta-mobile-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
  }

  .cta-mobile-card::before {
    top: -92px;
    right: -104px;
    width: 230px;
    height: 230px;
    border: 34px solid rgba(155, 107, 226, 0.08);
  }

  .cta-mobile-card::after {
    left: -74px;
    bottom: 154px;
    width: 160px;
    height: 160px;
    background: rgba(255, 217, 92, 0.12);
  }

  .cta-mobile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 217, 92, 0.3);
    color: var(--cta-purple);
    font-family: "Inter", sans-serif;
    font-size: clamp(9px, 2.7vw, 11px);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
  }

  .cta-mobile-badge svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #f3bd18;
  }

  .cta-mobile-card h2 {
    max-width: 360px;
    margin: 16px auto 0;
    color: var(--cta-ink);
    font-family: "Anek Latin", sans-serif;
    font-size: clamp(30px, 8.5vw, 36px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .cta-mobile-lead {
    max-width: 330px;
    margin: 14px auto 0;
    color: #5b5577;
    font-family: "Inter", sans-serif;
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.58;
  }

  .cta-mobile-art {
    position: relative;
    width: min(100%, 350px);
    /* Match the consultant's aspect ratio so it cannot rise into the lead copy. */
    height: clamp(324px, 96vw, 397px);
    margin: 12px auto 0;
  }

  .cta-mobile-art::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 66px 10px 10px;
    border-radius: 48% 52% 43% 57% / 58% 42% 58% 42%;
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.72), transparent 24%),
      linear-gradient(145deg, #e2d3ff 0%, #cdb2fb 100%);
    transform: rotate(-3deg);
  }

  .cta-mobile-art::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 88px;
    right: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cta-yellow);
    box-shadow: -246px 86px 0 2px rgba(255, 217, 92, 0.88), -224px -25px 0 0 rgba(155, 107, 226, 0.45);
  }

  .cta-box .cta-mobile-art img {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 0;
    display: block;
    width: clamp(270px, 80vw, 330px);
    max-width: none;
    height: auto;
    max-height: 397px;
    margin: 0;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 18px 28px rgba(74, 51, 145, 0.12));
    transform: translateX(-50%);
  }

  .cta-mobile-spark {
    position: absolute;
    z-index: 3;
    color: var(--cta-yellow);
    font-size: 26px;
    line-height: 1;
  }

  .cta-mobile-spark-one {
    top: 42px;
    left: 26px;
  }

  .cta-mobile-spark-two {
    top: 54px;
    right: 38px;
    color: var(--cta-purple-accent);
    font-size: 22px;
  }

  .cta-mobile-button {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 64px;
    padding: 9px 18px 9px 10px;
    border: 2px solid transparent;
    border-radius: 24px;
    background: var(--cta-purple);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: clamp(13px, 3.6vw, 15px);
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    box-shadow: 0 14px 28px rgba(88, 64, 173, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }

  .cta-mobile-button:hover {
    background: #493394;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(88, 64, 173, 0.28);
  }

  .cta-mobile-button:focus-visible {
    outline: 3px solid var(--cta-yellow);
    outline-offset: 4px;
  }

  .cta-mobile-button-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cta-whatsapp);
    color: #ffffff;
  }

  .cta-mobile-button-icon svg {
    width: 27px;
    height: 27px;
  }

  .cta-mobile-button-arrow {
    width: 22px;
    height: 22px;
  }

  .cta-mobile-trust {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
  }

  .cta-mobile-trust li {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: var(--cta-ink);
    font-family: "Inter", sans-serif;
    font-size: clamp(10px, 2.9vw, 12px);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
  }

  .cta-mobile-trust-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--cta-purple);
  }

  .cta-mobile-trust-icon svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 359px) {
  .cta-box,
  .home-page .cta-box,
  .about-page .cta-box,
  .service-page .cta-box {
    width: min(calc(100% - 24px), 460px);
  }

  .cta-mobile-card {
    padding-inline: 17px;
    border-radius: 42px;
  }

  .cta-mobile-card h2 {
    font-size: 29px;
  }

  .cta-mobile-button {
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    gap: 7px;
    padding-right: 13px;
    font-size: 12px;
  }

  .cta-mobile-button-icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-mobile-button {
    transition: none;
  }

  .cta-mobile-button:hover {
    transform: none;
  }
}

/* TASK D: mirror the Index/Home hero figure spacing on Career and Contact. */
@media (min-width: 993px) {
  .hero-career .career-hero-art .career-person-left {
    right: 50% !important;
  }

  .hero-career .career-hero-art .career-person-right {
    right: 14% !important;
  }

  .contact-page .contact-hero-art .contact-person-left {
    right: 50% !important;
  }

  .contact-page .contact-hero-art .contact-person-right {
    right: 14% !important;
  }
}

@media (min-width: 761px) and (max-width: 992px) {
  .hero-career .career-hero-art .career-person-left {
    right: 54% !important;
  }

  .hero-career .career-hero-art .career-person-right {
    right: 24% !important;
  }

  .contact-page .contact-hero-art .contact-person-left {
    right: 54% !important;
  }

  .contact-page .contact-hero-art .contact-person-right {
    right: 24% !important;
  }
}

@media (max-width: 760px) {
  .hero-career .career-hero-art .career-person-left {
    left: auto !important;
    right: 47% !important;
  }

  .hero-career .career-hero-art .career-person-right {
    left: auto !important;
    right: 11% !important;
  }

  .contact-page .contact-hero-art .contact-person-left {
    left: auto !important;
    right: 47% !important;
  }

  .contact-page .contact-hero-art .contact-person-right {
    left: auto !important;
    right: 11% !important;
  }
}

@media (max-width: 420px) {
  .hero-career .career-hero-art .career-person-right,
  .contact-page .contact-hero-art .contact-person-right {
    right: 12% !important;
  }
}

/* Facility mobile hero background follows the Index/Home composition. */
@media (max-width: 760px) {
  .facility-page .facility-hero-art .hero-bg {
    inset: auto -63% -8% auto !important;
    width: 232% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: fill !important;
    object-position: 50% 50% !important;
    transform: none !important;
  }
}

@media (max-width: 420px) {
  .facility-page .facility-hero-art .hero-bg {
    inset: auto -66% -7% auto !important;
    width: 238% !important;
  }
}

/* Facility gallery controls remain discoverable before hover. */
.facility-page .facility-gallery-card::after {
  background: rgba(13, 12, 18, 0.42) !important;
}

.facility-page .facility-gallery-card img {
  transform: scale(1.02) !important;
}

.facility-page .facility-gallery-card figcaption {
  opacity: 1 !important;
  transform: translateY(0) !important;
  text-shadow: 0 2px 10px rgba(13, 12, 18, 0.55);
}

.facility-page .facility-gallery-card:focus-visible {
  outline: 3px solid #ffd95c;
  outline-offset: 4px;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(88, 64, 173, 0.24);
}

@media (hover: hover) and (pointer: fine) {
  .facility-page .facility-gallery-card:hover::after,
  .facility-page .facility-gallery-card:focus-visible::after {
    background: rgba(13, 12, 18, 0.64) !important;
  }

  .facility-page .facility-gallery-card:hover img,
  .facility-page .facility-gallery-card:focus-visible img {
    transform: scale(1.07) !important;
  }

  .facility-page .facility-gallery-card:hover figcaption i,
  .facility-page .facility-gallery-card:focus-visible figcaption i {
    background-color: #ffffff !important;
    color: #5840ad !important;
    transform: rotate(90deg) scale(1.12) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .facility-page .facility-gallery-card,
  .facility-page .facility-gallery-card::after,
  .facility-page .facility-gallery-card img,
  .facility-page .facility-gallery-card figcaption,
  .facility-page .facility-gallery-card figcaption i {
    transition: none !important;
  }

  .facility-page .facility-gallery-card:hover,
  .facility-page .facility-gallery-card:focus-visible {
    transform: none;
  }

  .facility-page .facility-gallery-card:hover img,
  .facility-page .facility-gallery-card:focus-visible img {
    transform: scale(1.02) !important;
  }
}

/* Contact mobile hero matches the visible composition of Index/Home. */
@media (max-width: 760px) {
  .contact-page .contact-hero-art {
    width: min(100%, 390px) !important;
    height: clamp(292px, 76vw, 340px) !important;
    min-height: clamp(292px, 76vw, 340px) !important;
    max-width: 390px !important;
  }

  .contact-page .contact-hero-art .hero-bg {
    inset: auto -63% -8% auto !important;
    width: 232% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: fill !important;
    object-position: 50% 50% !important;
    transform: none !important;
  }

  .contact-page .contact-hero-art .contact-person-left {
    left: auto !important;
    right: 34% !important;
    width: auto !important;
    height: min(69%, 238px) !important;
  }

  .contact-page .contact-hero-art .contact-person-right {
    left: auto !important;
    right: 16% !important;
    width: auto !important;
    height: min(75%, 258px) !important;
  }
}

@media (max-width: 420px) {
  .contact-page .contact-hero-art {
    height: 308px !important;
    min-height: 308px !important;
  }

  .contact-page .contact-hero-art .hero-bg {
    inset: auto -66% -7% auto !important;
    width: 238% !important;
  }

  .contact-page .contact-hero-art .contact-person-left {
    right: 34% !important;
    height: min(68%, 232px) !important;
  }

  .contact-page .contact-hero-art .contact-person-right {
    right: 17% !important;
    height: min(73%, 252px) !important;
  }
}

/* Tablet and iPad final responsive hardening. */
@media (min-width: 761px) and (max-width: 992px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  body {
    padding-top: 86px;
  }

  .site-header .container {
    width: min(calc(100% - 32px), 900px);
  }

  .site-header .nav {
    min-height: 70px;
    gap: 18px;
    padding-inline: 22px;
  }

  .brand img {
    width: clamp(190px, 27vw, 240px);
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
  }

  .career-btn {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .hero-grid,
  .hero-home .hero-grid,
  .about-hero .hero-grid,
  .hero-service .hero-grid,
  .hero-curriculum .hero-grid,
  .hero-facility .hero-grid,
  .hero-contact .hero-grid,
  .hero-career .hero-grid {
    width: min(calc(100% - 48px), 900px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: clamp(22px, 4vw, 38px);
    padding: clamp(34px, 5vw, 52px) 0 34px;
    text-align: center;
  }

  .hero-home .hero-copy,
  .about-hero-copy,
  .service-hero-copy,
  .curriculum-hero-copy,
  .facility-hero-copy,
  .contact-hero-copy,
  .career-hero-copy {
    width: 100%;
    max-width: 760px !important;
    min-width: 0;
    margin-inline: auto;
    justify-self: center;
    text-align: center !important;
    transform: none !important;
  }

  .hero h1 {
    max-width: 760px;
    margin-inline: auto;
    font-size: clamp(44px, 7vw, 66px);
    text-align: center !important;
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero .lead {
    max-width: 680px;
    margin-inline: auto;
    text-align: center !important;
  }

  .hero-actions {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center !important;
  }

  .home-hero-art,
  .about-hero-art,
  .service-hero-art,
  .curriculum-hero-art,
  .facility-hero-art,
  .contact-hero-art,
  .career-hero-art {
    width: min(100%, 650px) !important;
    min-width: 0;
    justify-self: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    transform: none !important;
  }

  /* Center the visible people, not only their absolutely positioned art wrapper. */
  .home-hero-art .hero-person-left,
  .about-hero-art .about-person-left,
  .contact-hero-art .contact-person-left,
  .career-hero-art .career-person-left {
    left: auto !important;
    right: 41% !important;
  }

  .home-hero-art .hero-person-right,
  .about-hero-art .about-person-right,
  .contact-hero-art .contact-person-right,
  .career-hero-art .career-person-right {
    left: auto !important;
    right: 11% !important;
  }

  /* Contact tablet hero needs its own optical center because the two figures have different widths. */
  .contact-page .contact-hero-art {
    width: min(100%, 620px) !important;
    max-width: 620px !important;
  }

  .contact-page .contact-hero-art .hero-bg {
    right: -42% !important;
    bottom: -13% !important;
    width: 214% !important;
  }

  .contact-page .contact-hero-art .contact-person-left {
    left: auto !important;
    right: 34% !important;
    height: min(94%, 360px) !important;
  }

  .contact-page .contact-hero-art .contact-person-right {
    left: auto !important;
    right: 6% !important;
    height: min(100%, 382px) !important;
  }

  /* Career tablet hero also needs an optical center; its right figure is visually heavier. */
  .hero-career .career-hero-art {
    width: min(100%, 620px) !important;
    max-width: 620px !important;
  }

  .hero-career .career-hero-art .hero-bg {
    right: -42% !important;
    bottom: -13% !important;
    width: 214% !important;
  }

  .hero-career .career-hero-art .career-person-left {
    left: auto !important;
    right: 38% !important;
    height: min(94%, 360px) !important;
  }

  .hero-career .career-hero-art .career-person-right {
    left: auto !important;
    right: 9% !important;
    height: min(100%, 382px) !important;
  }

  .service-hero-art .service-hero-person,
  .curriculum-hero-art .curriculum-hero-person,
  .facility-hero-art .facility-hero-person {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

  /* Center stacked section copy on tablets and keep the reading width comfortable. */
  :is(
    .about-copy,
    .problem-copy,
    .consult-copy,
    .about-understand-copy,
    .about-focus-copy,
    .about-label-copy,
    .about-approach-copy,
    .service-problem-copy,
    .service-uncertain-copy,
    .service-focus-copy,
    .service-choice-copy,
    .curriculum-program-copy,
    .curriculum-audience-copy,
    .facility-intro-copy,
    .facility-program-copy,
    .facility-need-copy,
    .facility-area-copy,
    .contact-prep-copy,
    .career-work-copy,
    .career-apply-copy
  ) {
    width: 100%;
    max-width: 720px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  :is(
    .about-copy,
    .problem-copy,
    .consult-copy,
    .about-understand-copy,
    .about-focus-copy,
    .about-label-copy,
    .about-approach-copy,
    .service-problem-copy,
    .service-uncertain-copy,
    .service-focus-copy,
    .service-choice-copy,
    .curriculum-program-copy,
    .curriculum-audience-copy,
    .facility-intro-copy,
    .facility-program-copy,
    .facility-need-copy,
    .facility-area-copy,
    .contact-prep-copy,
    .career-work-copy,
    .career-apply-copy
  ) h2 {
    width: auto !important;
    max-width: 680px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  :is(
    .about-copy,
    .problem-copy,
    .consult-copy,
    .about-understand-copy,
    .about-focus-copy,
    .about-label-copy,
    .about-approach-copy,
    .service-problem-copy,
    .service-uncertain-copy,
    .service-focus-copy,
    .service-choice-copy,
    .curriculum-program-copy,
    .curriculum-audience-copy,
    .facility-intro-copy,
    .facility-program-copy,
    .facility-need-copy,
    .facility-area-copy,
    .contact-prep-copy,
    .career-work-copy,
    .career-apply-copy
  ) h2 span {
    white-space: normal !important;
  }

  :is(
    .about-copy,
    .problem-copy,
    .consult-copy,
    .about-understand-copy,
    .about-focus-copy,
    .about-label-copy,
    .about-approach-copy,
    .service-problem-copy,
    .service-uncertain-copy,
    .service-focus-copy,
    .service-choice-copy,
    .curriculum-program-copy,
    .curriculum-audience-copy,
    .facility-intro-copy,
    .facility-program-copy,
    .facility-need-copy,
    .facility-area-copy,
    .contact-prep-copy,
    .career-work-copy,
    .career-apply-copy
  ) > p {
    max-width: 680px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    line-height: 1.65;
    text-align: center !important;
  }

  :is(
    .about-copy,
    .problem-copy,
    .consult-copy,
    .about-understand-copy,
    .about-focus-copy,
    .about-label-copy,
    .about-approach-copy,
    .service-problem-copy,
    .service-uncertain-copy,
    .service-focus-copy,
    .service-choice-copy,
    .curriculum-program-copy,
    .curriculum-audience-copy,
    .facility-intro-copy,
    .facility-program-copy,
    .facility-need-copy,
    .facility-area-copy,
    .contact-prep-copy,
    .career-work-copy,
    .career-apply-copy
  ) .section-actions {
    justify-content: center !important;
  }

  :is(
    .about-copy,
    .problem-copy,
    .consult-copy,
    .about-understand-copy,
    .about-focus-copy,
    .about-label-copy,
    .about-approach-copy,
    .service-problem-copy,
    .service-uncertain-copy,
    .service-focus-copy,
    .service-choice-copy,
    .curriculum-program-copy,
    .curriculum-audience-copy,
    .facility-intro-copy,
    .facility-program-copy,
    .facility-need-copy,
    .facility-area-copy,
    .contact-prep-copy,
    .career-work-copy,
    .career-apply-copy
  ) > :is(.eyebrow, [class*="badge"]) {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  :is(
    .about-focus-copy,
    .service-uncertain-copy,
    .service-focus-copy,
    .curriculum-audience-copy,
    .facility-program-copy,
    .facility-need-copy,
    .facility-area-copy,
    .contact-prep-copy,
    .career-work-copy,
    .career-apply-copy
  ) :is(ul, ol) {
    width: fit-content;
    max-width: 100%;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: left !important;
  }

  .section-head,
  .large-section-head,
  .service-list-head,
  .curriculum-list-head,
  .curriculum-random-head {
    text-align: center !important;
  }

  :is(
    .section-head,
    .large-section-head,
    .service-list-head,
    .curriculum-list-head,
    .curriculum-random-head
  ) > p,
  :is(
    .section-head,
    .large-section-head,
    .service-list-head,
    .curriculum-list-head,
    .curriculum-random-head
  ) .lead {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .hero-grid > *,
  .split > *,
  .about-layout > *,
  .about-understand-layout > *,
  .about-focus-layout > *,
  .about-label-layout > *,
  .about-approach-layout > *,
  .service-problem-layout > *,
  .service-list-grid > *,
  .service-uncertain-layout > *,
  .service-focus-layout > *,
  .service-choice-layout > *,
  .curriculum-program-layout > *,
  .curriculum-audience-layout > *,
  .facility-list-grid > *,
  .facility-intro-layout > *,
  .facility-program-layout > *,
  .facility-need-layout > *,
  .facility-area-layout > *,
  .contact-prep-layout > *,
  .contact-info-layout > *,
  .contact-panel > *,
  .career-work-layout > *,
  .career-apply-layout > * {
    min-width: 0;
  }

  /* Center Service list and Contact page internals on tablet. */
  .service-page .service-list-container,
  .contact-page .contact-prep-layout,
  .contact-page .contact-info-container,
  .contact-page .faq {
    width: min(calc(100% - 48px), 760px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .service-page .service-list-head {
    width: 100%;
    max-width: 720px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .service-page .service-list-head h2 {
    width: 100% !important;
    max-width: 620px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .service-page .service-list-head h2 span,
  .contact-page .contact-prep-copy h2 span {
    display: inline !important;
    white-space: normal !important;
  }

  .service-page .service-list-grid {
    width: 100% !important;
    max-width: 430px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center !important;
  }

  .service-page .service-list-image,
  .service-page .service-list-board {
    width: min(100%, 430px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-self: center !important;
  }

  .contact-page .contact-prep-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .contact-page .contact-prep-copy,
  .contact-page .contact-prep-copy h2,
  .contact-page .contact-prep-copy p,
  .contact-page .contact-prep-note {
    width: 100% !important;
    max-width: 720px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .contact-page .contact-prep-line {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .contact-page .contact-prep-list {
    width: fit-content;
    max-width: 680px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: left !important;
  }

  .contact-page .contact-prep-visual {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-self: center !important;
  }

  .contact-page .contact-prep-visual img {
    right: auto !important;
    left: 50% !important;
    width: 100% !important;
    transform: translate(-50%, -50%) !important;
  }

  .contact-page .contact-panel {
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .contact-page .map-card,
  .contact-page .contact-card {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  /* Curriculum tablet polish: keep visuals centered and remove floating underline art. */
  .curriculum-page .curriculum-program-layout,
  .curriculum-page .curriculum-audience-layout,
  .curriculum-page .curriculum-list-section .container,
  .curriculum-page .curriculum-random-container {
    width: min(calc(100% - 48px), 760px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-items: center !important;
  }

  .curriculum-page .curriculum-program-copy h2,
  .curriculum-page .curriculum-audience-copy h2 {
    width: 100% !important;
    max-width: 680px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .curriculum-page .curriculum-program-line {
    display: none !important;
  }

  .curriculum-page .curriculum-program-visual,
  .curriculum-page .curriculum-audience-visual {
    width: 100% !important;
    max-width: 560px !important;
    min-height: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
    justify-self: center !important;
  }

  .curriculum-page .curriculum-program-visual img,
  .curriculum-page .curriculum-audience-visual img {
    position: static !important;
    display: block !important;
    width: min(100%, 560px) !important;
    max-height: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
    transform: none !important;
  }

  .curriculum-page .curriculum-random-step img {
    display: block !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  /* Final tablet CTA sizing wins over older max-width:768px mobile image rules. */
  .cta-box {
    --tablet-cta-panel-height: clamp(315px, 38vw, 365px);
    min-height: clamp(380px, 48vw, 450px) !important;
  }

  .cta-box::before {
    left: clamp(170px, 24%, 215px) !important;
    right: clamp(18px, 3vw, 28px) !important;
    height: var(--tablet-cta-panel-height) !important;
    border-radius: clamp(28px, 4.8vw, 42px) 0 clamp(48px, 6vw, 58px) 0 !important;
  }

  .cta-box > img.cta-person-default {
    width: auto !important;
    max-width: none !important;
    height: calc(var(--tablet-cta-panel-height) * 1.38) !important;
    max-height: calc(var(--tablet-cta-panel-height) * 1.38) !important;
    margin: 0 !important;
    justify-self: end !important;
    align-self: end !important;
    transform: translateX(112px) !important;
  }

  .cta-content {
    min-height: var(--tablet-cta-panel-height) !important;
  }

  .facility-gallery-grid,
  .curriculum-random-steps,
  .card-grid,
  .testimonial-row,
  .gallery,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .large-section-head {
    max-width: min(100%, 820px);
    margin-inline: auto;
  }

  .section-head h2,
  .large-section-head h2 {
    overflow-wrap: anywhere;
  }

  .float-contact {
    right: 16px;
    bottom: 16px;
    width: min(34vw, 250px);
  }

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

  .facility-detail-dialog,
  .career-detail-dialog {
    width: min(calc(100% - 48px), 900px);
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
  }
}

/* Keep the approved desktop composition compact on iPad landscape and similar screens. */
@media (min-width: 993px) and (max-width: 1280px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .site-header .container {
    width: min(calc(100% - 24px), 1240px);
  }

  .site-header .nav {
    min-height: 68px;
    gap: clamp(12px, 1.5vw, 20px);
    padding-inline: 18px;
  }

  .brand img {
    width: clamp(170px, 17vw, 220px);
  }

  .nav-links {
    margin-left: auto;
    gap: clamp(10px, 1.15vw, 17px);
    font-size: clamp(11.5px, 0.95vw, 13.5px);
    line-height: 1;
  }

  .career-btn {
    margin-left: clamp(12px, 1.5vw, 22px);
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  .career-btn::before {
    width: 26px;
    height: 22px;
  }

  .hero {
    overflow-x: hidden;
    overflow-x: clip;
  }

  .hero-grid,
  .hero-home .hero-grid,
  .about-hero .hero-grid,
  .hero-service .hero-grid,
  .hero-curriculum .hero-grid,
  .hero-facility .hero-grid,
  .hero-contact .hero-grid,
  .hero-career .hero-grid {
    width: min(calc(100% - 32px), 1240px);
    min-height: clamp(480px, 50vw, 620px);
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr) !important;
    column-gap: clamp(14px, 2vw, 28px);
    padding-inline: 0;
  }

  .hero-grid > *,
  .split > *,
  .about-layout > *,
  .about-understand-layout > *,
  .about-focus-layout > *,
  .about-label-layout > *,
  .about-approach-layout > *,
  .service-problem-layout > *,
  .service-list-grid > *,
  .service-uncertain-layout > *,
  .service-focus-layout > *,
  .service-choice-layout > *,
  .problem-layout > *,
  .consult-layout > *,
  .curriculum-program-layout > *,
  .curriculum-audience-layout > *,
  .facility-list-grid > *,
  .facility-intro-layout > *,
  .facility-program-layout > *,
  .facility-need-layout > *,
  .facility-area-layout > *,
  .contact-prep-layout > *,
  .contact-info-layout > *,
  .contact-panel > *,
  .career-work-layout > *,
  .career-apply-layout > * {
    min-width: 0;
  }

  .hero-home .hero-copy,
  .about-hero-copy,
  .service-hero-copy,
  .curriculum-hero-copy,
  .facility-hero-copy,
  .contact-hero-copy,
  .career-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(46px, 5vw, 64px);
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero .lead {
    font-size: clamp(15px, 1.35vw, 18px);
  }

  .home-hero-art,
  .about-hero-art,
  .service-hero-art,
  .curriculum-hero-art,
  .facility-hero-art,
  .contact-hero-art,
  .career-hero-art {
    width: 100%;
    min-width: 0;
    margin-right: 0 !important;
    padding-right: 0 !important;
    transform: none !important;
  }

  .split,
  .about-layout,
  .about-understand-layout,
  .about-focus-layout,
  .about-label-layout,
  .about-approach-layout,
  .service-problem-layout,
  .service-list-grid,
  .service-uncertain-layout,
  .service-focus-layout,
  .service-choice-layout,
  .problem-layout,
  .consult-layout,
  .curriculum-program-layout,
  .curriculum-audience-layout,
  .facility-list-grid,
  .facility-intro-layout,
  .facility-program-layout,
  .facility-need-layout,
  .facility-area-layout,
  .contact-prep-layout,
  .career-work-layout,
  .career-apply-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 54px);
  }

  .footer-grid {
    grid-template-columns: 2fr 0.7fr 1.1fr 1.2fr;
    gap: clamp(24px, 3vw, 44px);
  }

  .float-contact {
    right: 18px;
    width: min(28vw, 280px);
  }
}

/* Contact consultation WhatsApp popup form */
body.consultation-modal-open {
  overflow: hidden;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.consultation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.consultation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 38, 84, 0.52);
  backdrop-filter: blur(8px);
}

.consultation-modal__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(222, 211, 251, 0.9);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  box-shadow: 0 32px 80px rgba(45, 38, 84, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.22s ease;
}

.consultation-modal.is-open .consultation-modal__dialog {
  transform: translateY(0) scale(1);
}

.consultation-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--purple);
  background: var(--lavender);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.consultation-modal__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--lavender);
  font-size: 13px;
  font-weight: 900;
}

.consultation-modal__dialog h2 {
  margin: 16px 54px 8px 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.consultation-modal__dialog p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.consultation-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.consultation-form__full {
  grid-column: 1 / -1;
}

.consultation-form input,
.consultation-form textarea,
.consultation-form select {
  width: 100%;
  border: 1.5px solid rgba(88, 64, 173, 0.18);
  border-radius: 18px;
  color: var(--ink);
  background: #ffffff;
  padding: 13px 15px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.consultation-form textarea {
  resize: vertical;
  min-height: 116px;
}

.consultation-form input:focus,
.consultation-form textarea:focus,
.consultation-form select:focus {
  border-color: var(--purple-2);
  box-shadow: 0 0 0 4px rgba(155, 107, 226, 0.16);
}

.consultation-form__submit {
  grid-column: 1 / -1;
  justify-self: flex-start;
  min-height: 48px;
  padding-inline: 28px;
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 640px) {
  .consultation-modal {
    align-items: end;
    padding: 12px;
  }

  .consultation-modal__dialog {
    width: 100%;
    max-height: 88vh;
    padding: 22px 18px 20px;
    border-radius: 28px;
  }

  .consultation-modal__dialog h2 {
    margin-right: 46px;
  }

  .consultation-form {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .consultation-form__submit {
    width: 100%;
  }
}

/* Home hero cover revision: use DSC00172 as the main cover photo and remove old layered figures. */
.home-page .home-hero-art.home-hero-cover {
  transform: translateX(-1.5%);
  align-self: flex-end;
  background: transparent;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.home-page .home-hero-art.home-hero-cover::before,
.home-page .home-hero-art.home-hero-cover::after {
  display: none;
}

.home-page .home-hero-art.home-hero-cover .home-hero-cover-image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 5%;
  width: min(120%, 780px);
  max-width: none;
  height: auto;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: none;
  transform: none;
}

@media (min-width: 993px) {
  .home-page .hero-home .hero-grid {
    grid-template-columns: minmax(500px, 0.92fr) minmax(540px, 1.08fr);
    gap: clamp(26px, 3vw, 58px);
  }
}

@media (max-width: 992px) {
  .home-page .home-hero-art.home-hero-cover {
    width: min(100%, 680px);
    transform: none;
    margin-inline: auto;
  }
  
  .home-page .home-hero-art.home-hero-cover .home-hero-cover-image {
    position: relative;
    right: 0%;
    bottom: auto;
    width: min(110%, 680px);
    transform: none;
    object-position: bottom center;
  }
}

@media (max-width: 640px) {
  .home-page .home-hero-art.home-hero-cover {
    border-radius: 0;
  }

  .home-page .home-hero-art.home-hero-cover .home-hero-cover-image {
    object-position: center center;
  }
}

/* Service hero cover revision: use DSC00275 as the main cover photo. */
.service-page .service-hero-art.service-hero-cover {
  transform: translateX(-1.5%);
  align-self: flex-end;
  background: transparent;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.service-page .service-hero-art.service-hero-cover::before,
.service-page .service-hero-art.service-hero-cover::after {
  display: none;
}

.service-page .service-hero-art.service-hero-cover .service-hero-cover-image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 10%;
  width: min(150%, 960px);
  max-width: none;
  height: auto;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: none;
  transform: none;
}

@media (min-width: 993px) {
  .service-page .hero-service .hero-grid {
    grid-template-columns: minmax(500px, 0.92fr) minmax(540px, 1.08fr);
    gap: clamp(26px, 3vw, 58px);
  }
}

@media (max-width: 992px) {
  .service-page .service-hero-art.service-hero-cover {
    width: min(100%, 680px);
    transform: none;
    margin-inline: auto;
  }
  
  .service-page .service-hero-art.service-hero-cover .service-hero-cover-image {
    position: relative;
    right: 5%;
    bottom: auto;
    width: min(130%, 820px);
    transform: none;
    object-position: bottom center;
  }
}

@media (max-width: 640px) {
  .service-page .service-hero-art.service-hero-cover {
    border-radius: 0;
  }

  .service-page .service-hero-art.service-hero-cover .service-hero-cover-image {
    object-position: center center;
  }
}

/* Facility hero cover revision: use DSC00353 as the main cover photo. */
.facility-page .facility-hero-art.facility-hero-cover {
  transform: translateX(-1.5%);
  align-self: flex-end;
  background: transparent;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.facility-page .facility-hero-art.facility-hero-cover::before,
.facility-page .facility-hero-art.facility-hero-cover::after {
  display: none;
}

.facility-page .facility-hero-art.facility-hero-cover .facility-hero-cover-image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 5%;
  width: min(125%, 860px);
  max-width: none;
  height: auto;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: none;
  transform: none;
}

@media (min-width: 993px) {
  .facility-page .hero-facility .hero-grid {
    grid-template-columns: minmax(500px, 0.92fr) minmax(540px, 1.08fr);
    gap: clamp(26px, 3vw, 58px);
  }
}

@media (max-width: 992px) {
  .facility-page .facility-hero-art.facility-hero-cover {
    width: min(100%, 680px);
    transform: none;
    margin-inline: auto;
  }
  
  .facility-page .facility-hero-art.facility-hero-cover .facility-hero-cover-image {
    position: relative;
    right: 5%;
    bottom: auto;
    width: min(130%, 820px);
    transform: none;
    object-position: bottom center;
  }
}

@media (max-width: 640px) {
  .facility-page .facility-hero-art.facility-hero-cover {
    border-radius: 0;
  }

  .facility-page .facility-hero-art.facility-hero-cover .facility-hero-cover-image {
    object-position: center center;
  }
}

/* Jargon / Quote Box */
.jargon-section {
  padding: 0px 16px;
  background-color: transparent;
  margin-top: -80px;
  margin-bottom: -60px;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .jargon-section {
    margin-top: -40px;
    margin-bottom: 24px;
  }
}

.jargon-box {
  position: relative;
  background: var(--lavender-2);
  border-radius: 40px;
  padding: 20px 40px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.jargon-quote-icon {
  width: 42px;
  height: 42px;
  color: var(--yellow);
  margin-bottom: 12px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(255, 184, 0, 0.3));
}

.jargon-accent-star {
  position: absolute;
  top: 16px;
  right: 32px;
}

.jargon-accent-star::before {
  content: "\2605";
  color: #ff9b37;
  font-size: 28px;
  line-height: 1;
  opacity: 0.8;
}

.jargon-text {
  position: relative;
  z-index: 2;
  font-size: clamp(22px, 2.8vw, 32px);
  font-style: italic;
  color: var(--purple);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

/* Tablet responsiveness fix */
@media (max-width: 992px) {
  .problem-layout,
  .consult-layout,
  .about-layout {
    grid-template-columns: 1fr !important;
  }
}
