/* ============================================================
   First Water Consultants — brand styles
   Tokens are exact per brand brief. Indigo-forward, cool, editorial.
   ============================================================ */

:root {
  --indigo: #3939B8;
  --indigo-bright: #6464F0;
  --indigo-tint: #E8E9FB;
  --ink: #1A1C3A;
  --page: #F2F3F7;
  --teal: #2A9D8F;
  --white: #FFFFFF;

  --font-body: "Geist", system-ui, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;

  --max-w: 1280px;
  --gutter: clamp(24px, 5vw, 64px);

  /* tweakable */
  --hero-scale: 1;
  --btn-radius: 999px;
  --label-accent: var(--teal);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* ensure [hidden] always hides regardless of display rules */
[hidden] { display: none !important; }


html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--page);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body[data-teal="off"] { --label-accent: var(--indigo); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- type ---------- */

.display {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 440;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label-accent);
}

.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .label { display: block; margin-bottom: 20px; }
.section-head h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.05;
  text-wrap: balance;
}
.section-head p.lede {
  margin-top: 20px;
  max-width: 560px;
  font-size: 18px;
  color: rgba(26, 28, 58, 0.72);
  text-wrap: pretty;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translate(2px, -2px); }

.btn-primary { background: var(--indigo); color: var(--white); }
.btn-primary:hover { background: var(--indigo-bright); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 28, 58, 0.25);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-light { background: var(--white); color: var(--indigo); }
.btn-light:hover { background: var(--indigo-tint); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 243, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 28, 58, 0.06);
}
/* audience switch bar */
.audience-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}
.aud-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  height: 46px;
}
.aud-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  align-self: center;
}
.aud-switch {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}
.aud-opt {
  display: inline-flex;
  align-items: center;
  height: 38px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  border-radius: 10px 10px 0 0;
  transition: color 0.18s ease, background 0.18s ease;
}
.aud-opt:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.aud-opt.is-active {
  color: var(--ink);
  background: var(--page);
  font-weight: 600;
}
@media (max-width: 560px) {
  .aud-tag { display: none; }
  .aud-inner { justify-content: center; }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.logo .mark-img {
  width: 40px;
  height: 40px;
  align-self: center;
}
.logo .mark-chip {
  background: transparent;
  border-radius: 0;
  padding: 0;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  color: rgba(26, 28, 58, 0.75);
  transition: color 0.15s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--indigo); }
.nav-links a.is-active { color: var(--indigo); position: relative; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}
body[data-site="leaders"] .nav-links { gap: 22px; font-size: 14px; }
@media (max-width: 1200px) {
  body[data-site="leaders"] .nav-links { display: none; }
}

/* ---------- hero ---------- */

.hero { padding: clamp(56px, 8vw, 104px) 0 0; text-align: center; }
.hero h1 {
  font-size: calc(clamp(36px, 5vw, 74px) * var(--hero-scale));
  max-width: 17ch;
  margin: 0 auto;
  line-height: 1.14;
}
.hero .sub {
  margin: 60px auto 0;
  max-width: 600px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(26, 28, 58, 0.72);
  text-wrap: pretty;
}
.hero .cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* hero visual: image over indigo band, like the reference layout */
.hero-visual { position: relative; margin-top: clamp(56px, 7vw, 96px); }
.hero-visual .band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background: var(--indigo);
  border-radius: 28px 28px 0 0;
}
.hero-visual .frame {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- sections ---------- */

section { padding: clamp(72px, 9vw, 130px) 0; }
.on-white { background: var(--white); }
.on-tint { background: var(--indigo-tint); }
.on-dark { background: var(--ink); color: var(--white); }

/* about intro */
.about-intro {
  max-width: 780px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
  font-weight: 400;
  text-wrap: pretty;
}
.about-intro strong { font-weight: 600; color: var(--indigo); }

/* differentiators */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 48px;
  border-top: 1px solid rgba(26, 28, 58, 0.1);
}
.diff .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--indigo-tint);
  color: var(--indigo);
  margin-bottom: 22px;
}
.diff h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.diff p { font-size: 15.5px; color: rgba(26, 28, 58, 0.68); text-wrap: pretty; }

@media (max-width: 1000px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }

/* full-bleed image */
.bleed { padding: 0; }
.bleed image-slot { width: 100%; height: clamp(320px, 48vw, 620px); }

/* services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  background: var(--white);
  border: 1px solid rgba(26, 28, 58, 0.08);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 57, 184, 0.35);
  box-shadow: 0 16px 40px rgba(26, 28, 58, 0.08);
}
.svc .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--label-accent);
  letter-spacing: 0.1em;
}
.svc h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.1;
}
.svc p { font-size: 15.5px; color: rgba(26, 28, 58, 0.68); text-wrap: pretty; }
a.svc { color: inherit; }
a.svc .go {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--indigo);
  letter-spacing: 0.04em;
}
.svc-cta {
  background: var(--indigo);
  border-color: var(--indigo);
  justify-content: center;
}
.svc-cta .num { color: rgba(255,255,255,0.6); }
.svc-cta h3 { color: var(--white); }
.svc-cta .go { color: var(--white); }
.svc-cta:hover { border-color: var(--indigo-bright); background: var(--indigo-bright); }

@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

/* how we work */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(26, 28, 58, 0.1);
  padding-top: 8px;
}
.step { padding-top: 28px; }
.step .big-num {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1;
  color: var(--indigo-tint);
  -webkit-text-stroke: 1px var(--indigo-bright);
  letter-spacing: -0.03em;
}
.step h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 22px 0 10px;
}
.step p { font-size: 15.5px; color: rgba(26, 28, 58, 0.68); text-wrap: pretty; }

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* sectors */
.sector-list { border-top: 1px solid rgba(26, 28, 58, 0.12); }
.sector {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(26, 28, 58, 0.12);
  transition: padding-left 0.25s ease;
}
.sector:hover { padding-left: 12px; }
.sector .idx { font-family: var(--font-mono); font-size: 13px; color: var(--label-accent); }
.sector .name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}
.sector .desc {
  font-size: 15px;
  color: rgba(26, 28, 58, 0.6);
  max-width: 360px;
  text-align: right;
}
@media (max-width: 720px) {
  .sector { grid-template-columns: 48px 1fr; }
  .sector .desc { display: none; }
}

/* education page */
.serve-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 620px) { .serve-grid { grid-template-columns: 1fr; } }
.serve-grid .num { text-transform: uppercase; letter-spacing: 0.12em; }
.discretion-copy {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 16.5px;
  color: rgba(26, 28, 58, 0.7);
  text-wrap: pretty;
}
.higher-ed-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 900px) { .higher-ed-split { grid-template-columns: 1fr; } }
.he-head {
  font-size: clamp(36px, 4.2vw, 56px);
  margin: 20px 0 24px;
}
.he-copy {
  max-width: 520px;
  color: rgba(26, 28, 58, 0.72);
  text-wrap: pretty;
}
.he-copy + .he-copy { margin-top: 16px; }

/* linked sector row */
a.sector { cursor: pointer; }
.sector-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}
a.sector .go {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--indigo);
  white-space: nowrap;
  justify-self: end;
}
a.sector:hover .name { color: var(--indigo); }

/* testimonials + cta band */
.testimonial { text-align: center; }
.testimonial .label { display: block; margin-bottom: 28px; }
.client-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.3;
  max-width: 20em;
  margin: 0 auto;
  text-wrap: balance;
}
.client-quote[data-placeholder] { color: rgba(26, 28, 58, 0.35); }
.on-tint .client-quote[data-placeholder] { color: rgba(26, 28, 58, 0.4); }
.attr-block {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.attr-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
}
.attr-meta { font-size: 13.5px; color: rgba(26, 28, 58, 0.5); }

.cta-band { text-align: center; }
.cta-band .label { color: var(--indigo-bright); }
.cta-band h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 1.05;
  margin: 24px 0 24px;
}
.cta-band p {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  text-wrap: pretty;
}
.cta-band .cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cta-band .email-link {
  font-family: var(--font-mono);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.cta-band .email-link:hover { color: var(--white); border-color: var(--indigo-bright); }

/* pull quote */
.quote-band { text-align: center; }
.quote-band .qmark {
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 0.5;
  color: var(--indigo-bright);
  display: block;
  margin-bottom: 28px;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.25;
  max-width: 19em;
  margin: 0 auto;
  text-wrap: balance;
}
.quote-band .attr {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
}

/* contact */
.contact { text-align: center; }
.contact .label { color: var(--indigo-bright); }
.contact h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 1.05;
  margin: 24px 0 28px;
}
.contact p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  text-wrap: pretty;
}
.contact .cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.contact .email-link {
  font-family: var(--font-mono);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.contact .email-link:hover { color: var(--white); border-color: var(--indigo-bright); }

/* contact form */
.contact-form {
  max-width: 680px;
  margin: 48px auto 0;
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--page);
  border: 1px solid rgba(26, 28, 58, 0.12);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(26, 28, 58, 0.38); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--indigo-bright);
  box-shadow: 0 0 0 3px var(--indigo-tint);
}
.form-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact .form-foot .btn-light {
  background: var(--indigo);
  color: var(--white);
}
.contact .form-foot .btn-light:hover { background: var(--indigo-bright); }
.form-note {
  font-size: 13.5px;
  color: rgba(26, 28, 58, 0.55);
}
.form-note .email-link {
  color: var(--indigo);
  border-bottom: 1px solid rgba(57, 57, 184, 0.3);
  padding-bottom: 1px;
}
.form-status {
  font-size: 14px;
  color: var(--teal);
  margin: 0;
  min-height: 0;
}
.form-status.is-error { color: #E05C5C; }
.form-status:empty { display: none; }

.form-thanks {
  max-width: 680px;
  margin: 48px auto 0;
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
}
.form-thanks h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 14px;
}
.form-thanks p {
  color: rgba(26, 28, 58, 0.68);
  max-width: 420px;
  margin: 0 auto;
}

/* footer */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0;
  font-size: 14px;
}
.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.foot-inner .logo { color: var(--white); }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--white); }
.foot-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.foot-meta a:hover { color: var(--white); }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   INTERIOR PAGES
   ============================================================ */

/* page hero (interior) */
.page-hero { padding: clamp(72px, 9vw, 132px) 0 clamp(40px, 5vw, 64px); }
.page-hero .label { display: block; margin-bottom: 22px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.14;
  max-width: 16ch;
  text-wrap: balance;
}
.page-hero.wide h1 { max-width: 22ch; }
.page-hero .intro {
  margin-top: 56px;
  max-width: 640px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(26, 28, 58, 0.72);
  text-wrap: pretty;
}
.on-dark .page-hero .intro { color: rgba(255,255,255,0.72); }

/* service detail rows */
.svc-detail {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid rgba(26, 28, 58, 0.12);
  scroll-margin-top: 96px;
}
.svc-detail:last-child { border-bottom: 1px solid rgba(26, 28, 58, 0.12); }
.svc-detail .sd-num {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--label-accent);
  letter-spacing: 0.04em;
}
.svc-detail h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
}
.svc-detail p { font-size: 16.5px; color: rgba(26, 28, 58, 0.74); max-width: 64ch; text-wrap: pretty; }
.svc-detail p + p { margin-top: 14px; }
.svc-detail .sd-note {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 20px;
  color: var(--indigo);
  max-width: 60ch;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--indigo);
  border-bottom: 1px solid rgba(57, 57, 184, 0.3);
  padding-bottom: 3px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.svc-more:hover { color: var(--indigo-bright); border-color: var(--indigo-bright); }
.svc-more svg { transition: transform 0.2s ease; }
.svc-more:hover svg { transform: translate(2px, -2px); }
@media (max-width: 680px) {
  .svc-detail { grid-template-columns: 1fr; gap: 14px; }
}

/* process detail (how we work) */
.phase {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(44px, 5vw, 72px) 0;
  border-top: 1px solid rgba(26, 28, 58, 0.12);
  align-items: start;
}
.phase:last-child { border-bottom: 1px solid rgba(26, 28, 58, 0.12); }
.phase .phase-num {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.9;
  color: var(--indigo-tint);
  -webkit-text-stroke: 1.5px var(--indigo-bright);
  letter-spacing: -0.03em;
}
.phase h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 46px);
  margin-bottom: 16px;
}
.phase p { font-size: 16.5px; color: rgba(26, 28, 58, 0.74); max-width: 56ch; text-wrap: pretty; }
.phase .phase-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.phase .phase-tags span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--indigo);
  background: var(--indigo-tint);
  padding: 6px 12px;
  border-radius: 999px;
}
@media (max-width: 760px) { .phase { grid-template-columns: 1fr; gap: 12px; } }

/* team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1px solid rgba(26, 28, 58, 0.08);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-card.lead { grid-column: 1 / -1; }
@media (min-width: 801px) {
  .team-card.lead { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start; }
}
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 220px;
}
.team-card.lead .team-photo { aspect-ratio: 1 / 1.05; }
.team-role {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--label-accent);
}
.team-card h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  margin: 8px 0 12px;
}
.team-card p { font-size: 15.5px; color: rgba(26, 28, 58, 0.72); text-wrap: pretty; }
.team-card p + p { margin-top: 12px; }
.cred-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cred-list li {
  font-size: 14px;
  color: rgba(26, 28, 58, 0.68);
  padding-left: 18px;
  position: relative;
}
.cred-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--indigo-bright);
}
.team-consultants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .team-consultants { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team-consultants { grid-template-columns: 1fr; } }
.consultant {
  background: var(--white);
  border: 1px solid rgba(26, 28, 58, 0.08);
  border-radius: 14px;
  padding: 24px;
}
.consultant h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.consultant .c-role { font-family: var(--font-mono); font-size: 12px; color: var(--label-accent); letter-spacing: 0.04em; }
.consultant p { font-size: 14px; color: rgba(26,28,58,0.66); margin-top: 12px; text-wrap: pretty; }

/* case studies */
.cases { display: flex; flex-direction: column; gap: 20px; }
.case {
  background: var(--white);
  border: 1px solid rgba(26, 28, 58, 0.08);
  border-radius: 18px;
  padding: clamp(28px, 3.5vw, 44px);
}
.case .case-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--label-accent);
}
.case h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  margin: 12px 0 14px;
  text-wrap: balance;
}
.case p { font-size: 16px; color: rgba(26, 28, 58, 0.74); max-width: 70ch; text-wrap: pretty; }

/* simple two-column intro block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  margin-bottom: 20px;
  text-wrap: balance;
}
.split p { color: rgba(26, 28, 58, 0.74); text-wrap: pretty; max-width: 54ch; }
.split p + p { margin-top: 14px; }

/* insights grid */
.ins-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.ins-filter {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(26, 28, 58, 0.16);
  background: transparent;
  color: rgba(26, 28, 58, 0.7);
  cursor: pointer;
  transition: all 0.15s ease;
}
.ins-filter:hover { border-color: var(--indigo); color: var(--indigo); }
.ins-filter.is-active { background: var(--indigo); border-color: var(--indigo); color: var(--white); }
.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .ins-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ins-grid { grid-template-columns: 1fr; } }
.ins-card {
  background: var(--white);
  border: 1px solid rgba(26, 28, 58, 0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ins-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 57, 184, 0.35);
  box-shadow: 0 16px 40px rgba(26, 28, 58, 0.08);
}
.ins-card .ins-cat {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-accent);
}
.ins-card h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.12;
  text-wrap: balance;
}
.ins-card p { font-size: 14.5px; color: rgba(26, 28, 58, 0.68); text-wrap: pretty; margin-top: auto; }
.ins-empty {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(26, 28, 58, 0.5);
}
.ins-card--ip {
  background: var(--indigo-tint);
  border-color: rgba(57, 57, 184, 0.22);
}
.ins-card--ip .ins-cat {
  color: var(--indigo);
}

/* generic section intro on dark/tint pages */
.note-band {
  background: var(--indigo-tint);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  margin-top: 8px;
}
.note-band .label { display: block; margin-bottom: 14px; }
.note-band p { font-size: 16.5px; color: rgba(26, 28, 58, 0.78); max-width: 70ch; text-wrap: pretty; }

/* image-slot safety */
image-slot { display: block; }

.email-link-dark {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--indigo);
  border-bottom: 1px solid rgba(57, 57, 184, 0.3);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
  display: inline-block;
  margin-top: 20px;
}
.email-link-dark:hover { color: var(--indigo-bright); border-color: var(--indigo-bright); }
.hl {
  background: var(--indigo-tint);
  color: var(--indigo);
  padding: 0.04em 0.28em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* role chips (fractional leadership) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sector-strip {
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid rgba(26, 28, 58, 0.1);
}
.sector-strip .label { display: block; margin-bottom: 22px; text-align: center; }
.sector-strip .strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: clamp(20px, 4vw, 56px);
}
.sector-strip .strip-row a {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  color: var(--ink);
  transition: color 0.18s ease;
}
.sector-strip .strip-row a:hover { color: var(--indigo); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.chips span {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--indigo);
  background: var(--white);
  border: 1px solid rgba(57, 57, 184, 0.2);
  padding: 12px 20px;
  border-radius: 999px;
}

/* fractional & interim leadership feature band */
.frac-head { max-width: 760px; }
.frac-head .label { display: block; margin-bottom: 20px; color: var(--indigo-bright); }
.frac-head h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff;
}
.frac-head p {
  color: var(--page);
  font-size: 17px;
  max-width: 64ch;
  text-wrap: pretty;
}
.frac-head p .email-link-dark {
  color: var(--indigo-bright);
  border-color: rgba(100, 100, 240, 0.5);
  display: inline;
  margin-top: 0;
}
.frac-head p .email-link-dark:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.role-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 760px) { .role-groups { grid-template-columns: 1fr; gap: 32px; } }
.role-group h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--page);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 16px;
}
.role-group ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.role-group li { color: var(--page); font-size: 16px; }

/* light cta band */
.cta-band-light { text-align: center; }
.cta-band-light .label { color: var(--indigo); display: block; }
.cta-band-light h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  margin: 22px 0 22px;
}
.cta-band-light p { max-width: 540px; margin: 0 auto; color: rgba(26, 28, 58, 0.7); text-wrap: pretty; }
.cta-band-light .cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.email-link-dark {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--indigo);
  border-bottom: 1px solid rgba(57, 57, 184, 0.3);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.email-link-dark:hover { color: var(--indigo-bright); border-color: var(--indigo-bright); }

/* contact meta */
.contact-meta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.contact-meta a { color: rgba(255, 255, 255, 0.85); transition: color 0.15s ease; }
.contact-meta a:hover { color: var(--indigo-bright); }

/* contact two-column layout */
.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
  align-items: start;
  text-align: left;
}
.contact-col-left { min-width: 0; background: var(--indigo-tint); border-radius: 20px; padding: clamp(28px, 4vw, 44px); }
.contact-col-left .contact-form { margin: 0; background: none; border-radius: 0; padding: 0; max-width: none; }
.contact-col-left .form-thanks { margin: 0; background: none; border-radius: 0; padding: 0; max-width: none; text-align: left; }
.contact-col-left .contact-meta { justify-content: flex-start; color: rgba(26, 28, 58, 0.6); }
.contact-col-left .contact-meta a { color: var(--indigo); }
.contact-col-right {
  background: #D5D7F5;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  min-width: 0;
}
.contact-cal-head {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-cal-embed { min-height: 580px; }
@media (max-width: 900px) {
  .contact-cols { grid-template-columns: 1fr; }
}

/* sector page: who-we-work-with list */
.serve-rows { display: flex; flex-direction: column; gap: 0; }
.serve-rows .serve-row {
  padding: 24px 0;
  border-top: 1px solid rgba(26, 28, 58, 0.1);
  font-size: 16.5px;
  color: rgba(26, 28, 58, 0.78);
  max-width: 76ch;
  text-wrap: pretty;
}
.serve-rows .serve-row:last-child { border-bottom: 1px solid rgba(26, 28, 58, 0.1); }
.serve-rows .serve-row strong { color: var(--ink); font-weight: 600; }

/* what we do list */
.do-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  list-style: none;
}
@media (max-width: 720px) { .do-list { grid-template-columns: 1fr; } }
.do-list li {
  background: var(--white);
  border: 1px solid rgba(26, 28, 58, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
  font-size: 15.5px;
  color: rgba(26, 28, 58, 0.76);
  text-wrap: pretty;
}
.do-list li strong {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}

/* full capabilities (3-col grouped, light) */
.sub-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--ink);
  margin-bottom: 22px;
}
.sub-lede {
  font-size: 16px;
  color: rgba(26, 28, 58, 0.66);
  max-width: 64ch;
  margin: -10px 0 24px;
  text-wrap: pretty;
}
.cap-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 860px) { .cap-groups { grid-template-columns: 1fr; gap: 36px; } }
.cap-group h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26, 28, 58, 0.14);
  margin-bottom: 18px;
}
.cap-group ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cap-group li {
  font-size: 15.5px;
  color: rgba(26, 28, 58, 0.78);
  padding-left: 18px;
  position: relative;
  text-wrap: pretty;
}
.cap-group li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--indigo-bright);
}
.cap-group li a {
  color: var(--indigo);
  border-bottom: 1px solid rgba(57, 57, 184, 0.3);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.cap-group li a:hover { color: var(--indigo-bright); border-color: var(--indigo-bright); }
.cap-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(26, 28, 58, 0.5);
  margin-top: 3px;
}

/* numbered work plan */
.workplan {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  counter-reset: wp;
}
@media (max-width: 720px) { .workplan { grid-template-columns: 1fr; } }
.workplan li {
  counter-increment: wp;
  background: var(--white);
  border: 1px solid rgba(26, 28, 58, 0.08);
  border-radius: 14px;
  padding: 24px 24px 24px 64px;
  position: relative;
  font-size: 15px;
  color: rgba(26, 28, 58, 0.72);
  text-wrap: pretty;
}
.workplan li::before {
  content: counter(wp, decimal-leading-zero);
  position: absolute;
  left: 24px; top: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--indigo);
}
.workplan li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
}

/* qualities chip row */
.qual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.qual-chips span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--indigo);
  background: var(--indigo-tint);
  padding: 8px 16px;
  border-radius: 999px;
}

/* delivery rhythm (agile cycle) */
.rhythm {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 5vw, 60px);
  counter-reset: rh;
}
@media (max-width: 880px) { .rhythm { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rhythm { grid-template-columns: 1fr; } }
.rhythm-step {
  counter-increment: rh;
  position: relative;
  padding-top: 26px;
  border-top: 2px solid var(--indigo-bright);
}
.rhythm-step .rh-num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--indigo);
  letter-spacing: 0.08em;
}
.rhythm-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 23px;
  color: var(--ink);
  margin: 10px 0 8px;
}
.rhythm-step p {
  font-size: 14px;
  color: rgba(26, 28, 58, 0.66);
  text-wrap: pretty;
}



/* ============================================================
   AI CHAT WIDGET (site-wide, injected by site.js)
   ============================================================ */
.fwc-chat {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.fwc-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 22px 0 20px;
  border: none;
  border-radius: 999px;
  background: var(--indigo);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(26, 28, 58, 0.28);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.fwc-chat-btn:hover { background: var(--indigo-bright); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(26, 28, 58, 0.34); }
.fwc-ico-chat { display: block; }
.fwc-ico-close { display: none; }
.fwc-chat.is-open .fwc-ico-chat { display: none; }
.fwc-chat.is-open .fwc-ico-close { display: block; }
.fwc-chat.is-open .fwc-chat-label { display: none; }
.fwc-chat.is-open .fwc-chat-btn { padding: 0; width: 54px; justify-content: center; }
.fwc-chat-panel {
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 120px));
  background: #fff;
  border: 1px solid rgba(26, 28, 58, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(26, 28, 58, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.fwc-chat-panel[hidden] { display: none; }
.fwc-chat:not(.is-open) .fwc-chat-panel { opacity: 0; transform: translateY(8px) scale(0.97); pointer-events: none; }
.fwc-chat.is-open .fwc-chat-panel { opacity: 1; transform: none; }
.fwc-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(26, 28, 58, 0.08);
  flex: none;
}
.fwc-chat-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.fwc-chat-close {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: rgba(26, 28, 58, 0.5);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0;
}
.fwc-chat-close:hover { background: var(--page); color: var(--ink); }
.fwc-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fwc-msg {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 13px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.fwc-msg--assistant {
  background: var(--page);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.fwc-msg--user {
  background: var(--indigo);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.fwc-msg--loading {
  background: var(--page);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 13px 16px;
}
.fwc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26, 28, 58, 0.4);
  animation: fwc-pulse 1.2s ease-in-out infinite;
}
.fwc-dot:nth-child(2) { animation-delay: 0.2s; }
.fwc-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes fwc-pulse {
  0%, 80%, 100% { transform: scale(0.9); opacity: 0.4; }
  40% { transform: scale(1.15); opacity: 1; }
}
.fwc-chat-foot {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(26, 28, 58, 0.08);
  flex: none;
  align-items: flex-end;
}
.fwc-chat-input {
  flex: 1;
  resize: none;
  border: 1px solid rgba(26, 28, 58, 0.16);
  border-radius: 10px;
  padding: 8px 11px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--page);
  min-height: 36px;
  max-height: 96px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.15s ease;
  overflow-y: auto;
}
.fwc-chat-input:focus { border-color: var(--indigo); }
.fwc-chat-input::placeholder { color: rgba(26, 28, 58, 0.65); }
.fwc-chat-send {
  flex: none;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 9px;
  background: var(--indigo);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
  padding: 0;
}
.fwc-chat-send:hover { background: var(--indigo-bright); }
.fwc-chat-send:disabled { opacity: 0.4; cursor: not-allowed; }
.fwc-qr {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-self: flex-start;
  padding: 2px 0 4px;
  max-width: 100%;
}
.fwc-qr-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border: 1.5px solid var(--indigo);
  border-radius: 999px;
  background: #fff;
  color: var(--indigo);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.fwc-qr-btn:hover { background: var(--indigo); color: #fff; }
@media (max-width: 480px) {
  .fwc-chat-panel { width: calc(100vw - 32px); height: calc(100vh - 96px); border-radius: 14px; }
}
@media print { .fwc-chat { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .fwc-chat-btn, .fwc-chat-panel { transition: none; }
  .fwc-dot { animation: none; opacity: 0.5; }
}


/* education "What We Do" clusters */
.cluster-group { margin-top: clamp(40px, 5vw, 60px); }
.cluster-group:first-of-type { margin-top: clamp(40px, 5vw, 64px); }
.cluster-label {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(57, 57, 184, 0.18);
}


/* google calendar booking embed (Leaders) */
.booking-embed {
  margin-top: clamp(28px, 4vw, 40px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 18px 50px rgba(26, 28, 58, 0.28);
}
.booking-embed iframe { display: block; width: 100%; }

/* active sector in strip */
.strip-active { color: var(--indigo) !important; font-weight: 500; }
.strip-active::after { content: ""; display: block; height: 2px; background: var(--indigo); border-radius: 2px; margin-top: 4px; }


/* optional field label */
.field-opt {
  font-size: 12px;
  font-weight: 400;
  color: rgba(26, 28, 58, 0.45);
  margin-left: 4px;
}

/* founder name links */
.founder-link {
  color: inherit;
  border-bottom: 1px solid rgba(26, 28, 58, 0.25);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.founder-link:hover { color: var(--indigo); border-color: var(--indigo); }

/* leader portrait section */
.leader-portrait-section { padding: clamp(48px,6vw,80px) 0; }
.leader-portrait-wrap {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.leader-portrait-text { flex: 1; }
.leader-portrait-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 20px;
  text-wrap: balance;
}
.leader-portrait-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-accent);
  margin-bottom: 12px;
}
@media (max-width: 680px) {
  .leader-portrait-wrap { flex-direction: column; }
  .leader-portrait-wrap image-slot { width: 100% !important; max-width: 280px; margin: 0 auto; }
}

/* service tabs (homepage toggle) */
.svc-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(26, 28, 58, 0.1);
  padding-bottom: 0;
}
.svc-tab {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: rgba(26, 28, 58, 0.5);
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
  border-radius: 0;
}
.svc-tab:hover { color: var(--indigo); }
.svc-tab.is-active {
  color: var(--indigo);
  border-bottom-color: var(--indigo);
  font-weight: 600;
}

/* newsletter checkbox */
.field-check { margin-top: 4px; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.check-label input[type="checkbox"] {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--indigo-bright);
  cursor: pointer;
}

/* clickable label breadcrumb */
.label-link {
  color: inherit;
  border-bottom: 1px solid currentColor;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
.label-link:hover { opacity: 1; }

/* ============================================================
   NAV DROPDOWN (Services)
   ============================================================ */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(26, 28, 58, 0.75);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.nav-drop-toggle svg { transition: transform 0.2s ease; }
.nav-drop-toggle:hover,
.nav-drop-toggle.is-active { color: var(--indigo); }
.nav-drop-toggle.is-active { position: relative; }
.nav-drop-toggle.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 16px;
  bottom: -6px;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
}
.nav-dropdown:hover .nav-drop-toggle svg,
.nav-dropdown:focus-within .nav-drop-toggle svg { transform: rotate(180deg); }

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(26, 28, 58, 0.1);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 36px rgba(26, 28, 58, 0.14);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 60;
}
/* invisible bridge so the cursor can travel from toggle to panel without losing hover */
.nav-drop-panel::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown:hover .nav-drop-panel,
.nav-dropdown:focus-within .nav-drop-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-panel a {
  display: block;
  padding: 11px 16px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-drop-panel a:hover {
  background: var(--indigo-tint);
  color: var(--indigo);
}
@media (max-width: 900px) { .nav-dropdown { display: none; } }
