/* ============================================================
   寰宇未莱 HUANYU FUTURE — Premium study-abroad landing
   Design language: deep ink + champagne gold, cinematic,
   generous negative space, refined serif/sans pairing.
   ============================================================ */

:root {
  /* Palette */
  --ink-900: #07090f;   /* near-black base */
  --ink-800: #0b0e16;
  --ink-700: #11151f;
  --ink-600: #161b27;
  --line:    rgba(255, 255, 255, 0.10);
  --line-2:  rgba(255, 255, 255, 0.16);

  --white:   #f6f4ef;
  --mute:    #9aa0ad;
  --mute-2:  #6c727f;

  /* Champagne gold accent */
  --gold:    #c9a86a;
  --gold-2:  #e3c98c;
  --gold-soft: rgba(201, 168, 106, 0.14);

  /* Type */
  --serif: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --serif-zh: "Noto Serif SC", "Songti SC", serif;
  --sans: "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1280px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Remove the translucent blue box mobile WebKit/Chrome paints over a tapped
   link/button — the "flash panel" felt when touching the site. */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--ink-900);
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--ink-900); }

/* Fine film grain for cinematic texture */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  --pad-y: 14px; --pad-x: 34px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--pad-y) var(--pad-x);
  font-size: 14px; font-weight: 400; letter-spacing: 0.14em;
  border-radius: 2px;
  transition: color .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden; white-space: nowrap;
}
.btn::after { /* sweep fill */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
/* Hover sweeps/lifts are gated to true-hover (pointer) devices so a tap on a
   touch screen doesn't leave them "stuck" until you tap elsewhere. */
@media (hover: hover) { .btn:hover::after { transform: translateY(0); } }

.btn--solid { background: var(--gold); color: var(--ink-900); }
.btn--solid::after { background: var(--gold-2); }
.btn--solid:hover { color: var(--ink-900); }

.btn--outline { border: 1px solid rgba(255,255,255,.55); color: var(--white); }
@media (hover: hover) { .btn--outline:hover { color: var(--ink-900); border-color: var(--gold); } }

.btn--ghost {
  border: 1px solid var(--line-2); color: var(--white);
  --pad-y: 10px; --pad-x: 22px; font-size: 13px; border-radius: 999px;
}
@media (hover: hover) { .btn--ghost:hover { color: var(--ink-900); border-color: var(--gold); } }

/* ----------------------------- Shared headings ----------------------------- */
.eyebrow {
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 22px;
}
.section__title {
  font-family: var(--serif-zh);
  font-weight: 500; line-height: 1.18;
  font-size: clamp(30px, 4.4vw, 56px);
  letter-spacing: 0.02em;
}
.section__lead {
  margin-top: 22px; max-width: 620px;
  color: var(--mute); font-size: 16px; font-weight: 300; letter-spacing: .02em;
}
.section { padding: clamp(90px, 12vh, 160px) 0; position: relative; }
.section__head { margin-bottom: 64px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  position: relative;
  height: 100%; max-width: 1440px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center;
}
.nav__links { display: flex; gap: 30px; flex-shrink: 0; }
.nav__links a {
  font-size: 14px; font-weight: 300; letter-spacing: .12em; color: rgba(246,244,239,.86);
  position: relative; padding: 6px 0; white-space: nowrap; transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__brand {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  text-align: center; display: flex; flex-direction: column; align-items: center;
  line-height: 1; white-space: nowrap;
}
.nav__brand-zh { font-family: var(--serif-zh); font-weight: 600; font-size: 21px; letter-spacing: .28em; padding-left: .28em; }
.nav__brand-en { font-size: 8.5px; letter-spacing: .5em; color: var(--gold); margin-top: 5px; padding-left: .5em; }

.nav__cluster-right { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.nav__icon { color: rgba(246,244,239,.8); display: grid; place-items: center; transition: color .3s var(--ease); }
.nav__icon:hover { color: var(--gold); }
.nav__cta { margin-left: 6px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav__burger span { height: 1.5px; width: 100%; background: var(--white); transition: transform .4s var(--ease), opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 999;
  background: rgba(7,9,15,.97); backdrop-filter: blur(20px);
  padding: 30px 40px 44px; border-bottom: 1px solid var(--line);
  transform: translateY(-120%); transition: transform .55s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
}
.drawer.is-open { transform: translateY(0); }
.drawer__links { display: flex; flex-direction: column; }
.drawer__links a {
  font-family: var(--serif-zh); font-size: 22px; font-weight: 400; letter-spacing: .1em;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.drawer__cta { margin-top: 26px; align-self: flex-start; }
/* The drawer is a mobile-only affordance; never show it once the full nav is back */
@media (min-width: 1201px) { .drawer { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  isolation: isolate; /* contain per-slide media z-index so a video scrim never covers the shared hero CTA/dots */
  transition: opacity 1.2s var(--ease), visibility 1.2s var(--ease);
}
.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__media {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7,9,15,.55) 0%, rgba(7,9,15,.25) 38%, rgba(7,9,15,.72) 88%, var(--ink-900) 100%),
    radial-gradient(120% 80% at 70% 18%, rgba(40,52,82,.55), transparent 60%),
    var(--img, none),
    linear-gradient(135deg, #131a2b 0%, #0a0d16 55%, #0c1119 100%);
  background-size: cover; background-position: center;
  transform: scale(1.08);
}
.hero__slide.is-active .hero__media { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }

/* A slide's media can be a looping background <video> instead of an image.
   js/main.js builds either one from the HERO_SLIDES config; same sizing + ken-burns. */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08); background: #0a0d16; z-index: 0;
}
.hero__slide.is-active .hero__video { animation: kenburns 9s ease-out forwards; }
/* Darkening scrim for video slides — images carry this gradient inside .hero__media,
   but a video does not, so the headline keeps the same legibility over both. */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,9,15,.55) 0%, rgba(7,9,15,.25) 38%, rgba(7,9,15,.72) 88%, var(--ink-900) 100%),
    radial-gradient(120% 80% at 70% 18%, rgba(40,52,82,.55), transparent 60%);
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-active .hero__video { animation: none; transform: scale(1); }
}

.hero__content {
  position: absolute; left: 0; right: 0; bottom: 200px;
  margin: 0 auto; max-width: 1440px; padding: 0 40px;
}
.hero__eyebrow {
  font-size: 12px; letter-spacing: .42em; color: var(--gold-2); text-transform: uppercase;
  margin-bottom: 26px; opacity: 0; animation: heroUp .9s var(--ease) .2s forwards;
}
.hero__title {
  font-family: var(--serif-zh); font-weight: 500;
  font-size: clamp(44px, 7vw, 96px); line-height: 1.08; letter-spacing: .03em;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
  opacity: 0; animation: heroUp 1s var(--ease) .34s forwards;
}
.hero__title-accent { color: var(--gold); }
.hero__sub {
  margin-top: 28px; font-size: clamp(15px, 1.5vw, 19px); font-weight: 300;
  letter-spacing: .12em; color: rgba(246,244,239,.82);
  opacity: 0; animation: heroUp 1s var(--ease) .5s forwards;
}
@keyframes heroUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }

.hero__cta {
  position: absolute; left: 0; right: 0; bottom: 108px;
  margin: 0 auto; max-width: 1440px; padding: 0 40px;
  display: flex; gap: 16px;
  opacity: 0; animation: heroUp 1s var(--ease) .66s forwards;
}

.hero__dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 56px; display: flex; gap: 14px; z-index: 5; }
.hero__dot { width: 30px; height: 3px; background: rgba(255,255,255,.28); border-radius: 2px; transition: background .4s var(--ease); overflow: hidden; position: relative; }
.hero__dot.is-active { background: rgba(255,255,255,.28); }
.hero__dot.is-active::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform-origin: left; animation: dotFill 6s linear forwards;
}
@keyframes dotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero__scroll {
  position: absolute; right: 40px; bottom: 56px; display: flex; flex-direction: column;
  align-items: center; gap: 12px; color: var(--mute); z-index: 5;
}
.hero__scroll span { writing-mode: vertical-rl; font-size: 11px; letter-spacing: .35em; text-transform: uppercase; }
.hero__scroll i { width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -54px; left: 0; width: 100%; height: 54px; background: var(--gold); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { to { top: 54px; } }

/* ============================================================
   GLOBAL REACH
   ============================================================ */
.section--reach { background: linear-gradient(180deg, var(--ink-900), var(--ink-800)); }
.reach__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.country {
  background: var(--ink-800); padding: 38px 32px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .5s var(--ease), transform .5s var(--ease);
  position: relative;
}
.country::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
@media (hover: hover) {
  .country:hover { background: var(--ink-600); }
  .country:hover::before { transform: scaleX(1); }
}
.country__flag { font-size: 34px; line-height: 1; margin-bottom: 10px; }
.country__name { font-family: var(--serif-zh); font-size: 22px; font-weight: 500; letter-spacing: .04em; }
.country__meta { font-size: 13px; color: var(--mute-2); letter-spacing: .04em; }
.country--more { background: linear-gradient(135deg, var(--gold-soft), var(--ink-800)); justify-content: center; }
.country__more-num { font-family: var(--serif); font-size: 46px; font-weight: 500; color: var(--gold); line-height: 1; }

/* ============================================================
   SERVICES
   ============================================================ */
.section--services { background: var(--ink-800); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  border: 1px solid var(--line); border-radius: 3px; padding: 46px 40px 50px;
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
  transition: border-color .5s var(--ease), transform .5s var(--ease), background .5s var(--ease);
  position: relative; overflow: hidden;
}
.svc::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 160px; height: 160px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%); opacity: 0; transition: opacity .5s var(--ease);
}
@media (hover: hover) {
  .svc:hover { border-color: var(--line-2); transform: translateY(-6px); background: linear-gradient(180deg, rgba(255,255,255,.04), transparent); }
  .svc:hover::after { opacity: 1; }
}
.svc__num { font-family: var(--serif); font-size: 16px; letter-spacing: .2em; color: var(--gold); }
.svc__title { font-family: var(--serif-zh); font-size: 27px; font-weight: 500; margin: 18px 0 14px; letter-spacing: .04em; }
.svc__text { color: var(--mute); font-size: 15px; font-weight: 300; }

/* ============================================================
   STATS
   ============================================================ */
.section--stats {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(40,52,82,.4), transparent 55%),
    var(--ink-900);
  text-align: center;
}
.section--stats .section__head { text-align: center; }
.section--stats .section__lead { margin-left: auto; margin-right: auto; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 30px; }
.stat { padding: 30px 16px; border-top: 1px solid var(--line); }
.stat__num {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(46px, 6vw, 78px); line-height: 1; color: var(--white);
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.stat__num::first-letter { color: inherit; }
.stat__label { display: block; margin-top: 16px; font-size: 14px; letter-spacing: .14em; color: var(--mute); }

/* ============================================================
   TOP SCHOOLS
   ============================================================ */
.section--schools { background: linear-gradient(180deg, var(--ink-900), var(--ink-800)); }
.schools__list {
  display: flex; flex-wrap: wrap; gap: 14px 0; justify-content: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 50px 0;
}
.schools__list li {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 38px); font-weight: 400;
  letter-spacing: .04em; color: rgba(246,244,239,.6);
  padding: 6px 38px; position: relative; transition: color .4s var(--ease);
}
.schools__list li:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 22px; background: var(--line); }
.schools__list li:hover { color: var(--gold-2); }

.testimonial { max-width: 860px; margin: 80px auto 0; text-align: center; }
.testimonial blockquote {
  font-family: var(--serif-zh); font-size: clamp(20px, 2.6vw, 31px); font-weight: 400;
  line-height: 1.65; letter-spacing: .02em; color: var(--white); position: relative;
}
.testimonial blockquote::before {
  content: "“"; font-family: var(--serif); font-size: 90px; color: var(--gold);
  position: absolute; top: -46px; left: 50%; transform: translateX(-50%); opacity: .5;
}
.testimonial figcaption { margin-top: 34px; display: flex; flex-direction: column; gap: 4px; }
.testimonial__name { font-size: 16px; letter-spacing: .1em; }
.testimonial__meta { font-size: 13px; color: var(--gold); letter-spacing: .1em; }

/* ============================================================
   OFFLINE CENTERS
   ============================================================ */
.section--centers {
  background:
    radial-gradient(70% 100% at 50% 120%, rgba(40,52,82,.45), transparent 60%),
    linear-gradient(180deg, var(--ink-800), var(--ink-900));
  text-align: center;
}
.section--centers .section__head { text-align: center; }
.section--centers .section__lead { margin-left: auto; margin-right: auto; }
.centers__cities {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 22px; margin-top: 8px;
}
.centers__cities span {
  font-family: var(--serif-zh); font-size: clamp(24px, 3.6vw, 46px); font-weight: 400;
  letter-spacing: .08em; color: rgba(246,244,239,.42);
  transition: color .4s var(--ease), transform .4s var(--ease); cursor: default;
}
@media (hover: hover) { .centers__cities span:hover { color: var(--white); transform: translateY(-3px); } }
.centers__cities .centers__overseas { color: var(--gold); opacity: .8; }
.centers__cities .centers__overseas:hover { color: var(--gold-2); }
.centers__note { margin-top: 46px; font-size: 14px; letter-spacing: .16em; color: var(--mute); }

/* ============================================================
   CONSULTATION
   ============================================================ */
.section--consult {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(201,168,106,.12), transparent 50%),
    var(--ink-900);
}
.consult__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.consult__copy .section__lead { margin-top: 26px; }

.consult__form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label { font-size: 13px; letter-spacing: .14em; color: var(--mute); }
.field input, .field select {
  font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--white);
  background: transparent; border: none; border-bottom: 1px solid var(--line-2);
  padding: 12px 2px; transition: border-color .4s var(--ease);
}
.field input::placeholder { color: var(--mute-2); }
.field input:focus, .field select:focus { outline: none; border-bottom-color: var(--gold); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--ink-700); color: var(--white); }
.field textarea {
  font-family: var(--sans); font-size: 14.5px; font-weight: 300; color: var(--white); line-height: 1.7;
  background: transparent; border: 1px solid var(--line-2); border-radius: 4px;
  padding: 11px 14px; resize: vertical; min-height: 76px; transition: border-color .4s var(--ease);
}
.field textarea::placeholder { color: var(--mute-2); }
.field textarea:focus { outline: none; border-color: var(--gold); }
.consult__submit { margin-top: 14px; align-self: flex-start; }
.consult__hint { font-size: 12.5px; color: var(--mute-2); letter-spacing: .06em; }
.consult__hint.is-success { color: var(--gold-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-900); border-top: 1px solid var(--line); padding: 80px 0 40px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 60px; }
.footer__brand { display: flex; flex-direction: column; }
.footer__zh { font-family: var(--serif-zh); font-size: 28px; font-weight: 600; letter-spacing: .22em; }
.footer__en { font-size: 10px; letter-spacing: .5em; color: var(--gold); margin-top: 8px; }
.footer__slogan { margin-top: 22px; color: var(--mute); font-size: 14px; letter-spacing: .04em; }

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer__col h4 { font-size: 13px; letter-spacing: .16em; color: var(--white); margin-bottom: 20px; font-weight: 500; }
.footer__col a { display: block; font-size: 14px; color: var(--mute); padding: 7px 0; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  max-width: var(--maxw); margin: 60px auto 0; padding: 28px 40px 0;
  border-top: 1px solid var(--line); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--mute-2); letter-spacing: .05em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--d, 0) * 70ms); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .reach__grid { grid-template-columns: repeat(3, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .consult__inner { grid-template-columns: 1fr; gap: 50px; }
  .footer__inner { grid-template-columns: 1fr; gap: 44px; }
}

/* Collapse the full horizontal nav to the burger/drawer before the flanking
   links would crowd the absolutely-centred brand. */
@media (max-width: 1200px) {
  .nav__links--left, .nav__links--right { display: none; }
  .nav__cta { display: none; }
  .nav__icon { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 860px) {
  .container { padding: 0 26px; }
  .nav__inner { padding: 0 26px; }

  .hero__content { bottom: 220px; }
  .hero__cta { flex-direction: column; align-items: flex-start; bottom: 110px; }
  .hero__cta .btn { width: auto; }
  .hero__scroll { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { padding: 28px 26px 0; }
}

@media (max-width: 560px) {
  .reach__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .schools__list li { padding: 4px 20px; }
  .hero__content { bottom: 240px; }
  .section__head { margin-bottom: 44px; }
}
