/* ---------- ROOT ---------- */
:root {
  --primary: #631919;
  --secondary: #641c1b;
  --light: #f1d1d1;
  --background: #fffafa;
  --soft-blush: #fff5f7;
  --bg-soft: #fffafa;
  --white: #ffffff;
  --text-dark: #2d2d2d;
  --text-soft: #666666;

  --shadow: 0 10px 30px rgba(146, 26, 64, 0.08);
  --shadow-strong: 0 18px 45px rgba(0, 0, 0, 0.08);

  --h1-size: clamp(2.5rem, 6vw, 4.5rem);
  --h2-size: clamp(2rem, 4vw, 3rem);
  --h3-size: clamp(1.15rem, 2vw, 1.6rem);
  --body-size: clamp(0.95rem, 1vw, 1.05rem);

  --nav-height: 84px;
  --radius: 16px;
}

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--body-size);
  color: var(--text-dark);
  background: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
}

p,
li {
  color: #4a4a4a;
}

h1,
h2,
h3,
.section-title,
.section-title-alt,
.lux-number,
.lux-tagline {
  color: var(--primary);
}

section {
  padding: 100px 5%;
  background: transparent;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#about,
#locations,
#team,
#why,
#price,
#faq,
#contact {
  scroll-margin-top: 110px;
}

/* ---------- NAVBAR ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 250, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(99, 25, 25, 0.08);
  box-shadow:
    0 10px 40px rgba(99, 25, 25, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.03);
  z-index: 3000;
  transition: transform 0.4s ease, opacity 0.4s ease, background 0.3s ease;
}

nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 22px;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 8px 24px rgba(99, 25, 25, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.logo-container:hover .nav-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 18px rgba(99, 25, 25, 0.18));
  box-shadow: 0 14px 30px rgba(99, 25, 25, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 25, 25, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.nav-links a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  background: rgba(99, 25, 25, 0.08);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(99, 25, 25, 0.22);
}

/* ---------- DROPDOWN ---------- */
.nav-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  padding: 18px 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 9999;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 16px;
  border-radius: 14px;
  white-space: nowrap;
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(99, 25, 25, 0.06);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 3200;
}

.hamburger {
  width: 26px;
  height: 3px;
  background: var(--primary);
  position: relative;
  display: block;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

.mobile-nav-toggle.active .hamburger {
  background: transparent;
}

.mobile-nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
}

.mobile-nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2500;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- HERO ---------- */
.hero,
.program-hero,
.fourm-hero,
.page-hero {
  min-height: 100svh;
  padding: calc(var(--nav-height) + 80px) 7% 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero,
.program-hero {
  background: var(--background);
}

.fourm-hero {
  background:
    linear-gradient(rgba(40, 8, 18, 0.78), rgba(40, 8, 18, 0.88)),
    url("./images/program/fourm-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-content,
.program-hero .container,
.fourm-hero .container {
  max-width: 950px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: var(--h1-size);
  line-height: 1.08;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #8b5e5e;
  margin-bottom: 34px;
}

.hero-btn .btn-pill {
  animation: professionalPulse 3s infinite;
}

@keyframes professionalPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(146, 26, 64, 0.35);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(146, 26, 64, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(146, 26, 64, 0);
  }
}

/* ---------- TYPOGRAPHY ---------- */
.section-title,
.section-title-alt {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: var(--h2-size);
  margin-bottom: 18px;
  line-height: 1.2;
}

.content-heading {
  font-family: "Playfair Display", serif;
  font-size: var(--h3-size);
  margin-bottom: 14px;
}

.section-sub {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: #777;
}

/* ---------- BUTTONS ---------- */
.btn-pill,
.primary-btn,
.gallery-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-pill:hover,
.primary-btn:hover,
.gallery-btn:hover,
.whatsapp-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-top: 28px;
}

.about-text {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.about-text h3 {
  margin-bottom: 18px;
}

.about-text p {
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.studio-frame {
  border: 1px solid rgba(99, 25, 25, 0.14);
  background: var(--white);
  padding: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(99, 25, 25, 0.08);
}

.studio-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.5s ease;
}

.studio-frame:hover img {
  transform: scale(1.03);
}

/* ---------- ABOUT RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-text {
    order: 1;
  }

  .studio-frame {
    order: 2;
  }
}

@media (max-width: 600px) {
  .about-grid {
    margin-top: 24px;
  }

  .studio-frame {
    padding: 10px;
  }

  .studio-frame img {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- STUDIO LOCATIONS ---------- */
#locations .container {
  max-width: 1400px;
}

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

.location-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
}

.logo-box {
  height: 180px;
  background: #fafafa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 20px;
}

.location-info {
  padding: 26px 20px 30px;
}

.location-info h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.location-info p {
  color: #666;
  margin-bottom: 16px;
}

/* ---------- GALLERY MODAL ---------- */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
}

.gallery-modal.active {
  display: flex;
}

.gallery-box {
  position: relative;
  background: var(--white);
  max-width: 1150px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 34px;
}

.gallery-box h3 {
  text-align: center;
  margin-bottom: 28px;
}

.gallery-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-images img {
  width: 280px;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.close-gallery {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(92, 16, 28, 0.95);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- COLLABORATIONS ---------- */
.collaborations-section {
  padding: 120px 20px 90px;
  text-align: center;
}

.collaborations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.collaborations-description {
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-soft);
}

.trusted-text {
  margin-top: 22px;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 34px 0 18px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: collaborationScroll 28s linear infinite;
}

.logo-card {
  width: 220px;
  height: 120px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(99, 25, 25, 0.08);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.logo-card:hover img {
  transform: scale(1.08);
}

@keyframes collaborationScroll {
  from {
    transform: translateX(0);
  }

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

.program-highlight {
  padding: 70px 5% 110px;
  background: #fffafa;
}

.program-card {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  padding: 65px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(135deg, #631919, #7b1f1f);
  box-shadow: 0 28px 70px rgba(99, 25, 25, 0.25);
  overflow: hidden;
}

.program-label {
  display: inline-block;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #fff;
  color: #631919;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.program-content h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.08;
  color: #fff;
}

.program-content p {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.program-features {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin-bottom: 36px;
}

.program-features div {
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.18);
}

.program-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 999px;
  background: #fff;
  color: #631919;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.program-btn span {
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.program-btn:hover {
  transform: translateY(-5px) scale(1.03);
}

.program-btn:hover span {
  transform: translateX(6px);
}

.program-visual {
  position: relative;
  min-height: 360px;
}

.circle {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: inset 0 0 30px rgba(255,255,255,0.08);
  animation: floatProgram 4s ease-in-out infinite;
}

.circle.big {
  width: 230px;
  height: 230px;
  right: 40px;
  top: 40px;
  font-size: 2rem;
}

.circle.mid {
  width: 155px;
  height: 155px;
  right: 210px;
  bottom: 35px;
}

.circle.small {
  width: 110px;
  height: 110px;
  right: 20px;
  bottom: 60px;
  background: #fff;
  color: #631919;
}

@keyframes floatProgram {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 900px) {
  .program-card {
    grid-template-columns: 1fr;
    padding: 45px 26px;
  }

  .program-visual {
    min-height: 240px;
  }

  .program-features {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOUR-M PROGRAM PAGE
========================= */

.fourm-hero .container {
  max-width: 950px;
  margin: 0 auto;
}

.fourm-label,
.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #d99aa9;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fourm-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.fourm-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.fourm-hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fourm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.fourm-btn.primary {
  background: #b8325c;
  color: #fff;
  box-shadow: 0 14px 35px rgba(184, 50, 92, 0.3);
}

.fourm-btn.secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}

.fourm-btn:hover {
  transform: translateY(-4px);
}

.fourm-section {
  padding: 100px 7%;
  background: var(--bg-soft);
}

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

.fourm-section .container,
.fourm-cta .container {
  max-width: 1200px;
  margin: 0 auto;
}

.fourm-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.fourm-text,
.fourm-content-box p,
.fourm-cta p {
  color: #5f4a50;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.fourm-card,
.fourm-content-box,
.fourm-step-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(146, 26, 64, 0.12);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(99, 25, 25, 0.08);
}

.highlight-card {
  background: #2b0f19;
  color: #fff;
}

.fourm-card h3,
.fourm-step-card h3 {
  margin-bottom: 18px;
  color: #2b0f19;
  font-size: 1.35rem;
}

.highlight-card h3 {
  color: #fff;
}

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

.fourm-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #5f4a50;
  line-height: 1.5;
}

.highlight-card .fourm-list li {
  color: rgba(255,255,255,0.85);
}

.fourm-list i {
  color: #b8325c;
  width: 20px;
  flex-shrink: 0;
}

.fourm-class-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fourm-step-card {
  transition: 0.3s ease;
}

.fourm-step-card:hover {
  transform: translateY(-8px);
}

.fourm-step-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #b8325c;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.fourm-step-card p {
  color: #5f4a50;
  line-height: 1.7;
}

.fourm-cta {
  padding: 110px 7%;
  text-align: center;
  background:
    linear-gradient(rgba(43, 15, 25, 0.9), rgba(43, 15, 25, 0.94)),
    url("./images/program/preschool-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.fourm-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.fourm-cta p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.78);
}

.fourm-cta .fourm-btn {
  margin-top: 24px;
}

/* MOBILE */
@media (max-width: 900px) {
  .fourm-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .fourm-class-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .fourm-section,
  .fourm-cta {
    padding: 75px 7%;
  }

  .fourm-class-grid {
    grid-template-columns: 1fr;
  }

  .fourm-card,
  .fourm-content-box,
  .fourm-step-card {
    padding: 26px;
    border-radius: 22px;
  }

  .fourm-hero-actions {
    flex-direction: column;
  }

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

/* =========================
   PROGRAM PAGE
========================= */

.program-hero .container,
.program-about .container,
.fourm-framework .container,
.program-difference .container,
.class-journey .container,
.preschool-section .container,
.program-cta .container {
  max-width: 1200px;
  margin: 0 auto;
}

.program-label,
.program-small-title {
  display: inline-block;
  margin-bottom: 16px;
  color: #921a40;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.program-hero h1 {
  max-width: 950px;
  margin: 0 auto 24px;
  color: #6f171b;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.08;
}

.program-hero p {
  max-width: 780px;
  margin: 0 auto 36px;
  color: #4d4d4d;
  font-size: 1.08rem;
  line-height: 1.8;
}

.program-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  background: #631919;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(99, 25, 25, 0.25);
  transition: 0.3s ease;
}

.program-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(99, 25, 25, 0.35);
}

.program-about,
.program-difference,
.preschool-section {
  padding: 95px 7%;
  background: var(--bg-soft);
}

.fourm-framework,
.class-journey {
  padding: 95px 7%;
  background: var(--bg-soft);
}

.program-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.program-text-card,
.program-highlight-card,
.fourm-card,
.journey-card {
  border-radius: 30px;
  border: 1px solid rgba(146, 26, 64, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(99, 25, 25, 0.08);
}

.program-text-card {
  padding: 42px;
}

.program-text-card.full-width {
  max-width: 1000px;
  margin: 0 auto;
}

.program-text-card h2 {
  margin-bottom: 22px;
  color: #6f171b;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

.program-text-card p {
  margin-bottom: 16px;
  color: #4d4d4d;
  font-size: 1rem;
  line-height: 1.85;
}

.program-highlight-card {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #631919;
  color: #fff;
}

.program-highlight-card h3 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.program-section-title {
  max-width: 800px;
  margin-bottom: 42px;
  color: #6f171b;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.fourm-card-grid,
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fourm-card,
.journey-card {
  padding: 32px;
  transition: 0.3s ease;
}

.fourm-card:hover,
.journey-card:hover {
  transform: translateY(-8px);
}

.fourm-card span,
.journey-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #631919;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.fourm-card h3,
.journey-card h3 {
  color: #6f171b;
  font-size: 1.35rem;
  line-height: 1.3;
}

.journey-card p {
  margin-top: 14px;
  color: #4d4d4d;
  line-height: 1.7;
  font-size: 0.95rem;
}

.program-cta {
  padding: 100px 7%;
  text-align: center;
  background: #631919;
  color: #fff;
}

.program-cta h2 {
  max-width: 850px;
  margin: 0 auto 18px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.15;
}

.program-cta p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.program-cta .program-btn {
  color: #631919;
  background: white;
}

.program-btn,
.program-highlight-card,
.program-cta {
  transition: 0.35s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .fourm-card-grid,
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .program-about,
  .fourm-framework,
  .program-difference,
  .class-journey,
  .preschool-section,
  .program-cta {
    padding: 70px 7%;
  }

  .program-text-card,
  .program-highlight-card,
  .fourm-card,
  .journey-card {
    padding: 26px;
    border-radius: 22px;
  }

  .fourm-card-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

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

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  align-items: start;
  margin-top: 20px;
}

.member {
  text-align: center;
}

.member-image-wrap {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  border: 1px solid var(--light);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
}

.member-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.member:hover .member-image-wrap img {
  transform: scale(1.04);
}

.member h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.member p {
  font-size: 1rem;
  color: #7a7a7a;
}

/* ---------- TEAM PAGE EXTRA ---------- */
.team-intro,
.team-values,
.team-cta {
  padding: 90px 5%;
}

.intro-box,
.team-cta {
  text-align: center;
}

.intro-box p,
.team-cta p {
  max-width: 760px;
  margin: 18px auto 0;
}

.team-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

/* ---------- ACCORDION / BENEFITS ---------- */
.luxury-accordion {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.lux-item {
  border-bottom: 1px solid rgba(146, 26, 64, 0.16);
}

.lux-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.lux-number {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.lux-header h3 {
  flex: 1;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--text-dark);
}

.lux-header small {
  font-size: 0.78em;
}

.lux-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.lux-icon::before,
.lux-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: all 0.35s ease;
}

.lux-icon::before {
  width: 24px;
  height: 2px;
}

.lux-icon::after {
  width: 2px;
  height: 24px;
}

.lux-item.active .lux-header h3 {
  color: var(--primary);
}

.lux-item.active .lux-icon {
  transform: rotate(45deg);
}

.lux-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.lux-inner {
  padding: 0 0 28px 52px;
}

.lux-tagline {
  margin-bottom: 14px;
}

.lux-list {
  list-style: none;
  columns: 2;
  column-gap: 34px;
}

.lux-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  break-inside: avoid;
}

.lux-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ---------- PRICING ---------- */
#price {
  border-top: 1px solid var(--light);
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 64px;
  margin-top: 30px;
}

.package-stage {
  width: 100%;
}

.package-view {
  display: none;
}

.package-view.active {
  display: block;
  animation: slideFadeIn 0.45s ease;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.price-header-info {
  text-align: center;
}

.package-category-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.quick-pricing {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--primary);
}

.package-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.package-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--light);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.card-header {
  background: var(--light);
  padding: 22px 16px;
  text-align: center;
}

.card-header h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.card-header p {
  color: var(--primary);
  opacity: 0.8;
  font-size: 0.85rem;
}

.card-body {
  padding: 18px;
}

.price-item {
  background: var(--primary);
  color: var(--white);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-item:last-child {
  margin-bottom: 0;
}

.price-item .price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
}

.price-item .details {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 2px solid var(--light);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-arrow:hover {
  background: var(--primary);
  color: var(--white);
}

.left {
  left: 0;
}

.right {
  right: 0;
}

.footer-note {
  text-align: center;
  margin-top: 18px;
  color: var(--primary);
  font-size: 0.92rem;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
  margin-top: 28px;
}

.contact-note {
  margin-bottom: 24px;
  text-align: left;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
  background: var(--soft-blush);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft-blush);
  font-size: 1.15rem;
}

.contact-detail {
  flex: 1;
  min-width: 0;
}

.contact-detail span {
  display: block;
  font-size: 0.88rem;
  color: #666;
}

.contact-detail strong {
  display: block;
  word-break: break-word;
  color: var(--text-dark);
}

.copy-badge {
  flex-shrink: 0;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-card:hover .copy-badge {
  background: var(--primary);
  color: var(--white);
}

.whatsapp-scan-wrap {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.qr-title {
  font-size: 1.3rem;
}

.qr-code-box {
  width: 160px;
  height: 160px;
  margin: 16px auto;
  padding: 10px;
  border: 2px dashed var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 14px;
}

.whatsapp-btn {
  width: 100%;
  max-width: 220px;
}

/* ---------- FOOTER ---------- */
/* =========================
        PREMIUM FOOTER
========================= */

.premium-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background-color: #3f0d0d;
  padding:
    90px 2% 30px;
  position: relative;
  overflow: hidden;
}

/* TOP BORDER GLOW */
.premium-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.4),
      transparent
    );
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* BRAND */
.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
}

.footer-brand p {
  line-height: 1.8;
  font-size: 0.97rem;
  max-width: 340px;
  color: rgba(255,255,255,0.68);
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 1rem;
  transition: 0.35s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  transform: translateY(-5px);
  background: #d13b69;
  box-shadow:
    0 10px 25px rgba(209,59,105,0.35);
}

/* COLUMNS */
.footer-column h3 {
  color: white;
  margin-bottom: 22px;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: white;
  transform: translateX(4px);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top:
    1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* =========================
        RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

}

@media (max-width: 700px) {

  .premium-footer {
    padding:
      70px 6% 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  :root {
    --nav-height: 84px;
  }

  nav {
    height: var(--nav-height);
    padding: 0 22px;
  }

  .nav-logo {
    width: 64px;
    height: 64px;
    border-radius: 22px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(84vw, 340px);
    height: 100svh;
    padding: 110px 24px 32px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    border-radius: 0;
    background: var(--background);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 3100;
    transition: right 0.3s ease;
  }

  .nav-links.nav-active {
    right: 0;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .nav-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 18px;
    margin-top: 8px;
    background: rgba(99, 25, 25, 0.04);
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  
  .hero,
  .program-hero,
  .fourm-hero,
  .page-hero {
    min-height: 100svh;
    padding: calc(var(--nav-height) + 60px) 7% 75px;
  }

  .about-grid,
  .package-comparison-grid,
  .contact-grid,
  .team-values-grid {
    grid-template-columns: 1fr;
  }

  .lux-inner {
    padding-left: 18px;
  }

  .lux-list {
    columns: 1;
  }

  .slider-container {
    padding: 0 46px;
  }

  .nav-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.8rem;
  }

  .contact-card {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .collaborations-section {
    padding: 90px 16px 70px;
  }

  .logo-track {
    gap: 18px;
    animation-duration: 22s;
  }

  .logo-card {
    width: 180px;
    height: 105px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 84px 20px;
  }

  .hero,
  .program-hero,
  .fourm-hero,
  .page-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 50px) 7% 70px;
  }

  .location-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-box {
    padding: 28px 18px;
  }

  .gallery-images img {
    width: 100%;
    max-width: 320px;
    height: 220px;
  }

  .lux-header {
    gap: 12px;
    padding: 22px 0;
  }

  .lux-header h3 {
    font-size: 1.1rem;
  }

  .slider-container {
    padding: 0 40px;
  }

  .card-header {
    padding: 16px 12px;
  }

  .card-body {
    padding: 14px;
  }

  .price-item .price {
    font-size: 1.35rem;
  }

  .price-item .details {
    font-size: 0.82rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: stretch;
  }

  .copy-badge {
    align-self: flex-start;
  }

  .whatsapp-scan-wrap {
    padding: 22px 18px;
  }
}