/* ═══════════════════════════════════════
   StarSeed Kids — StarSeed Children's Center
   Warm Organic Aesthetic
   ═══════════════════════════════════════ */

:root {
  /* Colors */
  --cream: #FFF9F2;
  --cream-deep: #FDF1E4;
  --coral: #FF7B5A;
  --coral-dark: #E85A3A;
  --coral-light: #FFD9CE;
  --teal: #2A9D8F;
  --teal-light: #D0EBE7;
  --gold: #E9A23B;
  --gold-light: #FBE8C8;
  --green: #5B9A3C;
  --green-light: #DCEFCF;
  --ink: #2D2418;
  --ink-soft: #6B5D4F;
  --ink-light: #9C8E80;
  --white: #FFFFFF;
  --sky: #A8D8F0;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  /* Spacing */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 36, 24, 0.06);
  --shadow-md: 0 8px 30px rgba(45, 36, 24, 0.08);
  --shadow-lg: 0 20px 60px rgba(45, 36, 24, 0.12);
  --shadow-coral: 0 12px 36px rgba(255, 123, 90, 0.3);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn i { font-size: 1.1em; }

.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 123, 90, 0.4);
}

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

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

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

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 249, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 36, 24, 0.06);
  transition: all 0.3s ease;
}

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

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}

.nav__logo-icon { display: flex; align-items: center; }
.nav__logo-icon svg { width: 36px; height: 36px; }

.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--coral);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav__links a:hover { color: var(--coral); }

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

.nav__cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 4px;
  transition: all 0.3s;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.hero__blob--1 {
  width: 400px; height: 400px;
  background: var(--coral-light);
  top: -100px; right: -80px;
}

.hero__blob--2 {
  width: 300px; height: 300px;
  background: var(--teal-light);
  bottom: -50px; left: -60px;
  animation-delay: 2s;
}

.hero__blob--3 {
  width: 250px; height: 250px;
  background: var(--gold-light);
  top: 40%; left: 45%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__highlight {
  color: var(--coral);
  font-style: italic;
  position: relative;
}

.hero__highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 8px;
  background: var(--coral-light);
  z-index: -1;
  border-radius: 4px;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
}

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

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__stat { display: flex; flex-direction: column; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.hero__stat-plus { color: var(--coral); }

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: 4px;
}

.hero__visual {
  position: relative;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__img-decor {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  animation: floatCard 3s ease-in-out infinite;
}

.hero__float-card i { font-size: 1.2rem; }

.hero__float-card--1 {
  top: 20px; left: -20px;
  color: var(--coral);
}

.hero__float-card--2 {
  bottom: 40px; right: -16px;
  color: var(--teal);
  animation-delay: 1.5s;
}

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

/* ═══ SECTION HEADER ═══ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--coral-light);
  color: var(--coral-dark);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ═══ COURSES ═══ */
.courses {
  padding: 100px 0;
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.course-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.course-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.course-card:hover .course-card__img {
  transform: scale(1.08);
}

.course-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.course-card__tag--coral { background: var(--coral); }
.course-card__tag--teal { background: var(--teal); }
.course-card__tag--gold { background: var(--gold); }
.course-card__tag--green { background: var(--green); }

.course-card__body { padding: 24px; }

.course-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.course-card__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.6;
}

.course-card__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-card__meta li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 600;
}

.course-card__meta i { color: var(--coral); font-size: 1rem; }

/* ═══ TEACHERS ═══ */
.teachers {
  padding: 100px 0;
  background: var(--cream-deep);
}

.teachers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}

.teacher-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}

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

.teacher-card__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.teacher-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.teacher-card:hover .teacher-card__img {
  transform: scale(1.05);
}

.teacher-card__body { padding: 24px; }

.teacher-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.teacher-card__role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 12px;
}

.teacher-card__bio {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.teacher-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.teacher-card__tags span {
  padding: 4px 12px;
  background: var(--cream-deep);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ═══ REVIEWS ═══ */
.reviews {
  padding: 100px 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

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

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-card__stars i {
  color: var(--gold);
  font-size: 1.1rem;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.review-card__info {
  font-size: 0.78rem;
  color: var(--ink-light);
}

/* ═══ CALENDAR ═══ */
.calendar-section {
  padding: 100px 0;
  background: var(--cream-deep);
}

.calendar__timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.calendar-item {
  display: flex;
  align-items: stretch;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.calendar-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.calendar-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 12px 16px;
  background: var(--coral-light);
  border-radius: var(--radius-md);
}

.calendar-item__month {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral-dark);
}

.calendar-item__day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--coral-dark);
  line-height: 1;
}

.calendar-item__line {
  width: 2px;
  background: linear-gradient(to bottom, var(--coral-light), transparent);
  flex-shrink: 0;
}

.calendar-item__content {
  flex: 1;
}

.calendar-item__type {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.calendar-item__type--workshop { background: var(--coral-light); color: var(--coral-dark); }
.calendar-item__type--open { background: var(--teal-light); color: var(--teal); }
.calendar-item__type--family { background: var(--gold-light); color: var(--gold); }

.calendar-item__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.calendar-item__desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.6;
}

.calendar-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.calendar-item__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 600;
}

.calendar-item__meta i { color: var(--coral); font-size: 1rem; }

/* ═══ ENROLL ═══ */
.enroll {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #3D3326 100%);
  position: relative;
  overflow: hidden;
}

.enroll::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
}

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

.enroll__info { color: var(--white); }

.enroll__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.enroll__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 420px;
}

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

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

.enroll__highlight i {
  font-size: 1.5rem;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.enroll__highlight h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.enroll__highlight p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* FORM */
.enroll__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}

.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E8E0D5;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-light); }

.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 2px solid #E8E0D5;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-checkbox:hover { border-color: var(--coral); }

.form-checkbox input { display: none; }

.form-checkbox__mark {
  width: 20px; height: 20px;
  border: 2px solid #D0C8BD;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.form-checkbox input:checked + .form-checkbox__mark {
  background: var(--coral);
  border-color: var(--coral);
}

.form-checkbox input:checked + .form-checkbox__mark::after {
  content: '';
  position: absolute;
  top: 3px; left: 6px;
  width: 5px; height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox input:checked ~ span:last-child { color: var(--coral); }

.form-checkbox i { font-size: 1.1rem; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .nav__logo { color: var(--white); margin-bottom: 16px; }

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--coral); }

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact i { color: var(--coral); font-size: 1.1rem; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══ TOAST ═══ */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 40px rgba(91, 154, 60, 0.4);
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast i { font-size: 1.3rem; }

/* ═══ ANIMATIONS ═══ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .enroll__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-md);
  }

  .nav__links.open { transform: translateY(0); }

  .nav__burger { display: flex; }

  .nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

  .hero { padding: 120px 20px 60px; }
  .hero__stats { gap: 24px; }
  .hero__stat-num { font-size: 1.6rem; }

  .courses, .teachers, .reviews, .calendar-section, .enroll {
    padding: 60px 0;
  }

  .enroll__form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

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

  .calendar-item {
    flex-direction: column;
    gap: 16px;
  }

  .calendar-item__line { display: none; }
}

@media (max-width: 480px) {
  .hero__float-card { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
