/* Generated by tools/build-theme-css.py. Do not edit directly. */
.cb-hero-home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 41, 45, 0.18), transparent 22%),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #121b3d 0%, #0e1632 100%);
  color: var(--cb-white);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.cb-hero-gridline,
.cb-hero-blob,
.cb-hero-accent,
.cb-hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cb-hero-gridline {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cb-hero-blob {
  width: 520px;
  height: 520px;
  left: auto;
  right: -120px;
  top: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 41, 45, 0.26), rgba(184, 41, 45, 0) 70%);
}

.cb-hero-accent {
  width: 340px;
  height: 340px;
  inset: auto auto -120px -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 70%);
}

.cb-hero-rings {
  width: 620px;
  height: 620px;
  left: auto;
  right: -80px;
  top: 10px;
}

.cb-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cb-hero-ring-1 {
  inset: 40px;
}

.cb-hero-ring-2 {
  inset: 110px;
}

.cb-hero-ring-3 {
  inset: 180px;
}

.cb-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 52px;
  align-items: center;
  padding: 76px 0 82px;
  position: relative;
  z-index: 2;
}

.cb-hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cb-star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  animation: cb-star-twinkle 4s ease-in-out infinite alternate;
}

@keyframes cb-star-twinkle {
  from {
    opacity: 0.18;
    transform: scale(0.7);
  }

  to {
    opacity: 0.9;
    transform: scale(1.15);
  }
}

.cb-hero-copy {
  display: grid;
  gap: 26px;
}

.cb-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  font-family: "DM Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cb-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5458;
  box-shadow: 0 0 0 6px rgba(255, 84, 88, 0.18);
}

.cb-hero-title {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.92;
  color: var(--cb-white);
}

.cb-red-ink {
  color: #ff676b;
}

.cb-hero-description {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.cb-hero-actions,
.cb-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.cb-stat-row {
  gap: 18px;
}

.cb-stat {
  min-width: 116px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cb-stat strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 2.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.cb-stat strong span {
  font-size: 1.2rem;
}

.cb-stat small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cb-hero-cards {
  display: grid;
  gap: 18px;
}

.cb-hero-course-card {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px);
  color: var(--cb-white);
  box-shadow: 0 18px 34px rgba(5, 10, 30, 0.18);
}

.cb-hero-course-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.cb-tone-red .cb-hero-course-icon,
.cb-tone-red .cb-feature-icon {
  background: rgba(184, 41, 45, 0.12);
}

.cb-tone-blue .cb-hero-course-icon,
.cb-tone-blue .cb-feature-icon {
  background: rgba(75, 129, 255, 0.12);
}

.cb-tone-green .cb-hero-course-icon,
.cb-tone-green .cb-feature-icon {
  background: rgba(52, 170, 114, 0.12);
}

.cb-hero-course-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
}

.cb-hero-course-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
}

.cb-inline-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}


.cb-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.cb-about-visual {
  min-height: 420px;
}

.cb-about-shell {
  position: relative;
  height: 100%;
  min-height: 420px;
  padding: 34px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(184, 41, 45, 0.16), rgba(184, 41, 45, 0) 38%),
    linear-gradient(160deg, #ffffff, #f1ebe2);
  box-shadow: 0 22px 50px rgba(14, 22, 50, 0.12);
}

.cb-about-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(27, 38, 85, 0.08);
}

.cb-about-mark {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--cb-red), #c64246 62%, #1b2655);
  box-shadow: 0 14px 30px rgba(184, 41, 45, 0.24);
}

.cb-about-wordmark {
  margin-top: 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: 0.08em;
  color: var(--cb-navy);
}

.cb-about-parts {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.cb-about-part {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 38, 85, 0.08);
}

.cb-about-label {
  display: block;
  margin-bottom: 8px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cb-stone);
}

.cb-about-part strong {
  color: var(--cb-navy);
}

.cb-story-copy {
  display: grid;
  gap: 16px;
}

.cb-home-intro {
  margin-bottom: 28px;
}

.cb-section-copy-wide {
  max-width: 760px;
}


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

.cb-feature-card,
.cb-school-card,
.cb-testimonial-card,
.cb-contact-form-card,
.cb-contact-mini-card {
  border-radius: 24px;
  background: var(--cb-white);
  border: 1px solid rgba(27, 38, 85, 0.05);
  box-shadow: var(--cb-shadow-soft);
}

.cb-feature-card {
  padding: 26px;
}

.cb-feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.cb-feature-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--cb-navy);
}

.cb-feature-card p {
  margin: 0;
  color: var(--cb-stone);
  line-height: 1.7;
}

.cb-school-card {
  overflow: hidden;
}

.cb-school-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(135deg, #0e1632, #1b2655);
  color: var(--cb-white);
}

.cb-school-emoji {
  font-size: 1.5rem;
}

.cb-school-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
}

.cb-school-body {
  padding: 24px;
}

.cb-school-subtitle {
  margin-top: -2px;
  margin-bottom: 12px;
  color: var(--cb-red);
  font-weight: 700;
}

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

.cb-testimonial-card {
  padding: 24px;
}

.cb-testimonial-stars {
  margin-bottom: 16px;
  color: #ffb84d;
  letter-spacing: 0.14em;
}

.cb-quote {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  color: var(--cb-charcoal);
}

.cb-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cb-testimonial-flag {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(27, 38, 85, 0.05);
  font-size: 1.5rem;
}

.cb-testimonial-author h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--cb-navy);
}

.cb-testimonial-author p {
  margin: 0;
  color: var(--cb-stone);
  font-size: 0.92rem;
}

.cb-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 28px 30px;
  border-radius: 26px;
  background: linear-gradient(120deg, #151f45, #1b2655);
  color: var(--cb-white);
}

.cb-inline-cta h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cb-inline-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cb-inline-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cb-button-outline-dark {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--cb-white);
}


.cb-map-shell {
  margin-top: 30px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--cb-shadow-strong);
  background: var(--cb-white);
}

.cb-map-frame {
  height: 400px;
}

.cb-map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  border-top: 3px solid var(--cb-red);
}

.cb-map-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cb-map-brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cb-red), #c64246 62%, #1b2655);
}

.cb-map-brand strong,
.cb-map-brand span {
  display: block;
}

.cb-map-brand strong {
  color: var(--cb-navy);
}

.cb-map-brand span,
.cb-map-caption-text {
  color: var(--cb-stone);
}

.cb-contact-area {
  margin-top: 72px;
}

.cb-eyebrow-centered {
  justify-content: center;
  width: 100%;
}

.cb-contact-head {
  margin-bottom: 36px;
}

.cb-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.cb-contact-mini-card {
  padding: 22px 16px;
  text-align: center;
}

.cb-contact-mini-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: rgba(184, 41, 45, 0.1);
}

.cb-contact-mini-card h4 {
  margin: 0 0 4px;
  color: var(--cb-navy);
}

.cb-contact-mini-card p,
.cb-contact-mini-card a {
  margin: 0;
  color: var(--cb-stone);
}

.cb-contact-form-card {
  padding: 30px;
}

.cb-contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cb-contact-submit .cb-form-status {
  margin: 0;
}

.home-copy-left {
  text-align: left;
}

.home-copy-heading {
  text-align: left;
}

.home-copy-paragraph {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.home-copy-paragraph-spaced {
  margin-bottom: 14px;
}

.home-copy-paragraph-narrow {
  max-width: 500px;
}

.home-section-copy-wide {
  max-width: 760px;
}

.home-section-intro {
  margin: 0 auto 40px;
}

.home-section-intro-center {
  max-width: 860px;
  text-align: center;
}

.home-section-intro-center .sec-p {
  max-width: 720px;
}

.home-hidden-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.home-media-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cb-promo-home {
  border: 1px solid rgba(184, 41, 45, 0.12);
  box-shadow: var(--cb-shadow-soft);
}

.cb-pathway-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  background: var(--cb-cream);
}

.cb-pathway-step {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(27, 38, 85, 0.06);
  color: var(--cb-navy);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
}

.cb-pathway-step-red {
  background: rgba(184, 41, 45, 0.12);
  color: var(--cb-red);
}

.cb-pathway-arrow {
  color: var(--cb-stone);
}


@media (max-width: 1180px) {
  .cb-feature-grid,
  .cb-testimonial-grid,
  .cb-contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .cb-hero-grid,
  .cb-story-grid {
    grid-template-columns: 1fr;
  }

  .cb-hero-home {
    min-height: auto;
  }

  .cb-hero-rings {
    right: -220px;
    top: -80px;
  }

  .cb-inline-cta,
  .cb-map-caption,
  .cb-contact-submit {
    flex-direction: column;
    align-items: flex-start;
  }

  .cb-inline-cta-actions {
    justify-content: flex-start;
  }

  .cb-map-frame {
    height: 340px;
  }
}

@media (max-width: 720px) {
  .cb-hero-grid {
    padding: 60px 0 70px;
  }

  .cb-feature-grid,
  .cb-testimonial-grid,
  .cb-contact-info-grid {
    grid-template-columns: 1fr;
  }

  .cb-hero-actions .cb-button,
  .cb-inline-cta-actions .cb-button {
    width: 100%;
  }

  .cb-about-shell {
    min-height: auto;
  }

  .cb-map-caption {
    padding: 18px 20px;
  }

  .cb-contact-form-card {
    padding: 22px;
  }
}


:root {
  --navy: var(--cb-navy);
  --navy-deep: var(--cb-navy-deep);
  --navy-mid: #243070;
  --navy-light: #2e3d80;
  --red: var(--cb-red);
  --red-dark: #9d1f24;
  --red-glow: rgba(184, 41, 45, 0.12);
  --red-bright: #d43438;
  --cream: var(--cb-cream);
  --white: var(--cb-white);
  --stone: var(--cb-stone);
  --charcoal: var(--cb-charcoal);
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 8px;
  --shadow-soft: 0 2px 16px rgba(27, 38, 85, 0.06);
  --shadow-med: 0 8px 32px rgba(27, 38, 85, 0.1);
  --shadow-strong: 0 20px 60px rgba(27, 38, 85, 0.16);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --font-body: "DM Sans", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-mono: "DM Mono", monospace;
}

body {
  background: var(--white);
}


.top-bar {
  background: linear-gradient(90deg, #af272b 0%, #b8292d 50%, #a62328 100%);
  padding: 9px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
}

@keyframes gradSlide {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

.top-bar-icon {
  font-size: 10px;
  opacity: 0.92;
}

.top-bar-copy {
  display: inline-flex;
  align-items: center;
}

.top-bar strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.top-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-weight: 700;
}

.top-bar .close-bar {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.top-bar .close-bar:hover {
  color: #fff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(184, 41, 45, 0.08);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 10px 30px rgba(14, 22, 50, 0.22);
  background: var(--navy-deep);
}

.nav-inner {
  width: 100%;
  height: 68px;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-wrap: nowrap;
  z-index: 1;
}

.nav-link {
  color: rgba(255, 255, 255, 0.45);
  padding: 8px 14px;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  line-height: 1;
  font-weight: 500;
  transition: all .25s;
  white-space: nowrap;
  flex: 0 0 auto;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transition: all .3s var(--ease-spring);
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.nav-link:hover::after {
  left: 20%;
  right: 20%;
}

.nav-link.active {
  color: #fff;
  background: transparent;
}

.nav-link.active::after {
  left: 20%;
  right: 20%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.nav-enroll-btn {
  padding: 9px 24px;
  font-size: 13px;
  white-space: nowrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.nav-logo-mark,
.fb-logo-img,
.location-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #cf474b 52%, var(--navy));
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(184, 41, 45, 0.24);
  flex-shrink: 0;
}

.nav-logo-mark::after,
.fb-logo-img::after,
.location-brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 3.4s ease-in-out infinite;
}

.location-brand-mark-logo {
  padding: 4px;
  background: #fff;
}

.location-brand-mark-logo::after {
  display: none;
}

.location-brand-mark-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(140%); }
}

.nav-logo-full {
  height: 50px;
  width: auto;
  display: block;
  transition: all .3s var(--ease);
}

.nav-logo:hover .nav-logo-full {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.lang-dropdown {
  position: relative;
}

.nav-lang-sw {
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--font-body);
}

.nav-lang-sw:hover {
  border-color: var(--red);
  color: var(--red);
}

.nav-lang-sw:focus-visible,
.lang-opt:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 9999;
}

.lang-menu.open {
  display: block;
  animation: langDrop .3s var(--ease-spring) both;
}

@keyframes langDrop {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.lang-menu-inner {
  max-height: 480px;
  overflow-y: auto;
  padding: 6px;
}

.lang-menu-inner::-webkit-scrollbar {
  width: 4px;
}

.lang-menu-inner::-webkit-scrollbar-thumb {
  background: rgba(27, 38, 85, .12);
  border-radius: 2px;
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.lang-opt:hover {
  background: var(--cream);
  transform: translateX(3px);
}

.lang-opt.active {
  background: var(--red-glow);
  color: var(--red);
  border-color: rgba(184, 41, 45, .12);
  font-weight: 600;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 50, .97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-overlay.open {
  display: flex;
  animation: pageIn .3s var(--ease-out);
}

.mobile-overlay .mob-link {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all .25s;
  opacity: .7;
}

.mobile-overlay .mob-link:hover,
.mobile-overlay .mob-link.active {
  opacity: 1;
  color: var(--red-bright);
}

.mobile-overlay .mob-enroll {
  margin-top: 20px;
  padding: 14px 40px;
  font-size: 15px;
}

.mobile-overlay .mob-lang {
  margin-top: 16px;
  text-align: center;
  width: 100%;
}

.mobile-overlay .mob-lang-label {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, .58);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mobile-overlay .mob-lang-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 320px;
  margin: 0 auto;
}

.mobile-overlay .mob-lang-opt {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: all .2s;
}

.mobile-overlay .mob-lang-opt:hover,
.mobile-overlay .mob-lang-opt.active {
  color: #fff;
  border-color: var(--red-bright);
  background: rgba(220, 38, 38, .15);
}

body.mobile-nav-open .wa-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 85%, rgba(184, 41, 45, .1) 0%, transparent 45%), radial-gradient(ellipse at 85% 15%, rgba(46, 61, 128, .15) 0%, transparent 45%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-star {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-star.white { background: rgba(255, 255, 255, .6); }
.hero-star.red { background: rgba(184, 41, 45, .5); }
.hero-star.blue { background: rgba(130, 170, 255, .5); }
.hero-star.glow { box-shadow: 0 0 4px 1px rgba(255, 255, 255, .15); }

@keyframes starTwinkle {
  0%, 100% { opacity: .1; transform: scale(.5); }
  50% { opacity: .6; transform: scale(1); }
}

@keyframes starTwinkle2 {
  0%, 100% { opacity: .08; }
  50% { opacity: .45; }
}

.hero-star.twk { animation: starTwinkle ease-in-out infinite alternate; }
.hero-star.twk2 { animation: starTwinkle2 ease-in-out infinite alternate; }

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  to { transform: translate(40px, 40px); }
}

.hero-blob {
  position: absolute;
  right: 5%;
  top: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 41, 45, .06), transparent 70%);
  border-radius: 50%;
  animation: blobM 12s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes blobM {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0) scale(1); }
  33% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(120deg) scale(1.05); }
  66% { border-radius: 50% 40% 60% 30% / 40% 50% 60% 50%; transform: rotate(240deg) scale(.95); }
}

.hero-accent {
  position: absolute;
  left: 0;
  top: 20%;
  height: 200px;
  width: 4px;
  background: var(--red);
  border-radius: 0 2px 2px 0;
  animation: accentG 1s var(--ease-out) .5s both;
}

@keyframes accentG {
  from { height: 0; opacity: 0; }
  to { height: 200px; opacity: 1; }
}

.hero-rings {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .04);
}

.hr1 { width: 460px; height: 460px; animation: ringR 40s linear infinite; }
.hr2 { width: 340px; height: 340px; top: 60px; left: 60px; animation: ringR 30s linear infinite reverse; }
.hr3 { width: 220px; height: 220px; top: 120px; left: 120px; animation: ringR 20s linear infinite; }

@keyframes ringR {
  to { transform: rotate(360deg); }
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 32px 72px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left > * {
  animation: hStag .7s var(--ease-out) both;
}

.hero-left > *:nth-child(1) { animation-delay: .3s; }
.hero-left > *:nth-child(2) { animation-delay: .45s; }
.hero-left > *:nth-child(3) { animation-delay: .6s; }
.hero-left > *:nth-child(4) { animation-delay: .75s; }
.hero-left > *:nth-child(5) { animation-delay: .9s; }

@keyframes hStag {
  from { opacity: 0; transform: translateY(20px) translateX(-10px); }
  to { opacity: 1; transform: none; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 41, 45, .12);
  border: 1px solid rgba(184, 41, 45, .2);
  border-radius: 50px;
  padding: 5px 14px 5px 8px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: livePulse 1.5s ease infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 41, 45, .5); }
  50% { box-shadow: 0 0 0 6px rgba(184, 41, 45, 0); }
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 62px);
  color: #fff;
  line-height: 1.06;
  margin: 0 0 20px;
  font-weight: 500;
}

.hero h1 .ri {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1.hero-title--zh-single {
  white-space: nowrap;
  font-size: clamp(34px, 4.2vw, 58px);
}

.hero h1.hero-title--zh-single .ri {
  font-style: normal;
}

.hero-desc {
  color: rgba(255, 255, 255, .45);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-right {
  animation: hStag .7s var(--ease-out) .6s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.cta-main,
.cta-wa,
.cta-ghost,
.nav-enroll-btn,
.mobile-overlay .mob-enroll,
.location-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease-spring);
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}

.cta-main,
.nav-enroll-btn,
.mobile-overlay .mob-enroll,
.location-map-link {
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(184, 41, 45, .22);
  white-space: nowrap;
}

.cta-main {
  padding: 14px 28px;
}

.cta-main:hover,
.nav-enroll-btn:hover,
.mobile-overlay .mob-enroll:hover,
.location-map-link:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(184, 41, 45, .28);
}

.cta-wa {
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
}

.cta-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .3);
}

.cta-ghost {
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  padding: 14px 24px;
  background: transparent;
}

.cta-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(184, 41, 45, .04);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero-stat .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "DM Mono", monospace;
}

.hero-cards {
  position: relative;
  height: 440px;
  perspective: 800px;
}

.h-card {
  position: absolute;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 22px;
  transition: all .5s var(--ease-spring);
  cursor: default;
}

.h-card:hover {
  transform: translateY(-8px) rotateY(-3deg) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.hc1 {
  top: 0;
  left: 0;
  width: 270px;
  background: linear-gradient(145deg, rgba(184, 41, 45, .1), rgba(184, 41, 45, .02));
  border-color: rgba(184, 41, 45, .12);
  animation: cf1 6s ease-in-out infinite;
}

.hc2 {
  top: 95px;
  right: 0;
  width: 240px;
  background: linear-gradient(145deg, rgba(46, 61, 128, .1), rgba(46, 61, 128, .02));
  border-color: rgba(46, 61, 128, .12);
  animation: cf2 7s ease-in-out infinite;
}

.hc3 {
  bottom: 20px;
  left: 16px;
  width: 290px;
  background: linear-gradient(145deg, rgba(37, 211, 102, .07), rgba(37, 211, 102, .01));
  border-color: rgba(37, 211, 102, .1);
  animation: cf3 8s ease-in-out infinite;
}

@keyframes cf1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes cf2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes cf3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hci {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.hci-r { background: rgba(184, 41, 45, .15); }
.hci-b { background: rgba(46, 61, 128, .15); }
.hci-g { background: rgba(37, 211, 102, .12); }

.h-card h4 {
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 5px;
}

.h-card p {
  color: rgba(255, 255, 255, .4);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.enroll-mini {
  display: inline-block;
  margin-top: 10px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all .2s;
}

.enroll-mini:hover {
  letter-spacing: 1.5px;
}

.rv,
.rvl,
.rvr,
.rvs {
  opacity: 0;
}

.rv { transform: translateY(30px); transition: all .7s var(--ease-out); }
.rvl { transform: translateX(-40px); transition: all .7s var(--ease-out); }
.rvr { transform: translateX(40px); transition: all .7s var(--ease-out); }
.rvs { transform: scale(.9); transition: all .6s var(--ease-spring); }

.rv.v,
.rvl.v,
.rvr.v,
.rvs.v {
  opacity: 1;
  transform: none;
}

.sec {
  padding: 90px 32px;
  position: relative;
}

.sec-cream {
  background: var(--cream);
}

.sec-white {
  background: var(--white);
}

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


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.about-vis {
  background: var(--navy);
  border-radius: var(--radius-xl);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-vis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(184, 41, 45, .1), transparent 45%);
}

.about-vis::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-name {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  margin: 0 auto 16px;
  background: url("../../../img/cambright-logo-official.svg") center/cover;
  position: relative;
  overflow: hidden;
}

.about-logo-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .3) 50%, transparent 75%);
  transform: translateX(-120%);
  animation: shimmer 4s ease-in-out infinite;
}

.about-big {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  color: #fff;
  letter-spacing: 4px;
  font-weight: 500;
}

.about-parts {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 12px;
}

.about-part .lab {
  font-family: "DM Mono", monospace;
  color: rgba(255, 255, 255, .3);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.about-part .val {
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
}

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

.hx-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(27, 38, 85, .04);
  transition: all .4s var(--ease-spring);
  position: relative;
}

.hx-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.hx-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #c9a030);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-spring);
}

.hx-card:hover::after {
  transform: scaleX(1);
}

.hx-top {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}

.hx-t1 { background: linear-gradient(135deg, #8b1a1a, #d4443c); }
.hx-t2 { background: linear-gradient(135deg, #1a3050, #3a6090); }
.hx-t3 { background: linear-gradient(135deg, #3a2050, #7a4a90); }

.hx-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .5px;
  font-family: "DM Mono", monospace;
}

.hx-body {
  padding: 22px;
}

.hx-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 3px;
}

.hx-cn {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 10px;
  font-weight: 500;
}

.hx-body > p {
  color: var(--stone);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.hx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.hx-tag {
  background: var(--cream);
  color: var(--stone);
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 500;
}

.test-carousel-wrap {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.test-carousel {
  display: flex;
  transition: transform .5s var(--ease);
  will-change: transform;
}

.test-card {
  flex: 0 0 calc(33.333% - 12px);
  margin-right: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(27, 38, 85, .04);
  transition: box-shadow .4s var(--ease-spring), transform .4s var(--ease-spring);
}

.test-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-med);
}

.test-stars {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.test-card blockquote {
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 14px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 38, 85, .05);
}

.test-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.test-author h5 {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

.test-author span {
  font-size: 11.5px;
  color: var(--stone);
}

.test-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.test-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 38, 85, .15);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease-spring);
}

.test-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: scale(1.1);
}

.test-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 38, 85, .15);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease-spring);
  padding: 0;
}

.test-dot.active {
  background: var(--red);
  transform: scale(1.3);
}


.location-shell {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow-strong);
}

.location-map {
  height: 400px;
  position: relative;
}

.location-map-frame {
  border: 0;
  display: block;
}

.location-meta {
  background: var(--white);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 3px solid var(--red);
  justify-content: space-between;
  flex-wrap: wrap;
}

.location-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.location-brand-copy p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}

.location-brand-copy span {
  font-size: 12.5px;
  color: var(--stone);
}

.location-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.location-actions a {
  color: var(--navy);
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.location-map-link {
  padding: 9px 18px;
  font-size: 12px !important;
}

.location-cards,
.contact-info-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.location-cards {
  grid-template-columns: repeat(5, 1fr);
}

.location-card,
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  border: 1px solid rgba(27, 38, 85, .04);
  transition: all .4s var(--ease-spring);
}

.location-card:hover,
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
}

.location-card-icon,
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 10px;
}

.location-card h4,
.contact-info-card h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 2px;
}

.location-card p,
.contact-info-card p {
  font-size: 12.5px;
  color: var(--stone);
  margin: 0;
}

.contact-info-cards {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 36px;
}

.home-contact-card {
  text-align: left;
  padding: 40px 44px;
}

.home-contact-head {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.home-contact-head h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.home-contact-head p {
  font-size: 13.5px;
  margin-bottom: 0;
}

.home-contact-form {
  position: relative;
  z-index: 2;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-contact-field-full {
  margin-top: 14px;
}

.home-contact-field label {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
}

.home-contact-field input,
.home-contact-field select,
.home-contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition: all .3s;
}

.home-contact-field input::placeholder,
.home-contact-field textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.home-contact-field input:focus,
.home-contact-field select:focus,
.home-contact-field textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, .1);
}

.home-contact-field textarea {
  resize: vertical;
  min-height: 80px;
}

.home-contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-contact-status {
  margin-top: 14px;
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

.country-picker {
  position: relative;
  width: 100%;
}

.country-picker-input {
  cursor: pointer;
}

.country-picker-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .35);
  font-size: 11px;
  pointer-events: none;
  transition: transform .2s;
}

.country-picker.open .country-picker-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.country-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
  z-index: 100;
  overflow: hidden;
  animation: langDrop .2s var(--ease-spring) both;
}

.country-picker.open .country-dropdown {
  display: block;
}

.country-search-wrap {
  padding: 8px;
  border-bottom: 1px solid rgba(27, 38, 85, .06);
}

.country-search {
  width: 100%;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(27, 38, 85, .1);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  outline: none;
  color: var(--charcoal);
  transition: border-color .2s;
}

.country-search:focus {
  border-color: var(--red);
}

.country-search::placeholder {
  color: var(--stone);
}

.country-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 4px;
}

.country-list::-webkit-scrollbar {
  width: 4px;
}

.country-list::-webkit-scrollbar-thumb {
  background: rgba(27, 38, 85, .12);
  border-radius: 2px;
}

.country-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all .15s;
}

.country-opt:hover {
  background: var(--cream);
}

.country-opt.selected {
  background: var(--red-glow);
  color: var(--red);
  font-weight: 600;
}

.country-opt .cflag {
  font-size: 18px;
  line-height: 1;
}

.country-opt.hidden {
  display: none;
}

.country-no-match {
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--stone);
}

.ptr-track {
  overflow: hidden;
  margin-top: 32px;
  position: relative;
}

.ptr-track::before,
.ptr-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.ptr-track::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}

.ptr-track::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream), transparent);
}

.ptr-scroll {
  display: flex;
  gap: 28px;
  animation: marq 20s linear infinite;
  width: max-content;
}

@keyframes marq {
  to { transform: translateX(-50%); }
}

.p-logo {
  background: var(--cream);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 38, 85, .04);
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  white-space: nowrap;
  opacity: .6;
  transition: all .3s;
}

.p-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.news-view-all {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}

.news-view-all:hover {
  letter-spacing: 1.5px;
}

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

.news-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(27, 38, 85, .04);
  transition: all .4s var(--ease-spring);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.n-thumb {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
}

.nt1 { background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid)); }
.nt2 { background: linear-gradient(135deg, #1a3d35, #2d7a5e); }
.nt3 { background: linear-gradient(135deg, #3a2050, #6a4090); }

.n-body {
  padding: 22px;
}

.n-date {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--stone);
  margin-bottom: 7px;
  font-weight: 500;
  letter-spacing: .5px;
}

.n-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 7px;
  line-height: 1.3;
}

.n-body p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
}

.n-tags {
  display: flex;
  gap: 5px;
  margin-top: 12px;
}

.n-tag {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 50px;
  background: var(--red-glow);
  color: var(--red);
  letter-spacing: .5px;
  text-transform: uppercase;
}


.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(27, 38, 85, .5);
  transition: all .3s;
  border: none;
  position: relative;
  animation: waB 3s ease infinite;
}

@keyframes waB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.wa-btn:hover {
  transform: scale(1.12) !important;
  animation: none;
}

.wa-btn .wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waP 2s infinite;
}

@keyframes waP {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-panel {
  display: none;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  width: 280px;
  max-height: 80vh;
  overflow: hidden;
  animation: panelPop .4s var(--ease-spring);
}

.wa-panel .wa-pb {
  max-height: calc(80vh - 48px);
  overflow-y: auto;
}

@keyframes panelPop {
  from { opacity: 0; transform: scale(.85) translateY(10px); }
  to { opacity: 1; transform: none; }
}

.wa-panel.open {
  display: block;
}

.wa-ph {
  background: var(--navy);
  padding: 14px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-pc {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.wa-pb {
  padding: 10px;
}

.wa-sec-label {
  padding: 4px 14px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "DM Mono", monospace;
}

.wa-lb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  color: var(--charcoal);
  font-size: 13.5px;
  font-weight: 500;
  transition: all .2s;
  border: 1px solid transparent;
}

.wa-lb:hover {
  background: #f0faf4;
  border-color: #25d366;
  transform: translateX(4px);
}

.wa-lb-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 12px;
}

.wa-lb-icon-green { background: #25d366; }
.wa-lb-icon-blue { background: #0088cc; }
.wa-lb-icon-indigo { background: #0084ff; }

.wa-wechat-qr {
  display: flex;
  justify-content: center;
  padding: 8px 14px 4px;
}

.wa-wechat-qr img {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.wa-sep {
  height: 1px;
  background: rgba(27, 38, 85, .06);
  margin: 6px 14px;
}


.footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #090e20 100%);
  padding: 0;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-bright), var(--red), var(--red-dark));
  background-size: 200% 100%;
  animation: gradSlide 4s ease infinite;
}

.footer-main {
  padding: 48px 32px 28px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 36px;
}

.fb-logo {
  display: block;
  margin-bottom: 12px;
}

.footer-logo-full {
  width: 252px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, .3);
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 18px;
}

.footer-brand-socials {
  display: flex;
  gap: 10px;
}

.footer-brand-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .45);
  font-size: 15px;
  text-decoration: none;
  transition: all .3s var(--ease-spring);
  border: 1px solid rgba(255, 255, 255, .06);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.footer-social-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-brand-socials a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px) scale(1.1);
}

.footer-col h4 {
  font-family: "DM Mono", monospace;
  color: rgba(255, 255, 255, .55);
  font-size: 10.5px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: 13.5px;
  padding: 5px 0;
  transition: all .25s;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-col a .fc-icon {
  font-size: 14px;
  opacity: .5;
  transition: opacity .25s;
}

.footer-col a:hover .fc-icon {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255, 255, 255, .35);
  font-size: 13.5px;
}

.footer-contact-item .fci-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a {
  display: inline;
  padding: 0;
  color: rgba(255, 255, 255, .35);
}

.footer-contact-item a:hover {
  color: #fff;
  transform: none;
}

.footer-bottom {
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1224px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .2);
  font-size: 11.5px;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .2);
  font-size: 11.5px;
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .5);
}


@media (max-width: 1024px) {
  .nav-links,
  .lang-dropdown,
  .nav-enroll-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-inner {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .top-bar {
    padding: 10px 44px 10px 14px;
    gap: 4px;
    flex-direction: column;
    align-items: center;
  }

  .top-bar-icon {
    display: none;
  }

  .top-bar-copy {
    display: block;
    text-align: center;
  }

  .top-bar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .top-bar .close-bar {
    top: 12px;
    right: 12px;
    transform: none;
    font-size: 18px;
  }

  .nav-inner {
    height: 64px;
    min-height: 64px;
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-logo-full {
    height: 38px;
    max-width: min(58vw, 240px);
    object-fit: contain;
  }

  .nav-right {
    gap: 10px;
    margin-left: 0;
  }

  .nav-hamburger {
    padding: 8px 0 8px 8px;
  }

  .mobile-overlay {
    padding: 96px 24px calc(120px + env(safe-area-inset-bottom, 0px));
    justify-content: flex-start;
    overflow-y: auto;
  }

  .mobile-overlay .mob-link,
  .mobile-overlay .mob-enroll,
  .mobile-overlay .mob-lang {
    width: min(100%, 320px);
  }

  .mobile-overlay .mob-link {
    font-size: clamp(24px, 8vw, 30px);
    line-height: 1.1;
    text-align: center;
  }

  .mobile-overlay .mob-enroll {
    padding: 14px 24px;
    text-align: center;
  }

  .mobile-overlay .mob-lang-list {
    max-width: 100%;
  }

  .mobile-overlay .mob-lang {
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-overlay .mob-lang-opt {
    font-size: 12.5px;
    padding: 7px 10px;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
  }

  .wa-btn {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .wa-panel {
    width: min(280px, calc(100vw - 32px));
  }
}

/* Prototype typography locks for homepage sections that must match exactly. */
.home-origin-news .sec-eyebrow,
.home-origin-location .sec-eyebrow,
.home-origin-school .sec-eyebrow,
.home-origin-testimonials .sec-eyebrow,
.home-origin-partners .sec-eyebrow,
.home-origin-contact .sec-eyebrow {
  font-family: "DM Mono", monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
}

.home-origin-news .sec-h2,
.home-origin-location .sec-h2,
.home-origin-school .sec-h2,
.home-origin-testimonials .sec-h2,
.home-origin-partners .sec-h2,
.home-origin-contact .sec-h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(30px, 3.5vw, 46px) !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  color: var(--navy) !important;
  letter-spacing: 0 !important;
}

.home-origin-school .sec-p,
.home-origin-contact .sec-p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 15.5px !important;
  line-height: 1.7 !important;
  color: var(--stone) !important;
}

.home-origin-news .news-view-all {
  font-family: "DM Mono", monospace !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .5px !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
}

.home-origin-news .n-date {
  font-family: "DM Mono", monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .5px !important;
  color: var(--stone) !important;
}

.home-origin-news .n-body h3,
.home-origin-school .hx-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
}

.home-origin-news .n-body h3 {
  font-size: 17px !important;
  line-height: 1.3 !important;
}

.home-origin-school .hx-body h3 {
  font-size: 18px !important;
  line-height: normal !important;
}

.home-origin-news .n-body p,
.home-origin-school .hx-body > p,
.home-origin-contact .contact-info-card p,
.home-origin-location .location-card p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--stone) !important;
}

.home-origin-school .hx-cn {
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--stone) !important;
}

.home-origin-school .hx-tag,
.home-origin-news .n-tag,
.home-origin-partners .p-logo {
  font-family: "DM Sans", sans-serif !important;
}

.home-origin-partners .p-logo {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.home-origin-testimonials .test-card blockquote {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  font-style: italic !important;
  color: var(--charcoal) !important;
}

.home-origin-testimonials .test-author h5 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
}

.home-origin-testimonials .test-author span {
  font-family: "DM Sans", sans-serif !important;
  font-size: 11.5px !important;
  color: var(--stone) !important;
}

.home-origin-location .location-brand-copy p {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.home-origin-location .location-heading {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

.home-origin-location .location-brand-copy span,
.home-origin-location .location-actions a {
  font-family: "DM Sans", sans-serif !important;
}

.home-origin-location .location-card h4,
.home-origin-contact .contact-info-card h4 {
  font-family: "DM Sans", sans-serif !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
}

.home-origin-location .location-card h4,
.home-origin-contact .contact-info-card h4 {
  font-size: 13.5px !important;
}

.home-origin-contact .home-contact-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  color: #fff !important;
}

.home-origin-contact .home-contact-head p {
  font-family: "DM Sans", sans-serif !important;
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, .4) !important;
  margin: 0 !important;
}


@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .news-grid,
  .huaxiao-grid {
    grid-template-columns: 1fr 1fr;
  }

  .test-card {
    flex: 0 0 calc(50% - 9px);
  }

  .about-grid,
  .location-cards,
  .contact-info-cards,
  .home-contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-ctas,
  .hero-stats,
  .home-contact-actions,
  .location-actions {
    flex-direction: column;
    gap: 12px;
  }

  .news-grid,
  .huaxiao-grid,
  .about-grid,
  .location-cards,
  .contact-info-cards,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .test-card {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .hero-inner {
    padding: 56px 18px 64px;
  }

  .about-big {
    font-size: 36px;
  }

  .about-parts {
    flex-direction: column;
    gap: 16px;
  }

  .home-contact-card {
    padding: 28px 20px;
  }
}
