/* ==========================================================================
   NextGen Learning Academy — shared stylesheet
   Palette: bright blue #2BA8E0 · medium blue #1E6FC0 · deep navy #12296B
   Fonts:   Poppins (display/headings) · Inter (body)
   ========================================================================== */

:root{
  --sky:        #2BA8E0;
  --sky-dark:   #1E8FC2;
  --blue:       #1E6FC0;
  --blue-dark:  #16569A;
  --navy:       #12296B;
  --navy-2:     #0D1E52;
  --tint-1:     #EAF6FD;
  --tint-2:     #DCEEFB;
  --tint-3:     #F4FAFE;
  --white:      #FFFFFF;
  --ink:        #16223F;
  --ink-soft:   #45527A;
  --line:       #DCE6F5;
  --amber:      #F5A623;

  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(18,41,107,.08);
  --shadow-md: 0 10px 30px rgba(18,41,107,.12);
  --shadow-lg: 0 22px 60px rgba(18,41,107,.18);

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
svg{ display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .5em;
  font-weight: 700;
}
p{ margin: 0 0 1em; color: var(--ink-soft); line-height: 1.7; }
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section{ position: relative; }

.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link{
  position: absolute;
  left: 12px; top: -60px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top .2s ease;
  font-weight: 600;
}
.skip-link:focus{ top: 12px; }

:focus-visible{
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* ---------- eyebrow / kicker ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--tint-1);
  border: 1px solid var(--tint-2);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow svg{ width: 14px; height: 14px; }
.eyebrow--light{ background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); color: var(--white); }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn svg{ width: 18px; height: 18px; flex: none; }
.btn--primary{
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost{
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn--ghost:hover{ background: var(--tint-1); transform: translateY(-2px); }
.btn--on-navy{
  background: var(--white);
  color: var(--navy);
}
.btn--on-navy:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost-on-navy{
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn--ghost-on-navy:hover{ background: rgba(255,255,255,.12); }
.btn--sm{ padding: 10px 20px; font-size: .88rem; }
.btn--lg{ padding: 16px 30px; font-size: 1.02rem; }
.btn--block{ width: 100%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand__mark{ width: 160px; height: auto; flex: none; }
.brand__word{ font-family: var(--font-head); line-height: 1.1; }
.brand__word b{
  display: block;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: .02em;
}
.brand__word span{
  display: block;
  color: var(--sky-dark);
  font-weight: 600;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav__links{
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: background-color .15s ease, color .15s ease;
}
.nav__links a:hover{ background: var(--tint-1); color: var(--blue); }
.nav__links a[aria-current="page"]{ background: var(--tint-1); color: var(--blue-dark); }
.nav__actions{ display: flex; align-items: center; gap: 12px; }
.nav__phone{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
}
.nav__phone svg{ width: 18px; height: 18px; color: var(--sky-dark); }

.nav__toggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.nav__toggle svg{ width: 22px; height: 22px; color: var(--navy); }

@media (max-width: 940px){
  .nav__phone{ display: none; }
  .nav__toggle{ display: inline-flex; }
  .nav__links{
    position: fixed;
    inset: 74px 12px auto 12px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    gap: 2px;
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav__links.is-open{ transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .nav__links a{ padding: 14px 16px; }
  .nav__actions .btn{ display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 46%, #0A1740 100%);
  color: var(--white);
  padding: 84px 0 110px;
}
.hero__glow{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 380px at 88% 8%, rgba(43,168,224,.35), transparent 62%),
    radial-gradient(480px 420px at 8% 92%, rgba(30,111,192,.30), transparent 60%);
  pointer-events: none;
}
.hero__stars{ position: absolute; inset: 0; pointer-events: none; opacity: .55; }
.hero .container{ position: relative; }
.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero h1{ color: var(--white); font-size: clamp(2.1rem, 4vw, 3.15rem); }
.hero p.lead{ color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 52ch; }
.hero__cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__stats{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 44px;
  max-width: 560px;
}
.hero__stat{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  padding: 16px 14px;
}
.hero__stat b{ display:block; font-family: var(--font-head); font-size: 1.5rem; color: var(--white); }
.hero__stat span{ display:block; font-size: .8rem; color: rgba(255,255,255,.72); margin-top: 2px; }

.hero__art{ position: relative; }
.hero__card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.hero__card svg{ width: 100%; height: auto; }

.page-hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue-dark) 120%);
  color: var(--white);
  padding: 68px 0 84px;
}
.page-hero__glow{
  position: absolute; inset: 0;
  background: radial-gradient(520px 360px at 92% 0%, rgba(43,168,224,.35), transparent 60%);
  pointer-events: none;
}
.page-hero .container{ position: relative; }
.page-hero h1{ color: var(--white); font-size: clamp(2rem, 3.6vw, 2.7rem); max-width: 20ch; }
.page-hero p.lead{ color: rgba(255,255,255,.86); max-width: 60ch; font-size: 1.06rem; }
.breadcrumb{
  display: flex; gap: 8px; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.72);
  margin-bottom: 18px; font-family: var(--font-head); font-weight: 500;
}
.breadcrumb a{ color: rgba(255,255,255,.9); }
.breadcrumb a:hover{ text-decoration: underline; }

/* ==========================================================================
   Sections / general layout
   ========================================================================== */
.section{ padding: 84px 0; }
.section--tint{ background: var(--tint-3); }
.section--navy{ background: var(--navy); color: var(--white); }
.section--navy h2{ color: var(--white); }
.section--navy p{ color: rgba(255,255,255,.78); }
.section-head{ max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left{ margin: 0 0 44px; text-align: left; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.35rem); }
.section-head p{ font-size: 1.06rem; }

.grid{ display: grid; gap: 26px; min-width: 0; }
.grid > *{ min-width: 0; }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon{
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--tint-1), var(--tint-2));
  color: var(--blue);
  margin-bottom: 18px;
}
.card__icon svg{ width: 28px; height: 28px; }
.card h3{ font-size: 1.14rem; margin-bottom: 10px; }
.card p{ font-size: .96rem; margin-bottom: 0; }
.card ul{ margin-top: 12px; display: grid; gap: 8px; }
.card ul li{
  font-size: .92rem; color: var(--ink-soft);
  display: flex; gap: 8px; align-items: flex-start;
}
.card ul li svg{ width: 16px; height: 16px; color: var(--sky-dark); margin-top: 3px; flex: none; }

.tag-row{ display: flex; flex-wrap: wrap; gap: 10px; }
.tag{
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--tint-1);
  color: var(--blue-dark);
  border: 1px solid var(--tint-2);
}

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse{ direction: rtl; }
.split.reverse > *{ direction: ltr; }

.list-check{ display: grid; gap: 14px; margin: 22px 0; }
.list-check li{
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem; color: var(--ink);
}
.list-check svg{
  width: 24px; height: 24px; flex: none;
  color: var(--white); background: var(--sky);
  border-radius: 50%; padding: 5px;
}

.stat-strip{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  padding: 40px 0;
}
.stat{ text-align: center; }
.stat b{
  display: block; font-family: var(--font-head);
  font-size: clamp(1.7rem,3vw,2.3rem); color: var(--navy);
}
.stat span{ display:block; color: var(--ink-soft); font-size: .92rem; margin-top: 4px; }
.section--navy .stat b{ color: var(--white); }
.section--navy .stat span{ color: rgba(255,255,255,.72); }

.art-frame{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, var(--tint-1), var(--tint-2));
}
.art-frame img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.pill-note{
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--tint-1); border: 1px solid var(--tint-2);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: .92rem; color: var(--blue-dark);
  font-weight: 500;
}
.pill-note svg{ width: 20px; height: 20px; flex: none; color: var(--sky-dark); }

blockquote.quote{
  margin: 0;
  padding: 28px 30px;
  background: var(--white);
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
}
blockquote.quote cite{
  display:block; margin-top: 14px; font-size: .82rem;
  color: var(--ink-soft); font-style: normal; font-weight: 600;
}

/* timeline */
.timeline{ display: grid; gap: 0; }
.timeline__item{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
}
.timeline__rail{
  display: flex; flex-direction: column; align-items: center;
}
.timeline__dot{
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
  flex: none;
}
.timeline__line{ width: 2px; flex: 1; background: var(--line); margin: 6px 0; }
.timeline__item:last-child .timeline__line{ display: none; }
.timeline__body{ padding-bottom: 34px; }
.timeline__body h3{ font-size: 1.08rem; margin-bottom: 6px; }
.timeline__body p{ font-size: .95rem; margin-bottom: 0; }

/* value grid on about */
.value-card{
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.value-card:last-child{ border-bottom: none; }
.value-card__icon{
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  background: linear-gradient(135deg, var(--tint-1), var(--tint-2));
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.value-card__icon svg{ width: 24px; height: 24px; }
.value-card h3{ font-size: 1.02rem; margin-bottom: 4px; }
.value-card p{ font-size: .92rem; margin-bottom: 0; }

/* founder */
.founder{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
}
.founder__photo{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.founder__photo svg, .founder__photo img{ width: 100%; height: auto; aspect-ratio: 1/1; }

/* FAQ / accordion */
.accordion{ display: grid; gap: 14px; }
.accordion details{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px 22px;
  box-shadow: var(--shadow-sm);
}
.accordion summary{
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
}
.accordion summary::-webkit-details-marker{ display: none; }
.accordion summary svg{ width: 20px; height: 20px; color: var(--sky-dark); transition: transform .2s ease; flex: none; }
.accordion details[open] summary svg{ transform: rotate(180deg); }
.accordion .accordion__answer{ padding: 0 0 20px; }
.accordion .accordion__answer p{ margin-bottom: 0; font-size: .96rem; }

/* CTA banner */
.cta-banner{
  background: linear-gradient(135deg, var(--sky), var(--blue) 55%, var(--navy));
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2{ color: var(--white); margin-bottom: 8px; font-size: clamp(1.5rem,2.6vw,2rem); }
.cta-banner p{ color: rgba(255,255,255,.88); margin-bottom: 0; max-width: 46ch; }
.cta-banner__actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* map */
.map-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* contact page layout */
.contact-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-grid > *{ min-width: 0; }
.contact-info{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.contact-info__row{
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.contact-info__row:last-child{ border-bottom: none; }
.contact-info__row > div:last-child{ min-width: 0; }
.contact-info__row a, .contact-info__row address{ overflow-wrap: anywhere; }
.contact-info__icon{
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--tint-1), var(--tint-2));
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg{ width: 21px; height: 21px; }
.contact-info__row h3{ font-size: .92rem; margin: 0 0 4px; color: var(--navy); font-family: var(--font-head); }
.contact-info__row a, .contact-info__row address{ font-size: .95rem; color: var(--ink-soft); font-style: normal; line-height: 1.55; }
.contact-info__row a:hover{ color: var(--blue); text-decoration: underline; }

.form-panel{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.form{ display: grid; gap: 18px; }
.form__row{ display: grid; gap: 18px; grid-template-columns: 1fr; }
.form__row--2{ grid-template-columns: 1fr 1fr; }
.field{ display: grid; gap: 7px; }
.field label{ font-family: var(--font-head); font-size: .88rem; font-weight: 600; color: var(--navy); }
.field .req{ color: var(--sky-dark); }
.field input, .field select, .field textarea{
  font-family: var(--font-body);
  font-size: .96rem;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--tint-3);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s ease, background-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--sky);
  background: var(--white);
}
.field textarea{ resize: vertical; min-height: 130px; }
.form__note{ font-size: .82rem; color: var(--ink-soft); margin: 4px 0 0; }
.form__status{
  background: var(--tint-1);
  border: 1px solid var(--tint-2);
  color: var(--blue-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 64px 0 26px;
}
.footer__top{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer__brand{ display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer__brand b{ display: block; color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; }
.footer__brand span{ display: block; color: var(--sky); font-family: var(--font-head); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.footer__logo-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.footer__logo-chip img{ display: block; width: 90px; height: auto; }
.footer p{ color: rgba(255,255,255,.68); font-size: .92rem; }
.footer h4{ color: var(--white); font-family: var(--font-head); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul{ display: grid; gap: 12px; }
.footer ul a{ font-size: .92rem; color: rgba(255,255,255,.72); transition: color .15s ease; }
.footer ul a:hover{ color: var(--sky); }
.footer address{ font-style: normal; }
.footer__contact li{ display: flex; gap: 10px; align-items: flex-start; min-width: 0; }
.footer__contact li > *:last-child{ min-width: 0; overflow-wrap: anywhere; }
.footer__contact svg{ width: 17px; height: 17px; flex: none; color: var(--sky); margin-top: 2px; }
.footer__top > *{ min-width: 0; }
.footer__bottom{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 26px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer__bottom a{ color: rgba(255,255,255,.68); }
.footer__bottom a:hover{ color: var(--sky); }
.footer__legal{ display: flex; gap: 18px; flex-wrap: wrap; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.mt-0{ margin-top: 0; } .mb-0{ margin-bottom: 0; }
.mt-5{ margin-top: 20px; }
.small{ font-size: .9rem; }
.soft{ color: var(--ink-soft); }
.center{ text-align: center; }
.max-56{ max-width: 56ch; }
.max-64{ max-width: 64ch; margin-left:auto; margin-right:auto; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1040px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__art{ order: -1; max-width: 460px; margin: 0 auto; }
  .split{ grid-template-columns: 1fr; }
  .split.reverse{ direction: ltr; }
  .split.reverse .split__art{ order: -1; }
  .grid--4{ grid-template-columns: repeat(2,1fr); }
  .grid--3{ grid-template-columns: repeat(2,1fr); }
  .footer__top{ grid-template-columns: 1fr 1fr; }
  .stat-strip{ grid-template-columns: repeat(2,1fr); }
  .founder{ grid-template-columns: 1fr; }
  .founder__photo{ max-width: 300px; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .container{ padding: 0 18px; }
  .section{ padding: 60px 0; }
  .hero{ padding: 56px 0 74px; }
  .page-hero{ padding: 50px 0 60px; }
  .grid--2, .grid--3, .grid--4{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr; gap: 30px; }
  .hero__stats{ grid-template-columns: 1fr 1fr; }
  .stat-strip{ grid-template-columns: 1fr 1fr; }
  .cta-banner{ padding: 36px 26px; flex-direction: column; align-items: flex-start; }
  .form__row--2{ grid-template-columns: 1fr; }
  .footer__bottom{ flex-direction: column; align-items: flex-start; }
  .nav{ padding: 12px 0; }
  .brand__word b{ font-size: 1.02rem; }
  .brand__mark{ width: 120px; }
}
