/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #15161d;
  --charcoal: #1f2029;
  --pink: #ff4f93;
  --pink-dark: #d1327a;
  --blue: #2f9bf0;
  --blue-dark: #1c6fb0;
  --cream: #f5f7fb;
  --gray: #6b6c78;
  --gray-light: #edeff5;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(21, 22, 29, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 79, 147, 0.35);
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-block { display: flex; width: 100%; margin-top: 24px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 22, 29, 0.92);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo-mark {
  height: 36px;
  width: auto;
  margin-right: 8px;
  object-fit: contain;
}
.logo span {
  color: var(--blue);
  font-size: 24px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 900;
  margin-left: 6px;
}
.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  color: #e8e9f0;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav a:hover { color: var(--blue); }
.nav a.active { color: var(--blue); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,79,147,0.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(47,155,240,0.28), transparent 55%),
    linear-gradient(160deg, #1b1c26 0%, #15161d 60%, #0e0f14 100%);
  z-index: -1;
}
.hero-content { padding: 100px 24px; text-align: left; }
.hero-eyebrow {
  color: var(--blue);
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: 0;
}
.hero-desc {
  font-size: 18px;
  color: #d7d9e2;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Hero (typography variant) ===== */
.hero-typo {
  position: relative;
  min-height: auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(245,247,251,0.85) 100%),
    url("../images/hero-bg.jpg") center 30% / cover no-repeat;
  color: var(--black);
}
.hero-typo .hero-content { padding: 72px 24px 150px; text-align: center; }
.hero-eyebrow-center {
  text-align: center;
  color: var(--blue);
}
.hero-giant {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 10vw, 120px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--black);
  margin-bottom: 28px;
}
.hero-giant span {
  color: var(--blue);
  font-family: 'Nanum Brush Script', cursive;
  font-weight: 400;
  font-size: 1.5em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-3deg);
}
.hero-desc-dark {
  color: var(--gray);
  margin-left: auto;
  margin-right: auto;
}
.mobile-break { display: none; }
.hero-actions-center { justify-content: center; }
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover { background: rgba(21, 22, 29, 0.06); }
.hero-ribbon {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 46px;
  height: 60px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
  transform: rotate(-3deg);
  box-shadow: 0 12px 26px rgba(47, 155, 240, 0.35);
}
@media (max-width: 720px) {
  .hero-typo .hero-content { padding: 56px 24px 110px; }
  .hero-ribbon { height: 42px; bottom: 34px; }
  .mobile-break { display: inline; }
}

/* ===== Page Hero (sub pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #1b1c26 0%, #15161d 60%, #0e0f14 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero .hero-eyebrow { justify-content: center; }
.page-hero h1 {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  margin: 10px 0 14px;
  letter-spacing: 0;
}
.page-hero-desc { color: #d7d9e2; font-size: 16px; }

/* ===== Section generic ===== */
.section { padding: 110px 0; }
.section-alt { background: #fff; }
.section-eyebrow {
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 18px;
  letter-spacing: 0;
}
.section-lead {
  color: var(--gray);
  font-size: 16px;
  max-width: 640px;
  margin-bottom: 50px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.about-card:hover { transform: translateY(-6px); }
.about-icon { font-size: 34px; margin-bottom: 16px; }
.about-card h3 { font-size: 18px; margin-bottom: 10px; }
.about-card p { color: var(--gray); font-size: 14.5px; }

/* ===== Programs ===== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,79,147,0.5), transparent 70%);
}
.program-tag {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.program-card h3 { font-size: 20px; margin-bottom: 10px; }
.program-card p { color: #c7c9d6; font-size: 14px; }

/* ===== Schedule ===== */
.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.schedule-table th, .schedule-table td {
  padding: 18px 16px;
  text-align: center;
  font-size: 14.5px;
}
.schedule-table thead th {
  background: var(--black);
  color: #fff;
  font-weight: 700;
}
.schedule-table tbody tr:nth-child(even) { background: var(--gray-light); }
.schedule-table td:first-child { font-weight: 700; color: var(--pink); }

.schedule-table-parts td:first-child { width: 90px; font-size: 16px; }
.schedule-table-parts td:nth-child(2) { font-size: 20px; font-weight: 900; letter-spacing: 0.5px; }
.schedule-table-parts td:nth-child(3) { color: var(--gray); font-weight: 500; width: 220px; }
.schedule-table-parts tbody tr:nth-child(1) { background: #e5f4e3; }
.schedule-table-parts tbody tr:nth-child(2) { background: #fbe6ec; }
.schedule-table-parts tbody tr:nth-child(3) { background: #eee0f7; }
.schedule-table-parts tbody tr:nth-child(4) { background: #fdecd2; }
.schedule-table-parts tbody tr:nth-child(5) { background: #dcebfa; }

.schedule-note {
  text-align: center;
  margin-top: 24px;
  font-weight: 700;
  color: var(--pink);
  font-size: 14.5px;
}
.schedule-motto {
  text-align: center;
  margin-top: 12px;
  color: #b7b8c2;
  font-size: 14.5px;
  line-height: 1.8;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
}
.pricing-card h3 { font-size: 18px; color: var(--gray); margin-bottom: 12px; }
.price { font-size: 32px; font-weight: 900; margin-bottom: 14px; }
.price small { font-size: 15px; font-weight: 500; color: var(--gray); }
.price-desc { color: var(--gray); font-size: 14.5px; }
.pricing-highlight { border-color: var(--pink); }
.pricing-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
}
.pricing-note { margin-top: 24px; color: var(--gray); font-size: 14px; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-photo:hover img { transform: scale(1.06); }
.gallery-more {
  text-align: center;
  margin-top: 44px;
}

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.map-wrap-lg { min-height: 480px; }
.map-wrap-lg iframe { min-height: 480px; }
.location-info {
  background: transparent;
  color: var(--black);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}
.location-info h3 { font-size: 22px; margin-bottom: 24px; color: var(--black); }
.location-info ul { display: flex; flex-direction: column; gap: 20px; margin-bottom: 8px; }
.info-label {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.info-value { font-size: 15.5px; color: var(--black); }
.info-value a { color: var(--black); font-weight: 700; }

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.cta h2 { font-family: 'Noto Sans KR', sans-serif; font-weight: 900; font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.cta p { margin-bottom: 32px; color: #ffd9ec; font-size: 16px; }
.cta .btn-primary { background: #fff; color: var(--pink); box-shadow: none; }
.cta .btn-primary:hover { background: #f2f2f2; }

/* ===== Showcase (Class Story carousel) ===== */
.showcase-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0 24px;
}
.showcase-track {
  display: flex;
  transition: transform 0.6s ease;
}
.showcase-item {
  flex: 0 0 33.3333%;
  padding: 0 12px;
}
.showcase-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 720px) {
  .showcase-item { flex: 0 0 100%; }
  .showcase-item img { height: 240px; }
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: #b9b7b3;
  padding: 48px 0 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--blue); font-size: 20px; font-family: 'Noto Sans KR', sans-serif; font-weight: 900; margin-left: 6px; }
.footer p { font-size: 14px; margin-bottom: 4px; }
.footer-copy { margin-top: 16px; font-size: 12.5px; color: #7a7873; }

/* ===== Inquiry Form ===== */
.inquiry-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-top: 1px solid var(--gray-light);
}
.form-row:first-child { border-top: none; }
.form-label {
  background: var(--gray-light);
  padding: 20px 20px;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
}
.form-label .required { color: var(--pink); margin-left: 3px; }
.form-field { padding: 16px 20px; display: flex; align-items: center; }
.form-field input[type="text"],
.form-field input[type="number"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--black);
  background: var(--cream);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.radio-group { display: flex; gap: 20px; }
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  cursor: pointer;
}
.form-consent {
  padding: 18px 20px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}
.form-consent input { margin-top: 3px; }
.form-submit-wrap { padding: 24px 20px 28px; text-align: center; }
.form-submit-wrap .btn { width: 100%; }
.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  margin-top: 16px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .form-label { padding: 14px 20px 4px; background: #fff; }
  .form-field { padding: 4px 20px 16px; }
}

/* ===== Review ===== */
.review-list { display: flex; flex-direction: column; gap: 20px; }
.review-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  border-left: 5px solid var(--blue);
}
.review-head {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.review-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--gray-light); }
.review-stars { color: #ffb400; font-size: 13px; letter-spacing: 1px; }
.review-headline { font-size: 17px; font-weight: 700; color: var(--black); line-height: 1.4; }
.review-body { flex: 1 1 auto; min-width: 0; }
.review-text { color: var(--black); font-size: 14.5px; line-height: 1.8; text-align: left; }
.review-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
}
@media (max-width: 720px) {
  .review-card { flex-direction: column; gap: 16px; }
  .review-head { flex-direction: row; align-items: center; }
}
.review-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.review-pagination button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: #fff;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.review-pagination button:hover { border-color: var(--blue); color: var(--blue); }
.review-pagination button.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ===== Notice ===== */
.notice-list {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.notice-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid var(--gray-light);
  color: inherit;
  transition: background 0.15s ease;
}
.notice-item:first-child { border-top: none; }
.notice-item:hover { background: var(--gray-light); }
.notice-num { flex: 0 0 24px; color: var(--gray); font-weight: 700; font-size: 14px; }
.notice-summary-badge {
  flex: 0 0 auto;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.notice-summary-title {
  flex: 1 1 auto;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--black);
}
.notice-summary-date { flex: 0 0 auto; color: var(--gray); font-size: 13.5px; }
.notice-summary-arrow { flex: 0 0 auto; color: var(--gray); font-size: 20px; }

.notice-row {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--gray-light);
  font-size: 15px;
}
.notice-row:first-of-type { border-top: none; }
.notice-row .notice-key {
  flex: 0 0 70px;
  font-weight: 700;
  color: var(--blue);
}
.notice-row .notice-val { color: var(--black); line-height: 1.7; }

/* ===== Notice Detail (individual page) ===== */
.notice-detail { max-width: 760px; margin: 0 auto; }
.notice-detail-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.notice-detail-image img { width: 100%; display: block; }
.notice-detail-rows {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 28px;
}
.notice-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
  font-size: 14px;
}
.notice-detail-nav a { color: var(--blue); font-weight: 700; }
.notice-detail-nav .notice-detail-list {
  color: #fff;
  background: var(--black);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .notice-item { flex-wrap: wrap; padding: 18px 20px; }
  .notice-summary-date { order: 4; flex-basis: 100%; margin-left: 40px; }
  .notice-detail-rows { padding: 4px 20px; }
  .notice-detail-nav { flex-wrap: wrap; justify-content: center; text-align: center; }
}

/* ===== Floating Contact Button ===== */
.floating-contact {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(160deg, #ff7fb8 0%, var(--pink) 55%, var(--pink-dark) 100%);
  border: 3px solid var(--blue);
  color: #fff;
  box-shadow: none;
  transition: transform 0.15s ease;
}
.floating-contact-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(47, 155, 240, 0.7);
  animation: floatPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.floating-contact-icon {
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,0.25));
}
.floating-contact-text {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: -0.3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.floating-contact:hover {
  transform: translateY(-3px);
}
.floating-contact:active {
  transform: translateY(1px);
}
@keyframes floatPulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 155, 240, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(47, 155, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 155, 240, 0); }
}

@media (max-width: 720px) {
  .floating-contact {
    right: 18px;
    bottom: 18px;
    width: 76px;
    height: 76px;
  }
  .floating-contact-icon { font-size: 22px; }
  .floating-contact-text { font-size: 11px; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .about-grid, .program-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 280px; }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 12px 24px 24px;
    gap: 4px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .menu-toggle { display: flex; }
  .about-grid, .program-grid, .gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero-content { padding: 70px 24px; }
  .hero-actions .btn { width: 100%; }
}
