/* ============================================
   DESIGN MOCKUP v3 — 干净商业风
   参考：米拓建站风格，专业、简洁、大气
   ============================================ */

:root {
  --primary:    #1a2a5e;
  --primary-d:  #142048;
  --primary-l:  #e8ecf5;
  --primary-bg: #1e3070;
  --dark:       #1a1a2e;
  --text:       #333333;
  --text-2:     #666666;
  --text-3:     #999999;
  --border:     #e8e8e8;
  --bg:         #ffffff;
  --bg-2:       #f7f8fa;
  --gold:       #c8a050;
  --serif:      'Noto Serif SC', serif;
  --sans:       'Noto Sans SC', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ============================================
   NAV — 白底简洁导航
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.nav-logo-text span {
  font-weight: 400;
  color: var(--text-3);
  font-size: 14px;
  margin-left: 4px;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav-center::-webkit-scrollbar { display: none; }
.nav-center ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-center ul li {
  display: flex;
  align-items: center;
}
.nav-center a,
.nav-center ul li a {
  padding: 0 14px;
  height: 64px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-center a::after,
.nav-center ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-center a:hover,
.nav-center ul li a:hover { color: var(--primary); }
.nav-center a:hover::after,
.nav-center ul li a:hover::after { transform: scaleX(1); }
.nav-center a.active,
.nav-center ul li a.active { color: var(--primary); font-weight: 500; }
.nav-center a.active::after,
.nav-center ul li a.active::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-btn-outline {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  color: var(--text);
  transition: all 0.3s;
}
.nav-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.nav-btn-primary {
  padding: 8px 20px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}
.nav-btn-primary:hover {
  background: var(--primary-d);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-left: auto;
}
.nav-toggle:focus {
  outline: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero {
  margin-top: 64px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}
.hero-slide {
  min-width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
}
.hero-slide:nth-child(1) {
  background: linear-gradient(135deg, rgba(26,42,94,0.88) 0%, rgba(30,48,112,0.78) 100%), url('slide1.jpg') center/cover no-repeat;
}
.hero-slide:nth-child(2) {
  background: linear-gradient(135deg, rgba(20,32,72,0.88) 0%, rgba(26,42,94,0.78) 100%), url('slide2.jpg') center/cover no-repeat;
}
.hero-slide:nth-child(3) {
  background: linear-gradient(135deg, rgba(15,25,55,0.88) 0%, rgba(26,42,94,0.78) 100%), url('slide3.jpg') center/cover no-repeat;
}
.hero-slide::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.4;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  padding: 14px 36px;
  background: white;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-btn-ghost {
  padding: 14px 36px;
  background: transparent;
  color: white;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-btn-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* Carousel arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  color: white;
  font-size: 18px;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}
.hero-arrow-left { left: 24px; }
.hero-arrow-right { right: 24px; }

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-2); }
.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}
.stat-num span { font-size: 16px; font-weight: 400; }
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 6px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 15px;
  color: var(--text-3);
}
.section-header .line {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================
   PAGE BANNER — 内页通用横幅
   ============================================ */
.page-banner {
  margin-top: 64px;
  background: var(--primary);
  padding: 64px 24px 48px;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.page-banner .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.page-banner .breadcrumb a {
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}
.page-banner .breadcrumb a:hover {
  color: white;
}
.page-banner .breadcrumb span {
  margin: 0 8px;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-l), #d0e4f4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.about-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.about-carousel-slide {
  min-width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}
.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.about-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.about-carousel-dot.active {
  background: white;
  width: 18px;
  border-radius: 3px;
}
.about-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--primary);
  z-index: 3;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.about-carousel-arrow:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.about-carousel-arrow-left { left: 12px; }
.about-carousel-arrow-right { right: 12px; }
.about-text h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 2;
  margin-bottom: 16px;
}
.about-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--primary-l);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-d);
}
.about-tag-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================
   PROGRAMS
   ============================================ */
.programs { background: var(--bg-2); }
.program-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.program-tab {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.program-tab:first-child { border-radius: 6px 0 0 6px; }
.program-tab:last-child { border-radius: 0 6px 6px 0; border-left: none; }
.program-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.program-tab:hover:not(.active) {
  color: var(--primary);
  border-color: var(--primary);
}
.programs-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.programs-grid.active {
  display: grid;
}
.program-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--primary);
}
.program-card-top {
  height: 6px;
  background: var(--primary);
}
.program-card:nth-child(2) .program-card-top { background: var(--gold); }
.program-card:nth-child(3) .program-card-top { background: #2d8a6e; }
.program-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-l), #c8ddef);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-card-image-placeholder {
  font-size: 32px;
  color: var(--primary);
  opacity: 0.3;
}
.program-card-body {
  padding: 28px 24px;
}
.program-card-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.program-card-target {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 500;
}
.program-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.program-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-card-feature {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-card-feature::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   RESULTS
   ============================================ */
.results { background: var(--bg); }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.results-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.result-card {
  padding: 28px 20px;
  background: var(--bg-2);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
}
.result-card:hover {
  background: var(--primary-l);
  transform: scale(1.02);
}
.result-card:nth-child(1) { background: var(--primary); color: white; }
.result-card:nth-child(1):hover { background: var(--primary-d); }
.result-card:nth-child(1) .result-label { color: rgba(255,255,255,0.7); }
.result-card:nth-child(4) { background: var(--gold); color: white; }
.result-card:nth-child(4):hover { background: #b8903e; }
.result-card:nth-child(4) .result-label { color: rgba(255,255,255,0.7); }
.result-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
}
.result-num span { font-size: 18px; font-weight: 400; }
.result-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 6px;
}
.results-list-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.results-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-2);
  border-radius: 6px;
  transition: all 0.3s;
}
.results-list-item:hover {
  background: var(--primary-l);
  transform: translateX(6px);
}
.results-list-year {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  min-width: 48px;
}
.results-list-text {
  font-size: 14px;
  color: var(--text-2);
}
.results-list-text strong {
  color: var(--dark);
  font-weight: 600;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--bg-2); }
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.gallery-tab {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-tab:first-child { border-radius: 6px 0 0 6px; }
.gallery-tab:last-child { border-radius: 0 6px 6px 0; border-left: none; }
.gallery-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.gallery-tab:hover:not(.active) {
  color: var(--primary);
  border-color: var(--primary);
}
.gallery-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid.active {
  display: grid;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.gallery-item:nth-child(1) {
  /* removed */
  /* removed */
}
.gallery-item-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.gallery-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  /* removed */
.gallery-item-img span {
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}
.gallery-item:nth-child(1) .gallery-item-img span { font-size: 28px; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay-title {
  font-size: 14px;
  color: white;
  font-weight: 500;
}
.gallery-item-overlay-author {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.gallery-more {
  text-align: center;
  margin-top: 40px;
}
.gallery-more a {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-2);
  transition: all 0.3s;
}
.gallery-more a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   TEACHERS
   ============================================ */
.teachers { background: var(--bg); }
.teacher-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.teacher-tab {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.teacher-tab:first-child { border-radius: 6px 0 0 6px; }
.teacher-tab:last-child { border-radius: 0 6px 6px 0; border-left: none; }
.teacher-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.teacher-tab:hover:not(.active) {
  color: var(--primary);
  border-color: var(--primary);
}
.teachers-carousel {
  position: relative;
  padding: 0 40px;
}
.teachers-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.teachers-scroll::-webkit-scrollbar { display: none; }
.teacher-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--primary);
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.teacher-arrow:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.teacher-arrow-left { left: -20px; }
.teacher-arrow-right { right: -20px; }
.teacher-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.teachers-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.teacher-card {
  min-width: 260px;
  max-width: 260px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.teacher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.teacher-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-l), #c8ddef);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teacher-photo span {
  font-size: 40px;
  color: var(--primary);
  opacity: 0.3;
}
.teacher-info {
  padding: 18px 16px;
}
.teacher-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.teacher-role {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}
.teacher-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ============================================
   优秀学员
   ============================================ */
.students { background: var(--bg); }
.students-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.student-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.student-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.student-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-l), #c8ddef);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.student-photo span {
  font-size: 36px;
  color: var(--primary);
  opacity: 0.3;
}
.student-info {
  padding: 16px;
  text-align: center;
}
.student-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.student-school {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 4px;
}
.student-year {
  font-size: 12px;
  color: var(--text-3);
}

/* ============================================
   新闻资讯
   ============================================ */
.news { background: var(--bg-2); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.news-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-l), #c8ddef);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-image-placeholder {
  font-size: 24px;
  color: var(--primary);
  opacity: 0.3;
}
.news-content {
  padding: 20px;
}
.news-date {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
}
.news-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-excerpt {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-more {
  text-align: center;
  margin-top: 40px;
}
.news-more a {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-2);
  transition: all 0.3s;
}
.news-more a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   返回顶部
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(26,111,181,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--primary);
  padding: 80px 24px;
  text-align: center;
}
.cta h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-btn-w {
  padding: 14px 36px;
  background: white;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.cta-btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cta-btn-o {
  padding: 14px 36px;
  background: transparent;
  color: white;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.cta-btn-o:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: white;
  padding: 48px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-intro { background: var(--bg); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-intro-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-l), #c8ddef);
  border-radius: 8px;
  overflow: hidden;
}
.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro-text h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-intro-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 2;
  margin-bottom: 16px;
}

.philosophy { background: var(--bg-2); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philosophy-card {
  background: white;
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--primary);
}
.philosophy-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--primary);
}
.philosophy-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.philosophy-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
}

.timeline { background: var(--bg); }
.timeline-list {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-content {
  width: 45%;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  transition: all 0.3s;
}
.timeline-content:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-color: var(--primary);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
}

.honors { background: var(--bg-2); }
.honors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.honor-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.honor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--primary);
}
.honor-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  color: white;
}
.honor-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.honor-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ============================================
   PROGRAMS PAGE SPECIFIC
   ============================================ */
.program-detail { background: var(--bg); }
.program-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  transition: all 0.3s;
}
.program-detail-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.program-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.program-detail-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-l), #c8ddef);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.program-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-detail-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-detail-info h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.program-detail-info .target {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
}
.program-detail-info .desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 20px;
}
.program-detail-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.program-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}
.program-detail-meta-item .label {
  color: var(--text-3);
}
.program-detail-meta-item .value {
  font-weight: 600;
  color: var(--dark);
}
.program-detail-features {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.program-detail-features h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.program-detail-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.program-detail-feature-item {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-detail-feature-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Comparison table */
.comparison { background: var(--bg-2); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 15px;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}
.comparison-table td {
  color: var(--text-2);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: var(--bg-2);
}

/* FAQ */
.faq { background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-question {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  content: '-';
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open .faq-answer {
  padding: 0 24px 18px;
  max-height: 200px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
}

/* ============================================
   RESULTS PAGE SPECIFIC
   ============================================ */
.results-overview { background: var(--bg); }
.results-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.results-overview-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.results-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--primary);
}
.results-overview-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}
.results-overview-num span {
  font-size: 18px;
  font-weight: 400;
}
.results-overview-label {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 8px;
}

.results-yearly { background: var(--bg-2); }
.results-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.results-table th,
.results-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.results-table th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}
.results-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--serif);
}
.results-table tr:last-child td { border-bottom: none; }
.results-table tr:hover td { background: var(--bg-2); }

.honor-roll { background: var(--bg); }
.honor-roll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.honor-roll-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
}
.honor-roll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--primary);
}
.honor-roll-card h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.honor-roll-card .school {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 4px;
}
.honor-roll-card .year {
  font-size: 12px;
  color: var(--text-3);
}

.admission-rates { background: var(--bg-2); }
.rate-bars {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rate-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rate-bar-label {
  min-width: 120px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-align: right;
}
.rate-bar-track {
  flex: 1;
  height: 24px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.rate-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #3a5aae);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  transition: width 1s ease;
}

.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-text::before {
  content: '\201C';
  font-size: 28px;
  color: var(--primary);
  font-style: normal;
  line-height: 1;
  margin-right: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-school {
  font-size: 12px;
  color: var(--primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-center.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 99;
    padding: 0;
    gap: 0;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav-center.mobile-open a {
    height: 52px;
    font-size: 16px;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
  }
  .nav-center.mobile-open a:last-child {
    border-bottom: none;
  }
  .nav-center.mobile-open a::after {
    display: none;
  }
  .nav-center.mobile-open a.active {
    color: var(--primary);
    background: var(--primary-l);
  }
  .about-grid { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .programs-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  /* removed */
  .gallery-tabs { margin-bottom: 24px; }
  .gallery-tab { padding: 10px 24px; font-size: 14px; }
  .teacher-tabs { margin-bottom: 24px; }
  .teacher-tab { padding: 10px 20px; font-size: 14px; }
  .teachers-carousel { padding: 0 20px; }
  .teacher-arrow { width: 36px; height: 36px; font-size: 16px; }
  .teacher-arrow-left { left: -10px; }
  .teacher-arrow-right { right: -10px; }
  .teachers-scroll { gap: 16px; }
  .teacher-card { min-width: 220px; max-width: 220px; }
  .students-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .honors-grid { grid-template-columns: 1fr 1fr; }
  .program-detail-header { grid-template-columns: 1fr; }
  .results-overview-grid { grid-template-columns: 1fr 1fr; }
  .honor-roll-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline-list::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(odd) { flex-direction: row; padding-left: 48px; }
  .timeline-dot { left: 20px; }
  .timeline-content { width: 100%; }
}
@media (max-width: 600px) {
  .section { padding: 56px 16px; }
  .section-header h2 { font-size: 26px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  aspect-ratio: 3/4;
  .gallery-tabs { margin-bottom: 20px; }
  .hero-slide { min-height: 420px; padding: 60px 48px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 16px; }
  .hero-arrow-left { left: 12px; }
  .hero-arrow-right { right: 12px; }
  .teachers-carousel { padding: 0 10px; }
  .teacher-arrow { width: 32px; height: 32px; font-size: 14px; }
  .teacher-arrow-left { left: -5px; }
  .teacher-arrow-right { right: -5px; }
  .teachers-scroll { gap: 12px; }
  .teacher-card { min-width: 200px; max-width: 200px; }
  .students-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .news-grid { grid-template-columns: 1fr; }
  .results-data { grid-template-columns: 1fr 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-brand {
    margin-bottom: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand-name {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .footer-brand-desc {
    max-width: 100%;
    font-size: 12px;
  }
  .footer-col-title {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-links {
    gap: 8px;
  }
  .footer-links a {
    font-size: 14px;
    padding: 4px 0;
    display: block;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
    font-size: 11px;
  }
  .about-tags { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 18px; }
  .page-banner { padding: 48px 16px 36px; }
  .page-banner h1 { font-size: 28px; }
  .comparison-table th,
  .comparison-table td { padding: 10px 8px; font-size: 12px; }
  .program-detail-features-list { grid-template-columns: 1fr; }
  .results-overview-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rate-bar-label { min-width: 80px; font-size: 12px; }
  .honors-grid { grid-template-columns: 1fr; }
}


/* ===== 画室简介页 · 简约高级风 ===== */
.about-section{padding:80px 24px;background:#faf9f6;}
.about-wrap{max-width:1160px;margin:0 auto;}
.about-sec-head{text-align:center;margin-bottom:56px;}
.about-sec-head .en{font-size:12px;letter-spacing:6px;color:#b9a37e;text-transform:uppercase;margin-bottom:10px;}
.about-sec-head h2{font-size:30px;font-weight:600;letter-spacing:4px;color:#1a2a5e;font-family:var(--serif);}
.about-sec-head .line{width:44px;height:2px;background:#b9a37e;margin:18px auto 0;}
.about-overview .intro{max-width:820px;margin:0 auto;text-align:center;font-size:16px;color:#555;}
.about-overview .intro strong{color:#1a2a5e;}
.about-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:56px;}
.about-stat{background:#fff;border:1px solid #e6e2da;border-radius:6px;padding:32px 20px;text-align:center;transition:.3s;}
.about-stat:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(26,42,94,.08);}
.about-stat .num{font-size:38px;font-weight:700;color:#1a2a5e;font-family:var(--serif);}
.about-stat .num i{font-style:normal;font-size:20px;margin-left:2px;}
.about-stat .label{font-size:14px;color:#8a8a8a;margin-top:8px;letter-spacing:1px;}
.about-philosophy{background:#fff;border-top:1px solid #e6e2da;border-bottom:1px solid #e6e2da;}
.about-philosophy .about-inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.about-philosophy .quote{font-size:26px;font-weight:600;color:#1a2a5e;line-height:1.6;margin-bottom:24px;font-family:var(--serif);}
.about-philosophy .quote em{font-style:normal;color:#b9a37e;}
.about-philosophy p{color:#555;font-size:15px;margin-bottom:16px;}
.about-philosophy .img{border-radius:6px;overflow:hidden;aspect-ratio:4/3;}
.about-philosophy .img img{width:100%;height:100%;object-fit:cover;}
.about-timeline{position:relative;max-width:760px;margin:0 auto;padding-left:40px;}
.about-timeline::before{content:'';position:absolute;left:10px;top:4px;bottom:4px;width:1px;background:#b9a37e;}
.about-tl-item{position:relative;margin-bottom:40px;}
.about-tl-item::before{content:'';position:absolute;left:-34px;top:8px;width:9px;height:9px;border-radius:50%;background:#b9a37e;border:2px solid #faf9f6;}
.about-tl-year{font-family:var(--serif);font-size:20px;font-weight:700;color:#1a2a5e;margin-bottom:6px;}
.about-tl-title{font-size:16px;font-weight:500;margin-bottom:6px;}
.about-tl-desc{font-size:14px;color:#8a8a8a;}
.about-feat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.about-feat{background:#fff;border:1px solid #e6e2da;border-radius:6px;padding:36px 26px;text-align:center;transition:.3s;}
.about-feat:hover{border-color:#b9a37e;box-shadow:0 12px 28px rgba(26,42,94,.08);}
.about-feat .icon{width:56px;height:56px;margin:0 auto 20px;border-radius:50%;background:#e9e2d3;display:flex;align-items:center;justify-content:center;font-size:24px;}
.about-feat h3{font-size:17px;font-weight:600;color:#1a2a5e;margin-bottom:10px;}
.about-feat p{font-size:13px;color:#8a8a8a;line-height:1.8;}
.about-env-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.about-env-item{border-radius:6px;overflow:hidden;position:relative;aspect-ratio:4/3;cursor:pointer;}
.about-env-item img{width:100%;height:100%;object-fit:cover;transition:.4s;}
.about-env-item:hover img{transform:scale(1.05);}
.about-env-item .tag{position:absolute;left:0;bottom:0;right:0;padding:40px 16px 12px;background:linear-gradient(transparent,rgba(0,0,0,.65));color:#fff;font-size:14px;}
.about-honor-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.about-honor{display:flex;align-items:center;gap:20px;background:#fff;border:1px solid #e6e2da;border-radius:6px;padding:24px 28px;transition:.3s;}
.about-honor:hover{border-color:#b9a37e;}
.about-honor .medal{font-size:30px;color:#b9a37e;flex-shrink:0;}
.about-honor h3{font-size:16px;font-weight:600;color:#2b2b2b;margin-bottom:4px;}
.about-honor p{font-size:13px;color:#8a8a8a;}
@media(max-width:900px){
  .about-stats{grid-template-columns:repeat(2,1fr);}
  .about-philosophy .about-inner{grid-template-columns:1fr;}
  .about-feat-grid{grid-template-columns:repeat(2,1fr);}
  .about-env-grid{grid-template-columns:repeat(2,1fr);}
  .about-honor-grid{grid-template-columns:1fr;}
}


/* 面包屑导航清晰显示 */
.page-banner-breadcrumb {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  margin-top: 4px;
}
.page-banner-breadcrumb a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color 0.3s;
}
.page-banner-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}
.page-banner-breadcrumb span {
  color: rgba(255,255,255,0.75);
  margin: 0 8px;
}


/* ===== 历年成绩页 · 简约高级风 ===== */
.results-section{padding:80px 24px;background:#faf9f6;}
.results-wrap{max-width:1160px;margin:0 auto;}
.results-sec-head{text-align:center;margin-bottom:56px;}
.results-sec-head .en{font-size:12px;letter-spacing:6px;color:#b9a37e;text-transform:uppercase;margin-bottom:10px;}
.results-sec-head h2{font-size:30px;font-weight:600;letter-spacing:4px;color:#1a2a5e;font-family:var(--serif);}
.results-sec-head .line{width:44px;height:2px;background:#b9a37e;margin:18px auto 0;}
.results-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.results-stat{background:#fff;border:1px solid #e6e2da;border-radius:6px;padding:36px 20px;text-align:center;transition:.3s;}
.results-stat:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(26,42,94,.08);}
.results-stat .num{font-size:42px;font-weight:700;color:#1a2a5e;font-family:var(--serif);}
.results-stat .num i{font-style:normal;font-size:22px;margin-left:2px;}
.results-stat .label{font-size:14px;color:#8a8a8a;margin-top:10px;letter-spacing:1px;}
.results-years{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.results-year{background:#fff;border:1px solid #e6e2da;border-radius:8px;padding:32px 28px;transition:.3s;}
.results-year:hover{border-color:#b9a37e;box-shadow:0 12px 28px rgba(26,42,94,.08);}
.results-year-top{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:18px;padding-bottom:16px;border-bottom:1px solid #e6e2da;}
.results-year-top .yr{font-size:28px;font-weight:700;color:#1a2a5e;font-family:var(--serif);}
.results-year-top .tag{font-size:12px;color:#b9a37e;border:1px solid #b9a37e;border-radius:20px;padding:3px 12px;}
.results-year-row{display:flex;justify-content:space-between;font-size:14px;padding:8px 0;color:#555;}
.results-year-row .k{color:#8a8a8a;}
.results-year-row .v{font-weight:500;color:#1a2a5e;}
.results-list{background:#fff;border:1px solid #e6e2da;border-radius:8px;overflow:hidden;}
.results-list-head{display:grid;grid-template-columns:1.2fr 1.5fr 1fr;gap:16px;padding:16px 28px;background:#1a2a5e;color:#fff;font-size:14px;font-weight:500;letter-spacing:1px;}
.results-list-row{display:grid;grid-template-columns:1.2fr 1.5fr 1fr;gap:16px;padding:16px 28px;border-top:1px solid #e6e2da;font-size:14px;color:#555;transition:.2s;}
.results-list-row:hover{background:#f7f5f0;}
.results-list-row:nth-child(even){background:#fbfaf7;}
.results-list-row:nth-child(even):hover{background:#f7f5f0;}
.results-list-row .name{color:#1a2a5e;font-weight:500;}
.results-list-row .school{color:#b9a37e;}
@media(max-width:900px){
  .results-stats{grid-template-columns:repeat(2,1fr);}
  .results-years{grid-template-columns:1fr;}
}


/* ===== 在线咨询页 · 简约高级风 ===== */
.consult-section{padding:80px 24px;background:#faf9f6;}
.consult-wrap{max-width:1160px;margin:0 auto;}
.consult-sec-head{text-align:center;margin-bottom:56px;}
.consult-sec-head .en{font-size:12px;letter-spacing:6px;color:#b9a37e;text-transform:uppercase;margin-bottom:10px;}
.consult-sec-head h2{font-size:30px;font-weight:600;letter-spacing:4px;color:#1a2a5e;font-family:var(--serif);}
.consult-sec-head .line{width:44px;height:2px;background:#b9a37e;margin:18px auto 0;}
.consult-sec-head p{font-size:15px;color:#8a8a8a;margin-top:16px;max-width:560px;margin-left:auto;margin-right:auto;line-height:1.8;}
.consult-call{text-align:center;background:#fff;border:1px solid #e6e2da;border-radius:8px;padding:48px 24px;margin-bottom:56px;}
.consult-call .hint{font-size:14px;color:#8a8a8a;margin-bottom:28px;letter-spacing:2px;}
.consult-teachers{display:flex;justify-content:center;gap:48px;flex-wrap:wrap;}
.consult-teacher{text-align:center;}
.consult-teacher-name{font-size:16px;font-weight:600;color:#1a2a5e;margin-bottom:10px;}
.consult-teacher-phone{font-size:36px;font-weight:700;color:#1a2a5e;font-family:var(--serif);letter-spacing:1px;}
.consult-teacher-phone a{color:#1a2a5e;text-decoration:none;}
.consult-teacher-phone a:hover{color:#b9a37e;}
.consult-call .btn{display:inline-block;margin-top:16px;padding:10px 36px;background:#1a2a5e;color:#fff;border-radius:6px;font-size:14px;text-decoration:none;transition:.3s;}
.consult-call .btn:hover{background:#b9a37e;}
.consult-hotline{margin-top:28px;font-size:14px;color:#8a8a8a;}
.consult-hotline a{color:#b9a37e;text-decoration:none;}
.consult-hotline a:hover{text-decoration:underline;}
.consult-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.consult-card{background:#fff;border:1px solid #e6e2da;border-radius:8px;padding:36px 24px;text-align:center;transition:.3s;}
.consult-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(26,42,94,.08);}
.consult-card .icon{width:60px;height:60px;margin:0 auto 18px;border-radius:50%;background:#e9e2d3;display:flex;align-items:center;justify-content:center;font-size:26px;}
.consult-card h3{font-size:16px;font-weight:600;color:#1a2a5e;margin-bottom:8px;}
.consult-card .val{font-size:14px;color:#555;line-height:1.7;}
.consult-card .val a{color:#555;text-decoration:none;}
.consult-card .val a:hover{color:#b9a37e;}
.consult-wechat{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;background:#fff;border:1px solid #e6e2da;border-radius:8px;padding:56px;margin-top:56px;}
.consult-wechat-text h3{font-size:22px;font-weight:600;color:#1a2a5e;font-family:var(--serif);margin-bottom:16px;}
.consult-wechat-text p{font-size:15px;color:#555;line-height:1.9;margin-bottom:12px;}
.consult-wechat-text .wxid{display:inline-block;background:#f7f5f0;border:1px solid #e6e2da;border-radius:6px;padding:10px 20px;font-size:16px;color:#1a2a5e;font-weight:500;margin-top:8px;}
.consult-wechat-qr{width:220px;margin:0 auto;}
.consult-wechat-qr img{width:100%;border-radius:8px;border:1px solid #e6e2da;display:block;}
.consult-wechat-qr .tip{font-size:13px;color:#8a8a8a;text-align:center;margin-top:12px;}
.consult-note{margin-top:56px;background:#fff;border:1px solid #e6e2da;border-radius:8px;padding:40px;}
.consult-note h3{font-size:20px;font-weight:600;color:#1a2a5e;font-family:var(--serif);margin-bottom:20px;}
.consult-note .row{display:flex;gap:12px;padding:10px 0;font-size:14px;color:#555;border-bottom:1px solid #f0ede6;}
.consult-note .row:last-child{border-bottom:none;}
.consult-note .row .k{color:#b9a37e;flex-shrink:0;font-weight:500;}
@media(max-width:900px){
  .consult-grid{grid-template-columns:repeat(2,1fr);}
  .consult-wechat{grid-template-columns:1fr;}
  .consult-teacher-phone{font-size:28px;}
}

/* ===== é¢çº¦æ¢æ ¡é¡µ Â· ç®çº¦é«çº§é£ ===== */
.contact-section{padding:80px 24px;background:#faf9f6;}
.contact-wrap{max-width:1160px;margin:0 auto;}
.contact-sec-head{text-align:center;margin-bottom:56px;}
.contact-sec-head .en{font-size:12px;letter-spacing:6px;color:#b9a37e;text-transform:uppercase;margin-bottom:10px;}
.contact-sec-head h2{font-size:30px;font-weight:600;letter-spacing:4px;color:#1a2a5e;font-family:var(--serif);}
.contact-sec-head .line{width:44px;height:2px;background:#b9a37e;margin:18px auto 0;}
.contact-sec-head p{font-size:15px;color:#8a8a8a;margin-top:16px;max-width:560px;margin-left:auto;margin-right:auto;line-height:1.8;}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
.contact-form{background:#fff;border:1px solid #e6e2da;border-radius:12px;padding:40px;}
.contact-form h3{font-size:20px;font-weight:600;color:#1a2a5e;font-family:var(--serif);margin-bottom:24px;}
.cf-field{margin-bottom:22px;}
.cf-field label{display:block;font-size:14px;color:#1a2a5e;font-weight:500;margin-bottom:8px;}
.cf-field label .req{color:#b9a37e;margin-left:2px;}
.cf-field input,.cf-field select,.cf-field textarea{width:100%;padding:12px 14px;border:1px solid #e6e2da;border-radius:6px;font-size:14px;color:#333;background:#faf9f6;transition:.3s;box-sizing:border-box;}
.cf-field input:focus,.cf-field select:focus,.cf-field textarea:focus{outline:none;border-color:#b9a37e;background:#fff;box-shadow:0 0 0 3px rgba(185,163,126,.12);}
.cf-field input::placeholder,.cf-field textarea::placeholder{color:#b5b0a6;}
.cf-field select{appearance:none;-webkit-appearance:none;cursor:pointer;}
.cf-submit{width:100%;padding:14px;background:#1a2a5e;color:#fff;border:none;border-radius:6px;font-size:15px;font-weight:500;letter-spacing:2px;cursor:pointer;transition:.3s;}
.cf-submit:hover{background:#b9a37e;}
.cf-tip{font-size:12px;color:#b5b0a6;text-align:center;margin-top:14px;}
.contact-side{display:flex;flex-direction:column;gap:28px;}
.contact-info-card{background:#fff;border:1px solid #e6e2da;border-radius:12px;padding:32px;}
.contact-info-card h4{font-size:16px;font-weight:600;color:#1a2a5e;font-family:var(--serif);margin-bottom:16px;}
.contact-info-card .row{display:flex;gap:12px;padding:8px 0;font-size:14px;color:#555;border-bottom:1px solid #f0ede6;}
.contact-info-card .row:last-child{border-bottom:none;}
.contact-info-card .row .k{color:#b9a37e;flex-shrink:0;font-weight:500;}
.contact-info-card .row a{color:#555;text-decoration:none;}
.contact-info-card .row a:hover{color:#b9a37e;}
.contact-wechat{display:flex;align-items:center;gap:24px;}
.contact-wechat .qr{width:120px;flex-shrink:0;}
.contact-wechat .qr img{width:100%;border-radius:8px;border:1px solid #e6e2da;display:block;}
.contact-wechat .txt{font-size:13px;color:#555;line-height:1.9;}
.contact-wechat .txt .wxid{color:#1a2a5e;font-weight:500;}
.contact-success{background:#fff;border:1px solid #b9a37e;border-radius:12px;padding:60px 40px;text-align:center;display:none;}
.contact-success .icon{font-size:48px;margin-bottom:16px;}
.contact-success h3{font-size:22px;color:#1a2a5e;font-family:var(--serif);margin-bottom:12px;}
.contact-success p{font-size:14px;color:#8a8a8a;line-height:1.8;}
@media(max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
}
