/* ==========================================================================
   EDUVIUM — Enterprise Redesign v3
   Calmer, higher-contrast, built to be read.
   ========================================================================== */
@import url("fonts.css");

:root {
  --navy: #071018;
  --navy-2: #0C1826;
  --navy-3: #142433;
  --ink: #121820;
  --blue: #1A56DB;
  --blue-deep: #0C348C;
  --gold: #B8922A;
  --gold-2: #D4B056;
  --gold-soft: #F4EDD8;
  --cream: #F3F1EB;
  --paper: #F8F7F4;
  --white: #FFFFFF;
  --text: #2A3340;
  --muted: #4E5968;
  --line: #DDD7CB;
  --line-soft: #EBE6DC;
  --success: #1A6B60;
  --danger: #9B1C1C;

  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(7,16,24,.04);
  --shadow-md: 0 8px 24px -10px rgba(7,16,24,.12);
  --shadow-lg: 0 22px 48px -18px rgba(7,16,24,.22);
  --shadow-gold: 0 8px 20px -8px rgba(184,146,42,.35);

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 20px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 80px;
  --wrap: 1140px;
  --wrap-wide: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  font-size: 17.5px;
  line-height: 1.75;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5,h6 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 650;
}
p { margin: 0 0 1.05em; }
svg { display: block; }

::selection { background: #E8D7A0; color: var(--ink); }

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

.wrap { width: min(var(--wrap), calc(100% - 56px)); margin: 0 auto; }
.wrap-wide { width: min(var(--wrap-wide), calc(100% - 48px)); margin: 0 auto; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.site-header .wrap-wide {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(var(--wrap-wide), calc(100% - 40px));
}
.logo { display: flex; align-items: center; }
.logo img { height: 42px; width: auto; }
.logo .logo-dark { display: none; }
.logo .logo-light { display: block; }

.nav { display: flex; align-items: center; justify-content: center; gap: 0; }
.nav a {
  position: relative;
  font-size: 15px; font-weight: 500; letter-spacing: .01em;
  padding: 10px 13px; color: rgba(255,255,255,.86);
  transition: color .2s;
}
.nav a:hover, .nav a.is-active { color: #fff; }
.nav a.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 1.5px; background: var(--gold-2);
}

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600;
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold-2); }

.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 18px; height: 1.6px; background: #fff; display: block; transition: .25s; }

.site-header.is-solid,
.site-header.theme-light {
  background: rgba(248,247,244,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-solid .logo .logo-light,
.site-header.theme-light .logo .logo-light { display: none; }
.site-header.is-solid .logo .logo-dark,
.site-header.theme-light .logo .logo-dark { display: block; }
.site-header.is-solid .nav a,
.site-header.theme-light .nav a { color: var(--ink); }
.site-header.is-solid .nav a.is-active,
.site-header.theme-light .nav a.is-active,
.site-header.is-solid .nav a:hover,
.site-header.theme-light .nav a:hover { color: var(--blue-deep); }
.site-header.is-solid .header-phone,
.site-header.theme-light .header-phone { color: var(--ink); }
.site-header.is-solid .menu-toggle,
.site-header.theme-light .menu-toggle { border-color: var(--line); }
.site-header.is-solid .menu-toggle span,
.site-header.theme-light .menu-toggle span { background: var(--ink); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 79;
  background: var(--navy);
  padding: 20px 24px 40px;
  display: none; flex-direction: column; gap: 0;
  overflow: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: #fff; font-size: 20px; font-weight: 500;
  padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.08);
  line-height: 1.3;
}
.mobile-nav .btn { margin-top: 22px; justify-content: center; }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  letter-spacing: .01em; padding: 13px 22px; border-radius: 8px;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1.2;
}
.btn svg { width: 16px; height: 16px; }
.btn-gold {
  background: var(--gold);
  color: #16120A !important;
  box-shadow: none;
}
.btn-gold:hover { background: #C9A334; }
.btn-navy {
  background: var(--navy); color: #fff !important;
}
.btn-navy:hover { background: var(--navy-3); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.45); color: #fff !important;
  background: transparent;
}
.btn-ghost:hover { background: #fff; color: var(--navy) !important; }
.btn-line {
  border: 1.5px solid var(--ink); color: var(--ink) !important; background: transparent;
}
.btn-line:hover { background: var(--ink); color: #fff !important; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.8) contrast(1.04) brightness(.92);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,16,24,.55) 0%, rgba(7,16,24,.28) 34%, rgba(7,16,24,.82) 76%, rgba(7,16,24,.96) 100%),
    linear-gradient(90deg, rgba(7,16,24,.62) 0%, rgba(7,16,24,.2) 58%, rgba(7,16,24,.45) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(var(--wrap-wide), calc(100% - 48px));
  margin: 0 auto;
  padding: 148px 0 80px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: end;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-2);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2);
}
.eyebrow.dark { color: #8A6E1C; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.55rem, 5vw, 4.5rem);
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: #F4E7BE; }
.hero-lead {
  font-size: 18.5px; line-height: 1.7; color: rgba(255,255,255,.9);
  max-width: 44ch; margin-bottom: 28px; font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-metrics {
  display: flex; gap: 32px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-metrics b {
  display: block; font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  color: #fff; letter-spacing: -0.02em; line-height: 1.15;
}
.hero-metrics span {
  font-size: 13px; color: rgba(255,255,255,.72); letter-spacing: .02em;
  display: block; margin-top: 3px;
}

.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 28px 26px 24px;
}
.hero-card h3 {
  color: #fff; font-size: 20px; font-weight: 650; margin-bottom: 8px; line-height: 1.3;
}
.hero-card > p { color: rgba(255,255,255,.78); font-size: 15.5px; line-height: 1.6; margin-bottom: 18px; }
.hc-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hc-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(212,176,86,.18); color: var(--gold-2);
  display: grid; place-items: center;
}
.hc-ico svg { width: 18px; height: 18px; }
.hc-row strong { display: block; color: #fff; font-size: 15px; font-weight: 650; line-height: 1.3; }
.hc-row span { display: block; color: rgba(255,255,255,.7); font-size: 13.5px; line-height: 1.45; margin-top: 2px; }
.hero-card .btn { width: 100%; margin-top: 18px; }

/* --------------------------------------------------------------------------
   MARQUEE / TRUST
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0 22px;
  overflow: hidden;
}
.marquee-label {
  text-align: center; color: rgba(255,255,255,.5);
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 12px;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: slide 42s linear infinite;
}
.marquee-track span {
  color: rgba(255,255,255,.82);
  font-family: var(--font-serif);
  font-size: 19px;
  white-space: nowrap;
}
.marquee-track span i {
  font-style: normal; color: var(--gold-2); margin: 0 18px; opacity: .75;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   SECTIONS
   -------------------------------------------------------------------------- */
.sec { padding: 96px 0; }
.sec-soft { background: var(--cream); }
.sec-white { background: #fff; }
.sec-navy { background: var(--navy); color: #fff; }
.sec-navy h2, .sec-navy h3, .sec-navy h4 { color: #fff; }

.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.95rem, 3.2vw, 2.75rem);
  line-height: 1.18;
  margin-bottom: 14px;
}
.sec-head h2 em { font-style: italic; color: #8A6E1C; }
.sec-navy .sec-head h2 em { color: var(--gold-2); }
.sec-head p {
  color: var(--text); font-size: 18px; line-height: 1.7; margin: 0;
  max-width: 52ch;
}
.sec-head.center p { margin-left: auto; margin-right: auto; }
.sec-navy .sec-head p { color: rgba(255,255,255,.82); }

/* --------------------------------------------------------------------------
   SERVICE CARDS
   -------------------------------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  transition: border-color .25s, box-shadow .25s;
}
.card:hover { box-shadow: var(--shadow-md); border-color: #D0C4A6; }
.card-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-soft); color: #7A6116;
  display: grid; place-items: center; margin-bottom: 20px;
}
.card-ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 20px; font-weight: 650; margin-bottom: 10px; line-height: 1.3; }
.card p { color: var(--text); font-size: 16px; line-height: 1.65; margin-bottom: 18px; }
.link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 650; font-size: 14.5px; color: var(--blue-deep);
}
.link svg { width: 16px; height: 16px; transition: transform .25s; }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.link:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   STEPS
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 22px; position: relative; }
.step { position: relative; padding-top: 4px; }
.step-n {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy);
  color: #F4E7BE; font-family: var(--font-serif); font-size: 20px;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h4 { font-size: 17.5px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.step p { color: var(--text); font-size: 15.5px; line-height: 1.6; margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: 56px; right: -14px;
  border-top: 1px solid #D5CDBE;
}

/* --------------------------------------------------------------------------
   STAT BAND
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 400; color: #fff; line-height: 1.05;
  letter-spacing: -0.025em;
}
.stat span {
  display: block; margin-top: 8px;
  color: rgba(255,255,255,.72); font-size: 15px; font-weight: 500;
}
.stat.ink b { color: var(--ink); }
.stat.ink span { color: var(--muted); }

/* --------------------------------------------------------------------------
   STREAMS
   -------------------------------------------------------------------------- */
.streams { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stream {
  position: relative; min-height: 228px; border-radius: 14px; overflow: hidden;
  display: flex; align-items: flex-end; color: #fff;
}
.stream img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.stream:hover img { transform: scale(1.05); }
.stream .ov {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,16,24,.08) 20%, rgba(7,16,24,.82) 100%);
}
.stream .in { position: relative; z-index: 2; padding: 22px; }
.stream .tag {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
}
.stream h3 { color: #fff; font-size: 22px; font-weight: 650; margin: 6px 0 0; }

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px 26px;
}
.quote .mark {
  font-family: var(--font-serif); font-size: 48px; line-height: .65;
  color: var(--gold); margin-bottom: 8px;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }
.quote p { font-size: 16.5px; color: var(--ink); line-height: 1.65; margin-bottom: 20px; }
.who { display: flex; align-items: center; gap: 12px; }
.ava {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; color: #fff; font-size: 13px;
  background: var(--navy-3);
}
.who b { display: block; font-size: 15px; color: var(--ink); line-height: 1.3; }
.who span { font-size: 13px; color: var(--muted); }

/* --------------------------------------------------------------------------
   BLOG CARDS
   -------------------------------------------------------------------------- */
.posts { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; }
.post {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, border-color .25s;
}
.post:hover { box-shadow: var(--shadow-md); border-color: #D0C4A6; }
.post-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-2); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post:hover .post-thumb img { transform: scale(1.04); }
.post-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post .cat {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: #8A6E1C; margin-bottom: 10px;
}
.post h3 { font-size: 18.5px; font-weight: 650; line-height: 1.35; margin-bottom: 10px; }
.posts .post:first-child h3 { font-size: 24px; line-height: 1.28; }
.post p { color: var(--text); font-size: 15.5px; line-height: 1.6; flex: 1; }
.post .meta { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* --------------------------------------------------------------------------
   CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--navy);
  border-radius: 16px;
  padding: 52px 48px;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 36px; align-items: center;
  color: #fff;
}
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 400; color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.5rem); line-height: 1.2; margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,.84); margin-bottom: 20px; max-width: 46ch; font-size: 17px; line-height: 1.65; }
.cta-checks { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.cta-checks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14.5px; color: rgba(255,255,255,.86);
}
.cta-checks svg { width: 16px; height: 16px; color: var(--gold-2); }
.cta-side {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 24px;
}
.cta-side label { display: block; font-size: 13px; color: rgba(255,255,255,.72); margin-bottom: 6px; font-weight: 500; }
.cta-side input, .cta-side select {
  width: 100%; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18); color: #fff;
  border-radius: 8px; padding: 12px 14px; margin-bottom: 12px;
  font-family: inherit; font-size: 16px;
}
.cta-side input::placeholder { color: rgba(255,255,255,.42); }
.cta-side option { color: var(--ink); }

/* --------------------------------------------------------------------------
   PAGE HERO (inner)
   -------------------------------------------------------------------------- */
.phero {
  background: var(--navy);
  color: #fff;
  padding: 152px 0 72px;
  position: relative; overflow: hidden;
}
.phero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(560px 260px at 88% 18%, rgba(26,86,219,.22), transparent 62%),
    radial-gradient(460px 220px at 8% 86%, rgba(184,146,42,.1), transparent 62%);
  pointer-events: none;
}
.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 13.5px; color: rgba(255,255,255,.58); margin-bottom: 20px;
}
.crumbs a { color: rgba(255,255,255,.78); }
.crumbs a:hover { color: #fff; }
.phero h1 {
  font-family: var(--font-display); font-weight: 400; color: #fff;
  font-size: clamp(2.35rem, 4.4vw, 3.8rem); max-width: 18ch; margin-bottom: 16px;
  line-height: 1.12;
}
.phero h1 em { font-style: italic; color: #F4E7BE; }
.phero .lead {
  color: rgba(255,255,255,.86); font-size: 18.5px; line-height: 1.65;
  max-width: 46ch; margin: 0;
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
.story {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.story-copy h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.2; margin-bottom: 18px;
}
.story-copy p { color: var(--text); font-size: 17.5px; line-height: 1.75; max-width: 54ch; }
.story-media { position: relative; }
.story-media img { border-radius: 14px; width: 100%; height: 500px; object-fit: cover; }
.float-card {
  position: absolute; left: -20px; bottom: 24px;
  background: #fff; border-radius: 12px; padding: 16px 18px;
  box-shadow: var(--shadow-lg); min-width: 176px; border: 1px solid var(--line);
}
.float-card b { display: block; font-family: var(--font-serif); font-size: 28px; color: var(--ink); }
.float-card span { font-size: 13px; color: var(--muted); line-height: 1.4; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px;
}
.value h3 { font-size: 17.5px; margin: 12px 0 8px; }
.value p { color: var(--text); font-size: 15.5px; line-height: 1.6; margin: 0; }
.value .vi {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-soft); color: #7A6116;
  display: grid; place-items: center;
}
.value .vi svg { width: 20px; height: 20px; }

.founder {
  display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 36px;
}
.founder-ava {
  width: 200px; height: 200px; border-radius: 14px;
  background: linear-gradient(160deg, var(--navy-3), var(--blue-deep));
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 64px; color: #fff;
}
.founder .role { color: #8A6E1C; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.founder h3 { font-size: 30px; font-family: var(--font-display); font-weight: 400; margin: 8px 0 6px; }
.founder .title { color: var(--muted); margin-bottom: 16px; font-size: 15.5px; }
.founder p { color: var(--text); font-size: 16.5px; line-height: 1.75; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--ink);
}

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.member {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px;
}
.member .mava {
  width: 56px; height: 56px; border-radius: 12px;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 18px;
  margin-bottom: 16px;
}
.member h3 { font-size: 19px; margin-bottom: 4px; }
.member .mrole { color: #8A6E1C; font-size: 13.5px; font-weight: 700; margin-bottom: 12px; }
.member p { color: var(--text); font-size: 15.5px; line-height: 1.65; margin: 0; }

/* --------------------------------------------------------------------------
   SERVICES DETAIL
   -------------------------------------------------------------------------- */
.svc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 12px 0 32px;
}
.svc.rev { direction: rtl; }
.svc.rev > * { direction: ltr; }
.svc h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.55rem); line-height: 1.18; margin: 10px 0 14px;
}
.svc p { color: var(--text); font-size: 17.5px; line-height: 1.7; max-width: 48ch; }
.checks { margin: 18px 0 24px; }
.checks li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; color: var(--ink); font-weight: 500; font-size: 16px; line-height: 1.5;
}
.checks svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 3px; }
.svc-panel {
  background: var(--navy); color: #fff; border-radius: 16px; padding: 32px 28px;
}
.svc-panel h4 { color: #fff; font-size: 16px; margin-bottom: 18px; font-weight: 650; }
.mini-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-steps div {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 14px;
}
.mini-steps b { display: block; color: var(--gold-2); font-size: 12px; letter-spacing: .08em; }
.mini-steps span { color: #fff; font-size: 15px; font-weight: 650; line-height: 1.35; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px;
  display: flex; flex-direction: column;
}
.plan.pop {
  background: var(--navy); color: #fff; border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.plan.pop h3, .plan.pop .price { color: #fff; }
.badge {
  display: inline-block; background: var(--gold); color: #16120A;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 12px;
}
.plan h3 { font-size: 20px; margin-bottom: 6px; }
.plan .sub { color: var(--muted); font-size: 15px; margin-bottom: 16px; line-height: 1.45; }
.plan.pop .sub { color: rgba(255,255,255,.7); }
.price {
  font-family: var(--font-serif); font-size: 44px; font-weight: 400; line-height: 1;
  margin-bottom: 6px;
}
.price small { font-size: 16px; color: var(--muted); }
.plan ul { margin: 18px 0 26px; flex: 1; }
.plan li {
  display: flex; gap: 10px; padding: 9px 0; font-size: 15.5px; line-height: 1.45;
  border-bottom: 1px solid var(--line-soft);
}
.plan.pop li { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.9); }
.plan li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--success); }
.plan.pop li svg { color: var(--gold-2); }

.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; font-size: 17.5px; font-weight: 650; color: var(--ink); line-height: 1.35;
}
.faq-q span.ico {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; flex-shrink: 0; color: var(--muted); font-size: 18px;
}
.faq-a {
  display: none; padding: 0 36px 22px 0;
  color: var(--text); font-size: 16.5px; line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span.ico { background: var(--navy); color: #fff; border-color: var(--navy); }

/* --------------------------------------------------------------------------
   COLLEGES
   -------------------------------------------------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: end;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; margin-bottom: 24px;
}
.fg { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.fg label { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.fg select, .fg input {
  border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px;
  font-family: inherit; font-size: 16px; background: var(--paper); color: var(--ink);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.chip.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }

.college-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.college {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 20px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.college:hover { box-shadow: var(--shadow-md); border-color: #D0C4A6; }
.college-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.mono {
  width: 48px; height: 48px; border-radius: 10px;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12.5px;
  letter-spacing: .04em;
}
.college .loc { font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.college h3 { font-size: 17px; line-height: 1.35; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span {
  background: var(--cream); border-radius: 999px; padding: 4px 9px;
  font-size: 12px; font-weight: 600; color: var(--ink);
}
.college .btn { margin-top: auto; }
.result-bar { margin-bottom: 14px; color: var(--muted); font-size: 14.5px; }

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr .82fr; gap: 36px; align-items: start;
}
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px;
}
.form-card h2 { font-family: var(--font-display); font-weight: 400; font-size: 30px; margin-bottom: 8px; line-height: 1.2; }
.form-card > p { color: var(--text); margin-bottom: 22px; font-size: 16.5px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13.5px; font-weight: 650; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 14px; font-family: inherit; font-size: 16px; background: var(--paper);
  color: var(--ink); line-height: 1.4;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.fine { font-size: 13px; color: var(--muted); margin: 8px 0 16px; line-height: 1.5; }
.info-stack { display: grid; gap: 12px; }
.info {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.info .ii {
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: var(--gold-2);
  display: grid; place-items: center; flex-shrink: 0;
}
.info .ii svg { width: 18px; height: 18px; }
.info b { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.info a, .info span { font-size: 15px; color: var(--text); line-height: 1.45; }
.info a:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   BLOG / ARTICLE
   -------------------------------------------------------------------------- */
.blog-hero-card {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  margin-bottom: 24px;
}
.blog-hero-card img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.blog-hero-card .bh { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.article { max-width: 720px; margin: 0 auto; }
.article h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.05rem, 3.6vw, 3rem); line-height: 1.18; margin: 12px 0 14px;
}
.article .ameta { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }
.article-cover { border-radius: 14px; overflow: hidden; margin-bottom: 32px; }
.article-cover img { width: 100%; height: 400px; object-fit: cover; }
.article-body p { font-size: 18.5px; color: var(--text); margin-bottom: 1.15em; line-height: 1.8; }
.article-body h2 {
  font-family: var(--font-display); font-weight: 400; font-size: 26px;
  line-height: 1.25; margin: 1.55em 0 .45em;
}
.article-body h3 { font-size: 19px; margin: 1.35em 0 .4em; }
.article-body ul { list-style: disc; padding-left: 22px; margin: 0 0 1.2em; }
.article-body li { margin: 7px 0; color: var(--text); font-size: 18px; line-height: 1.65; }
.article-body blockquote {
  margin: 28px 0; padding: 4px 0 4px 20px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-serif); font-size: 23px; color: var(--ink); line-height: 1.4;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 68px 0 0;
}
.ft-grid {
  display: grid; grid-template-columns: 1.25fr .75fr .75fr 1.05fr; gap: 36px;
  padding-bottom: 44px;
}
.site-footer .logo img { height: 40px; margin-bottom: 14px; }
.site-footer p { font-size: 15px; line-height: 1.7; max-width: 36ch; }
.site-footer h4 {
  color: #fff; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 700;
}
.site-footer a { color: rgba(255,255,255,.78); font-size: 15px; display: inline-block; padding: 5px 0; }
.site-footer a:hover { color: var(--gold-2); }
.ft-contact li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 15px; line-height: 1.45; }
.ft-contact svg { width: 16px; height: 16px; color: var(--gold-2); flex-shrink: 0; margin-top: 4px; }
.ft-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0 20px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.5);
}

/* --------------------------------------------------------------------------
   UTIL
   -------------------------------------------------------------------------- */
.mb-0 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(12px); animation: rise .7s var(--ease) forwards; }
.d1 { animation-delay: .06s; } .d2 { animation-delay: .12s; } .d3 { animation-delay: .18s; } .d4 { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold); color: #16120A;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: .25s;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; }

.form-ok {
  display: none; background: #E5F4F0; color: #145248; border-radius: 10px;
  padding: 13px 14px; font-weight: 600; margin-bottom: 14px; font-size: 15px;
}
.skip {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--gold); color: #16120A; padding: 10px 14px; border-radius: 8px;
  font-weight: 700; font-size: 13px;
}
.skip:focus { top: 12px; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
.form-err {
  display: none; background: #FDECEC; color: #8A1C16; border-radius: 10px;
  padding: 13px 14px; font-weight: 600; margin-bottom: 14px;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.legal { max-width: 720px; }
.legal h2 { font-family: var(--font-display); font-weight: 400; font-size: 26px; margin: 1.5em 0 .45em; }
.legal p, .legal li { color: var(--text); font-size: 17px; line-height: 1.75; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 1.2em; }
.empty { text-align: center; padding: 40px 0 20px; }
.empty h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 8vw, 5.5rem); color: #fff; }
.empty p { color: rgba(255,255,255,.82); font-size: 18px; max-width: 40ch; margin: 12px auto 28px; }

/* --------------------------------------------------------------------------
   WORDPRESS ADMIN BAR
   -------------------------------------------------------------------------- */
.admin-bar .site-header { top: 32px; }
.admin-bar .mobile-nav { top: calc(var(--header-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .mobile-nav { top: calc(var(--header-h) + 46px); }
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-inner, .story, .svc, .founder, .contact-grid, .cta-banner, .blog-hero-card, .posts {
    grid-template-columns: 1fr;
  }
  .svc.rev { direction: ltr; }
  .hero { align-items: stretch; min-height: auto; }
  .hero-inner { padding: 120px 0 48px; gap: 32px; }
  .hero h1 { max-width: none; }
  .hero-card { max-width: none; }
  .founder { grid-template-columns: 1fr; }
  .founder-ava { width: 140px; height: 140px; font-size: 48px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .college-grid, .cards-3, .quotes, .values, .team, .blog-grid { grid-template-columns: 1fr 1fr; }
  .streams { grid-template-columns: 1fr 1fr; }
  .steps-5 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  body { font-size: 16.5px; }
  .site-header { height: 64px; }
  :root { --header-h: 64px; }

  .site-header .wrap-wide {
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: calc(100% - 24px);
  }
  .nav, .header-phone, .header-cta > .btn { display: none; }
  .menu-toggle { display: flex; }
  .logo img { height: 32px; }

  .wrap { width: calc(100% - 32px); }
  .wrap-wide { width: calc(100% - 24px); }

  .hero-media img { transform: none; }
  .hero-inner { padding: 88px 0 32px; gap: 24px; }
  .hero h1 { font-size: 2.05rem; line-height: 1.15; }
  .hero-lead { font-size: 16px; max-width: none; margin-bottom: 20px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 24px;
  }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
  }
  .hero-metrics b { font-size: 22px; }
  .hero-card { padding: 20px 18px 18px; }

  .sec { padding: 56px 0; }
  .sec-head { margin-bottom: 28px; }
  .sec-head h2 { font-size: 1.75rem; }
  .sec-head p { font-size: 16px; }

  .steps, .stats, .pricing, .steps-5 { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .cta-banner { padding: 28px 18px; border-radius: 12px; }
  .cta-banner h2 { font-size: 1.65rem; }
  .article-body p, .article-body li { font-size: 16.5px; }

  .phero { padding: 100px 0 40px; }
  .phero h1 { font-size: 1.9rem; max-width: none; }
  .phero .lead { font-size: 16px; max-width: none; }

  .filters { flex-direction: column; align-items: stretch; }
  .fg { min-width: 0; width: 100%; }
  .chips { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .chip { flex: 0 0 auto; }

  .btn { white-space: normal; }
}

@media (max-width: 640px) {
  .cards-3, .quotes, .values, .team, .college-grid, .blog-grid, .streams, .steps, .pricing, .ft-grid, .steps-5 {
    grid-template-columns: 1fr;
  }
  /* keep metrics / impact as a compact 2×2 */
  .stats, .hero-metrics { grid-template-columns: 1fr 1fr; }

  .frow { grid-template-columns: 1fr; }
  .story-media img { height: 240px; }
  .float-card { left: 12px; bottom: 12px; min-width: 0; }
  .form-card { padding: 22px 16px; }
  .form-card h2 { font-size: 24px; }
  .article-cover img { height: 200px; }
  .blog-hero-card img { min-height: 180px; }
  .blog-hero-card .bh { padding: 22px 18px; }
  .stream { min-height: 168px; }
  .founder { padding: 22px 18px; }
  .svc-panel { padding: 22px 18px; }
  .mini-steps { grid-template-columns: 1fr; }
  .plan { padding: 22px 18px; }
  .price { font-size: 36px; }
  .faq-q { font-size: 16px; align-items: flex-start; }
  .to-top { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); }
  .mobile-nav {
    padding: 12px 20px calc(28px + env(safe-area-inset-bottom));
  }
  .mobile-nav a { font-size: 18px; padding: 14px 4px; min-height: 48px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-metrics { gap: 10px 12px; }
  .logo img { height: 28px; }
}

/* lock page when the mobile menu is open */
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
