/* ═══════════════════════════════════════════════════
   IAP.ORG.IN — Shared Stylesheet
   Institute of Admissions Professionals
   © 2026 · contact@iap.org.in
   ═══════════════════════════════════════════════════ */

:root {
  --navy:       #0D1B2A;
  --gold:       #C9952A;
  --gold-light: #E8B84B;
  --cream:      #F5F0E8;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-light: #F9F8F6;
  --border:     #DDD8CE;
  --green:      #25D366;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--white); color:var(--navy); overflow-x:hidden; }

/* ── KEYFRAMES ── */
@keyframes pulse    { 0%,100%{transform:scale(1)} 50%{transform:scale(1.25)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer  { 0%{background-position:200% center} 100%{background-position:-200% center} }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(13,27,42,.97); backdrop-filter:blur(12px);
  padding:0 52px; display:flex; align-items:center;
  justify-content:space-between; height:68px;
  border-bottom:1px solid rgba(201,149,42,.2);
}
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nlm {
  width:40px; height:40px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-weight:900; font-size:17px; color:var(--navy);
  flex-shrink:0;
}
.nlt strong { font-family:'Playfair Display',serif; font-size:13.5px; color:var(--white); display:block; }
.nlt span   { font-size:9px; color:var(--gold-light); letter-spacing:1.5px; text-transform:uppercase; }
.nav-links  { display:flex; align-items:center; gap:18px; list-style:none; }
.nav-links a {
  text-decoration:none; color:rgba(255,255,255,.72);
  font-size:12.5px; font-weight:500; cursor:pointer; transition:color .2s;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold-light); }
.nav-ebooks  { color:var(--gold-light) !important; font-weight:600 !important; }
.nav-cta {
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--navy) !important; padding:8px 20px; border-radius:6px; font-weight:700 !important;
}
.nav-hamburger {
  display:none; background:none; border:1.5px solid rgba(255,255,255,.25);
  color:white; padding:6px 12px; border-radius:6px; font-size:18px; cursor:pointer;
}
.nav-mobile {
  display:none; position:fixed; top:68px; left:0; right:0;
  background:rgba(13,27,42,.99); z-index:999;
  flex-direction:column; padding:8px 24px 20px;
  border-bottom:1px solid rgba(201,149,42,.2);
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  color:rgba(255,255,255,.75); text-decoration:none; font-size:14px;
  padding:12px 0; border-bottom:1px solid rgba(255,255,255,.07);
}
.nav-mobile a:last-child { border:none; }
.nav-mobile-cta { color:var(--gold-light) !important; font-weight:700 !important; margin-top:6px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:9000;
  width:56px; height:56px; background:var(--green); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,.4);
  cursor:pointer; transition:transform .2s,box-shadow .2s; text-decoration:none;
}
.wa-float:hover { transform:scale(1.12); box-shadow:0 10px 32px rgba(37,211,102,.55); }
.wa-float svg  { width:28px; height:28px; fill:white; }
.wa-pulse {
  position:absolute; top:0; right:0; width:14px; height:14px;
  background:#ff4444; border-radius:50%; border:2px solid white;
  animation:pulse 2s infinite;
}

/* ── MODAL ── */
.modal-overlay {
  display:none; position:fixed; inset:0; z-index:9999;
  background:rgba(13,27,42,.85); backdrop-filter:blur(8px);
  align-items:center; justify-content:center;
}
.modal-overlay.open { display:flex; }
.modal-box {
  background:var(--white); border-radius:24px; padding:44px;
  max-width:480px; width:92%; position:relative;
  box-shadow:0 40px 100px rgba(0,0,0,.4); animation:fadeUp .3s ease;
  max-height:92vh; overflow-y:auto;
}
.modal-close { position:absolute; top:16px; right:18px; background:none; border:none; font-size:22px; cursor:pointer; color:var(--gray); }
.modal-icon {
  width:50px; height:50px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  border-radius:12px; display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:18px;
}
.modal-box h2 { font-family:'Playfair Display',serif; font-size:20px; color:var(--navy); margin-bottom:6px; line-height:1.3; }
.modal-sub    { font-size:13px; color:var(--gray); margin-bottom:24px; line-height:1.6; }
.modal-source-tag {
  display:inline-block; background:rgba(201,149,42,.1); border:1px solid rgba(201,149,42,.3);
  color:var(--gold); font-size:10px; letter-spacing:1px; text-transform:uppercase;
  padding:3px 10px; border-radius:100px; margin-bottom:14px; font-weight:600;
}
.success-state { display:none; text-align:center; padding:20px 0; }
.success-state .emo { font-size:52px; margin-bottom:16px; }
.success-state h3 { font-family:'Playfair Display',serif; font-size:22px; color:var(--navy); margin-bottom:10px; }
.success-state p  { font-size:13.5px; color:var(--gray); line-height:1.7; margin-bottom:24px; }
.success-state .wa-link {
  display:inline-flex; align-items:center; gap:8px; background:var(--green);
  color:white; padding:10px 20px; border-radius:8px; text-decoration:none;
  font-weight:600; font-size:13.5px; margin-top:8px;
}

/* ── FORMS ── */
.fg { margin-bottom:15px; }
.fg label { display:block; font-size:11.5px; letter-spacing:.4px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.fg input, .fg select, .fg textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:8px;
  font-family:'DM Sans',sans-serif; font-size:14px; color:var(--navy); background:var(--white);
  transition:border-color .2s; outline:none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--gold); }
.fg textarea { resize:vertical; min-height:88px; }
.fr { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.privacy-note { font-size:10.5px; color:var(--gray); text-align:center; margin-top:10px; line-height:1.5; }
.privacy-note a { color:var(--gold); text-decoration:none; }

/* ── BUTTONS ── */
.btn-primary {
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--navy); padding:13px 28px; border-radius:8px; font-weight:700;
  font-size:14.5px; text-decoration:none; border:none; cursor:pointer;
  transition:transform .2s,box-shadow .2s; display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,149,42,.35); }
.btn-outline {
  background:transparent; color:var(--white); padding:13px 28px; border-radius:8px;
  font-weight:600; font-size:14.5px; text-decoration:none; cursor:pointer;
  border:1.5px solid rgba(255,255,255,.25); transition:all .2s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-outline:hover { border-color:rgba(255,255,255,.6); background:rgba(255,255,255,.06); }
.btn-navy {
  background:var(--navy); color:var(--white); padding:13px 28px; border-radius:8px;
  font-weight:700; font-size:14.5px; border:none; cursor:pointer; transition:all .2s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-navy:hover { background:#162438; transform:translateY(-2px); }

/* ── HERO (home) ── */
.hero {
  min-height:100vh; background:var(--navy); position:relative;
  display:flex; align-items:center; overflow:hidden; padding-top:68px;
}
.hero-bg {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(201,149,42,.04) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(201,149,42,.04) 1px,transparent 1px);
  background-size:60px 60px;
}
.hero-glow {
  position:absolute; width:600px; height:600px;
  background:radial-gradient(circle,rgba(201,149,42,.12) 0%,transparent 70%);
  top:50%; left:62%; transform:translate(-50%,-50%);
}
.hero-content {
  position:relative; z-index:2; max-width:1200px; margin:0 auto;
  padding:80px 52px; display:grid; grid-template-columns:1fr 1fr;
  gap:70px; align-items:center;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,149,42,.1); border:1px solid rgba(201,149,42,.3);
  padding:6px 16px; border-radius:100px; font-size:11.5px;
  color:var(--gold-light); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:26px;
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; }
.hero h1 { font-family:'Playfair Display',serif; font-size:52px; line-height:1.1; font-weight:900; color:var(--white); margin-bottom:22px; }
.hero h1 em { font-style:normal; background:linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero-desc { font-size:15.5px; line-height:1.75; color:rgba(255,255,255,.62); margin-bottom:16px; }
.hero-audience { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.audience-pill { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); padding:5px 14px; border-radius:100px; font-size:12px; color:rgba(255,255,255,.7); }
.hero-actions  { display:flex; gap:14px; flex-wrap:wrap; }
.hero-stats    { display:flex; gap:32px; margin-top:48px; padding-top:32px; border-top:1px solid rgba(255,255,255,.1); }
.stat-num      { font-family:'Playfair Display',serif; font-size:32px; font-weight:900; background:linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.stat-label    { font-size:11px; color:rgba(255,255,255,.45); }
.hcard { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:14px; padding:22px; backdrop-filter:blur(10px); margin-bottom:12px; transition:transform .3s; }
.hcard:hover { transform:translateX(-5px); }
.hcard-icon { width:38px; height:38px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:17px; margin-bottom:11px; }
.hcard h3 { font-family:'Playfair Display',serif; font-size:16px; color:var(--white); margin-bottom:5px; }
.hcard p  { font-size:12.5px; color:rgba(255,255,255,.52); line-height:1.6; }

/* ── DARK HERO (inner pages) ── */
.dh { background:var(--navy); padding:128px 52px 76px; }
.dh-inner { max-width:1200px; margin:0 auto; }
.dh h1 { font-family:'Playfair Display',serif; font-size:48px; font-weight:900; color:var(--white); margin-bottom:18px; line-height:1.1; }
.dh h1 span { background:linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.dh p { font-size:15.5px; color:rgba(255,255,255,.6); max-width:510px; line-height:1.75; margin-bottom:10px; }
.dh-c { text-align:center; }
.dh-c p { margin:0 auto; }

/* ── CONTENT SECTIONS ── */
.sec { padding:88px 52px; max-width:1200px; margin:0 auto; }
.sl { font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:13px; display:flex; align-items:center; gap:10px; }
.sl::before { content:''; width:26px; height:2px; background:var(--gold); }
.st { font-family:'Playfair Display',serif; font-size:40px; font-weight:800; line-height:1.15; color:var(--navy); margin-bottom:16px; }
.ss { font-size:15.5px; color:var(--gray); line-height:1.72; max-width:560px; margin-bottom:52px; }
.g3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.g2 { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.card { background:var(--white); border:1.5px solid var(--border); border-radius:16px; padding:30px; transition:box-shadow .3s,transform .3s; }
.card:hover { box-shadow:0 12px 40px rgba(13,27,42,.09); transform:translateY(-4px); }
.ci-s  { font-size:28px; margin-bottom:14px; }
.card h3 { font-family:'Playfair Display',serif; font-size:18px; margin-bottom:9px; color:var(--navy); }
.card p  { font-size:13.5px; color:var(--gray); line-height:1.7; }

/* ── NEWSLETTER STRIP ── */
.newsletter-strip { background:linear-gradient(135deg,#162438,#0d1b2a); padding:52px; border-top:1px solid rgba(201,149,42,.15); }
.newsletter-strip-inner { max-width:680px; margin:0 auto; text-align:center; }
.newsletter-strip h3 { font-family:'Playfair Display',serif; font-size:26px; color:var(--white); margin-bottom:10px; }
.newsletter-strip p  { font-size:14px; color:rgba(255,255,255,.55); margin-bottom:26px; line-height:1.6; }
.nl-form { display:flex; gap:10px; max-width:480px; margin:0 auto; }
.nl-form input { flex:1; padding:12px 16px; border:1.5px solid rgba(255,255,255,.2); border-radius:8px; background:rgba(255,255,255,.07); color:white; font-family:'DM Sans',sans-serif; font-size:14px; outline:none; transition:border-color .2s; }
.nl-form input::placeholder { color:rgba(255,255,255,.4); }
.nl-form input:focus { border-color:var(--gold); }

/* ── CTA BAND ── */
.ctaband { background:linear-gradient(135deg,var(--navy),#162438); padding:88px 52px; text-align:center; border-top:1px solid rgba(201,149,42,.15); }
.ctaband .sl { justify-content:center; }
.ctaband h2 { font-family:'Playfair Display',serif; font-size:38px; font-weight:900; color:var(--white); margin-bottom:16px; line-height:1.15; }
.ctaband p  { font-size:15.5px; color:rgba(255,255,255,.6); max-width:520px; margin:0 auto 36px; line-height:1.75; }

/* ── FOOTER ── */
.std-footer { background:var(--navy); padding:60px 52px 0; }
.fi { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; max-width:1200px; margin:0 auto; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08); }
.fb-brand p { font-size:13px; color:rgba(255,255,255,.45); line-height:1.7; margin:14px 0; }
.contact-line { font-size:12.5px; color:rgba(255,255,255,.5); line-height:2.1; }
.contact-line a { color:var(--gold-light); text-decoration:none; }
.fc h4  { font-family:'Playfair Display',serif; font-size:14px; color:var(--white); margin-bottom:14px; }
.fc ul  { list-style:none; }
.fc li  { margin-bottom:9px; }
.fc a   { font-size:12.5px; color:rgba(255,255,255,.5); text-decoration:none; transition:color .2s; }
.fc a:hover { color:var(--gold-light); }
.fbot { max-width:1200px; margin:0 auto; padding:22px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.fbot p { font-size:11.5px; color:rgba(255,255,255,.28); }
.fbot a { color:rgba(255,255,255,.35); text-decoration:none; }

/* ── ABOUT PAGE ── */
.ag { display:grid; grid-template-columns:1fr 380px; gap:60px; align-items:start; }
.profile-card { background:rgba(255,255,255,.05); border:1px solid rgba(201,149,42,.25); border-radius:20px; padding:28px; text-align:center; }
.profile-photo { width:140px; height:140px; border-radius:50%; margin:0 auto 18px; overflow:hidden; border:3px solid var(--gold); flex-shrink:0; }
.profile-photo img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.profile-card h3   { font-family:'Playfair Display',serif; font-size:20px; color:var(--white); margin-bottom:5px; }
.p-role  { font-size:12px; color:var(--gold-light); margin-bottom:20px; line-height:1.5; }
.timeline { text-align:left; border-top:1px solid rgba(255,255,255,.1); padding-top:18px; }
.tli { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:12.5px; color:rgba(255,255,255,.65); line-height:1.5; }
.tldot { width:8px; height:8px; min-width:8px; background:var(--gold); border-radius:50%; margin-top:5px; }
.plinks { display:flex; gap:10px; justify-content:center; margin-top:18px; flex-wrap:wrap; }
.plink { display:inline-flex; align-items:center; gap:6px; background:rgba(201,149,42,.1); border:1px solid rgba(201,149,42,.3); color:var(--gold-light); font-size:11.5px; padding:6px 14px; border-radius:6px; text-decoration:none; transition:background .2s; font-weight:500; }
.plink:hover { background:rgba(201,149,42,.2); }

/* ── CERTIFICATIONS ── */
.cert-card { border:1.5px solid var(--border); border-radius:20px; overflow:hidden; transition:box-shadow .3s,transform .3s; }
.cert-card:hover { box-shadow:0 20px 60px rgba(13,27,42,.12); transform:translateY(-5px); }
.cert-head { background:var(--navy); padding:32px; position:relative; overflow:hidden; }
.cert-head::after { content:''; position:absolute; top:-40px; right:-40px; width:110px; height:110px; background:radial-gradient(circle,rgba(201,149,42,.2),transparent); border-radius:50%; }
.ctag { display:inline-block; background:rgba(201,149,42,.15); border:1px solid rgba(201,149,42,.4); color:var(--gold-light); font-size:10.5px; letter-spacing:1.5px; text-transform:uppercase; padding:4px 11px; border-radius:100px; margin-bottom:13px; }
.cert-head h2 { font-family:'Playfair Display',serif; font-size:22px; color:var(--white); margin-bottom:7px; }
.cert-head p  { font-size:13px; color:rgba(255,255,255,.52); }
.cert-body    { padding:30px; }
.cmeta        { display:flex; gap:22px; margin-bottom:22px; }
.cmeta-item label { font-size:9.5px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gray); font-weight:600; display:block; margin-bottom:3px; }
.cmeta-item span  { font-size:14px; font-weight:700; color:var(--navy); }
.modlist { list-style:none; margin-bottom:24px; }
.modlist li { display:flex; align-items:flex-start; gap:9px; padding:8px 0; border-bottom:1px solid var(--border); font-size:13.5px; color:var(--navy); }
.modlist li::before { content:'✓'; width:18px; height:18px; min-width:18px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:9px; color:var(--navy); font-weight:800; margin-top:2px; }
.coming-soon-note { background:rgba(201,149,42,.06); border:1px solid rgba(201,149,42,.2); border-radius:8px; padding:12px 16px; font-size:12.5px; color:#92660a; margin-bottom:16px; line-height:1.5; }

/* ── COMMUNITY ── */
.community-card { border:1.5px solid var(--border); border-radius:20px; overflow:hidden; transition:box-shadow .3s,transform .3s; }
.community-card:hover { box-shadow:0 16px 48px rgba(13,27,42,.11); transform:translateY(-5px); }
.cc-head { background:var(--navy); padding:32px; position:relative; overflow:hidden; }
.cc-head::after { content:''; position:absolute; top:-40px; right:-40px; width:110px; height:110px; background:radial-gradient(circle,rgba(201,149,42,.2),transparent); border-radius:50%; }
.cc-tag { display:inline-block; background:rgba(201,149,42,.15); border:1px solid rgba(201,149,42,.4); color:var(--gold-light); font-size:10.5px; letter-spacing:1.5px; text-transform:uppercase; padding:4px 11px; border-radius:100px; margin-bottom:13px; }
.cc-head h2 { font-family:'Playfair Display',serif; font-size:22px; color:var(--white); margin-bottom:7px; }
.cc-head p  { font-size:13px; color:rgba(255,255,255,.52); }
.cc-body { padding:30px; }
.cc-feats { list-style:none; margin-bottom:24px; }
.cc-feats li { display:flex; align-items:center; gap:9px; font-size:13.5px; padding:8px 0; border-bottom:1px solid var(--border); color:var(--navy); }
.cc-feats li::before { content:'✓'; color:var(--gold); font-weight:800; }
.free-badge { display:inline-block; background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.3); color:#16a34a; font-size:10px; letter-spacing:1px; text-transform:uppercase; padding:3px 10px; border-radius:100px; font-weight:700; margin-bottom:16px; }

/* ── EVENTS / WEBINARS ── */
.event-card { display:grid; grid-template-columns:90px 1fr auto; gap:26px; align-items:center; border:1.5px solid var(--border); border-radius:14px; padding:22px 26px; transition:box-shadow .3s,border-color .3s; }
.event-card:hover { box-shadow:0 8px 32px rgba(13,27,42,.09); border-color:var(--gold); }
.edate { text-align:center; background:var(--navy); border-radius:10px; padding:12px; }
.edate .day   { font-family:'Playfair Display',serif; font-size:26px; font-weight:900; background:linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; line-height:1; }
.edate .month { font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.52); margin-top:3px; }
.einfo h3 { font-family:'Playfair Display',serif; font-size:18px; margin-bottom:6px; }
.einfo p  { font-size:13px; color:var(--gray); line-height:1.6; }
.tags { display:flex; gap:7px; margin-top:9px; flex-wrap:wrap; }
.tag  { background:var(--cream); border:1px solid var(--border); padding:3px 10px; border-radius:100px; font-size:10.5px; color:var(--navy); font-weight:500; }

/* ── EBOOKS PAGE ── */
.eb-hero { background:var(--navy); padding:128px 52px 72px; position:relative; overflow:hidden; }
.eb-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(201,149,42,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(201,149,42,.04) 1px,transparent 1px); background-size:60px 60px; }
.eb-glow { position:absolute; width:500px; height:500px; background:radial-gradient(circle,rgba(201,149,42,.11),transparent 70%); top:40%; left:70%; transform:translate(-50%,-50%); }
.eb-hero-inner { max-width:1200px; margin:0 auto; position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.eb-hero h1 { font-family:'Playfair Display',serif; font-size:50px; font-weight:900; color:var(--white); margin-bottom:18px; line-height:1.1; }
.eb-hero h1 em { font-style:normal; background:linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.eb-hero p { font-size:15.5px; color:rgba(255,255,255,.62); line-height:1.75; margin-bottom:28px; }
.eb-stats { display:flex; gap:32px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); }
.eb-stats .num { font-family:'Playfair Display',serif; font-size:28px; font-weight:900; background:linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.eb-stats .lbl { font-size:11px; color:rgba(255,255,255,.45); }
.stack { display:flex; flex-direction:column; gap:12px; }
.scard { background:rgba(255,255,255,.06); border:1px solid rgba(201,149,42,.2); border-radius:12px; padding:18px 22px; backdrop-filter:blur(10px); transition:transform .2s; }
.scard:hover { transform:translateX(-4px); }
.scard-cat  { font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold-light); font-weight:600; margin-bottom:6px; }
.scard h4   { font-family:'Playfair Display',serif; font-size:14.5px; color:var(--white); margin-bottom:5px; }
.scard-meta { font-size:11.5px; color:rgba(255,255,255,.4); }
.filter-bar { max-width:1200px; margin:0 auto; padding:36px 52px 0; display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.filter-bar-inner { display:flex; align-items:center; gap:10px; flex-wrap:wrap; width:100%; }
.flbl { font-size:11.5px; font-weight:600; color:var(--gray); margin-right:4px; }
.fb2  { padding:8px 18px; border-radius:100px; border:1.5px solid var(--border); background:var(--white); font-size:12.5px; font-weight:500; color:var(--navy); cursor:pointer; transition:all .2s; }
.fb2:hover, .fb2.active { background:var(--navy); color:var(--white); border-color:var(--navy); }
.eb-grid-sec { padding:40px 52px 88px; max-width:1200px; margin:0 auto; }
.eb-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.eb-card { border:1.5px solid var(--border); border-radius:18px; overflow:hidden; transition:box-shadow .35s,transform .35s; cursor:pointer; background:var(--white); }
.eb-card:hover { box-shadow:0 16px 48px rgba(13,27,42,.13); transform:translateY(-6px); }
.eb-card.hidden { display:none; }
.eb-body { padding:18px 18px 14px; }
.eb-body h3 { font-family:'Playfair Display',serif; font-size:15px; margin-bottom:7px; color:var(--navy); line-height:1.35; }
.eb-body p  { font-size:12.5px; color:var(--gray); line-height:1.6; margin-bottom:12px; }
.eb-footer  { display:flex; align-items:center; justify-content:space-between; }
.eb-pages   { font-size:11px; color:var(--gray); }
.eb-btn { background:linear-gradient(135deg,var(--gold),var(--gold-light)); color:var(--navy); border:none; padding:6px 13px; border-radius:6px; font-size:11.5px; font-weight:700; cursor:pointer; }
.lm-band { background:var(--navy); padding:76px 52px; text-align:center; }
.lm-band .sl { justify-content:center; }
.lm-band h2 { font-family:'Playfair Display',serif; font-size:34px; font-weight:900; color:var(--white); margin-bottom:14px; }
.lm-band p  { font-size:15px; color:rgba(255,255,255,.55); max-width:480px; margin:0 auto 32px; line-height:1.7; }

/* ── BOOK COVERS (CSS) ── */
.book-cover { width:100%; height:190px; border-radius:8px 2px 2px 8px; position:relative; display:flex; flex-direction:column; justify-content:flex-end; padding:14px; overflow:hidden; box-shadow:4px 4px 16px rgba(0,0,0,.4),-1px 0 0 rgba(255,255,255,.08) inset; }
.book-cover::before { content:''; position:absolute; left:0; top:0; bottom:0; width:8px; background:rgba(0,0,0,.25); z-index:1; }
.book-cover::after  { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,transparent 40%,rgba(0,0,0,.7)); z-index:1; }
.book-cover-inner   { position:relative; z-index:2; }
.book-cover-cat     { font-size:8px; letter-spacing:2px; text-transform:uppercase; color:var(--gold-light); font-weight:700; margin-bottom:6px; opacity:.9; }
.book-cover-title   { font-family:'Playfair Display',serif; font-size:13px; font-weight:900; color:white; line-height:1.3; margin-bottom:8px; }
.book-cover-brand   { font-size:8px; color:rgba(255,255,255,.5); letter-spacing:1px; text-transform:uppercase; }
.book-cover-icon    { position:absolute; top:14px; right:14px; font-size:26px; z-index:2; opacity:.85; }
.book-cover-badge   { position:absolute; top:10px; left:14px; z-index:3; background:rgba(34,197,94,.2); border:1px solid rgba(34,197,94,.4); color:#4ade80; font-size:7.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:2px 7px; border-radius:100px; }
.bc1{background:linear-gradient(145deg,#0a1628,#1a3a6e 50%,#0d1b2a);}
.bc2{background:linear-gradient(145deg,#0f1923,#1a1040 50%,#0d1b2a);}
.bc3{background:linear-gradient(145deg,#0a1e1e,#0d3b3b 50%,#0a1628);}
.bc4{background:linear-gradient(145deg,#1a0a0a,#3b1a1a 50%,#1a0d0d);}
.bc5{background:linear-gradient(145deg,#0a1a0a,#1a3a1a 50%,#0d1b2a);}
.bc6{background:linear-gradient(145deg,#1a1a0a,#3a3010 50%,#1a1500);}
.bc7{background:linear-gradient(145deg,#0a0a1a,#101030 50%,#0d0d2a);}
.bc8{background:linear-gradient(145deg,#1a0a1a,#300830 50%,#1a0020);}

/* ── RESOURCES ── */
.res-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1200px; margin:0 auto; padding:0 52px 88px; }
.res-card { border:1.5px solid var(--border); border-radius:16px; overflow:hidden; background:var(--white); transition:box-shadow .3s,transform .3s; }
.res-card:hover { box-shadow:0 12px 40px rgba(13,27,42,.1); transform:translateY(-4px); }
.res-cover-css { width:100%; height:148px; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.res-cover-css::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,transparent 25%,rgba(0,0,0,.75)); pointer-events:none; }
.res-icon-big   { font-size:42px; position:relative; z-index:2; filter:drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.res-cover-title { position:absolute; bottom:12px; left:12px; right:12px; z-index:3; font-size:10.5px; font-weight:700; color:white; font-family:'Playfair Display',serif; line-height:1.35; text-shadow:0 1px 4px rgba(0,0,0,.6); }
.res-body { padding:20px; }
.rtype { font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:8px; }
.res-body h3 { font-family:'Playfair Display',serif; font-size:16px; color:var(--navy); margin-bottom:8px; }
.res-body p  { font-size:13px; color:var(--gray); line-height:1.65; margin-bottom:14px; }
.res-meta { display:flex; align-items:center; justify-content:space-between; }
.res-meta span { font-size:11.5px; color:var(--gray); }

/* ── CONTACT ── */
.cw  { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.cil { display:flex; flex-direction:column; gap:14px; margin-top:28px; }
.ci2 { display:flex; align-items:flex-start; gap:14px; }
.ci-ico { width:42px; height:42px; min-width:42px; background:rgba(201,149,42,.1); border:1px solid rgba(201,149,42,.25); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; }
.ci2 h4 { font-family:'Playfair Display',serif; font-size:13px; color:var(--white); margin-bottom:3px; }
.ci2 p  { font-size:13px; color:rgba(255,255,255,.55); }
.ci2 a  { color:var(--gold-light); text-decoration:none; }
.cf    { background:var(--white); border-radius:20px; padding:36px; }
.cf h2 { font-family:'Playfair Display',serif; font-size:22px; color:var(--navy); margin-bottom:8px; }
.cf .sub { font-size:13.5px; color:var(--gray); margin-bottom:24px; line-height:1.6; }
.cf .sub a { color:var(--gold); text-decoration:none; }

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  nav { padding:0 20px; }
  .nav-links { display:none; }
  .nav-hamburger { display:block; }
  .hero-content, .eb-hero-inner, .ag, .cw { grid-template-columns:1fr; gap:40px; }
  .hero { padding-top:68px; }
  .hero-content { padding:52px 24px 60px; }
  .hero h1 { font-size:36px; }
  .sec { padding:60px 24px; }
  .dh  { padding:100px 24px 52px; }
  .dh h1, .dh-c h1 { font-size:34px; }
  .g3, .eb-grid { grid-template-columns:1fr 1fr; }
  .fi { grid-template-columns:1fr 1fr; }
  .std-footer { padding:44px 24px 0; }
  .res-grid { grid-template-columns:1fr 1fr; padding:0 24px 60px; }
  .filter-bar, .eb-grid-sec { padding-left:24px; padding-right:24px; }
  .event-card { grid-template-columns:80px 1fr; gap:16px; }
  .newsletter-strip, .ctaband, .lm-band { padding:44px 24px; }
  .ag { grid-template-columns:1fr; }
  .profile-card { max-width:360px; }
}
@media (max-width:560px) {
  .g3, .eb-grid, .res-grid, .g2 { grid-template-columns:1fr; }
  .fi { grid-template-columns:1fr; }
  .hero h1 { font-size:28px; }
  .dh h1, .dh-c h1 { font-size:26px; }
  .st { font-size:28px; }
  .fr { grid-template-columns:1fr; }
  .hero-stats { flex-wrap:wrap; gap:16px; }
  .event-card { grid-template-columns:1fr; }
  .cmeta { flex-wrap:wrap; gap:14px; }
}
