/* ==========================================================================
   SKUMAR.CO.IN — Coach Sanjeev Kumar
   Design tokens: deep indigo-night surface, marigold + coral accents,
   Fraunces (display) / Manrope (body). Signature motif: the "sunrise arc".
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500;1,9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  /* --- color --- */
  --bg:            #10131C;
  --bg-soft:       #161B27;
  --panel:         #1B2233;
  --panel-line:    rgba(246,242,233,0.10);
  --ink:           #F6F2E9;
  --ink-dim:       #C9CBD8;
  --muted:         #8C93A8;
  --accent:        #F2A93B;   /* marigold */
  --accent-ink:    #1A1406;
  --accent-2:      #E8563D;   /* coral */
  --accent-3:      #7FB2A0;   /* muted sage — third, quiet accent */
  --grad-sunrise:  linear-gradient(120deg, #F2A93B 0%, #E8563D 100%);

  /* --- type --- */
  --f-display: 'Fraunces', ui-serif, Georgia, serif;
  --f-body:    'Manrope', ui-sans-serif, system-ui, sans-serif;

  /* --- shape / motion --- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22,.9,.32,1);
  --dur: .7s;
  --container: 1180px;
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; }
h1,h2,h3,h4{ font-family:var(--f-display); margin:0 0 .5em; line-height:1.12; font-weight:600; color:var(--ink); }
p{ margin:0 0 1em; color:var(--ink-dim); }
:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:4px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- layout helpers ---------- */
.wrap{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:100px 0; position:relative; }
.section--tight{ padding:64px 0; }
.section--soft{ background:var(--bg-soft); }
.section--panel{ background:var(--panel); }
.grid{ display:grid; gap:32px; }
.g2{ grid-template-columns:repeat(2,1fr); }
.g3{ grid-template-columns:repeat(3,1fr); }
.g4{ grid-template-columns:repeat(4,1fr); }
.center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-body); font-weight:700; font-size:12.5px;
  letter-spacing:.16em; text-transform:uppercase; color:var(--accent);
  margin-bottom:16px;
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--grad-sunrise); border-radius:2px; }
.eyebrow.devanagari{ font-size:14px; letter-spacing:.02em; text-transform:none; color:var(--accent-3); font-family:var(--f-display); font-style:italic; }

.headline{ font-size:clamp(2.2rem, 4.4vw, 3.6rem); letter-spacing:-.01em; }
.headline em{ font-style:italic; color:var(--accent); font-weight:500; }
.sub{ font-size:1.1rem; color:var(--ink-dim); max-width:640px; }
.sub.center{ margin-left:auto; margin-right:auto; }

.small-cap{ font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); font-weight:700; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px; border-radius:999px; font-weight:700; font-size:.95rem;
  border:1px solid transparent; cursor:pointer; transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space:nowrap;
}
.btn-primary{ background:var(--grad-sunrise); color:var(--accent-ink); box-shadow:0 10px 30px -12px rgba(242,169,59,.55); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px -10px rgba(242,169,59,.65); }
.btn-ghost{ background:transparent; border-color:var(--panel-line); color:var(--ink); }
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-3px); }
.btn-arrow{ transition:transform .35s var(--ease); }
.btn:hover .btn-arrow{ transform:translateX(4px); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:22px 0; transition:padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; }
.site-header.is-scrolled{
  padding:12px 0; background:rgba(16,19,28,.86); backdrop-filter:blur(14px);
  box-shadow:0 1px 0 var(--panel-line);
}
.logo{ display:flex; align-items:center; gap:10px; font-family:var(--f-display); font-size:1.35rem; font-weight:600; letter-spacing:-.01em; }
.logo .mark{ width:34px; height:34px; flex:none; }
.logo .word em{ font-style:italic; color:var(--accent); }
.logo .tag{ display:block; font-family:var(--f-body); font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); font-weight:700; margin-top:1px; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{ font-size:.92rem; font-weight:600; color:var(--ink-dim); position:relative; padding:6px 0; transition:color .3s; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--grad-sunrise); transition:width .3s var(--ease); border-radius:2px; }
.nav-links a:hover, .nav-links a.active{ color:var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.nav-toggle{ display:none; width:42px; height:42px; border-radius:50%; border:1px solid var(--panel-line); background:transparent; color:var(--ink); align-items:center; justify-content:center; cursor:pointer; }
.nav-toggle svg{ width:18px; height:18px; }

/* ---------- mobile nav ---------- */
.mobile-nav{
  position:fixed; inset:0; z-index:99; background:var(--bg);
  display:flex; flex-direction:column; justify-content:center; padding:32px;
  transform:translateY(-100%); opacity:0; transition:transform .5s var(--ease), opacity .4s var(--ease);
  pointer-events:none;
}
.mobile-nav.is-open{ transform:translateY(0); opacity:1; pointer-events:auto; }
.mobile-nav a{ font-family:var(--f-display); font-size:2.2rem; padding:14px 0; border-bottom:1px solid var(--panel-line); }
.mobile-nav .btn{ margin-top:24px; }

/* ---------- hero ---------- */
.hero{
  position:relative; padding:190px 0 120px; overflow:hidden;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(242,169,59,.16), transparent 60%),
    radial-gradient(45% 50% at 8% 92%, rgba(232,86,61,.14), transparent 60%),
    var(--bg);
}
.hero .wrap{ position:relative; z-index:2; display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; }
.hero-eyebrow-row{ display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.hero h1{ font-size:clamp(2.6rem, 5.6vw, 4.4rem); letter-spacing:-.015em; }
.hero h1 em{ font-style:italic; font-weight:500; color:var(--accent); }
.hero .sub{ font-size:1.18rem; margin:22px 0 34px; }
.hero-cta-row{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:34px; margin-top:56px; flex-wrap:wrap; }
.hero-stats .num{ font-family:var(--f-display); font-size:1.9rem; color:var(--accent); }
.hero-stats .lbl{ font-size:.78rem; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; }

.hero-portrait{ position:relative; }
.hero-portrait .frame{
  position:relative; border-radius:36% 64% 62% 38% / 46% 40% 60% 54%;
  overflow:hidden; aspect-ratio:1/1.06; border:1px solid var(--panel-line);
  box-shadow:0 30px 70px -25px rgba(0,0,0,.65);
  animation:morph 14s ease-in-out infinite;
}
.hero-portrait img{ width:100%; height:100%; object-fit:cover; }
@keyframes morph{
  0%,100%{ border-radius:36% 64% 62% 38% / 46% 40% 60% 54%; }
  50%{ border-radius:58% 42% 40% 60% / 40% 62% 38% 60%; }
}
.hero-portrait .ring{
  position:absolute; inset:-22px; border:1px dashed rgba(242,169,59,.35); border-radius:50%;
  animation:spin 40s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.hero-portrait .badge{
  position:absolute; bottom:-18px; left:-28px; background:var(--panel);
  border:1px solid var(--panel-line); border-radius:var(--radius-md);
  padding:16px 20px; box-shadow:0 20px 40px -20px rgba(0,0,0,.6);
  display:flex; align-items:center; gap:12px; max-width:230px;
}
.hero-portrait .badge .n{ font-family:var(--f-display); font-size:1.7rem; color:var(--accent); }
.hero-portrait .badge .t{ font-size:.75rem; color:var(--muted); line-height:1.3; }

.arc-divider{ display:block; width:100%; height:auto; margin:-1px 0; }
.arc-divider path{ stroke:url(#arcGrad); }

/* floating orbs */
.orb{ position:absolute; border-radius:50%; filter:blur(60px); opacity:.5; z-index:1; pointer-events:none; }
.orb--1{ width:340px; height:340px; background:var(--accent); top:-100px; right:-60px; animation:float1 16s ease-in-out infinite; }
.orb--2{ width:260px; height:260px; background:var(--accent-2); bottom:-80px; left:-40px; animation:float2 18s ease-in-out infinite; }
@keyframes float1{ 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(-30px,40px); } }
@keyframes float2{ 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(24px,-30px); } }

/* ---------- ticker ---------- */
.ticker{ background:var(--grad-sunrise); overflow:hidden; padding:14px 0; }
.ticker-track{ display:flex; gap:48px; white-space:nowrap; animation:ticker 32s linear infinite; width:max-content; }
.ticker span{ font-family:var(--f-display); font-style:italic; font-weight:600; color:var(--accent-ink); font-size:1rem; }
.ticker span::after{ content:"✦"; margin-left:48px; opacity:.6; }
@keyframes ticker{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- reveal ---------- */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-scale{ opacity:0; transform:scale(.94); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.is-visible{ opacity:1; transform:scale(1); }
.stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* ---------- stats band ---------- */
.stats-band{ background:var(--panel); border-top:1px solid var(--panel-line); border-bottom:1px solid var(--panel-line); }
.stats-band .grid{ grid-template-columns:repeat(5,1fr); gap:0; }
.stat{ text-align:center; padding:44px 12px; border-right:1px solid var(--panel-line); }
.stat:last-child{ border-right:none; }
.stat .num{ font-family:var(--f-display); font-size:2.4rem; color:var(--accent); }
.stat .lbl{ font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin-top:6px; }

/* ---------- section head ---------- */
.section-head{ max-width:680px; margin:0 auto 56px; text-align:center; }
.section-head.left{ margin:0 0 56px; text-align:left; }

/* ---------- cards ---------- */
.card{
  background:var(--panel); border:1px solid var(--panel-line); border-radius:var(--radius-md);
  padding:36px 30px; transition:transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position:relative; overflow:hidden;
}
.card:hover{ transform:translateY(-8px); border-color:rgba(242,169,59,.4); box-shadow:0 24px 50px -28px rgba(0,0,0,.7); }
.card .icon{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(242,169,59,.18), rgba(232,86,61,.14)); margin-bottom:22px;
}
.card .icon svg{ width:24px; height:24px; stroke:var(--accent); }
.card h3{ font-size:1.28rem; margin-bottom:10px; }
.card p{ font-size:.95rem; margin-bottom:0; }
.card .num-tag{ position:absolute; top:22px; right:26px; font-family:var(--f-display); font-style:italic; font-size:1.6rem; color:rgba(246,242,233,.08); }

.pillar-grid{ grid-template-columns:repeat(3,1fr); }

/* program / topic list */
.topic-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.topic-item{
  display:flex; align-items:center; gap:14px; background:var(--panel); border:1px solid var(--panel-line);
  border-radius:14px; padding:18px 20px; transition:border-color .3s, transform .3s;
}
.topic-item:hover{ border-color:var(--accent); transform:translateX(4px); }
.topic-item .dot{ width:9px; height:9px; border-radius:50%; background:var(--grad-sunrise); flex:none; }
.topic-item h4{ font-size:1rem; margin:0; font-family:var(--f-body); font-weight:700; }

/* ---------- about split ---------- */
.split{ display:grid; grid-template-columns:.86fr 1.14fr; gap:64px; align-items:center; }
.split.rev{ grid-template-columns:1.14fr .86fr; }
.split.rev .split-media{ order:2; }
.split-media{ position:relative; }
.split-media img{ border-radius:var(--radius-lg); width:100%; object-fit:cover; aspect-ratio:4/5; }
.split-media .frame-line{ position:absolute; inset:16px -16px -16px 16px; border:1px solid var(--accent); border-radius:var(--radius-lg); z-index:-1; }
.split h2{ font-size:clamp(1.9rem,3vw,2.6rem); }
.split ul{ margin-top:22px; }
.split ul li{ display:flex; gap:12px; padding:10px 0; border-top:1px solid var(--panel-line); color:var(--ink-dim); font-size:.96rem; }
.split ul li:first-child{ border-top:none; }
.split ul li svg{ width:18px; height:18px; stroke:var(--accent); flex:none; margin-top:2px; }

/* ---------- quote ---------- */
.quote-block{
  text-align:center; max-width:820px; margin:0 auto; position:relative;
}
.quote-block .mark{ font-family:var(--f-display); font-size:5rem; color:var(--accent); line-height:0; position:relative; top:22px; opacity:.8; }
.quote-block p{ font-family:var(--f-display); font-style:italic; font-size:clamp(1.3rem,2.4vw,1.9rem); color:var(--ink); font-weight:500; line-height:1.45; }
.quote-block .attr{ margin-top:18px; color:var(--muted); font-family:var(--f-body); font-style:normal; font-size:.85rem; letter-spacing:.06em; text-transform:uppercase; }

/* ---------- timeline (journey) ---------- */
.journey{ position:relative; padding-left:36px; }
.journey::before{ content:""; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background:linear-gradient(var(--accent),var(--accent-2)); border-radius:2px; }
.journey-item{ position:relative; padding-bottom:44px; }
.journey-item:last-child{ padding-bottom:0; }
.journey-item::before{ content:""; position:absolute; left:-36px; top:2px; width:14px; height:14px; border-radius:50%; background:var(--bg); border:2px solid var(--accent); }
.journey-item .yr{ font-family:var(--f-display); font-style:italic; color:var(--accent); font-size:1.05rem; }
.journey-item h4{ margin:6px 0 6px; font-size:1.15rem; }
.journey-item p{ font-size:.94rem; margin:0; }

/* ---------- gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:18px; }
.gallery-item{ position:relative; border-radius:16px; overflow:hidden; cursor:pointer; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item .cap{
  position:absolute; inset:auto 0 0 0; padding:16px; background:linear-gradient(to top, rgba(10,12,18,.88), transparent);
  transform:translateY(100%); transition:transform .4s var(--ease); font-size:.85rem; font-weight:700;
}
.gallery-item:hover .cap{ transform:translateY(0); }
.gallery-item.tall{ grid-row:span 2; }
.gallery-item.wide{ grid-column:span 2; }

.lightbox{ position:fixed; inset:0; background:rgba(8,9,13,.94); z-index:200; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .35s; padding:40px; }
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:min(900px,90vw); max-height:82vh; border-radius:14px; box-shadow:0 40px 80px -20px rgba(0,0,0,.7); }
.lightbox-close{ position:absolute; top:26px; right:32px; width:44px; height:44px; border-radius:50%; border:1px solid var(--panel-line); background:var(--panel); color:var(--ink); cursor:pointer; }

/* ---------- book page ---------- */
.book-hero .split{ align-items:start; }
.book-cover-wrap{ position:relative; }
.book-cover-wrap img{ border-radius:14px; box-shadow:0 40px 80px -24px rgba(0,0,0,.7); }
.book-facts{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:26px 0 30px; }
.book-fact{ background:var(--panel); border:1px solid var(--panel-line); border-radius:12px; padding:16px 18px; }
.book-fact .k{ font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); }
.book-fact .v{ font-family:var(--f-display); font-size:1.05rem; margin-top:4px; }

/* ---------- testimonial marquee ---------- */
.press-row{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:28px; opacity:.75; }
.press-row span{ font-family:var(--f-display); font-style:italic; font-size:1.15rem; color:var(--ink-dim); }

/* ---------- forms ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); font-weight:700; }
.field input, .field select, .field textarea{
  background:var(--bg-soft); border:1px solid var(--panel-line); border-radius:12px; padding:15px 16px;
  color:var(--ink); font-family:var(--f-body); font-size:.95rem; transition:border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--accent); box-shadow:0 0 0 4px rgba(242,169,59,.14); }
.field textarea{ resize:vertical; min-height:130px; }
.form-note{ font-size:.82rem; color:var(--muted); margin-top:14px; }
.form-success{ display:none; align-items:center; gap:10px; background:rgba(127,178,160,.14); border:1px solid rgba(127,178,160,.4); color:var(--accent-3); padding:14px 18px; border-radius:12px; font-size:.9rem; margin-top:16px; }
.form-success.is-visible{ display:flex; }

.contact-card{ display:flex; gap:16px; align-items:flex-start; padding:22px 0; border-top:1px solid var(--panel-line); }
.contact-card:first-child{ border-top:none; }
.contact-card .icon{ width:44px; height:44px; border-radius:12px; background:linear-gradient(135deg, rgba(242,169,59,.18), rgba(232,86,61,.14)); display:flex; align-items:center; justify-content:center; flex:none; }
.contact-card .icon svg{ width:20px; height:20px; stroke:var(--accent); }
.contact-card h4{ font-size:.98rem; margin-bottom:4px; }
.contact-card p{ margin:0; font-size:.92rem; }

/* ---------- CTA band ---------- */
.cta-band{
  position:relative; overflow:hidden; border-radius:var(--radius-lg); margin:0 auto;
  background:var(--panel); border:1px solid var(--panel-line); padding:72px 60px; text-align:center;
}
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(60% 100% at 50% 0%, rgba(242,169,59,.18), transparent 70%); }
.cta-band h2{ position:relative; font-size:clamp(1.9rem,3.6vw,2.7rem); max-width:640px; margin:0 auto 18px; }
.cta-band p{ position:relative; max-width:520px; margin:0 auto 30px; }
.cta-band .btn-row{ position:relative; display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

/* ---------- footer ---------- */
.site-footer{ background:var(--bg-soft); border-top:1px solid var(--panel-line); padding:80px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:48px; padding-bottom:56px; }
.footer-brand p{ font-size:.92rem; max-width:280px; }
.site-footer h5{ font-family:var(--f-body); font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:18px; font-weight:700; }
.site-footer .flinks li{ margin-bottom:12px; }
.site-footer .flinks a{ font-size:.92rem; color:var(--ink-dim); transition:color .3s, padding-left .3s; }
.site-footer .flinks a:hover{ color:var(--accent); padding-left:4px; }
.social-row{ display:flex; gap:12px; margin-top:20px; }
.social-row a{ width:38px; height:38px; border-radius:50%; border:1px solid var(--panel-line); display:flex; align-items:center; justify-content:center; transition:border-color .3s, transform .3s; }
.social-row a:hover{ border-color:var(--accent); transform:translateY(-3px); }
.social-row svg{ width:16px; height:16px; stroke:var(--ink); }
.footer-bottom{ border-top:1px solid var(--panel-line); padding:22px 0; display:flex; justify-content:space-between; align-items:center; font-size:.82rem; color:var(--muted); flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:var(--muted); }
.footer-bottom a:hover{ color:var(--accent); }

/* ---------- back to top ---------- */
.to-top{
  position:fixed; right:26px; bottom:26px; width:48px; height:48px; border-radius:50%;
  background:var(--panel); border:1px solid var(--panel-line); color:var(--ink); display:flex;
  align-items:center; justify-content:center; cursor:pointer; z-index:60; opacity:0; transform:translateY(10px);
  pointer-events:none; transition:opacity .3s, transform .3s, border-color .3s;
}
.to-top.is-visible{ opacity:1; transform:translateY(0); pointer-events:auto; }
.to-top:hover{ border-color:var(--accent); }
.to-top svg{ width:18px; height:18px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero{ padding:170px 0 80px; position:relative; background:radial-gradient(60% 70% at 85% 0%, rgba(242,169,59,.14), transparent 65%), var(--bg); }
.page-hero .breadcrumb{ font-size:.82rem; color:var(--muted); margin-bottom:18px; }
.page-hero .breadcrumb a:hover{ color:var(--accent); }
.page-hero h1{ font-size:clamp(2.2rem,4.6vw,3.4rem); max-width:760px; }
.page-hero .sub{ margin-top:16px; }

/* ---------- utility text colors ---------- */
.text-accent{ color:var(--accent); }
.text-muted{ color:var(--muted); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1080px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-portrait{ max-width:420px; margin:0 auto; }
  .split, .split.rev{ grid-template-columns:1fr; }
  .split.rev .split-media{ order:0; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .stats-band .grid{ grid-template-columns:repeat(3,1fr); }
  .stat:nth-child(3){ border-right:none; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .pillar-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px){
  .nav-links, .header-actions .btn{ display:none; }
  .nav-toggle{ display:flex; }
  .section{ padding:70px 0; }
  .form-grid{ grid-template-columns:1fr; }
  .topic-list{ grid-template-columns:1fr; }
  .stats-band .grid{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(2n){ border-right:none; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .cta-band{ padding:52px 26px; }
  .pillar-grid{ grid-template-columns:1fr; }
  .hero-stats{ gap:22px; }
}
@media (max-width:520px){
  .wrap{ padding:0 18px; }
  .gallery-grid{ grid-template-columns:1fr 1fr; grid-auto-rows:160px; }
  .book-facts{ grid-template-columns:1fr; }
  .hero{ padding:150px 0 90px; }
  .page-hero{ padding:140px 0 60px; }
}
