:root {
  --green-950: #0a2e27;
  --green-900: #0d4035;
  --green-800: #0f5948;
  --green-700: #0f7258;
  --green-600: #15936b;
  --green-500: #21ad7c;
  --green-100: #e7f5ef;
  --green-50: #f4faf7;
  --amber: #f3b33d;
  --ink: #13231e;
  --muted: #62746d;
  --line: #dce8e2;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(13, 64, 53, .08);
  --shadow-md: 0 18px 50px rgba(13, 64, 53, .13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body, button, input, select, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; width: 1em; height: 1em; fill: currentColor; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.section { padding: 104px 0; scroll-margin-top: 84px; }
.section-heading {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 44px;
}
.section-heading > p { max-width: 470px; margin: 0 0 5px; color: var(--muted); }
.section-heading h2, .booking-copy h2, .reviews-aside h2,
.about-copy h2, .contact-info h2 {
  margin: 0; color: var(--green-950); font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.2; letter-spacing: -.04em;
}
.section-kicker {
  margin: 0 0 12px; color: var(--green-600); font-size: 12px;
  font-weight: 800; line-height: 1; letter-spacing: .2em;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 24px; border: 1px solid transparent;
  border-radius: 999px; font-size: 15px; font-weight: 700; line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--white); background: var(--green-600);
  box-shadow: 0 12px 26px rgba(21, 147, 107, .28);
}
.button-primary:hover { background: var(--green-700); box-shadow: 0 16px 34px rgba(21, 147, 107, .34); }
.button-ghost {
  color: var(--white); background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.38); backdrop-filter: blur(8px);
}
.button-ghost:hover { background: rgba(255,255,255,.18); }
.button-dark { color: var(--white); background: var(--green-900); }
.button-dark:hover { background: var(--green-800); }
.button-outline { color: var(--green-800); border-color: var(--green-800); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--green-800); }
.has-js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.site-header { position: relative; z-index: 100; }
.topbar { min-height: 36px; color: rgba(255,255,255,.88); background: var(--green-950); font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 20px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; color: #74d7b5; }
.topbar-item a:hover, .topbar-phone a:hover { color: var(--white); }
.navbar {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(13,64,53,.09); box-shadow: 0 6px 24px rgba(13,64,53,.04);
  backdrop-filter: blur(16px);
}
.navbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 72px; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: auto; height: 38px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > a:not(.nav-cta) {
  position: relative; padding: 10px; color: #3c5149; font-size: 15px;
  font-weight: 600; white-space: nowrap;
}
.nav-menu > a:not(.nav-cta)::after {
  position: absolute; right: 10px; bottom: 5px; left: 10px; height: 2px;
  border-radius: 2px; background: var(--green-500); content: "";
  transform: scaleX(0); transform-origin: center; transition: transform .25s ease;
}
.nav-menu > a:hover, .nav-menu > a.is-active { color: var(--green-700); }
.nav-menu > a:hover::after, .nav-menu > a.is-active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px;
  margin-left: 8px; padding: 0 19px; color: var(--white); background: var(--green-600);
  border-radius: 999px; font-size: 14px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 10px 22px rgba(21,147,107,.22);
}
.nav-cta:hover { background: var(--green-700); }
.menu-toggle {
  display: none; width: 44px; height: 44px; padding: 10px; border: 0;
  border-radius: 10px; background: var(--green-50); cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  display: block; width: 22px; height: 2px; margin: 5px auto;
  border-radius: 2px; background: var(--green-900);
  transition: transform .25s ease, opacity .25s ease;
}
.hero { position: relative; min-height: 690px; overflow: hidden; color: var(--white); background: var(--green-950); }
.hero-photo, .hero-shade { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(6,40,32,.98) 0%, rgba(6,40,32,.92) 33%, rgba(6,40,32,.55) 62%, rgba(6,40,32,.28) 100%),
    linear-gradient(180deg, rgba(4,31,25,.1) 25%, rgba(4,31,25,.82) 100%);
}
.hero-inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(340px,.76fr);
  align-items: center; gap: 68px; min-height: 690px; padding: 78px 0 112px;
}
.hero-copy { max-width: 680px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0 0 22px;
  color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600; letter-spacing: .08em;
}
.eyebrow span { width: 34px; height: 2px; background: var(--amber); }
.hero h1 { margin: 0; font-size: clamp(48px,5.8vw,76px); font-weight: 800; line-height: 1.12; letter-spacing: -.055em; }
.hero h1 em { color: #8be7c5; font-style: normal; }
.hero-lead { max-width: 560px; margin: 24px 0 32px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 34px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16);
}
.hero-points span { color: rgba(255,255,255,.72); font-size: 13px; }
.hero-points b { margin-right: 4px; color: var(--white); font-size: 16px; }
.hero-card {
  align-self: center; width: 100%; max-width: 420px; justify-self: end;
  overflow: hidden; color: var(--ink); background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.5); border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.hero-card-top { display: flex; flex-direction: column; padding: 24px 26px 20px; background: linear-gradient(135deg,#f2fbf7 0%,#e3f6ed 100%); }
.hero-card-top span { color: var(--green-600); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.hero-card-top strong { margin-top: 4px; font-size: 22px; }
.campus-pick { padding: 6px 16px; }
.campus-pick > a {
  display: grid; grid-template-columns: 38px 1fr 18px; align-items: center; gap: 10px;
  padding: 16px 10px; border-bottom: 1px solid var(--line); transition: color .2s ease, transform .2s ease;
}
.campus-pick > a:last-child, .campus-pick-single > a { border-bottom: 0; }
.campus-pick > a:hover { color: var(--green-700); transform: translateX(3px); }
.campus-pick-index {
  display: grid; width: 36px; height: 36px; place-items: center; color: var(--green-700);
  background: var(--green-100); border-radius: 50%; font-size: 12px; font-weight: 800;
}
.campus-pick strong, .campus-pick small { display: block; }
.campus-pick strong { font-size: 15px; }
.campus-pick small { margin-top: 2px; color: var(--muted); font-size: 12px; }
.campus-pick svg { width: 17px; height: 17px; }
.hero-card-note {
  display: flex; gap: 9px; margin: 0 18px 18px; padding: 13px 14px;
  color: #4c665c; background: #f5f8f6; border-radius: var(--radius-sm); font-size: 12px; line-height: 1.55;
}
.hero-card-note svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; color: var(--green-600); }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; z-index: 2; display: flex; align-items: center;
  gap: 9px; color: rgba(255,255,255,.46); font-size: 11px; letter-spacing: .12em; transform: translateX(-50%);
}
.hero-scroll span { position: relative; width: 42px; height: 1px; overflow: hidden; background: rgba(255,255,255,.24); }
.hero-scroll span::after { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--white); content: ""; animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { left: -100%; } 60%,100% { left: 100%; } }
.metrics { position: relative; z-index: 5; margin-top: -48px; }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden;
  background: var(--white); border: 1px solid rgba(13,64,53,.08);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
}
.metric { position: relative; padding: 26px 30px; text-align: center; }
.metric:not(:last-child)::after { position: absolute; top: 22px; right: 0; bottom: 22px; width: 1px; background: var(--line); content: ""; }
.metric strong, .metric span { display: block; }
.metric strong { color: var(--green-800); font-size: 31px; line-height: 1.1; letter-spacing: -.04em; }
.metric span { margin-top: 6px; color: var(--muted); font-size: 13px; }
.courses { background: var(--white); }
.course-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.course-card {
  overflow: hidden; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.course-card:hover { border-color: rgba(21,147,107,.3); box-shadow: var(--shadow-md); transform: translateY(-7px); }
.course-image { position: relative; height: 205px; overflow: hidden; background: #dfeae5; }
.course-image::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 45%,rgba(7,40,32,.42) 100%); content: ""; }
.course-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.course-card:hover .course-image img { transform: scale(1.05); }
.course-body { padding: 21px 21px 22px; }
.tag {
  display: inline-flex; min-height: 25px; align-items: center; padding: 0 10px;
  color: var(--green-700); background: var(--green-100); border-radius: 999px; font-size: 12px; font-weight: 700;
}
.course-body h3 { margin: 12px 0 8px; font-size: 21px; line-height: 1.3; }
.course-body p { min-height: 52px; margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.course-body a { display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-size: 14px; font-weight: 700; }
.course-body a span { transition: transform .2s ease; }
.course-body a:hover span { transform: translateX(4px); }
.campuses { position: relative; overflow: hidden; color: var(--white); background: var(--green-950); }
.campuses::before, .campuses::after { position: absolute; border-radius: 50%; content: ""; pointer-events: none; }
.campuses::before { top: -180px; right: -140px; width: 480px; height: 480px; background: rgba(33,173,124,.1); }
.campuses::after { bottom: -250px; left: -170px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.07); }
.campuses .container { position: relative; z-index: 1; }
.section-heading-light h2 { color: var(--white); }
.section-heading-light > p { color: rgba(255,255,255,.65); }
.section-heading-light .section-kicker { color: #83dfbd; }
.campus-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; } .campus-grid-single { grid-template-columns: 1fr; } .campus-grid-single .campus-image { height: 420px; }
.campus-card {
  overflow: hidden; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); transition: transform .3s ease, background-color .3s ease;
}
.campus-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); }
.campus-image { position: relative; height: 310px; overflow: hidden; }
.campus-image::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 42%,rgba(5,34,27,.78) 100%); content: ""; }
.campus-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.campus-card:hover .campus-image img { transform: scale(1.04); }
.campus-label {
  position: absolute; bottom: 19px; left: 22px; z-index: 1; padding: 7px 13px;
  color: var(--green-950); background: #a6efd1; border-radius: 999px; font-size: 13px; font-weight: 800;
}
.campus-content { padding: 24px 26px 27px; }
.campus-content h3 { margin: 0 0 8px; font-size: 25px; }
.campus-content p { margin: 0; color: rgba(255,255,255,.67); font-size: 14px; }
.campus-meta { display: flex; gap: 10px; margin: 17px 0 20px; }
.campus-meta span { padding: 5px 10px; color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); border-radius: 999px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #8be7c5; font-size: 14px; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.booking {
  position: relative; overflow: hidden; background:
    radial-gradient(circle at 8% 15%,rgba(33,173,124,.12),transparent 28%),
    radial-gradient(circle at 90% 90%,rgba(243,179,61,.1),transparent 25%), var(--green-50);
}
.booking-grid { display: grid; grid-template-columns: minmax(0,.84fr) minmax(480px,1.16fr); align-items: center; gap: 72px; }
.booking-copy > p:not(.section-kicker) { max-width: 470px; margin: 22px 0 30px; color: var(--muted); }
.contact-quick { display: grid; gap: 13px; }
.contact-quick > a, .contact-quick > div { display: flex; align-items: center; gap: 13px; }
.quick-icon {
  display: grid; flex: 0 0 auto; width: 44px; height: 44px; place-items: center;
  color: var(--green-700); background: var(--white); border: 1px solid var(--line);
  border-radius: 13px; box-shadow: var(--shadow-sm);
}
.quick-icon svg { width: 21px; height: 21px; }
.contact-quick small, .contact-quick strong { display: block; }
.contact-quick small { color: var(--muted); font-size: 12px; }
.contact-quick strong { margin-top: 1px; font-size: 15px; }
.booking-form {
  padding: 32px; background: var(--white); border: 1px solid rgba(13,64,53,.08);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.form-heading { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-heading span { color: var(--green-600); font-size: 13px; font-weight: 800; }
.form-heading strong { font-size: 23px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { display: block; }
.field-full { grid-column: 1 / -1; }
.field > span { display: block; margin-bottom: 8px; color: #344a42; font-size: 13px; font-weight: 700; }
.field > span b { color: #e25555; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #d6e4de;
  border-radius: 10px; outline: none; background: #fbfdfc; font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea { min-height: 86px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9baaa4; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--white); border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(33,173,124,.1);
}
.field.has-error input { border-color: #e25555; }
.field-error { display: none; margin-top: 5px; color: #d74b4b; font-size: 11px; }
.field.has-error .field-error { display: block; }
.check-field {
  display: flex; align-items: flex-start; gap: 9px; margin: 17px 0 20px;
  color: var(--muted); font-size: 12px; line-height: 1.55; cursor: pointer;
}
.check-field input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--green-600); }
.check-field.has-error { color: #c84444; }
.button-submit { width: 100%; min-height: 54px; border: 0; }
.form-status { display: none; margin: 14px 0 0; padding: 11px 13px; color: var(--green-800); background: var(--green-100); border-radius: 9px; font-size: 13px; text-align: center; }
.form-status.is-visible { display: block; } .form-status.is-error { color: #a63030; background: #fff0f0; }
.advantages { background: var(--white); }
.advantage-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.advantage-card {
  position: relative; min-height: 270px; overflow: hidden; padding: 30px 25px 28px;
  background: var(--green-50); border: 1px solid var(--line); border-radius: var(--radius-md);
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.advantage-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.advantage-number { position: absolute; top: 22px; right: 22px; color: #c9ddd4; font-size: 26px; font-weight: 800; letter-spacing: -.04em; }
.advantage-icon {
  display: grid; width: 52px; height: 52px; margin-bottom: 28px; place-items: center;
  color: var(--white); background: var(--green-700); border-radius: 15px;
  box-shadow: 0 10px 22px rgba(15,114,88,.2);
}
.advantage-icon svg { width: 26px; height: 26px; }
.advantage-card h3 { margin: 0 0 9px; font-size: 18px; }
.advantage-card p { margin: 0; color: var(--muted); font-size: 14px; }
.coaches { background: #f6f8f7; }
.outline-link {
  display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px;
  color: var(--green-700); border-bottom: 1px solid var(--green-500); font-size: 14px; font-weight: 700;
}
.coach-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.coach-card { position: relative; overflow: hidden; height: 380px; border-radius: var(--radius-md); background: var(--green-900); }
.coach-card::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 38%,rgba(5,31,24,.88) 100%); content: ""; }
.coach-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.coach-card:hover img { transform: scale(1.05); }
.coach-card div { position: absolute; right: 21px; bottom: 20px; left: 21px; z-index: 1; color: var(--white); }
.coach-card span, .coach-card strong { display: block; }
.coach-card span { color: #98e9c8; font-size: 12px; }
.coach-card strong { margin-top: 4px; font-size: 20px; }
.reviews { background: var(--white); }
.reviews-layout { display: grid; grid-template-columns: .66fr 1.34fr; gap: 70px; }
.reviews-aside > p:not(.section-kicker) { max-width: 350px; margin: 22px 0 32px; color: var(--muted); }
.review-score {
  padding: 22px; color: var(--white); background: linear-gradient(135deg,var(--green-800),var(--green-600));
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.review-score strong, .review-score span { display: block; }
.review-score strong { font-size: 20px; }
.review-score span { margin-top: 3px; color: rgba(255,255,255,.72); font-size: 12px; }
.review-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.review-card {
  position: relative; min-height: 260px; padding: 27px 23px 24px;
  background: var(--green-50); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.quote-mark { position: absolute; top: 15px; right: 20px; color: #c9e5d9; font-family: Georgia,serif; font-size: 64px; line-height: 1; }
.review-card > p { position: relative; z-index: 1; margin: 35px 0 24px; color: #334941; font-size: 14px; line-height: 1.9; }
.review-card footer {
  position: absolute; right: 23px; bottom: 22px; left: 23px; display: flex;
  justify-content: space-between; align-items: flex-end; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line);
}
.review-card footer strong { font-size: 14px; }
.review-card footer span { color: var(--muted); font-size: 11px; }
.guide { background: #f6f8f7; }
.guide-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.guide-card {
  display: grid; grid-template-columns: 52px 1fr 24px; align-items: center; gap: 16px;
  min-height: 105px; padding: 22px 24px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.guide-card:hover { border-color: rgba(21,147,107,.35); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.guide-card > span {
  display: grid; width: 48px; height: 48px; place-items: center; color: var(--green-700);
  background: var(--green-100); border-radius: 14px; font-size: 13px; font-weight: 800;
}
.guide-card strong, .guide-card small { display: block; }
.guide-card strong { font-size: 17px; }
.guide-card small { margin-top: 3px; color: var(--muted); font-size: 13px; }
.guide-card > b { color: var(--green-600); font-size: 20px; transition: transform .2s ease; }
.guide-card:hover > b { transform: translateX(4px); }
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 74px; }
.about-image { position: relative; }
.about-image > img { width: 100%; aspect-ratio: 1.22; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; right: -20px; bottom: -24px; display: grid; width: 126px; height: 126px;
  place-items: center; align-content: center; color: var(--white); background: var(--green-600);
  border: 8px solid var(--white); border-radius: 50%; box-shadow: var(--shadow-md);
}
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { font-size: 38px; line-height: 1; }
.about-badge span { margin-top: 3px; font-size: 13px; }
.about-copy > p:not(.section-kicker) { margin: 22px 0 26px; color: var(--muted); }
.about-list { display: grid; gap: 12px; margin-bottom: 30px; }
.about-list span { display: flex; align-items: center; gap: 10px; color: #344941; font-size: 14px; }
.about-list i {
  display: grid; flex: 0 0 auto; width: 21px; height: 21px; place-items: center;
  color: var(--white); background: var(--green-500); border-radius: 50%; font-size: 12px; font-style: normal;
}
.wide-photo { position: relative; min-height: 420px; overflow: hidden; background: var(--green-950); }
.wide-photo::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(6,40,32,.86) 0%,rgba(6,40,32,.42) 58%,rgba(6,40,32,.18) 100%); content: ""; }
.wide-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wide-photo-copy {
  position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center;
  width: min(calc(100% - 40px),var(--container)); min-height: 420px; margin: 0 auto; color: var(--white);
}
.wide-photo-copy span { color: #8be7c5; font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.wide-photo-copy strong { max-width: 620px; margin: 10px 0 24px; font-size: clamp(30px,4vw,50px); line-height: 1.2; letter-spacing: -.04em; }
.wide-photo-copy a { width: fit-content; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.6); font-size: 14px; font-weight: 700; }
.contact { background: var(--green-50); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 64px; }
.contact-info > p:not(.section-kicker) { margin: 20px 0 27px; color: var(--muted); }
.contact-list { display: grid; gap: 18px; margin: 0 0 30px; }
.contact-list > div { display: grid; grid-template-columns: 88px 1fr; gap: 12px; }
.contact-list dt { color: var(--muted); font-size: 13px; }
.contact-list dd { margin: 0; color: #2c423a; font-size: 14px; font-weight: 600; }
.contact-list a:hover { color: var(--green-700); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.contact-map { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-map img { width: 100%; aspect-ratio: 1.62; object-fit: cover; transition: transform .6s ease; }
.contact-map:hover img { transform: scale(1.03); }
.contact-map span {
  position: absolute; right: 18px; bottom: 17px; padding: 9px 13px; color: var(--white);
  background: rgba(7,48,39,.88); border-radius: 999px; font-size: 12px; font-weight: 700; backdrop-filter: blur(8px);
}
.footer { color: rgba(255,255,255,.7); background: var(--green-950); }
.footer-main { display: grid; grid-template-columns: 1.2fr 1fr .7fr; align-items: center; gap: 48px; min-height: 170px; padding: 35px 0; }
.footer-logo { width: auto; height: 31px; padding: 6px 10px; background: #fff; border-radius: 8px; opacity: 1; }
.footer-main p { margin: 11px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; }
.footer-contact span { font-size: 12px; }
.footer-contact a { margin-top: 3px; color: var(--white); font-size: 21px; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 58px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-bottom a:hover { color: var(--white); }
.mobile-action-bar { display: none; }
.back-to-top {
  position: fixed; right: 20px; bottom: 24px; z-index: 80; display: grid; width: 42px; height: 42px;
  padding: 0; place-items: center; color: var(--white); background: var(--green-700); border: 0;
  border-radius: 50%; box-shadow: var(--shadow-md); font-size: 18px; line-height: 1; cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background-color .25s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--green-800); }
@media (max-width: 1120px) {
  .navbar-inner { min-height: 66px; }
  .brand img { height: 34px; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 0;
    padding: 10px 20px 20px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px rgba(13,64,53,.12); opacity: 0; pointer-events: none;
    transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease;
  }
  .nav-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-menu > a:not(.nav-cta) { padding: 13px 6px; border-bottom: 1px solid #edf3f0; }
  .nav-menu > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 13px 0 0; padding: 0 22px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-inner { grid-template-columns: minmax(0,1fr) minmax(310px,.72fr); gap: 34px; }
  .hero h1 { font-size: clamp(46px,6.5vw,64px); }
  .course-grid, .advantage-grid, .coach-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .reviews-layout { grid-template-columns: 1fr; gap: 40px; }
  .reviews-aside > p:not(.section-kicker) { max-width: 620px; }
  .review-score { max-width: 360px; }
}
@media (max-width: 860px) {
  .topbar-item:first-child { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .hero { min-height: auto; }
  .hero-photo img { object-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(6,40,32,.98),rgba(6,40,32,.78) 65%,rgba(6,40,32,.52)); }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 74px 0 110px; }
  .hero-copy { max-width: 630px; }
  .hero-card { max-width: 600px; justify-self: start; }
  .campus-pick { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; } .campus-pick-single { grid-template-columns: 1fr; }
  .campus-pick > a { grid-template-columns: 36px 1fr 16px; border: 1px solid var(--line); border-radius: 12px; }
  .campus-pick > a:last-child { border-bottom: 1px solid var(--line); }
  .hero-scroll { display: none; }
  .metrics { margin-top: -34px; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .metric:nth-child(2)::after { display: none; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .booking-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .booking-copy > p:not(.section-kicker) { max-width: 680px; }
  .booking-form { max-width: 680px; }
  .about-image { max-width: 680px; }
  .about-badge { right: 20px; }
  .contact-info { max-width: 650px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-contact { align-items: flex-start; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px),var(--container)); }
  .section { padding: 76px 0; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading > p { margin-top: 15px; }
  .section-heading .outline-link { margin-top: 16px; }
  .section-heading h2, .booking-copy h2, .reviews-aside h2, .about-copy h2, .contact-info h2 { font-size: 31px; }
  .brand img { height: 29px; }
  .navbar-inner { min-height: 62px; }
  .hero-inner { padding: 64px 0 92px; }
  .hero h1 { font-size: clamp(40px,12vw,52px); }
  .hero-lead { margin: 20px 0 27px; font-size: 16px; }
  .hero-actions .button { flex: 1 1 210px; }
  .hero-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
  .hero-points span { padding-right: 8px; font-size: 11px; line-height: 1.4; }
  .hero-points b { display: block; margin: 0; font-size: 14px; }
  .hero-card-top { padding: 21px 21px 16px; }
  .campus-pick { grid-template-columns: 1fr; padding: 6px 14px; }
  .hero-card-note { margin: 0 14px 14px; }
  .metrics-grid { border-radius: 18px; }
  .metric { padding: 20px 12px; }
  .metric strong { font-size: 25px; }
  .metric span { font-size: 12px; }
  .course-grid, .advantage-grid, .coach-grid, .guide-grid { grid-template-columns: 1fr; }
  .course-image { height: 260px; }
  .campus-image, .campus-grid-single .campus-image { height: 260px; }
  .campus-card { border-radius: 20px; }
  .booking-grid { gap: 34px; }
  .booking-form { padding: 23px 19px 24px; border-radius: 20px; }
  .form-heading { display: block; }
  .form-heading strong { display: block; margin-top: 3px; }
  .form-grid { grid-template-columns: 1fr; gap: 15px; }
  .field-full { grid-column: auto; }
  .advantage-card { min-height: auto; }
  .coach-card { height: 430px; }
  .review-list { grid-template-columns: 1fr; }
  .review-card { min-height: 230px; }
  .guide-card { grid-template-columns: 48px 1fr 20px; padding: 19px; }
  .about-image > img { aspect-ratio: 1.2; }
  .about-badge { width: 105px; height: 105px; right: 12px; bottom: -18px; border-width: 6px; }
  .about-badge strong { font-size: 31px; }
  .wide-photo, .wide-photo-copy { min-height: 360px; }
  .wide-photo::after { background: linear-gradient(90deg,rgba(6,40,32,.92),rgba(6,40,32,.5)); }
  .contact-actions .button { flex: 1 1 150px; }
  .contact-map span { right: 12px; bottom: 12px; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; padding: 38px 0; }
  .footer-bottom { display: grid; justify-content: start; gap: 6px; padding: 16px 0; }
  .back-to-top { right: 14px; bottom: 82px; }
  .mobile-action-bar {
    position: fixed; right: 0; bottom: 0; left: 0; z-index: 90; display: grid;
    grid-template-columns: repeat(2,1fr); padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(13,64,53,.08); backdrop-filter: blur(14px);
  }
  .mobile-action-bar a {
    display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 44px;
    color: var(--green-800); background: var(--green-100); border-radius: 11px; font-size: 14px; font-weight: 700;
  }
  .mobile-action-bar a:last-child { color: var(--white); background: var(--green-600); }
  .mobile-action-bar svg { width: 17px; height: 17px; }
  body { padding-bottom: 68px; }
}
@media (max-width: 430px) {
  .brand img { height: 23px; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-points { grid-template-columns: repeat(2,1fr); }
  .hero-points span:last-child { grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important; animation-duration: .01ms !important;
    animation-iteration-count: 1 !important; transition-duration: .01ms !important;
  }
  .has-js .reveal { opacity: 1; transform: none; }
}





/* WordPress content and article layouts */
.article-page { min-height: 65vh; background: #f5f8f6; }
.article-layout, .article-single { max-width: 980px; }
.article-header { margin-bottom: 36px; }
.article-header h1 { margin: 0; color: var(--green-950); font-size: clamp(32px, 5vw, 52px); line-height: 1.2; letter-spacing: -.04em; }
.article-date { color: var(--muted); }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.article-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.article-card > span { color: var(--green-600); font-size: 12px; font-weight: 700; }
.article-card h2 { margin: 8px 0 12px; font-size: 22px; line-height: 1.4; }
.article-card p { color: var(--muted); }
.prose { padding: 34px; color: #344941; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose h2, .prose h3 { color: var(--green-950); line-height: 1.35; }
.prose a { color: var(--green-700); text-decoration: underline; }
.prose img { height: auto; border-radius: 14px; }
.prose blockquote { margin: 24px 0; padding: 16px 20px; border-left: 4px solid var(--green-500); background: var(--green-50); }
.article-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pagination { margin-top: 32px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers { display: grid; min-width: 40px; height: 40px; place-items: center; padding: 0 10px; color: var(--green-800); background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.pagination .page-numbers.current { color: var(--white); background: var(--green-700); border-color: var(--green-700); }
body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .navbar { top: 46px; }
  .article-grid { grid-template-columns: 1fr; }
  .prose { padding: 24px 20px; }
}


