/* ==========================================================================
   KK Srivastava — Commercial Excellence Consultant & Trainer
   Design system for kksrivastava.com
   Brand palette derived from the Sales Excel logo (navy + red).
   ========================================================================== */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Design tokens ---- */
:root {
  --navy-900: #101a44;
  --navy-800: #16235a;
  --navy-700: #1d2e6f;
  --navy-600: #26399048;
  --navy: #1d2e6f;
  --red: #d81e22;
  --red-dark: #b21419;
  --gold: #c19a4b;
  --gold-soft: #d8b877;

  --ink: #16203d;
  --body: #3d4763;
  --muted: #6b7590;
  --line: #e6e9f2;
  --line-strong: #d3d9e8;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-tint: #eef1f8;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(16, 26, 68, .06), 0 2px 8px rgba(16, 26, 68, .05);
  --shadow-md: 0 6px 24px rgba(16, 26, 68, .09);
  --shadow-lg: 0 24px 60px rgba(16, 26, 68, .16);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); line-height: 1.12; font-weight: 600; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 600; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--navy { background: var(--navy-800); color: #d9dfef; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }

/* ---- Eyebrow / headings ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.section--navy .eyebrow { color: var(--gold-soft); }
.section--navy .eyebrow::before { background: var(--gold-soft); }
.center .eyebrow::before { display: none; }

.h-xl { font-size: clamp(2.1rem, 5.2vw, 3.7rem); }
.h-lg { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
.h-md { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.24rem); color: var(--muted); }
.section--navy .lead { color: #b9c2dd; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .96rem;
  padding: .85em 1.6em; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(216, 30, 34, .28); }
.btn--primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(216, 30, 34, .34); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { color: var(--red); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header > .wrap { max-width: 1340px; padding-inline: clamp(20px, 3vw, 34px); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand__logo { height: 28px; width: auto; }
.brand__sep { width: 1px; height: 26px; background: var(--line-strong); }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--ink); line-height: 1.05; white-space: nowrap; }
.brand__name span { display: block; font-family: var(--sans); font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex: 0 1 auto; }
.nav__links a {
  font-family: var(--sans); font-weight: 500; font-size: .9rem; color: var(--ink);
  padding: .5em .68em; border-radius: 8px; position: relative; white-space: nowrap;
}
.nav__links a:hover { color: var(--red); background: var(--bg-soft); }
.nav__links a.active { color: var(--red); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s var(--ease); border-radius: 2px; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; min-width: 260px; opacity: 0; visibility: hidden; transition: all .22s var(--ease); list-style: none; margin: 0;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop li { margin: 0; }
.drop a { display: block; padding: .6em .8em; border-radius: 8px; font-size: .92rem; }
.drop a small { display: block; color: var(--muted); font-size: .78rem; font-weight: 400; }
.drop a:hover { background: var(--bg-soft); }

@media (max-width: 1200px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 26px;
    box-shadow: var(--shadow-md); transform: translateY(-120%); transition: transform .35s var(--ease); max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.open .nav__links { transform: translateY(0); }
  .nav__links a { padding: .8em .6em; font-size: 1rem; }
  .drop { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 8px 14px; min-width: auto; }
  .nav__toggle { display: block; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__actions .btn--ghost { display: none; }
}

/* Enquire item that only appears inside the open mobile menu */
.nav-cta { display: none; }
.nav-cta a { color: var(--red) !important; font-weight: 700 !important; }

/* Compact header on phones: keep name + menu button; CTA lives inside the menu */
@media (max-width: 600px) {
  .brand__name span { display: none; }
  .brand__name { font-size: .95rem; }
  .brand__logo { height: 26px; }
  .nav__actions .btn--primary { display: none; }
  .nav-cta { display: block; margin-top: 8px; }
  .nav-cta a {
    background: var(--red); color: #fff !important; text-align: center;
    border-radius: 999px; padding: .85em 1em !important;
  }
  .nav-cta a:hover { background: var(--red-dark); }
}
@media (max-width: 340px) {
  .brand__name { display: none; }
  .brand__sep { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 82% -10%, rgba(216,30,34,.30), transparent 60%),
    radial-gradient(700px 600px at 8% 110%, rgba(193,154,75,.16), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
}
.hero__grid-lines {
  position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
}
.hero .wrap { position: relative; z-index: 2; }
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding: clamp(56px, 8vw, 104px) 0; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 600; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: #c3cbe4; max-width: 40ch; margin-bottom: 1.8rem; }
.hero__tag { display: inline-flex; align-items: center; gap: .55em; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: .5em 1em; border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: #dfe4f3; margin-bottom: 1.6rem; }
.hero__tag b { color: var(--gold-soft); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.14); }
.hero__meta div span { display: block; font-family: var(--serif); font-size: 1.7rem; color: #fff; font-weight: 600; line-height: 1; }
.hero__meta div small { font-size: .8rem; color: #9aa6c8; letter-spacing: .02em; }

.hero__portrait { position: relative; justify-self: center; }
.hero__portrait figure { margin: 0; position: relative; width: min(340px, 74vw); }
.hero__portrait img { width: 100%; border-radius: 20px; box-shadow: 0 30px 70px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.14); }
.hero__portrait .ring { position: absolute; inset: -18px; border: 1.5px solid rgba(193,154,75,.4); border-radius: 30px; z-index: -1; }
.hero__badge {
  position: absolute; bottom: -22px; left: -26px; background: #fff; color: var(--navy-800);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero__badge b { font-family: var(--serif); font-size: 1.9rem; color: var(--red); line-height: 1; }
.hero__badge span { font-size: .78rem; color: var(--muted); font-weight: 500; line-height: 1.25; }
.hero__badge b + span { max-width: 90px; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .eyebrow, .hero__meta { justify-content: center; }
  .hero__portrait { order: -1; margin-bottom: 12px; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -26px; }
}

/* ==========================================================================
   Stat / credentials
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-md); }
.stat { padding: clamp(24px, 3.4vw, 40px) clamp(18px, 2.4vw, 30px); text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--serif); font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 600; color: var(--navy-800); line-height: 1; letter-spacing: -.02em; }
.stat__num i { font-style: normal; color: var(--red); }
.stat__label { margin-top: .6em; font-size: .86rem; color: var(--muted); font-weight: 500; letter-spacing: .01em; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }

/* ==========================================================================
   Philosophy diagram (Strategy / Process / People)
   ========================================================================== */
.spp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.spp__card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); overflow: hidden; }
.spp__card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.spp__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.spp__step { font-family: var(--serif); font-size: .9rem; color: var(--gold); font-weight: 600; }
.spp__icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--bg-tint); color: var(--navy); margin: 6px 0 16px; }
.spp__icon svg { width: 26px; height: 26px; }
.spp__card h3 { font-size: 1.4rem; margin-bottom: .3em; }
.spp__card p { font-size: .96rem; margin-bottom: 0; color: var(--body); }
.spp__result { margin-top: 34px; text-align: center; font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.7rem); color: var(--navy-800); }
.spp__result b { color: var(--red); }
@media (max-width: 780px) { .spp { grid-template-columns: 1fr; } }

/* ==========================================================================
   Client marquee
   ========================================================================== */
.marquee { overflow: hidden; position: relative; padding: 6px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 54s; }
.chip {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .95rem; color: var(--navy-800);
  background: #fff; border: 1px solid var(--line-strong); border-radius: 12px;
  padding: .7em 1.15em; box-shadow: var(--shadow-sm);
}
.chip i { font-style: normal; color: var(--red); font-size: 1.1em; line-height: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Logo card used inside the marquee */
.logo-chip {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 168px; height: 84px; padding: 16px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm);
}
.logo-chip img { max-height: 46px; max-width: 100%; width: auto; object-fit: contain; }

/* ==========================================================================
   Logo wall
   ========================================================================== */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.logo-cell {
  display: grid; place-items: center; height: 100px; padding: 18px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.logo-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.logo-cell img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; }
@media (max-width: 560px) { .logo-wall { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; } .logo-cell { height: 84px; padding: 14px 16px; } .logo-cell img { max-height: 42px; } }

/* ==========================================================================
   Cards / features
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: #fff; margin-bottom: 20px; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; }
.card p { font-size: .96rem; margin-bottom: 1em; }
.card__link { margin-top: auto; font-weight: 600; font-size: .92rem; color: var(--red); display: inline-flex; align-items: center; gap: .4em; }
.card__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }
.card ul { font-size: .93rem; }
.card ul li::marker { color: var(--red); }

.card--num { position: relative; }
.card--num .num { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: 8px; }

/* ==========================================================================
   Split / feature rows
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 840px) { .split, .split--rev { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.tick { list-style: none; padding: 0; }
.tick li { position: relative; padding-left: 2em; margin-bottom: .9em; }
.tick li::before { content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%; background: rgba(216,30,34,.1); }
.tick li::after { content: ""; position: absolute; left: 6px; top: .45em; width: 8px; height: 5px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }

/* ==========================================================================
   Timeline (career)
   ========================================================================== */
.timeline { position: relative; margin-top: 20px; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--red), var(--line)); }
.tl-item { position: relative; padding: 0 0 34px 52px; }
.tl-item::before { content: ""; position: absolute; left: 8px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--red); box-shadow: 0 0 0 4px rgba(216,30,34,.1); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .when { font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--red); }
.tl-item h3 { font-size: 1.25rem; margin: .25em 0 .1em; }
.tl-item .org { font-weight: 600; color: var(--navy-800); font-size: .98rem; margin-bottom: .5em; }
.tl-item p { font-size: .95rem; margin-bottom: 0; color: var(--body); }

/* ==========================================================================
   Assessment / tool cards
   ========================================================================== */
.tool { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.tool:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tool__top { padding: 28px 28px 22px; background: linear-gradient(155deg, var(--navy-700), var(--navy-900)); color: #fff; }
.tool__top .for { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }
.tool__top h3 { color: #fff; font-size: 1.3rem; margin: .4em 0 0; }
.tool__body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.tool__body p { font-size: .95rem; }
.tool__body .btn { margin-top: auto; }
.free-badge { display: inline-block; background: rgba(216,30,34,.1); color: var(--red); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: .35em .8em; border-radius: 999px; margin-bottom: 10px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; background: var(--navy-800); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 68px) clamp(28px, 5vw, 64px); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 0%, rgba(216,30,34,.32), transparent 60%), radial-gradient(500px 300px at 0% 120%, rgba(193,154,75,.18), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3cbe4; max-width: 52ch; }

/* ==========================================================================
   Survey / offer callout
   ========================================================================== */
.offer { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.offer__text { padding: clamp(32px, 4vw, 52px); background: #fff; }
.offer__gift { padding: clamp(32px, 4vw, 52px); background: linear-gradient(155deg, var(--red), var(--red-dark)); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.offer__gift h3 { color: #fff; }
.offer__gift .giftico { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.15); display: grid; place-items: center; margin-bottom: 18px; }
.offer__gift .giftico svg { width: 30px; height: 30px; }
@media (max-width: 760px) { .offer { grid-template-columns: 1fr; } }

/* ==========================================================================
   Program series list
   ========================================================================== */
.series-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.series { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 12px; padding: 26px 26px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.series:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.series h3 { font-size: 1.18rem; margin-bottom: .2em; }
.series .who { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); margin-bottom: .8em; }
.series p { font-size: .93rem; margin-bottom: 0; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; margin: 0; }
.pill-list li { margin: 0; }
.pill { display: inline-flex; align-items: center; gap: .5em; background: #fff; border: 1px solid var(--line-strong); border-radius: 999px; padding: .55em 1.05em; font-size: .9rem; font-weight: 500; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 85% -20%, rgba(216,30,34,.28), transparent 60%), linear-gradient(160deg, var(--navy-900), var(--navy-700)); }
.page-hero .wrap { position: relative; z-index: 1; padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 18ch; }
.page-hero p { color: #c3cbe4; max-width: 58ch; font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.crumbs { font-size: .84rem; color: #9aa6c8; margin-bottom: 1.4rem; }
.crumbs a { color: #c3cbe4; } .crumbs a:hover { color: #fff; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: .8em 1em; border: 1.5px solid var(--line-strong); border-radius: 10px; background: #fff; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(29,46,111,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-info { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info .ci-ico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint); color: var(--navy); display: grid; place-items: center; }
.contact-info .ci-ico svg { width: 20px; height: 20px; }
.contact-info b { display: block; color: var(--ink); font-size: .95rem; }
.contact-info span, .contact-info a { color: var(--muted); font-size: .95rem; }

.audience-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.audience-tabs .at { padding: .6em 1.2em; border-radius: 999px; border: 1.5px solid var(--line-strong); background: #fff; font-weight: 600; font-size: .92rem; color: var(--navy-800); cursor: pointer; transition: all .2s; }
.audience-tabs .at.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: #aab3d0; padding: clamp(48px, 6vw, 76px) 0 28px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2em; }
.site-footer a { color: #aab3d0; }
.site-footer a:hover { color: #fff; }
.footer-brand__logo { height: 30px; margin-bottom: 18px; background: #fff; padding: 8px 10px; border-radius: 8px; display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .7em; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cdd4ea; transition: all .2s; }
.footer-social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: #7f89ab; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Utilities / animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.center.section-head { margin-inline: auto; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
