/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --plum-50: #FDF2F8;
  --plum-100: #FCE7F3;
  --plum-200: #FBCFE8;
  --plum-300: #F9A8D4;
  --plum-400: #F472B6;
  --plum-500: #EC4899;
  --plum-600: #DB2777;
  --plum-700: #BE185D;
  --plum-800: #9D174D;
  --plum-900: #6B2F5B;
  --plum-950: #3B1532;

  --amber-50: #FFFBF0;
  --amber-100: #FDF6EE;
  --amber-200: #F5C77E;
  --amber-300: #E8A84E;
  --amber-400: #D4882A;
  --amber-500: #B8721A;
  --amber-600: #9A5B12;
  --amber-700: #7D480E;
  --amber-800: #5F370A;
  --amber-900: #422607;

  --cream: #FDF6EE;
  --cream-light: #FFFCF7;
  --warm-gray: #5C4A3A;
  --warm-gray-light: #8B7355;
  --warm-gray-lighter: #C49A6C;
  --white: #FFFFFF;
  --off-white: #FAFAF8;

  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  --shadow-sm: 0 1px 3px rgba(107, 47, 91, 0.08);
  --shadow-md: 0 4px 16px rgba(107, 47, 91, 0.1);
  --shadow-lg: 0 8px 32px rgba(107, 47, 91, 0.12);
  --shadow-xl: 0 16px 48px rgba(107, 47, 91, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--warm-gray);
  background: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 47, 91, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--plum-900);
}

.nav-logo-text {
  background: linear-gradient(135deg, var(--plum-900), var(--plum-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--warm-gray);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--plum-900);
  background: var(--plum-50);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--plum-900);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--plum-900), var(--plum-700));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107, 47, 91, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 47, 91, 0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--plum-900);
  border: 2px solid var(--plum-900);
}

.btn-outline:hover {
  background: var(--plum-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--plum-900);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-500);
  background: linear-gradient(135deg, rgba(245, 199, 126, 0.2), rgba(245, 199, 126, 0.1));
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--plum-950);
  margin-bottom: 16px;
}

.text-accent {
  color: var(--amber-500);
  position: relative;
}

.text-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, rgba(245, 199, 126, 0.3), rgba(245, 199, 126, 0.1));
  border-radius: 3px;
  z-index: -1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--warm-gray-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

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

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 199, 126, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 47, 91, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum-700);
  background: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--plum-950);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--warm-gray-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--plum-900);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--warm-gray-light);
  font-weight: 500;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--plum-200);
}

.hero-visual {
  position: relative;
  padding-bottom: 40px;
}

.hero-image-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 47, 91, 0.15) 0%, transparent 40%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.hero-card--accent {
  bottom: 120px;
  left: -40px;
  background: linear-gradient(135deg, var(--plum-900), var(--plum-800));
  color: var(--white);
}

.hero-card--white {
  bottom: 20px;
  right: -20px;
  background: var(--white);
  color: var(--warm-gray);
}

.hero-card-icon {
  margin-bottom: 10px;
}

.hero-card-icon--plum svg {
  stroke: var(--plum-900);
}

.hero-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-card-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--plum-900);
  margin-bottom: 4px;
}

.hero-card-desc {
  font-size: 0.82rem;
  color: var(--warm-gray-light);
  line-height: 1.5;
}

.hero-card-author {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===== PROGRAMS ===== */
.programs {
  padding: 100px 0;
  background: var(--cream);
}

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

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(107, 47, 91, 0.06);
}

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

.program-card--featured {
  border: 2px solid var(--amber-200);
  position: relative;
}

.program-card--featured:hover {
  border-color: var(--amber-300);
}

.program-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-image img {
  transform: scale(1.05);
}

.program-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--plum-900);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.program-card-badge--amber {
  background: var(--amber-500);
  color: var(--white);
}

.program-card-featured-label {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum-900);
  background: var(--amber-200);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.program-card-body {
  padding: 28px;
}

.program-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-50);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.program-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--plum-950);
  margin-bottom: 10px;
}

.program-card-desc {
  font-size: 0.92rem;
  color: var(--warm-gray-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.program-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--warm-gray);
  font-weight: 500;
}

.program-card-features li svg {
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream-light);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 560px;
}

.about-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 60%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-light);
}

.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 47, 91, 0.08), transparent);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.about-floating-card {
  position: absolute;
  bottom: 60px;
  left: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.about-floating-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--plum-900);
  line-height: 1;
}

.about-floating-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.3;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--warm-gray-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-50);
  border-radius: var(--radius-md);
}

.about-value-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--plum-950);
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 0.9rem;
  color: var(--warm-gray-light);
  line-height: 1.6;
}

/* ===== APPROACH ===== */
.approach {
  padding: 100px 0;
  background: var(--white);
}

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

.approach-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--plum-100);
  background: var(--white);
}

.approach-item-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--plum-100);
  line-height: 1;
  pointer-events: none;
}

.approach-item:hover .approach-item-number {
  color: var(--plum-50);
}

.approach-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.approach-item:hover .approach-item-icon {
  background: var(--plum-50);
}

.approach-item-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--plum-950);
  margin-bottom: 10px;
}

.approach-item-desc {
  font-size: 0.9rem;
  color: var(--warm-gray-light);
  line-height: 1.7;
}

/* ===== SCHEDULE ===== */
.schedule {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-950), var(--plum-900));
  position: relative;
  overflow: hidden;
}

.schedule::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 199, 126, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.schedule .section-tag {
  background: rgba(245, 199, 126, 0.2);
  color: var(--amber-200);
}

.schedule .section-title {
  color: var(--white);
}

.schedule-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.schedule-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 199, 126, 0.3);
}

.schedule-item-time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-200);
  min-width: 130px;
}

.schedule-item-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.schedule-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.schedule-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 21, 50, 0.6) 0%, transparent 50%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.schedule-quote {
  color: var(--white);
}

.schedule-quote svg {
  margin-bottom: 12px;
}

.schedule-quote p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.schedule-quote span {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--amber-200);
  font-weight: 600;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--cream);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.why-us-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.why-us-item-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--plum-950);
  margin-bottom: 4px;
}

.why-us-item-desc {
  font-size: 0.9rem;
  color: var(--warm-gray-light);
  line-height: 1.6;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.why-us-image-border {
  position: absolute;
  inset: 16px 0 0 16px;
  border: 3px solid var(--amber-200);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: -1;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--cream-light);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107, 47, 91, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card-text {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card-avatar {
  flex-shrink: 0;
}

.testimonial-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--plum-950);
  display: block;
}

.testimonial-card-role {
  font-size: 0.82rem;
  color: var(--warm-gray-light);
}

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: var(--white);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-text {
  font-size: 1.05rem;
  color: var(--warm-gray-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-50);
  border-radius: var(--radius-md);
}

.visit-detail-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--plum-950);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 0.92rem;
  color: var(--warm-gray-light);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--plum-700);
  font-weight: 600;
  transition: var(--transition);
}

.visit-detail a:hover {
  color: var(--plum-900);
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visit-map iframe {
  width: 100%;
  height: 480px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-950), var(--plum-900));
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 199, 126, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact .section-tag {
  background: rgba(245, 199, 126, 0.2);
  color: var(--amber-200);
}

.contact .section-title {
  color: var(--white);
}

.contact-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber-300);
  background: rgba(255, 255, 255, 0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--plum-900);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-success {
  text-align: center;
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.contact-success-icon {
  margin-bottom: 16px;
}

.contact-success-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-success p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-success a {
  color: var(--amber-200);
  font-weight: 700;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-sidebar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.contact-sidebar-card--accent {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  border: none;
}

.contact-sidebar-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-sidebar-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.contact-sidebar-link:hover {
  color: var(--white);
}

.contact-sidebar-link--address {
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-sidebar-card-icon {
  margin-bottom: 16px;
}

.contact-sidebar-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-sidebar-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--plum-950);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a,
.footer-contact li a,
.footer-contact li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover,
.footer-contact li a:hover {
  color: var(--amber-200);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--amber-200);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-900);
  color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--plum-700);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 500px;
  }

  .hero-card--accent {
    left: 0;
  }

  .hero-card--white {
    right: 0;
  }

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

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

  .about-inner,
  .schedule-inner,
  .why-us-inner,
  .visit-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-stack {
    height: 400px;
    max-width: 480px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

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

  .hero-stat-divider {
    display: none;
  }

  .hero-card {
    display: none;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
