/* ============================================================
   KORNERSTONE PROPHETIC MINISTRY
   Brand palette: Eternal Black · Pure Light · Heavenly Sky · Graceful Blue
   Light-first, high-contrast, with cinematic dark moments.
   ============================================================ */

:root {
  --blue:    #235FDF;   /* Heavenly Sky — primary accent */
  --blue-d:  #1B4CB8;   /* hover */
  --blue-2:  #609DC9;   /* Graceful Blue — secondary */
  --blue-50: #EAF1FE;   /* tint */
  --ink:     #0A0A0D;   /* Eternal Black */
  --black:   #000000;
  --light:   #FFFFFF;   /* Pure Light */
  --paper:   #F3F6FC;   /* light alt surface */
  --paper-2: #EAEEF6;
  --text:    #0C0E14;
  --muted:   #565D6B;
  --faint:   #8B91A0;
  --line:    rgba(10,12,20,0.10);
  --line-2:  rgba(10,12,20,0.16);
  --line-d:  rgba(255,255,255,0.16);
  --muted-d: #AEB6C6;   /* muted text on dark */

  --sans: 'Inter', system-ui, sans-serif;
  --display: 'Outfit', 'Inter', system-ui, sans-serif;
  --serif: 'Outfit', 'Inter', system-ui, sans-serif; /* geometric sans — no cursive */

  --maxw: 1200px;
  --radius: 16px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-y: scroll; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--light);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 30px; }
.section { padding: 128px 0; position: relative; }
.section--tight { padding: 92px 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--ink); color: #fff; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--display); font-weight: 600;
  font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blue);
  display: inline-block; margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--blue-2); }

h1,h2,h3,h4 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; color: var(--text); text-wrap: balance; }
p, .lead { text-wrap: pretty; }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.h-xl { font-size: clamp(3rem, 6vw, 5rem); }
.h-lg { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.lead { font-size: clamp(1.05rem, 1.35vw, 1.2rem); color: var(--muted); max-width: 62ch; }
.section--dark .lead { color: var(--muted-d); }
.muted { color: var(--muted); }
.rule { width: 56px; height: 3px; background: var(--blue); border: 0; margin: 20px 0; }
.center .rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 16px 34px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 10px 26px -10px rgba(35,95,223,.6); }
.btn--blue:hover { background: var(--blue-d); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #eef2fb; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1b1d27; }
.btn--outline { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--outline:hover { background: var(--paper); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }
.btn--sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; padding: 18px 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), background .35s, box-shadow .35s;
}
.site-header.scrolled {
  padding: 12px 0; background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(0,0,0,.3);
}
/* When the mobile drawer is open, the header must NOT establish a containing
   block (backdrop-filter does), or the fixed drawer collapses to header height. */
.site-header.menu-open { backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 42px; width: auto; aspect-ratio: 1165 / 350; display: block; transition: opacity .3s; }
.logo .logo-white { display: none; }
.logo .logo-black { display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--sans); font-size: 14.5px; font-weight: 500; letter-spacing: .01em;
  color: var(--muted); position: relative; transition: color .25s;
}
.nav-links a::after { content:''; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--blue); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: .3s var(--ease); }
.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Nav dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.has-dropdown > a .chev { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.has-dropdown:hover > a .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; padding: 10px; border-radius: 14px; background: #fff;
  border: 1px solid var(--line); box-shadow: 0 30px 60px -20px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content:''; position:absolute; top:-16px; left:0; right:0; height:16px; }
.dropdown a { display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 9px; font-size: 14.5px; color: var(--muted); transition: background .2s, color .2s; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--blue-50); color: var(--blue); }
.dropdown a .dot { display: none; }

/* ---------- HERO (full-bleed cinematic) ---------- */
.hero { position: relative; min-height: calc(100vh - 80px); display: flex; align-items: center; padding: 80px 0 100px; overflow: hidden; background: var(--ink); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; animation: kenburns 30s ease-in-out infinite alternate; }
.hero__bg video { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.16) translate(-2%, -1.5%); } }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(6,7,12,0.94) 0%, rgba(6,7,12,0.76) 40%, rgba(6,7,12,0.5) 100%),
    linear-gradient(0deg, var(--ink) 1%, transparent 45%);
}
/* Portrait hero (praying subject) — shift subject right of the H1, lighten overlay so silhouette reads */
.hero__bg--portrait img { opacity: .78; object-position: 70% center; }
/* --- Ambient tranquility layer (canvas + slow scroll parallax) --- */
.hero__fx {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  mix-blend-mode: screen;
  opacity: .95;
}
.hero__bg { will-change: transform; }
.hero__bg img { will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  .hero__fx { opacity: .55; }
}
.hero__bg--portrait::after {
  background:
    linear-gradient(95deg, rgba(6,7,12,0.86) 0%, rgba(6,7,12,0.58) 42%, rgba(6,7,12,0.28) 100%),
    linear-gradient(0deg, var(--ink) 1%, transparent 42%);
}
@media (max-width: 900px) {
  .hero__bg--portrait img { object-position: 55% center; }
  .hero__bg--portrait::after { background: linear-gradient(180deg, rgba(6,7,12,0.55) 0%, rgba(6,7,12,0.9) 100%); }
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.hero__eyebrow { font-family: var(--display); font-size: .85rem; font-weight: 600; color: var(--blue-2); display: inline-block; margin-bottom: 18px; letter-spacing: .22em; text-transform: uppercase; }
.hero__title { color: #fff; font-family: var(--display); font-size: clamp(2.8rem, 5.8vw, 5.4rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.04em; }
.hero__title .b { color: var(--blue); }
.hero__support { font-family: var(--sans); font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: rgba(255,255,255,0.82); margin: 28px 0 0; max-width: 48ch; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
/* service-times info block */
.hero__info { padding-left: 28px; }
.hero__info .loc { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--blue-2); margin-bottom: 6px; }
.hero__info .addr { color: var(--muted-d); font-size: .95rem; margin-bottom: 22px; line-height: 1.5; }
.svc { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.svc .day { background: #fff; color: var(--ink); font-weight: 700; font-size: 12px; letter-spacing: .08em; padding: 7px 11px; border-radius: 7px; min-width: 52px; text-align: center; }
.svc .when { color: #fff; font-size: .98rem; font-weight: 500; }
.svc .when small { display: block; color: var(--muted-d); font-size: .8rem; font-weight: 400; }
.svc-more { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-2); transition: color .25s; }
.svc-more:hover { color: #fff; }
.svc-more .arw { font-family: var(--sans); font-size: 18px; letter-spacing: 0; transition: transform .3s var(--ease); }
.svc-more:hover .arw { transform: translateX(4px); }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.5); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1; }
.scroll-cue::after { content:''; width:1px; height:40px; background: linear-gradient(var(--blue-2), transparent); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ---------- Blue band ---------- */
.blue-band { background: linear-gradient(120deg, var(--blue), var(--blue-d)); color: #fff; padding: 170px 0; position: relative; overflow: hidden; }
.blue-band::before { content:''; position:absolute; left:-120px; bottom:-140px; width:420px; height:420px; border-radius:50%; background: rgba(255,255,255,.06); animation: bandfloat2 13s ease-in-out infinite; }
.blue-band::after { content:''; position:absolute; right:-90px; top:-110px; width:440px; height:440px; border-radius:50%; background: rgba(255,255,255,.09); animation: bandfloat 11s ease-in-out infinite; }
.blue-band .container { position: relative; z-index: 1; }
@keyframes bandfloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,26px) scale(1.08); } }
@keyframes bandfloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(34px,-22px) scale(1.1); } }

/* ---------- Quick action cards ---------- */
.actions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.action-card {
  position: relative; padding: 36px 30px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.action-card:hover { transform: translateY(-6px); border-color: rgba(35,95,223,.4); box-shadow: 0 26px 50px -26px rgba(35,95,223,.4); }
.action-card .ico { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); margin-bottom: 22px; }
.action-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.action-card p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.action-link { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--blue); display: inline-flex; gap: 8px; align-items: center; transition: gap .3s; }
.action-card:hover .action-link { gap: 13px; }

/* ---------- Feature row ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature.reverse { direction: rtl; } .feature.reverse > * { direction: ltr; }
.feature__media { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--paper-2); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body h2 { margin-bottom: 6px; }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.pillar { padding: 32px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: border-color .4s, transform .4s var(--ease); }
.section--paper .pillar { background: #fff; }
.pillar:hover { border-color: rgba(35,95,223,.4); transform: translateY(-4px); }
.pillar .num { font-family: var(--display); font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.pillar h3 { font-size: 1.25rem; margin: 12px 0 10px; }
.pillar p { color: var(--muted); font-size: .97rem; }

/* ---------- Trio ---------- */
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.trio-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; border: 1px solid var(--line); background: var(--ink); }
.trio-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; transition: transform .7s var(--ease), opacity .5s; }
.trio-card::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 25%, rgba(6,7,12,0.92)); }
.trio-card:hover img { transform: scale(1.07); opacity: .75; }
.trio-card > * { position: relative; z-index: 1; }
.trio-card .tag { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--blue-2); margin-bottom: 8px; }
.trio-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.trio-card p { color: var(--muted-d); font-size: .93rem; margin-bottom: 18px; }

/* ---------- 4-card ministry showcase (image top, text below, CTA) ---------- */
.cards4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.info-card { display: flex; flex-direction: column; }
.info-card__img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 22px; background: var(--paper-2); }
.info-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.info-card:hover .info-card__img img { transform: scale(1.05); }
.info-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.info-card p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; flex: 1; }
.section--dark .info-card p { color: var(--muted-d); }
.info-card .more { display: inline-flex; align-items: center; gap: 11px; color: var(--blue); font-weight: 600; font-size: 14px; }
.info-card .more .arw { width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; flex: none; transition: transform .3s var(--ease); }
.info-card:hover .more .arw { transform: translateX(4px); }

/* ---------- Meetings ---------- */
.meeting-list { display: grid; gap: 14px; }
.meeting { display: grid; grid-template-columns: 156px 1fr auto; gap: 26px; align-items: center; padding: 14px; padding-right: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: border-color .4s, box-shadow .4s, transform .4s var(--ease); }
.meeting:hover { border-color: rgba(35,95,223,.4); box-shadow: 0 18px 40px -28px rgba(35,95,223,.5); transform: translateX(4px); }
.meeting__img { width: 156px; height: 104px; border-radius: 11px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--blue), var(--blue-2)); flex: none; }
.meeting__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.meeting:hover .meeting__img img { transform: scale(1.07); }
.meeting__badge { position: absolute; top: 8px; left: 8px; z-index: 1; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; padding: 5px 11px; border-radius: 999px; }
.meeting__time { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .8rem; letter-spacing: .04em; color: var(--blue); text-transform: uppercase; margin-bottom: 6px; }
.meeting__info h3 { font-size: 1.18rem; margin-bottom: 5px; }
.meeting__info p { color: var(--muted); font-size: .93rem; }

/* ---------- This week ---------- */
.weekgrid { display: grid; grid-template-columns: repeat(7,1fr); gap: 12px; }
.daycard { padding: 22px 12px; border-radius: 14px; text-align: center; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.daycard:hover { transform: translateY(-5px); border-color: rgba(35,95,223,.4); box-shadow: 0 18px 36px -24px rgba(35,95,223,.5); }
.daycard.today { background: var(--blue); border-color: var(--blue); }
.daycard .dow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.daycard.today .dow { color: rgba(255,255,255,.85); }
.daycard .dnum { font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; margin: 6px 0 10px; }
.daycard.today .dnum { color: #fff; }
.daycard .ev { font-weight: 600; font-size: .84rem; color: var(--text); line-height: 1.3; }
.daycard.today .ev { color: #fff; }
.daycard .tm { font-size: .74rem; color: var(--faint); margin-top: 5px; }
.daycard.today .tm { color: rgba(255,255,255,.8); }
.daycard.today .tm::after { content: ' · Today'; }
.daycard--rest { background: var(--paper); }
.daycard--rest .dow { color: var(--faint); }
.daycard--rest .ev { color: var(--muted); font-weight: 500; }
.daycard--rest .tm { color: var(--faint); }

/* ---------- Scripture (in blue band) ---------- */
.scripture { text-align: center; max-width: 900px; margin-inline: auto; }
.scripture blockquote { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 4.6vw, 3.8rem); line-height: 1.14; letter-spacing: -0.03em; color: #fff; }
.scripture blockquote .word { display: inline-block; opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in .scripture blockquote .word, .scripture.reveal.in blockquote .word { opacity: 1; transform: none; }
.scripture cite { display: block; margin-top: 28px; font-family: var(--display); font-weight: 500; letter-spacing: .18em; text-transform: uppercase; font-size: 12.5px; color: rgba(255,255,255,.8); opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease) .4s, transform .6s var(--ease) .4s; }
.reveal.in .scripture cite, .scripture.reveal.in cite { opacity: 1; transform: none; }

/* ---------- Giving ---------- */
.give-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.give-card { padding: 40px 32px; border-radius: var(--radius); text-align: center; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.give-card.featured { background: var(--blue); border-color: var(--blue); }
.give-card.featured h3, .give-card.featured p { color: #fff; }
.give-card.featured p { color: rgba(255,255,255,.85); }
.give-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(35,95,223,.5); }
.give-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.give-card p { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }

/* ---------- Counselling: types/steps/counsellor/faq ---------- */
.type-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.type-card { display: flex; gap: 20px; padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), border-color .4s; }
.type-card:hover { transform: translateY(-4px); border-color: rgba(35,95,223,.4); }
.type-card .ico { width: 52px; height: 52px; border-radius: 13px; background: var(--blue-50); display: grid; place-items: center; color: var(--blue); flex: none; }
.type-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.type-card p { color: var(--muted); font-size: .95rem; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { position: relative; padding: 36px 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; }
.step .num { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: #fff; font-family: var(--display); font-size: 1.4rem; font-weight: 800; margin-bottom: 22px; }
.step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .95rem; flex: 1; }

.counsellor { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; padding: 16px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.counsellor__photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; background: var(--blue-50); position: relative; }
.counsellor__photo img { width:100%; height:100%; object-fit: cover; }
.counsellor__photo .placeholder { position:absolute; inset:0; display:grid; place-items:center; color: var(--blue); font-family: var(--display); font-weight: 800; font-size: 5rem; }
.counsellor__body { padding-right: 28px; }
.counsellor__body h3 { font-size: 1.8rem; margin-bottom: 4px; }
.counsellor__body .role { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--blue); margin-bottom: 16px; }
.counsellor__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 22px; }
.counsellor__meta .m .k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.counsellor__meta .m .v { font-weight: 600; color: var(--text); margin-top: 4px; }

.faq { max-width: 840px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--sans); font-weight: 600; font-size: 1.1rem; color: var(--text); }
.faq-q .plus { flex:none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display:grid; place-items:center; position: relative; transition: .3s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content:''; position:absolute; background: var(--blue); transition: .3s var(--ease); }
.faq-q .plus::before { width: 12px; height: 2px; } .faq-q .plus::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .plus { background: var(--blue); border-color: var(--blue); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: #fff; }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--muted); padding-bottom: 26px; font-size: 1rem; }

/* ---------- Pills / notice / stats ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; background: #fff; border: 1px solid var(--line); color: var(--text); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.pill.alt .dot { background: var(--blue-2); }
.notice { display: flex; gap: 18px; padding: 26px 30px; border-radius: var(--radius); background: var(--blue-50); border: 1px solid rgba(35,95,223,.25); }
.notice .ico { color: var(--blue); flex: none; }
.notice h4 { font-weight: 700; margin-bottom: 6px; }
.notice p { color: var(--muted); font-size: .96rem; }
.stat-row { display: flex; flex-wrap: wrap; gap: 48px; }
.stat .n { font-family: var(--display); font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; color: var(--blue); line-height: 1; }
.stat .l { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---------- Forms ---------- */
form .field { margin-bottom: 18px; }
form label { display:block; font-size: 13px; letter-spacing:.04em; color: var(--muted); margin-bottom: 8px; }
form input, form textarea, form select { width: 100%; padding: 14px 16px; border-radius: 10px; background: #fff; border: 1px solid var(--line-2); color: var(--text); font-family: var(--sans); font-size: 15px; transition: border-color .3s, box-shadow .3s; }
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-50); }
form textarea { resize: vertical; min-height: 130px; }
form select { appearance: none; cursor: pointer; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-chip { flex: 1; min-width: 140px; }
.radio-chip input { position: absolute; opacity: 0; }
.radio-chip label { display: block; text-align: center; padding: 14px; border-radius: 10px; cursor: pointer; margin: 0; background: #fff; border: 1px solid var(--line-2); color: var(--muted); transition: .25s; }
.radio-chip input:checked + label { border-color: var(--blue); background: var(--blue-50); color: var(--blue); font-weight: 600; }
.form-note { font-size: 13px; color: var(--faint); margin-top: 14px; }
.form-card { padding: 40px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: 0 30px 70px -40px rgba(0,0,0,.3); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-item .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--blue-50); display: grid; place-items: center; color: var(--blue); flex: none; }
.info-item h4 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.info-item p, .info-item a { color: var(--muted); font-size: 1rem; }
.info-item a:hover { color: var(--blue); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/12; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- CTA band (full-bleed) ---------- */
.cta-band { position: relative; background: var(--ink); color: #fff; text-align: center; padding: 130px 0; overflow: hidden; }
.cta-band::before { content:''; position:absolute; inset:0; background: radial-gradient(880px 440px at 50% -5%, rgba(35,95,223,.5), transparent 70%); }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: var(--muted-d); margin-inline: auto; }

/* ---------- Page hero (inner pages — dark band) ---------- */
.page-hero { background: var(--ink); color: #fff; padding: 190px 0 86px; position: relative; text-align: center; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(800px 400px at 50% -10%, rgba(35,95,223,.4), transparent 65%); }
.page-hero > .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .crumb { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-d); margin-top: 18px; }
.page-hero .crumb a { color: var(--blue-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; border-top: 1px solid var(--line-d); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-brand p { color: var(--muted-d); font-size: .95rem; margin: 20px 0; max-width: 34ch; }
.footer-brand .logo img { height: 46px; }
.footer h5 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-2); margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--muted-d); font-size: .95rem; transition: color .25s; }
.footer-links a:hover { color: #fff; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-d); color: var(--muted-d); transition: .3s var(--ease); }
.socials a:hover { color: #fff; border-color: var(--blue); background: var(--blue); transform: translateY(-3px); }
.sub-form { display: flex; gap: 10px; margin-top: 8px; }
.sub-form input { flex: 1; padding: 13px 16px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid var(--line-d); color: #fff; }
.sub-form input::placeholder { color: var(--faint); }
.sub-form input:focus { outline: none; border-color: var(--blue); }
.footer-bottom { margin-top: 56px; padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: var(--faint); font-size: 13px; }

/* ---------- Image-top action cards ---------- */
.action-card { padding: 0; display: flex; flex-direction: column; }
.action-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--blue-50); }
.action-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.action-card:hover .action-card__img img { transform: scale(1.05); }
.action-card__body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.action-card__body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.action-card__body p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; flex: 1; }

/* ---------- Testimonies ---------- */
.testi-grid { columns: 3 300px; column-gap: 22px; }
.testi { break-inside: avoid; margin: 0 0 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; }
.testi p { color: var(--text); font-size: 1rem; line-height: 1.62; }
.testi cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; color: var(--blue); font-size: .9rem; }

/* ---------- Events ---------- */
.event-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.event-card { padding: 36px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.event-card:hover { transform: translateY(-5px); border-color: rgba(35,95,223,.4); box-shadow: 0 22px 46px -28px rgba(35,95,223,.5); }
.event-card .when { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); background: var(--blue-50); padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.event-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.event-card p { color: var(--muted); font-size: .97rem; }

/* ---------- Mission & Vision statement band ---------- */
.mv-band {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  padding: 150px 0;
  margin: 0; /* full-bleed feel via section not container */
}
.mv-band::before {
  content: ''; position: absolute; top: -260px; right: -240px;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(35,95,223,.32), rgba(35,95,223,0) 65%);
  pointer-events: none; filter: blur(10px);
}
.mv-band::after {
  content: ''; position: absolute; bottom: -300px; left: -260px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(96,157,201,.18), rgba(96,157,201,0) 65%);
  pointer-events: none; filter: blur(10px);
}
.mv-band .container { position: relative; z-index: 2; }
.mv-head { text-align: center; max-width: 780px; margin: 0 auto; }
.mv-head .eyebrow { color: var(--blue-2); }
.mv-head h2 { color: #fff; margin-top: 6px; }
.mv-head p { color: rgba(255,255,255,.72); max-width: 640px; margin: 16px auto 0; }
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 90px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mv-stmt {
  padding: 60px 60px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.mv-stmt:last-child { border-right: 0; }
.mv-num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(72px, 8vw, 118px); line-height: 1;
  color: var(--blue); letter-spacing: -0.05em;
  margin-bottom: 6px;
}
.mv-label {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: .32em; color: var(--blue-2);
  text-transform: uppercase; margin-bottom: 26px;
}
.mv-body {
  font-family: var(--sans);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.38; letter-spacing: -0.005em;
  color: #fff; font-weight: 500;
  margin: 0;
}
.mv-note {
  color: rgba(255,255,255,.6);
  font-size: 15px; margin: 26px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
}
@media (max-width: 900px) {
  .mv-band { padding: 100px 0; }
  .mv-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .mv-stmt { padding: 48px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .mv-stmt:last-child { border-bottom: 0; }
  .mv-num { font-size: 72px; }
}

/* ---------- Event countdown ---------- */
.event-countdown {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--blue-d) 0%, var(--blue) 40%, #4a7be8 100%);
  color: #fff; padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 2px 30px -8px rgba(35,95,223,.4);
}
.event-countdown::before {
  content: ''; position: absolute; top: -260px; right: -160px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,.18), rgba(255,255,255,0) 65%);
  pointer-events: none; filter: blur(10px);
}
.event-countdown::after {
  content: ''; position: absolute; bottom: -260px; left: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,0,0,.18), rgba(0,0,0,0) 65%);
  pointer-events: none; filter: blur(10px);
}
.event-countdown .container { position: relative; z-index: 2; }
.event-countdown[hidden] { display: none; }
.ec-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.ec-info {}
.ec-tag {
  display: inline-block; font-family: var(--display);
  font-size: 11px; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--blue-d);
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px; margin-bottom: 12px;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,.25);
}
.ec-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 8px; line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.ec-meta { color: rgba(255,255,255,.88); font-size: 14.5px; margin: 0; line-height: 1.55; }
.ec-meta strong { color: #fff; font-weight: 700; }
.ec-countdown { display: flex; gap: 10px; font-variant-numeric: tabular-nums; }
.ec-unit {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 78px; padding: 16px 12px 12px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 20px -8px rgba(0,0,0,.25);
}
.ec-num {
  font-family: var(--display); font-size: 34px; font-weight: 800;
  color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.ec-lbl {
  font-size: 9.5px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-top: 8px;
}
.ec-live {
  display: inline-block; margin-top: 10px;
  font-family: var(--display); font-size: 13px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: var(--blue);
  padding: 8px 16px; border-radius: 999px;
}
@media (max-width: 820px) {
  .event-countdown { padding: 34px 0; }
  .ec-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .ec-tag { }
  .ec-countdown { justify-content: center; gap: 8px; }
  .ec-unit { min-width: 64px; padding: 12px 8px 10px; }
  .ec-num { font-size: 26px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay:.08s } .reveal[data-delay="2"]{ transition-delay:.16s } .reveal[data-delay="3"]{ transition-delay:.24s }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  /* Tesla-style mobile drawer: right slide-in, grouped, scrollable */
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 2px; background: #fff; box-shadow: -18px 0 60px rgba(10,10,13,.16); transform: translateX(100%); transition: transform .45s var(--ease); padding: 100px 34px 44px; overflow-y: auto; }
  .nav-links.open { transform: none; }
  .nav-links > a { font-size: 20px; font-weight: 600; color: var(--ink); padding: 13px 0; }
  .scrolled .nav-links > a { color: var(--ink); }
  .has-dropdown { width: 100%; padding: 6px 0; }
  .has-dropdown > a { font-size: 20px; font-weight: 600; color: var(--ink); padding: 9px 0; }
  .scrolled .has-dropdown > a { color: var(--ink); }
  .has-dropdown > a .chev { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .hero__grid, .feature, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse { direction: ltr; }
  .hero__info { border-left: 0; border-top: 1px solid var(--line-d); padding-left: 0; padding-top: 28px; }
  .actions-grid, .trio, .give-grid, .pillars, .type-grid, .steps, .event-grid { grid-template-columns: 1fr; }
  .cards4 { grid-template-columns: repeat(2,1fr); }
  .counsellor { grid-template-columns: 1fr; } .counsellor__body { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .weekgrid { grid-template-columns: repeat(4,1fr); }
  .section { padding: 76px 0; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; background: transparent; border: 0; box-shadow: none; padding: 2px 0 6px 12px; }
  .has-dropdown:hover .dropdown { transform: none; }
  .dropdown a { color: var(--muted); font-size: 16px; padding: 9px 0; } .dropdown a:hover { background: transparent; color: var(--blue); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .meeting { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .meeting__img { width: 100%; height: 190px; }
  .meeting__time { justify-content: center; }
  .weekgrid { grid-template-columns: repeat(2,1fr); }
  .cards4 { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .container { padding-inline: 22px; }
}
