/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a1464;
  --navy-dark: #0f0c3d;
  --indigo: #2d2a8e;
  --lavender: #b8bde8;
  --lavender-light: #d6d9f2;
  --circle-outline: #b8bde8;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #444;
  --bg-light: #f5f5f8;
  --accent-blue: #9ba4d8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; color: var(--white); font-size: 1.1rem; letter-spacing: 1px;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .82rem; font-weight: 600; letter-spacing: .5px; transition: color .2s;
}
.nav-links a:hover { color: var(--lavender); }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }

/* ── SHARED DECORATIVES ── */
.deco-sq {
  border-radius: 18px; background: var(--lavender); opacity: .55;
}
.deco-circle {
  border-radius: 50%; border: 2.5px solid var(--circle-outline); background: transparent;
}

/* img placeholder */
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--navy); opacity: .35;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem;
  line-height: 1.6; width: 100%; height: 100%;
}
.hero-img-box img, .meet-img-box img, .social-img img,
.ach-img img, .train-img img, .vision-img-box img,
.contact-right img, .gallery-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── 1. HERO ── */
#hero {
  min-height: 100vh;
  background: var(--white);
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
  background: var(--navy);
}
#hero::after {
  content: ''; position: absolute; right: 0; top: 0; height: 160px; width: 120px;
  background: var(--navy);
}
.hero-content {
  display: flex; align-items: center; padding: 80px 60px 60px;
  gap: 60px; position: relative; min-height: calc(100vh - 68px);
}
.hero-text { flex: 1; z-index: 2; }
.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 18px;
}
.hero-name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900; color: var(--text-dark); line-height: 1.05; margin-bottom: 10px;
}
.hero-creds {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; color: var(--text-mid); font-weight: 600; margin-bottom: 6px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; color: var(--text-mid); font-weight: 600; margin-bottom: 36px;
}
.hero-contacts { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: .95rem; color: var(--text-dark); }
.contact-icon {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; fill: white; }
.hero-img-box {
  flex: 1; max-width: 440px; position: relative; z-index: 2;
  border-radius: 4px; overflow: hidden;
  background: linear-gradient(135deg, #c8cce8 0%, #e8e9f5 100%);
  min-height: 420px;
}

/* ── 2. MEET ── */
.meet-section {
  min-height: 100vh; background: var(--white);
  display: flex; align-items: center; padding: 80px 60px;
  gap: 60px; position: relative; overflow: hidden;
}
.meet-section::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
  background: var(--navy);
}
.meet-section::after {
  content: ''; position: absolute; right: 0; bottom: 0; height: 160px; width: 120px;
  background: var(--navy);
}
.meet-img-box {
  flex: 0 0 38%;
  background: linear-gradient(160deg, #dde0f0 0%, #eef0f8 100%);
  border-radius: 4px; min-height: 480px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.meet-text { flex: 1; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--text-dark); line-height: 1.05; margin-bottom: 10px;
}
.section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; color: var(--text-mid); font-weight: 600; margin-bottom: 24px;
}
.section-body { font-size: .97rem; line-height: 1.8; color: var(--text-mid); text-align: justify; }
.section-body p { margin-bottom: 18px; }
.section-body strong { color: var(--text-dark); }

/* ── 3-5. OVERVIEW ── */
.overview-section {
  display: grid; grid-template-columns: 340px 1fr;
}
.overview-left {
  background: var(--navy);
  padding: 60px 40px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.overview-left-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--white);
  line-height: 1.65; text-align: justify; position: relative; z-index: 2;
}
.overview-left .bottom-circle {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 60px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.35); background: transparent; z-index: 2;
}
.overview-right {
  background: var(--white);
  padding: 40px 60px 40px 50px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.deco-top {
  position: absolute; top: 28px; right: 60px;
  display: flex; align-items: flex-start;
}
.deco-sq-sm {
  width: 70px; height: 70px; border-radius: 14px;
  background: var(--lavender); opacity: .65;
}
.deco-circle-sm {
  width: 50px; height: 50px; border-radius: 50%;
  border: 2.5px solid var(--circle-outline);
  background: transparent;
  position: relative; top: 30px; left: -20px;
}
.service-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid #eee;
}
.service-item:last-child { border-bottom: none; }
.service-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; fill: white; }
.service-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .93rem; color: var(--text-dark);
  margin-bottom: 5px; letter-spacing: .3px;
}
.service-desc { font-size: .87rem; color: var(--text-mid); line-height: 1.6; text-align: justify; }

/* ── 6. VISION & MISSION ── */
#vision {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh;
}
.vision-left { padding: 80px 60px; }
.vision-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--text-dark); margin-bottom: 48px;
}
.vm-item { display: flex; gap: 20px; margin-bottom: 40px; align-items: flex-start; }
.vm-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vm-icon svg { width: 24px; height: 24px; fill: white; }
.vm-content-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--text-dark); margin-bottom: 8px;
}
.vm-content-text { font-size: .92rem; color: var(--text-mid); line-height: 1.7; text-align: justify; }
.vision-right {
  background: linear-gradient(160deg, #d8dcf0 0%, #eef0f8 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.vision-img-box {
  width: 90%; height: 420px; border-radius: 6px; overflow: hidden;
  background: linear-gradient(135deg, #c8cce8 0%, #e0e3f5 100%);
  display: flex; align-items: center; justify-content: center;
}
.vision-img-box img { width:100%;height:100%;object-fit:cover; }
.bottom-deco {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--lavender-light); opacity: .45;
}

/* ── 7. SOCIAL ── */
#social {
  padding: 80px 60px; background: var(--white);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px;
  align-items: center; position: relative; overflow: hidden;
}
#social::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 14px;
  background: var(--navy);
}
.social-img {
  border-radius: 4px; overflow: hidden; min-height: 460px;
  background: linear-gradient(135deg, #c8d4e8 0%, #dde8f5 100%);
  display: flex; align-items: center; justify-content: center;
}
.social-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark); margin-bottom: 40px;
}
.social-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.social-list li { display: flex; align-items: flex-start; gap: 18px; }
.num-badge {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.social-item-text { font-size: .93rem; color: var(--text-mid); line-height: 1.55; padding-top: 10px; }
.social-item-text strong { color: var(--text-dark); }
.bottom-left-circle {
  position: absolute; bottom: 30px; left: 45%;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--lavender-light); opacity: .4;
}

/* ── 8. ACHIEVEMENTS ── */
#achievements {
  padding: 80px 60px; background: var(--white);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  align-items: center; position: relative; overflow: hidden;
}
#achievements::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
  background: var(--navy);
}
#achievements::after {
  content: ''; position: absolute; right: 0; bottom: 0; height: 160px; width: 120px;
  background: var(--navy);
}
.ach-img {
  border-radius: 4px; overflow: hidden; min-height: 460px;
  background: linear-gradient(135deg, #d0d4ea 0%, #e8eaf5 100%);
  display: flex; align-items: center; justify-content: center;
}
.ach-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark); margin-bottom: 40px;
}
.ach-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.ach-list li { display: flex; align-items: flex-start; gap: 18px; }

/* ── 9. TRAINING ── */
#training {
  padding: 80px 60px; background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; overflow: hidden;
}
#training::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 14px;
  background: var(--navy);
}
.train-deco-tl {
  position: absolute; top: 30px; left: 60px;
  display: flex; align-items: flex-start;
}
.train-deco-tl .deco-sq-sm { opacity: .6; }
.train-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark); margin-bottom: 40px;
}
.train-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.train-list li { display: flex; align-items: flex-start; gap: 18px; }
.train-img {
  border-radius: 4px; overflow: hidden; min-height: 460px;
  background: linear-gradient(135deg, #c8cce8 0%, #dde0f5 100%);
  display: flex; align-items: center; justify-content: center;
}

/* ── 10. GALLERY ── */
#gallery {
  padding: 80px 60px; background: var(--white);
  position: relative; overflow: hidden;
}
#gallery::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
  background: var(--navy);
}
.gallery-layout { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.gallery-title-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 2rem; color: var(--text-dark); margin-bottom: 10px;
}
.gallery-rule { width: 40px; height: 3px; background: var(--navy); margin-bottom: 28px; }
.gallery-event-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 6px;
}
.gallery-event-sub { font-size: .88rem; color: var(--text-mid); margin-bottom: 6px; }
.gallery-role {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem; color: var(--text-mid); font-weight: 600;
}
.gallery-logo-box {
  margin-top: 40px; width: 140px; height: 140px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.gallery-logo-inner {
  width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; color: white; font-size: 1rem;
  margin-bottom: 8px;
}
.gallery-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem; color: rgba(255,255,255,.85);
  letter-spacing: .4px; text-align: center; line-height: 1.4;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: 280px 200px;
  gap: 10px;
}
.gallery-cell {
  background: linear-gradient(135deg, #d0d4ea 0%, #ebedf6 100%);
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.gallery-cell.tall { grid-row: 1 / 3; }
.gallery-bottom-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 10px; height: 180px;
}

/* ── 11. CONTACT ── */
#contact {
  padding: 80px 60px; background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative;
}
.contact-logo { margin-bottom: 40px; }
.contact-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 2.2rem; color: var(--navy); line-height: 1; letter-spacing: 2px;
}
.contact-logo-bar { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.contact-logo-line { height: 2px; width: 30px; background: var(--navy); }
.contact-logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; color: var(--text-mid); letter-spacing: 2px; text-transform: uppercase;
}
.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 2.5rem; color: var(--text-dark); margin-bottom: 28px;
}
.contact-office-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 10px;
}
.contact-address { font-size: .93rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-right {
  background: linear-gradient(135deg, #b8c4e0 0%, #dde5f5 100%);
  border-radius: 6px; min-height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.contact-right img { width:100%;height:100%;object-fit:cover; }
.contact-deco-circle1 {
  position: absolute; top: 40px; left: 30px;
  width: 70px; height: 70px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
}
.contact-deco-circle2 {
  position: absolute; bottom: 60px; right: 30px;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,.6);
  text-align: center; padding: 20px;
  font-size: .8rem; font-family: 'Montserrat', sans-serif;
}
footer span { color: rgba(255,255,255,.95); font-weight: 700; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--navy); padding: 20px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-content { flex-direction: column; padding: 60px 24px 40px; }
  .hero-img-box { max-width: 100%; width: 100%; min-height: 280px; }

  .meet-section { flex-direction: column; padding: 60px 24px; }
  .meet-img-box { min-height: 280px; flex: unset; width: 100%; }

  .overview-section { grid-template-columns: 1fr; }
  .overview-left { padding: 40px 24px; }
  .overview-right { padding: 30px 24px; }

  #vision { grid-template-columns: 1fr; }
  .vision-right { min-height: 280px; }
  .vision-left { padding: 60px 24px; }

  #social, #achievements { grid-template-columns: 1fr; padding: 60px 24px; }
  .social-img, .ach-img { min-height: 260px; }

  #training { grid-template-columns: 1fr; padding: 60px 24px; }
  .train-img { min-height: 260px; }
  .train-deco-tl { display: none; }

  #gallery { padding: 60px 24px; }
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
  .gallery-cell.tall { grid-row: 1; }
  .gallery-bottom-row { height: 160px; }

  #contact { grid-template-columns: 1fr; padding: 60px 24px; }
  .contact-right { min-height: 280px; }

  .deco-sq, .deco-circle { display: none; }
  #hero::after, .meet-section::after { display: none; }
}


/* ══════════════ PHILOSOPHY SECTION ══════════════ */
.philosophy-section {
  background: var(--navy);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.philosophy-section::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.philosophy-inner {
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: 60px;
  align-items: start; position: relative; z-index: 2;
}
.philosophy-divider { background: rgba(255,255,255,.15); align-self: stretch; }
.phil-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; letter-spacing: 4px; color: var(--lavender);
  margin-bottom: 24px; text-transform: uppercase;
}
.phil-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white); line-height: 1.15; margin-bottom: 28px;
}
.phil-body {
  font-size: .97rem; color: rgba(255,255,255,.7); line-height: 1.8;
}
.founder-msg-box {
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--lavender);
  border-radius: 0 8px 8px 0;
  padding: 28px 30px; margin-bottom: 36px; position: relative;
}
.founder-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem; color: var(--lavender); opacity: .4;
  line-height: .8; position: absolute; top: 10px; left: 20px;
  font-weight: 900;
}
.founder-quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  line-height: 1.7; font-style: italic; padding-left: 20px;
}
.founder-attribution {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem; color: var(--lavender);
  font-weight: 700; margin-top: 14px; padding-left: 20px;
}
.connect-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; letter-spacing: 3px; color: var(--lavender);
  margin-bottom: 14px; text-transform: uppercase;
}
.connect-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;
}
.connect-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 600; padding: 7px 16px;
  border-radius: 20px; letter-spacing: .5px;
  transition: background .3s, border-color .3s;
}
.connect-tag:hover {
  background: var(--lavender); border-color: var(--lavender); color: var(--navy);
}
.connect-sub {
  font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7;
}

@media (max-width: 960px) {
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-divider { display: none; }
  .philosophy-section { padding: 60px 24px; }
}

/* ══════════════ ANIMATIONS ══════════════ */

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,189,232,.0); }
  50%       { box-shadow: 0 0 0 6px rgba(184,189,232,.35); }
}

/* --- NAV --- */
nav { animation: slideDown .6s ease both; }
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--lavender);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* --- HERO --- */
.hero-label  { animation: fadeInUp .7s ease .3s both; }
.hero-name   { animation: fadeInUp .7s ease .5s both; }
.hero-creds  { animation: fadeInUp .7s ease .65s both; }
.hero-title  { animation: fadeInUp .7s ease .75s both; }
.hero-contacts { animation: fadeInUp .7s ease .9s both; }
.hero-img-box  { animation: fadeInRight .9s ease .4s both; }

/* --- MEET --- */
.meet-img-box { animation: fadeInLeft .85s ease .2s both; }
.meet-text .section-label { animation: fadeInUp .6s ease .1s both; }
.meet-text .section-title  { animation: fadeInUp .6s ease .25s both; }
.meet-text .section-sub    { animation: fadeInUp .6s ease .35s both; }
.meet-text .section-body   { animation: fadeInUp .6s ease .45s both; }

/* --- SCROLL-TRIGGERED (via JS IntersectionObserver) --- */
.anim-ready {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .65s ease, transform .65s ease;
}
.anim-ready.anim-left  { transform: translateX(-35px); }
.anim-ready.anim-right { transform: translateX(35px); }
.anim-ready.anim-scale { transform: scale(.9); }

.anim-ready.visible {
  opacity: 1;
  transform: none !important;
}

/* stagger children */
.anim-stagger > * {
  opacity: 0; transform: translateY(25px);
  transition: opacity .5s ease, transform .5s ease;
}
.anim-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.anim-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.15s; }
.anim-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.25s; }
.anim-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.35s; }
.anim-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.45s; }
.anim-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.55s; }

/* --- SERVICE ITEMS --- */
.service-item {
  transition: transform .3s ease, box-shadow .3s ease;
  border-radius: 8px; padding: 18px 10px;
}
.service-item:hover {
  transform: translateX(8px);
  box-shadow: -4px 0 0 var(--navy);
}
.service-icon {
  transition: transform .35s ease, background .3s;
}
.service-item:hover .service-icon {
  transform: scale(1.15) rotate(-6deg);
  animation: borderGlow 1.5s ease infinite;
}

/* --- NUM BADGES --- */
.num-badge {
  transition: transform .3s ease, background .3s;
}
.social-list li:hover .num-badge,
.ach-list li:hover .num-badge,
.train-list li:hover .num-badge {
  transform: scale(1.12);
  background: var(--indigo);
}

/* --- CONNECT TAGS (philosophy) --- */
.connect-tag {
  transition: background .3s, border-color .3s, transform .2s, color .3s;
}
.connect-tag:hover { transform: translateY(-2px); }

/* --- VISION ICONS pulse on hover --- */
.vm-item:hover .vm-icon {
  animation: pulse 1s ease infinite;
}

/* --- OVERVIEW LEFT TEXT shimmer on load --- */
.overview-left-text {
  background: linear-gradient(90deg, #fff 0%, #fff 40%, var(--lavender-light) 50%, #fff 60%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease 1s 1 both, fadeIn .8s ease both;
}

/* --- GALLERY CELLS --- */
.gallery-cell {
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-cell:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(26,20,100,.18);
  z-index: 2;
}

/* --- CONTACT ICON bounce on hover --- */
.contact-icon {
  transition: transform .3s ease;
}
.contact-item:hover .contact-icon {
  transform: scale(1.15) rotate(-8deg);
}

/* --- PHIL QUOTE animated underline --- */
.phil-quote {
  position: relative;
}

/* --- FOOTER --- */
footer { animation: fadeIn .8s ease both; }

/* --- PAGE LOAD subtle bg gradient sweep on body --- */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(184,189,232,.08) 0%, transparent 60%);
}
