/* ═══════════════════════════════════════════════════
   백호축구클럽 공용 스타일
   브랜드: 노랑(#FFB300) × 차콜 — 구장 컬러 그대로
   ═══════════════════════════════════════════════════ */

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

:root {
  --yellow: #FFB300;
  --yellow-deep: #F59F00;
  --yellow-dark: #B87400;
  --yellow-light: #FFF8E1;
  --dark: #221C10;
  --dark-mid: #35301F;
  --white: #ffffff;
  --gray: #FAF7F0;
  --text: #2A2620;
  --text-light: #6E675B;
  --line: #EFE8D8;
}

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 84px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
  background: var(--white);
}

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

/* ── 네비게이션 ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo img { width: 46px; height: auto; flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.logo-type { display: flex; flex-direction: column; gap: 2px; }
.logo-tag { font-size: 10px; color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: 2px; }
.logo-name { font-size: 20px; font-weight: 900; letter-spacing: -.5px; line-height: 1; color: var(--yellow); }
.logo-name .logo-sub { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75); margin-left: 5px; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a {
  display: block;
  padding: 9px 13px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-menu a:hover { color: var(--yellow); background: rgba(255,179,0,.08); }
.nav-menu .nav-cta {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  margin-left: 6px;
}
.nav-menu .nav-cta:hover { background: var(--yellow-deep); color: var(--dark); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--white); margin: 5px 0; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── 히어로 ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 130px 24px 80px;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(24,18,6,.93) 25%, rgba(52,38,6,.72) 65%, rgba(255,179,0,.28));
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,179,0,.15);
  border: 1px solid rgba(255,179,0,.45);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.28;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-title .highlight { color: var(--yellow); }
.hero-sub {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 14px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  margin-bottom: 32px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary, .btn-secondary, .btn-line {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(255,179,0,.35);
}
.btn-primary:hover { background: var(--yellow-deep); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}
.btn-secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.hero-card {
  background: rgba(255,255,255,.97);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero-card-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 18px;
}
.stat-list { display: flex; flex-direction: column; gap: 16px; }
.stat-item { display: flex; align-items: center; gap: 14px; }
.stat-icon {
  width: 46px; height: 46px;
  background: var(--yellow-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-label { font-size: 12.5px; color: var(--text-light); font-weight: 500; }
.stat-value { font-size: 16.5px; font-weight: 800; color: var(--dark); }

/* ── 섹션 공통 ── */
section { padding: 90px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.8px;
  line-height: 1.32;
  color: var(--dark);
}
.section-title span { color: var(--yellow-deep); }
.section-desc { font-size: 16.5px; color: var(--text-light); margin-top: 14px; }

/* ── 카드 그리드 (철학 6원칙 등) ── */
.features { background: var(--gray); }
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(60,45,10,.05);
  transition: transform .18s, box-shadow .18s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(60,45,10,.1); }
.feature-icon {
  width: 54px; height: 54px;
  background: var(--yellow-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.feature-title { font-size: 18.5px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.feature-desc { font-size: 14.5px; color: var(--text-light); }

/* ── 2단 소개(왜 백호인가) ── */
.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.why-img { border-radius: 22px; overflow: hidden; box-shadow: 0 18px 50px rgba(60,45,10,.18); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
  width: 26px; height: 26px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list b { display: block; font-size: 16.5px; color: var(--dark); }
.why-list p { font-size: 14.5px; color: var(--text-light); }

/* ── 핵심가치 칩 ── */
.values-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
  max-width: 860px; margin: 0 auto;
}
.value-chip {
  background: var(--white);
  border: 1.5px solid var(--yellow);
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(255,179,0,.15);
}

/* ── 미션·비전 ── */
.mission { background: var(--dark); }
.mission .section-title, .mission .section-desc { color: var(--white); }
.mission-grid {
  max-width: 940px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mission-card {
  background: var(--dark-mid);
  border: 1px solid rgba(255,179,0,.25);
  border-radius: 20px;
  padding: 34px 30px;
}
.mission-card h3 {
  color: var(--yellow);
  font-size: 15px; font-weight: 800; letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.mission-card p { color: rgba(255,255,255,.88); font-size: 17px; font-weight: 500; line-height: 1.7; }

/* ── 후기 ── */
.reviews { background: var(--yellow-light); }
.reviews-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 22px rgba(120,85,10,.08);
  position: relative;
}
.review-quote { font-size: 34px; color: var(--yellow); line-height: 1; margin-bottom: 10px; font-weight: 900; }
.review-text { font-size: 15px; color: var(--text); margin-bottom: 16px; }
.review-author { font-size: 13.5px; font-weight: 700; color: var(--yellow-dark); }
.reviews-note { text-align: center; font-size: 13.5px; color: var(--text-light); margin-top: 26px; }

/* ── 구장 갤러리 ── */
.gallery-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px;
}
.gallery-item { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 32px rgba(60,45,10,.14); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(20,15,4,.82));
  color: var(--white);
  font-size: 14.5px; font-weight: 700;
  padding: 40px 20px 16px;
}

/* ── 활동 사진 그리드 ── */
.photo-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.photo-item {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 26px rgba(60,45,10,.12);
  position: relative;
  aspect-ratio: 4 / 3;
}
.photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .25s;
}
.photo-item:hover img { transform: scale(1.04); }
.photo-item.wide { grid-column: span 2; }
.photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(20,15,4,.78));
  color: var(--white);
  font-size: 13.5px; font-weight: 700;
  padding: 34px 16px 13px;
}

/* ── 안내 정보 카드(주소·시간) ── */
.info-cards {
  max-width: 1100px; margin: 46px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
}
.info-card .info-icon { font-size: 30px; margin-bottom: 10px; }
.info-card h4 { font-size: 15px; color: var(--yellow-dark); font-weight: 800; margin-bottom: 8px; }
.info-card p { font-size: 15px; color: var(--text); font-weight: 500; }
.info-card small { color: var(--text-light); font-size: 13px; }

/* ── CTA ── */
.cta {
  background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  text-align: center;
}
.cta h2 { font-size: 32px; font-weight: 900; color: var(--dark); letter-spacing: -.5px; margin-bottom: 12px; }
.cta p { font-size: 17px; color: rgba(34,28,16,.8); margin-bottom: 30px; }
.cta .btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  margin: 0 6px 12px;
  box-shadow: 0 8px 24px rgba(34,28,16,.3);
  transition: transform .15s;
}
.cta .btn-dark:hover { transform: translateY(-2px); }
.cta .btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,.55);
  color: var(--dark);
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  margin: 0 6px 12px;
  transition: transform .15s;
}
.cta .btn-ghost:hover { transform: translateY(-2px); }

/* ── 푸터 ── */
footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 56px 24px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand img { width: 54px; }
.footer-brand-name { font-size: 19px; font-weight: 900; color: var(--yellow); margin-bottom: 6px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; }
footer h4 { color: var(--white); font-size: 14.5px; font-weight: 800; margin-bottom: 14px; letter-spacing: 1px; }
footer ul { list-style: none; }
footer ul li { font-size: 14px; margin-bottom: 9px; }
footer a { color: rgba(255,255,255,.75); text-decoration: none; }
footer a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12.5px; color: rgba(255,255,255,.4);
  text-align: center;
}

/* ── 서브페이지 헤더 ── */
.page-head {
  background: var(--dark);
  padding: 150px 24px 70px;
  text-align: center;
}
.page-head h1 { font-size: 38px; font-weight: 900; color: var(--white); letter-spacing: -.8px; margin-bottom: 12px; }
.page-head h1 span { color: var(--yellow); }
.page-head p { font-size: 16.5px; color: rgba(255,255,255,.7); }

/* ── 프로그램 카드 ── */
.program-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(60,45,10,.07);
}
.program-card-head {
  background: var(--dark);
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.program-card-head h3 { color: var(--yellow); font-size: 20px; font-weight: 900; }
.program-age {
  background: var(--yellow); color: var(--dark);
  font-size: 13px; font-weight: 800;
  padding: 5px 13px; border-radius: 100px;
  white-space: nowrap;
}
.program-card-body { padding: 26px 28px; }
.program-card-body h5 {
  font-size: 13.5px; font-weight: 800; color: var(--yellow-dark);
  letter-spacing: 1.5px; margin-bottom: 10px;
}
.program-card-body h5:not(:first-child) { margin-top: 20px; }
.program-goals { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.program-goals li { font-size: 14.5px; padding-left: 22px; position: relative; }
.program-goals li::before { content: "✓"; position: absolute; left: 0; color: var(--yellow-deep); font-weight: 900; }
.program-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.program-tags span {
  background: var(--yellow-light);
  color: var(--text);
  font-size: 13.5px; font-weight: 600;
  padding: 6px 13px; border-radius: 100px;
}

/* ── 표 (시간표·교육비) ── */
.table-wrap { max-width: 1100px; margin: 0 auto; overflow-x: auto; border-radius: 16px; box-shadow: 0 6px 24px rgba(60,45,10,.08); }
table.nice {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 15px;
  min-width: 640px;
}
table.nice th {
  background: var(--dark);
  color: var(--yellow);
  font-weight: 800;
  padding: 14px 16px;
  white-space: nowrap;
}
table.nice td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
table.nice tr:last-child td { border-bottom: none; }
table.nice td.time { font-weight: 800; color: var(--dark); background: var(--yellow-light); white-space: nowrap; }
table.nice td.avail { color: var(--text-light); font-size: 13.5px; }
.table-note { max-width: 1100px; margin: 16px auto 0; font-size: 13.5px; color: var(--text-light); text-align: center; }

/* ── 가격 카드 ── */
.price-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 26px 16px;
  text-align: center;
  transition: transform .15s, border-color .15s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.price-card.best { border-color: var(--yellow); background: var(--yellow-light); position: relative; }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--dark);
  font-size: 11.5px; font-weight: 900;
  padding: 4px 12px; border-radius: 100px;
  white-space: nowrap;
}
.price-times { font-size: 14px; font-weight: 700; color: var(--text-light); margin-bottom: 8px; }
.price-value { font-size: 25px; font-weight: 900; color: var(--dark); }
.price-value small { font-size: 13px; font-weight: 600; color: var(--text-light); }

/* ── 감독 소개 ── */
.coach-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 320px 1fr; gap: 48px;
  align-items: start;
}
.coach-photo { border-radius: 22px; overflow: hidden; box-shadow: 0 16px 44px rgba(60,45,10,.18); }
.coach-name { font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.coach-role { font-size: 15px; font-weight: 700; color: var(--yellow-dark); margin-bottom: 20px; }
.coach-body p { font-size: 15.5px; color: var(--text); margin-bottom: 14px; }
.coach-quote {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0;
}

/* ── 문의 폼 ── */
.apply-wrap { max-width: 720px; margin: 0 auto; }
.apply-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 10px 36px rgba(60,45,10,.08);
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.form-row label .req { color: #E03131; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--gray);
  transition: border-color .15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--yellow); background: var(--white);
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 17px;
  border-radius: 13px;
  font-size: 17px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, transform .15s;
  box-shadow: 0 8px 24px rgba(255,179,0,.35);
}
.form-submit:hover { background: var(--yellow-deep); transform: translateY(-2px); }
.form-note { font-size: 13px; color: var(--text-light); margin-top: 14px; text-align: center; }

.contact-quick {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 36px;
}
.contact-quick a {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  transition: border-color .15s, transform .15s;
}
.contact-quick a:hover { border-color: var(--yellow); transform: translateY(-3px); }
.contact-quick .cq-icon { font-size: 26px; margin-bottom: 6px; }
.contact-quick small { display: block; font-weight: 500; color: var(--text-light); font-size: 12.5px; margin-top: 3px; }

/* ═══ 반응형 ═══ */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    display: none;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    box-shadow: 0 18px 30px rgba(0,0,0,.35);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 10px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; }
  .nav-menu .nav-cta { margin: 14px 0 0; border-radius: 12px; text-align: center; border-bottom: none; }
  .hamburger { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { font-size: 38px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .coach-grid { grid-template-columns: 1fr; gap: 30px; }
  .coach-photo { max-width: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 18px; }
  .hero { padding: 110px 18px 60px; min-height: auto; }
  .hero-title { font-size: 31px; }
  .hero-sub { font-size: 17px; }
  .section-title { font-size: 27px; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .form-2col { grid-template-columns: 1fr; }
  .contact-quick { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .page-head h1 { font-size: 29px; }
  .cta h2 { font-size: 25px; }
}
