/* =====================================================================
   LEANOVA PARTNERS — premium, white, editorial (executive-search style)
   White-dominant · teal accent (#0DD1D0) · Newsreader serif + Hanken Grotesk
   ===================================================================== */

:root {
  --bg:        #ffffff;
  --bg-tint:   #f5f8f8;   /* very light teal-grey section */
  --ink:       #15211f;   /* near-black, slight teal tint — headings */
  --body:      #3c4644;   /* body text */
  --muted:     #707b79;   /* muted text */
  --line:      #e4ebe9;   /* hairline */

  --teal:      #0dd1d0;   /* bright brand accent (non-text) */
  --teal-deep: #0b7d7b;   /* legible teal for buttons/links */
  --teal-ink:  #0a6361;   /* hover / strong */

  --maxw: 1200px;
  --pad: clamp(22px, 5vw, 72px);
  --ease: cubic-bezier(.22,.61,.36,1);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  font-size: clamp(15.5px, 1.05vw, 17px);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--teal-deep); outline-offset: 3px; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 2000; background: var(--ink); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 12px; }

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--serif);
  font-weight: 400; letter-spacing: -.015em; line-height: 1.1;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--ink);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--sans); font-weight: 600; font-size: .76rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal-deep);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--teal); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 14px 26px; border-radius: 4px;
  font-family: var(--sans); font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  line-height: 1; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--lg { padding: 16px 30px; font-size: .98rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--teal-deep); color: #fff; }
.btn--primary:hover { background: var(--teal-ink); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(11,125,123,.55); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }

.link-arrow { font-weight: 600; color: var(--teal-deep); white-space: nowrap; transition: gap .2s var(--ease); }
.link-arrow:hover { color: var(--teal-ink); }

/* ---------- Navigation ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 1000; background: rgba(255,255,255,0); transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.nav.is-scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(12px) saturate(120%); box-shadow: 0 1px 0 var(--line); }
.nav__inner { max-width: var(--maxw); margin-inline: auto; padding: 20px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: .5em; color: var(--ink); }
.brand__mark { color: var(--teal-deep); display: inline-flex; }
.brand__type { font-family: var(--serif); font-size: 1.32rem; letter-spacing: -.01em; }
.brand__type-thin { color: var(--muted); }

.nav__links { display: flex; gap: clamp(18px, 2.4vw, 36px); }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--body); position: relative; padding: 4px 0; transition: color .2s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--teal-deep); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav .btn--primary { padding: 11px 20px; font-size: .85rem; }

.nav__burger { display: none; width: 32px; height: 30px; flex-direction: column; justify-content: center; gap: 6px; }
.nav__burger span { display: block; height: 2px; width: 24px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; padding: 4px var(--pad) 28px; background: #fff; border-top: 1px solid var(--line); }
.nav__mobile a { padding: 15px 0; font-size: 1.05rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav__mobile .btn { margin-top: 18px; }
.nav.is-mobile-open { background: #fff; box-shadow: 0 1px 0 var(--line); }
.nav.is-mobile-open .nav__mobile { display: flex; }

/* ---------- Hero ---------- */
.hero { padding: clamp(150px, 20vh, 230px) 0 clamp(70px, 11vw, 130px); position: relative; }
.hero::after { content: ""; position: absolute; right: -10%; top: 6%; width: 46vw; height: 46vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 50% 50%, rgba(13,209,208,.16), rgba(13,209,208,0) 62%); pointer-events: none; z-index: -1; }
.hero__title {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; line-height: 1.02;
  font-size: clamp(2.8rem, 7.4vw, 6rem); color: var(--ink); margin: .15em 0 .35em;
}
.hero__lead { font-size: clamp(1.1rem, 1.7vw, 1.4rem); color: var(--body); max-width: 60ch; line-height: 1.55; }
.hero__lead em { color: var(--ink); font-style: italic; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__meta { margin-top: 46px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted); font-size: .9rem; }
.hero__meta .dot { color: var(--teal); }

/* ---------- Hero: featured perspective (dark, EZ-style) ---------- */
.eyebrow--light { color: var(--teal); }
.eyebrow--light::before { background: var(--teal); }
.btn--ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); }
.btn--ghost-light:hover { box-shadow: inset 0 0 0 1px #fff; transform: translateY(-2px); }

.hero--featured { background: #0c1413; color: #fff; min-height: 90svh; display: flex; align-items: center; padding: clamp(150px,20vh,230px) 0 clamp(80px,11vw,140px); position: relative; overflow: hidden; }
.hero--featured::after { display: none; }
.hero--featured .hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero--featured .hero__bg::before { content: ""; position: absolute; inset: -20%; background:
  radial-gradient(46% 50% at 80% 20%, rgba(13,209,208,.22), transparent 60%),
  radial-gradient(42% 52% at 10% 88%, rgba(13,209,208,.12), transparent 60%),
  radial-gradient(60% 60% at 50% 50%, rgba(255,255,255,.05), transparent 70%);
  filter: blur(8px); }
.hero--featured .hero__bg::after { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .5;
  -webkit-mask-image: radial-gradient(82% 80% at 50% 38%, #000 18%, transparent 76%);
  mask-image: radial-gradient(82% 80% at 50% 38%, #000 18%, transparent 76%); }
.hero--featured .hero__inner { position: relative; z-index: 1; }
.hero__brand { font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.6); margin-bottom: 26px; }
.hero--featured .hero__title { color: #fff; max-width: 17ch; }
.hero--featured .hero__lead { color: rgba(255,255,255,.82); }
.hero--featured .hero__cta { margin-top: 34px; }

/* ---------- Hero slider (homepage) ---------- */
.hero--slider { position: relative; min-height: 92svh; padding: 0; background: #0c1413; color: #fff; overflow: hidden; display: block; }
.hero--slider::after { display: none; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; pointer-events: none; transition: opacity .9s var(--ease); }
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__media { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 8s ease-out; }
.hero__slide.is-active .hero__media { transform: scale(1); }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(8,12,12,.82) 0%, rgba(8,12,12,.5) 45%, rgba(8,12,12,.12) 100%),
  linear-gradient(0deg, rgba(8,12,12,.5), transparent 52%); }
.hero--slider .hero__inner { position: relative; z-index: 2; width: 100%; padding-top: 84px; }
.hero--slider .hero__brand { color: rgba(255,255,255,.62); margin-bottom: 22px; font-size: .82rem; letter-spacing: .04em; }
.hero--slider .hero__title { color: #fff; max-width: 18ch; }
.hero--slider .hero__lead { color: rgba(255,255,255,.85); max-width: 54ch; }
.hero--slider .hero__cta { margin-top: 32px; }

/* slide content entrance */
.hero__slide .hero__inner > * { opacity: 0; transform: translateY(16px); }
.hero__slide.is-active .hero__inner > * { animation: heroIn .7s var(--ease) forwards; }
.hero__slide.is-active .hero__inner > *:nth-child(2) { animation-delay: .07s; }
.hero__slide.is-active .hero__inner > *:nth-child(3) { animation-delay: .14s; }
.hero__slide.is-active .hero__inner > *:nth-child(4) { animation-delay: .21s; }
.hero__slide.is-active .hero__inner > *:nth-child(5) { animation-delay: .28s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* arrows + dots */
.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); transition: background .2s var(--ease); }
.hero__arrow:hover { background: rgba(255,255,255,.22); }
.hero__arrow--prev { left: clamp(12px, 2vw, 28px); }
.hero__arrow--next { right: clamp(12px, 2vw, 28px); }
.hero__dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); transition: background .25s var(--ease), width .25s var(--ease); }
.hero__dot.is-active { background: var(--teal); width: 26px; border-radius: 5px; }
@media (max-width: 640px) {
  .hero__arrow { display: none; }
  .hero__scrim { background: linear-gradient(0deg, rgba(8,12,12,.78), rgba(8,12,12,.32)); }
}

/* ---------- Nav overlay (light text over the dark hero) ---------- */
.nav--overlay:not(.is-scrolled):not(.is-mobile-open) .brand { color: #fff; }
.nav--overlay:not(.is-scrolled):not(.is-mobile-open) .brand__type-thin { color: rgba(255,255,255,.6); }
.nav--overlay:not(.is-scrolled):not(.is-mobile-open) .nav__links a { color: rgba(255,255,255,.82); }
.nav--overlay:not(.is-scrolled):not(.is-mobile-open) .nav__links a:hover { color: #fff; }
.nav--overlay:not(.is-scrolled):not(.is-mobile-open) .nav__burger span { background: #fff; }

/* ---------- Article detail ---------- */
.article-wrap { padding-top: clamp(120px, 15vh, 172px); }
.article-wrap .container { max-width: 760px; }
.article__title { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; line-height: 1.08; font-size: clamp(2.1rem, 5vw, 3.3rem); color: var(--ink); margin: .1em 0 .3em; }
.article__summary { font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.4; color: var(--ink); opacity: .85; margin-bottom: 38px; }
.article__body p { color: var(--body); font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.1em; }
.article__body h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--ink); margin: 1.5em 0 .5em; letter-spacing: -.01em; }
.article__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }

/* ---------- Legal pages (imprint / privacy) ---------- */
.legal { max-width: 820px; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.35rem, 2.6vw, 1.85rem); color: var(--ink); margin: 1.7em 0 .5em; letter-spacing: -.01em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--body); line-height: 1.75; margin-bottom: .9em; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 1em; }
.legal li { margin-bottom: .4em; }
.legal a { color: var(--teal-deep); }
.legal a:hover { color: var(--teal-ink); }
.legal__note { margin-top: 2.4em; padding-top: 1.4em; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.ph { color: var(--teal-ink); background: rgba(13,209,208,.1); padding: 0 5px; border-radius: 3px; font-style: italic; }
.footer__legal a { color: rgba(255,255,255,.55); }
.footer__legal a:hover { color: var(--teal); }

/* ---------- Statement ---------- */
.statement { padding: clamp(56px, 8vw, 104px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-tint); }
.statement__inner { max-width: 920px; margin-inline: auto; text-align: center; }
.statement__lead { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.25rem); line-height: 1.35; color: var(--ink); letter-spacing: -.01em; }
.statement__lead em { font-style: italic; color: var(--teal-ink); }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(64px, 9vw, 132px) 0; }
.section__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section__sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; max-width: 56ch; }

/* ---------- Expertise ---------- */
.expertise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 56px); }
.exp { border-top: 2px solid var(--ink); padding-top: 26px; }
.exp__num { font-family: var(--serif); font-size: 1.05rem; color: var(--teal-deep); letter-spacing: .05em; }
.exp h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; color: var(--ink); margin: 16px 0 12px; letter-spacing: -.01em; }
.exp p { color: var(--body); }

/* ---------- Approach ---------- */
/* ---------- Career services (for individuals) ---------- */
.career { border-top: 1px solid var(--line); }
.career__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.5vw, 28px); }
.career-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 32px 30px; display: flex; flex-direction: column; gap: 12px; transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.career-card:hover { border-color: var(--teal-deep); transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(21,33,31,.35); }
.career-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; color: var(--ink); letter-spacing: -.01em; }
.career-card p { color: var(--body); font-size: .98rem; }
.career-card ul { display: grid; gap: 9px; margin-top: 2px; }
.career-card li { position: relative; padding-left: 20px; color: var(--body); font-size: .95rem; }
.career-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--teal); border-radius: 2px; }
.career-card__price { margin-top: auto; padding-top: 14px; font-weight: 600; color: var(--teal-deep); font-size: .95rem; }
.career__cta { margin-top: clamp(32px, 4vw, 48px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 32px; background: var(--bg-tint); border: 1px solid var(--line); border-radius: 8px; }
.career__cta p { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.career__intro { max-width: 62ch; color: var(--body); font-size: 1.05rem; margin-bottom: clamp(28px, 4vw, 40px); }

/* Homepage sneak-peek */
.career-peek { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.peek { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 8px; transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.peek:hover { border-color: var(--teal-deep); transform: translateY(-3px); box-shadow: 0 16px 36px -22px rgba(21,33,31,.35); }
.peek--featured { border-color: var(--teal-deep); }
.peek__tag { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); }
.peek__name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.peek__for { color: var(--muted); font-size: .92rem; flex: 1; }
.peek__price { font-weight: 600; color: var(--teal-deep); margin-top: 6px; }

/* Packages (career.html) */
.career-page { padding-top: clamp(36px, 5vw, 56px); }
.career__packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 24px); align-items: start; }
.pkg { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 36px 30px; display: flex; flex-direction: column; gap: 8px; }
.pkg--featured { border-color: var(--teal-deep); box-shadow: 0 24px 60px -34px rgba(11,125,123,.5); }
.pkg__badge { position: absolute; top: -12px; left: 30px; background: var(--teal-deep); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.pkg__name { font-family: var(--serif); font-weight: 400; font-size: 1.75rem; color: var(--ink); }
.pkg__for { color: var(--muted); font-size: .92rem; min-height: 3.6em; }
.pkg__price { font-family: var(--serif); font-size: 2.2rem; color: var(--ink); margin-top: 4px; }
.pkg__sessions { color: var(--teal-deep); font-weight: 600; font-size: .9rem; margin-bottom: 8px; }
.pkg__list { display: grid; gap: 10px; margin: 6px 0 24px; }
.pkg__list li { position: relative; padding-left: 26px; color: var(--body); font-size: .95rem; }
.pkg__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal-deep); font-weight: 700; }
.pkg__label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.pkg .btn { margin-top: auto; }
.career-why { max-width: 720px; margin: clamp(48px, 7vw, 84px) auto 0; text-align: center; }
.career-why p { color: var(--body); margin-top: 16px; font-size: 1.05rem; line-height: 1.7; }

/* ---------- Approach ---------- */
.approach { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approach__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.approach__intro { position: sticky; top: 110px; }
.approach__text { color: var(--body); margin-top: 18px; max-width: 40ch; }
.approach__steps { display: grid; gap: 0; }
.approach__steps li { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 26px 0; border-top: 1px solid var(--line); align-items: start; }
.approach__steps li:first-child { border-top: none; }
.step__no { font-family: var(--serif); font-size: 1.4rem; color: var(--teal-deep); }
.approach__steps h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; color: var(--ink); margin-bottom: 6px; }
.approach__steps p { color: var(--body); }

/* ---------- Who we are (merged experience) ---------- */
.about { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 84px); align-items: start; }
.about__head { position: sticky; top: 110px; }
.about__text p { font-size: clamp(1.06rem, 1.5vw, 1.28rem); color: var(--body); margin-bottom: 1.1em; line-height: 1.7; }
.about__text p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1rem; }
.about__text em { color: var(--ink); font-style: italic; }
.about__text p.about__exp-label { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 1.6em 0 .9em; }
.about__expertise { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: 0 0 1.6em; }
.about__expertise li { position: relative; padding-left: 20px; color: var(--body); font-size: 1rem; line-height: 1.45; }
.about__expertise li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; background: var(--teal); border-radius: 2px; }
@media (max-width: 560px) { .about__expertise { grid-template-columns: 1fr; } }

.people__row { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 64px); margin-top: clamp(48px, 6vw, 76px); padding-top: clamp(40px, 5vw, 56px); border-top: 1px solid var(--line); }
.person-mini { display: flex; align-items: center; gap: 20px; }
.person-mini .person__photo { width: 96px; height: 120px; border-radius: 6px; margin: 0; flex: none; }
.person-mini .person__mono { font-size: 1.9rem; }
.person-mini h3 { font-family: var(--serif); font-weight: 400; font-size: 1.32rem; color: var(--ink); letter-spacing: -.01em; }
.person-mini .person__role { color: var(--teal-deep); font-weight: 600; font-size: .88rem; margin-top: 4px; }

.bench { margin-top: clamp(40px, 5vw, 60px); }
.bench__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.bench__list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 44px); }
.bench__list li { display: flex; flex-direction: column; gap: 5px; }
.bench__list strong { font-family: var(--serif); font-weight: 400; font-size: 1.18rem; color: var(--ink); }
.bench__list span { color: var(--muted); font-size: .95rem; }
@media (max-width: 560px) { .bench__list { grid-template-columns: 1fr; } }

/* ---------- People (legacy cards, kept for reuse) ---------- */
.people__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 44px); }
.person { display: flex; flex-direction: column; }
.person__photo { position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; background: var(--bg-tint); margin-bottom: 22px; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__mono { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: clamp(3rem, 7vw, 5rem); color: #fff; background: linear-gradient(150deg, var(--teal-deep), var(--teal-ink)); letter-spacing: .04em; }
.person__photo--confidential { display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #1b2a28, #0d1716); }
.person__lock { font-size: 2.4rem; color: var(--teal); opacity: .85; }
.person--confidential .person__photo { box-shadow: inset 0 0 0 1px var(--line); }
.person h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; color: var(--ink); letter-spacing: -.01em; }
.person__role { color: var(--teal-deep); font-weight: 600; font-size: .9rem; letter-spacing: .02em; margin: 6px 0 14px; }
.person__bio { color: var(--body); font-size: .98rem; }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: #fff; }
.stats .section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.stats .eyebrow { color: var(--teal); }
.stats .eyebrow::before { background: var(--teal); }
.stats .h2 { color: #fff; }
.stats .section__sub { color: rgba(255,255,255,.66); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(34px, 4vw, 54px) clamp(24px, 3vw, 44px); }
.stat__num { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: #fff; }
.stat__num--word { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.stat__num span { background: linear-gradient(120deg, #fff 30%, var(--teal)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: rgba(255,255,255,.66); font-size: .92rem; margin-top: 14px; max-width: 26ch; }

/* ---------- Perspectives ---------- */
.perspectives__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.post { background: #fff; padding: 34px 30px 28px; display: flex; flex-direction: column; gap: 16px; min-height: 230px; transition: background .3s var(--ease); }
.post:hover { background: var(--bg-tint); }
.post__tag { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep); }
.post h3 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; line-height: 1.2; color: var(--ink); flex: 1; letter-spacing: -.01em; }
.post__more { font-weight: 600; color: var(--teal-deep); font-size: .9rem; }

/* ---------- Why Leanova Partners ---------- */
.why__inner { max-width: 880px; margin-inline: auto; text-align: center; }
.why__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.14; letter-spacing: -.02em; color: var(--ink); margin-top: 16px; }
.why__text { margin-top: 34px; }
.why__text p { color: var(--body); font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.1em; max-width: 64ch; margin-inline: auto; }
.why__text p:last-child { margin-bottom: 0; }
.why__text p.why__open { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.4; color: var(--ink); margin-bottom: 1.3em; }
.why__punch { margin-top: 30px; font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.75rem); line-height: 1.3; color: var(--teal-deep); max-width: 32ch; margin-inline: auto; }

/* ---------- Message from our CEO ---------- */
.ceo__inner { max-width: 880px; margin-inline: auto; text-align: center; }
.ceo__statement { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.22; color: var(--ink); letter-spacing: -.01em; margin-top: 14px; }
.ceo__text { margin-top: 30px; }
.ceo__text p { color: var(--body); font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.1em; max-width: 64ch; margin-inline: auto; }
.ceo__text p:last-child { margin-bottom: 0; }
.ceo__sign { margin-top: 26px; font-weight: 600; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-deep); }

/* ---------- Final call to action ---------- */
.cta-final { background: var(--ink); color: #fff; text-align: center; }
.cta-final__inner { max-width: 820px; margin-inline: auto; }
.cta-final .eyebrow { color: var(--teal); }
.cta-final__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.12; letter-spacing: -.02em; color: #fff; margin-top: 14px; }
.cta-final__text { margin-top: 26px; }
.cta-final__text p { color: rgba(255,255,255,.74); font-size: 1.08rem; line-height: 1.75; margin-bottom: 1em; max-width: 60ch; margin-inline: auto; }
.cta-final__text p:last-child { margin-bottom: 0; }
.cta-final__line { margin-top: 20px; color: #fff; font-weight: 500; font-size: 1.08rem; }
.cta-final__inner .btn { margin-top: 26px; }

/* ---------- Perspective / Insights ribbon ---------- */
.insights-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; background: #fff; }
.insights-bar__inner { display: flex; align-items: center; gap: 14px 28px; flex-wrap: wrap; }
.insights-bar__label { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-deep); white-space: nowrap; }
.insights-bar__topics { display: flex; flex-wrap: wrap; align-items: center; margin-left: auto; }
.insights-bar__topics li { font-family: var(--serif); font-size: clamp(.98rem, 1.4vw, 1.12rem); color: var(--ink); display: flex; align-items: center; }
.insights-bar__topics li:not(:last-child)::after { content: "·"; margin: 0 clamp(12px, 2vw, 22px); color: var(--muted); }

/* ---------- Open Roles teaser ---------- */
.roles-teaser { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.roles-teaser__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.roles-teaser__copy { max-width: 58ch; }
.roles-teaser .h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.roles-teaser__lead { color: var(--body); margin-top: 14px; line-height: 1.7; }
.roles-teaser__btn { flex: none; }

/* ---------- Quote (legacy, kept for reuse) ---------- */
.quote { text-align: center; }
.quote blockquote { max-width: 920px; margin-inline: auto; }
.quote p { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.3; color: var(--ink); letter-spacing: -.01em; }
.quote cite { display: block; margin-top: 24px; font-style: normal; font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-deep); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-tint); border-top: 1px solid var(--line); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: start; }
.contact__lead { color: var(--body); margin-top: 16px; max-width: 42ch; }
.contact__details { margin-top: 38px; display: grid; gap: 20px; }
.contact__details li { display: flex; flex-direction: column; gap: 4px; }
.contact__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.contact__details a, .contact__details span:not(.contact__label) { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); transition: color .2s var(--ease); }
.contact__details a:hover { color: var(--teal-deep); }
.phones { display: grid; gap: 12px; }
.phones a { display: inline-flex; align-items: baseline; gap: 14px; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); transition: color .2s var(--ease); }
.phones a:hover { color: var(--teal-deep); }
.phones__rg { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .16em; color: var(--teal-deep); min-width: 34px; }
/* Call buttons (region, number hidden behind the button) */
.call-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.contact__details .call-btn { display: inline-flex; align-items: center; gap: .55em; padding: 12px 20px; border-radius: 4px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-family: var(--sans); font-weight: 600; font-size: .94rem; transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease); }
.contact__details .call-btn::before { content: ""; width: 15px; height: 15px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b7d7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3 19.5 19.5 0 0 1-6-6 19.8 19.8 0 0 1-3-8.6A2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2z'/%3E%3C/svg%3E") center/contain no-repeat; }
.contact__details .call-btn:hover { border-color: var(--teal-deep); color: var(--teal-deep); transform: translateY(-1px); }

.contact__form { display: grid; gap: 16px; background: #fff; padding: clamp(26px, 4vw, 40px); border: 1px solid var(--line); border-radius: 8px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .8rem; font-weight: 600; letter-spacing: .03em; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 4px; background: #fff; color: var(--ink);
  border: 1px solid var(--line); font-family: var(--sans); font-size: .98rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-deep); box-shadow: 0 0 0 3px rgba(11,125,123,.12); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%230b7d7b'%3E%3Cpath d='M7 10 2 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input.invalid, .field textarea.invalid { border-color: #d4567f; box-shadow: 0 0 0 3px rgba(212,86,127,.12); }

.field--file[hidden] { display: none; }
.field__hint { font-size: .78rem; color: var(--muted); }
.filebox { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.filebox input[type="file"] { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.filebox__btn { display: inline-flex; align-items: center; gap: .5em; padding: 11px 18px; background: transparent; color: var(--teal-deep); border: 1px solid var(--teal-deep); border-radius: 4px; font-size: .82rem; font-weight: 600; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
.filebox__btn::before { content: "↑"; }
.filebox__btn:hover { background: var(--teal-deep); color: #fff; }
.filebox.has-file .filebox__name { color: var(--teal-ink); font-weight: 500; }
.filebox__name { font-size: .9rem; color: var(--muted); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.botcheck { position: absolute !important; left: -9999px !important; }
#cfSubmit[disabled] { opacity: .6; cursor: progress; }
.form-note { font-size: .86rem; color: var(--muted); }
.form-note.is-success { color: var(--teal-ink); font-weight: 500; }
.form-note.is-error { color: #c0436b; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.75); padding: clamp(48px, 6vw, 76px) 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; align-items: start; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand__type { color: #fff; }
.footer .brand__type-thin { color: rgba(255,255,255,.6); }
.footer__brand p { margin-top: 14px; max-width: 34ch; font-size: .94rem; color: rgba(255,255,255,.6); }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a, .footer__contact a, .footer__contact span { color: rgba(255,255,255,.75); font-size: .94rem; transition: color .2s var(--ease); }
.footer__nav a:hover, .footer__contact a:hover { color: var(--teal); }
.footer__calllabel { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 8px; }
.footer__bar { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.45); }

/* ---------- Active nav item (subpages) ---------- */
.nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after { width: 100%; }

/* ---------- Subpage header ---------- */
.page-head { padding: clamp(132px, 16vh, 184px) 0 clamp(36px, 5vw, 60px); border-bottom: 1px solid var(--line); }
.page-head__title { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; line-height: 1.05; font-size: clamp(2.4rem, 6vw, 4rem); color: var(--ink); margin: .1em 0 .35em; }
.page-head__lead { color: var(--body); max-width: 58ch; font-size: clamp(1.02rem, 1.4vw, 1.18rem); }
.page-head__lead a { color: var(--teal-deep); font-weight: 600; }

/* ---------- Open roles: filters + cards ---------- */
.roles { padding-top: clamp(40px, 5vw, 64px); }
.role-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.chip { padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line); background: #fff; color: var(--body); font-size: .86rem; font-weight: 500; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.roles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 28px); }
.role-card { display: flex; flex-direction: column; gap: 12px; padding: 30px 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: 8px; transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.role-card:hover { border-color: var(--teal-deep); transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(21,33,31,.4); }
.role-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.role-card__fn { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); }
.role-card__date { font-size: .8rem; color: var(--muted); }
.role-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; line-height: 1.15; color: var(--ink); letter-spacing: -.01em; }
.role-card__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--muted); font-size: .9rem; }
.role-card__meta li { position: relative; }
.role-card__meta li + li::before { content: "·"; position: absolute; left: -12px; }
.role-card p { color: var(--body); font-size: .96rem; }
.role-card__more { margin-top: 4px; font-weight: 600; color: var(--teal-deep); font-size: .9rem; }
.roles-empty { text-align: center; padding: clamp(48px, 8vw, 96px) 0; display: grid; gap: 14px; justify-items: center; }
.roles-empty__eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-deep); }
.roles-empty__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); letter-spacing: -.01em; }
.roles-empty p { color: var(--muted); font-size: 1.08rem; max-width: 52ch; margin: 4px 0 16px; }

/* ---------- Role detail ---------- */
.role-detail-wrap { padding-top: clamp(120px, 15vh, 172px); }
.role-detail-wrap .container { max-width: 820px; }
.role-back { display: inline-block; color: var(--teal-deep); font-weight: 600; font-size: .9rem; margin-bottom: 26px; }
.role-detail__title { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; line-height: 1.06; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--ink); margin: .1em 0 .4em; }
.role-detail__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--muted); font-size: .95rem; margin-bottom: 26px; }
.role-detail__meta li { position: relative; }
.role-detail__meta li + li::before { content: "·"; position: absolute; left: -13px; }
.role-detail__summary { font-family: var(--serif); font-size: clamp(1.12rem, 1.7vw, 1.4rem); color: var(--ink); line-height: 1.45; margin-bottom: 42px; }
.role-block { margin-bottom: 34px; }
.role-block h2 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; color: var(--ink); margin-bottom: 14px; letter-spacing: -.01em; }
.role-block ul { display: grid; gap: 10px; }
.role-block li { position: relative; padding-left: 22px; color: var(--body); }
.role-block li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--teal); border-radius: 2px; }
.role-apply { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .expertise__grid { grid-template-columns: 1fr; gap: 0; }
  .career__grid { grid-template-columns: 1fr; }
  .career-peek { grid-template-columns: 1fr; }
  .career__packages { grid-template-columns: 1fr; }
  .career__cta { flex-direction: column; align-items: flex-start; }
  .exp { border-top: 1px solid var(--line); padding: 28px 0; }
  .exp:first-child { border-top: 2px solid var(--ink); }
  .approach__inner { grid-template-columns: 1fr; }
  .approach__intro { position: static; }
  .about { grid-template-columns: 1fr; }
  .about__head { position: static; }
  .people__grid { grid-template-columns: 1fr 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .perspectives__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .people__grid, .stats__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
  .person__photo { aspect-ratio: 1/1; }
  .footer__bar { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
