/* CoreConnection Business Advisors — website layout styles.
   Tokens + cc-* component classes come from the design system styles.css.
   This file holds page layout only; it never invents brand colors. */

.site { font-family: var(--font-sans); color: var(--text-body); overflow-x: hidden; }
.site__inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.site__inner--narrow { max-width: 880px; }

/* ============================== Nav ============================== */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__brand:hover { text-decoration: none; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.nav__wordmark b { font-size: 19px; font-weight: var(--fw-bold); color: var(--cc-ink); letter-spacing: -0.01em; }
.nav__wordmark span { font-size: 11px; font-weight: var(--fw-semibold); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: var(--text-body); font-size: 15px; font-weight: var(--fw-semibold); white-space: nowrap; }
.nav__links a:hover { color: var(--accent-hover); text-decoration: none; }
.nav__cta { margin-left: 4px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; margin-right: -8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--cc-ink); border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-standard), opacity var(--dur-base) var(--ease-standard); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; background: #fff; border-bottom: 1px solid var(--border-subtle);
  padding: 8px 40px 20px; }
.nav__mobile a { padding: 13px 0; font-size: 16px; font-weight: var(--fw-semibold); color: var(--text-body);
  border-bottom: 1px solid var(--border-subtle); }
.nav__mobile a:hover { color: var(--accent-hover); text-decoration: none; }
.nav__mobile-cta { color: var(--accent-hover) !important; font-weight: var(--fw-bold) !important; border-bottom: none !important; }
@media (max-width: 880px){
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.is-open { display: flex; }
}

/* ============================== Hero ============================== */
.hero { background: var(--surface-forest); color: #fff; position: relative; overflow: hidden; }
.hero__mark { position: absolute; left: -120px; bottom: -140px; width: 480px; opacity: 0.06; pointer-events: none; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
  padding: 104px 0 112px;
}
.hero__copy { max-width: 540px; }
.hero__eyebrow { color: var(--cc-lime); font-size: var(--fs-overline); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-overline); text-transform: uppercase; margin: 0 0 20px; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 4.4vw, 3.6rem); line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 22px; }
.hero__sub { font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0 0 18px; }
.hero__support { font-size: 15px; color: rgba(255,255,255,0.62); margin: 0 0 34px; max-width: 44ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__secondary { border-color: rgba(255,255,255,0.32) !important; color: #fff !important; background: transparent !important; }
.hero__secondary:hover { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.6) !important; }
@media (max-width: 920px){
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 0 88px; }
  .hero__copy { max-width: 620px; }
}

/* ============================== System diagram (hero) ============================== */
.sysdiagram { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 460px; margin: 0 auto; }
.sysdiagram__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.sysdiagram__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 116px; height: 116px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
}
.sysdiagram__hub img { width: 64px; opacity: 0.96; }
.sysnode {
  position: absolute; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; text-align: center; width: 124px;
}
.sysnode__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--cc-lime); margin-bottom: 8px;
  box-shadow: 0 0 0 4px rgba(153,202,59,0.18); }
.sysnode__label { font-size: 13px; font-weight: var(--fw-bold); color: #fff; line-height: 1.2; }
.sysnode__sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }
@media (max-width: 920px){ .sysdiagram { max-width: 400px; } }

/* ============================== Generic section ============================== */
.section { padding: 100px 0; }
.section--tight { padding: 80px 0; }
.section--sunken { background: var(--surface-sunken); }
.section--soft { background: var(--surface-brand-soft); }
.section--forest { background: var(--surface-forest); color: #fff; }
.section--green { background: var(--surface-brand); color: #fff; }
.section--ink { background: var(--surface-ink); color: #fff; }
.section__lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--text-muted); margin: 18px 0 0; }
.section--forest .section__lead, .section--green .section__lead { color: rgba(255,255,255,0.82); }

/* ============================== Problem cards ============================== */
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.problem__grid .cc-card:nth-child(4),
.problem__grid .cc-card:nth-child(5) { grid-column: span 1; }
@media (max-width: 980px){ .problem__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .problem__grid { grid-template-columns: 1fr; } }
.pcard { display: flex; flex-direction: column; gap: 10px; }
.pcard__num { font-size: 13px; font-weight: var(--fw-bold); color: var(--accent); letter-spacing: 0.04em; }
.pcard h3 { font-size: 18px; margin: 0; }
.pcard p { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ============================== Solution pillars ============================== */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 52px;
  border-top: 1px solid var(--border-subtle); }
.pillar { padding: 30px 22px 8px 0; border-right: 1px solid var(--border-subtle); }
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar__step { font-size: 13px; font-weight: var(--fw-bold); color: var(--accent); margin-bottom: 14px; }
.pillar h3 { font-size: 19px; margin: 0 0 8px; }
.pillar p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.55; }
@media (max-width: 980px){ .pillars { grid-template-columns: repeat(2, 1fr); border-top: none; }
  .pillar { border-right: none; border-top: 1px solid var(--border-subtle); padding: 24px 0; } }
@media (max-width: 560px){ .pillars { grid-template-columns: 1fr; } }

/* ============================== Services ============================== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
@media (max-width: 980px){ .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .services { grid-template-columns: 1fr; } }
.svc { display: flex; flex-direction: column; height: 100%; }
.svc__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--cc-green-50);
  display: flex; align-items: center; justify-content: center; color: var(--accent-hover); margin-bottom: 18px; }
.svc__icon svg { width: 22px; height: 22px; }
.svc h3 { font-size: 18px; margin: 0 0 8px; }
.svc p { font-size: 14.5px; color: var(--text-muted); margin: 0 0 16px; line-height: 1.55; }
.svc__more { margin-top: auto; font-size: 14px; font-weight: var(--fw-semibold); color: var(--accent-hover);
  display: inline-flex; align-items: center; gap: 6px; }
.svc__more svg { width: 15px; height: 15px; }

/* ============================== Approach / Operating loop ============================== */
.approach__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center; margin-top: 56px; }
@media (max-width: 980px){ .approach__grid { grid-template-columns: 1fr; gap: 56px; } }
.steps { display: flex; flex-direction: column; gap: 4px; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14); }
.step:last-child { border-bottom: none; }
.step__num { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: var(--fw-bold); color: var(--cc-lime); }
.step h3 { font-size: 18px; color: #fff; margin: 6px 0 4px; }
.step p { font-size: 14.5px; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.55; }

/* circular loop */
.loop { position: relative; width: 100%; aspect-ratio: 1/1; max-width: 440px; margin: 0 auto; }
.loop__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.loop__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 132px; height: 132px; border-radius: 50%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; }
.loop__center img { width: 54px; margin-bottom: 8px; opacity: 0.96; }
.loop__center span { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); }
.loopnode { position: absolute; transform: translate(-50%,-50%); display: flex; flex-direction: column;
  align-items: center; text-align: center; width: 118px; }
.loopnode__n { width: 36px; height: 36px; border-radius: 50%; background: var(--cc-forest); border: 2px solid var(--cc-lime); color: var(--cc-lime);
  font-size: 14px; font-weight: var(--fw-bold); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.loopnode__l { font-size: 13.5px; font-weight: var(--fw-bold); color: #fff; line-height: 1.2; }
.loop__center--sm { width: 116px; height: 116px; }
.loop__center--sm img { width: 40px; margin-bottom: 6px; }
.loop__out { position: absolute; transform: translate(-50%,-50%); font-size: 10.5px; font-weight: var(--fw-bold);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cc-lime); opacity: 0.9;
  background: var(--cc-forest); padding: 2px 8px; white-space: nowrap; }
.steps__note { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.steps__note b { color: rgba(255,255,255,0.92); font-weight: var(--fw-semibold); }

/* ============================== Advisors ============================== */
.advisors { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 52px; }
@media (max-width: 820px){ .advisors { grid-template-columns: 1fr; } }
.advisor { display: grid; grid-template-columns: 128px 1fr; gap: 24px; align-items: start; }
@media (max-width: 460px){ .advisor { grid-template-columns: 1fr; } }
.advisor__photo { width: 128px; height: 152px; border-radius: var(--radius-lg); background: var(--cc-neutral-100);
  border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center;
  color: var(--cc-neutral-400); position: relative; overflow: hidden; }
.advisor__photo svg { width: 40px; height: 40px; }
.advisor__photo .ph__tag { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cc-neutral-500); }
.advisor__photo--img { object-fit: cover; object-position: 50% 22%; }
.advisor__name { font-size: 20px; margin: 0 0 2px; color: var(--text-heading); }
.advisor__role { font-size: 13px; font-weight: var(--fw-semibold); color: var(--accent-hover);
  letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 12px; }
.advisor p { font-size: 15px; color: var(--text-muted); margin: 0 0 10px; line-height: 1.6; }
.advisor .cc-badge { margin-top: 4px; }
.credential { display: grid; grid-template-columns: 17px 1fr; gap: 8px; align-items: start; margin-top: 8px;
  font-size: 13.5px; font-weight: var(--fw-semibold); color: var(--accent-hover); line-height: 1.3; }
.credential svg { width: 17px; height: 17px; margin-top: 1px; flex-shrink: 0; }
.credential--neutral { color: var(--text-muted); }

/* ============================== Framework / Pinnacle pathway ============================== */
.framework { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; }
@media (max-width: 900px){ .framework { grid-template-columns: 1fr; gap: 36px; } }
.framework__body p { font-size: var(--fs-lead); line-height: 1.65; color: var(--text-muted); margin: 0 0 18px; max-width: 54ch; }
.framework__card { }
.fwcard__label { font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-subtle); margin-bottom: 14px; }
.fwcard h3 { font-size: 20px; margin: 0 0 10px; }
.fwcard p { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; margin: 0 0 18px; }
.fwcard__note { font-size: 12.5px; color: var(--text-subtle); border-top: 1px solid var(--border-subtle);
  padding-top: 14px; margin-top: 4px; }

/* ============================== Final CTA ============================== */
.finalcta { text-align: center; max-width: 640px; margin: 0 auto; }
.finalcta h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 0 0 16px; }
.finalcta p { color: rgba(255,255,255,0.9); font-size: 1.15rem; line-height: 1.55; margin: 0 0 32px; }
.finalcta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.finalcta__secondary { border-color: rgba(255,255,255,0.4) !important; color: #fff !important; background: transparent !important; }
.finalcta__secondary:hover { background: rgba(255,255,255,0.1) !important; }

/* Booking CTA with contact card */
.bookcta { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items: center; }
.bookcta__copy h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 0 0 16px; }
.bookcta__copy p { color: rgba(255,255,255,0.9); font-size: 1.15rem; line-height: 1.55; margin: 0 0 28px; max-width: 34rem; }
.bookcta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.bookcta__note { font-size: 0.92rem !important; color: rgba(255,255,255,0.75) !important; margin: 14px 0 0 !important; }
.bookcta__card { background: #fff; border-radius: var(--radius-lg, 16px); box-shadow: var(--shadow-md, 0 8px 24px rgba(0,0,0,0.10));
  padding: 28px; display: flex; flex-direction: column; gap: 16px; justify-self: end; width: min(100%, 360px); }
.bookcta__photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.bookcta__photo--mark { object-fit: contain; padding: 14px; background: var(--cc-green-50); border: 1px solid var(--cc-green-100); }
.bookcta__who { display: flex; flex-direction: column; gap: 2px; }
.bookcta__who b { font-size: 1.05rem; }
.bookcta__who span { font-size: 0.9rem; color: var(--text-secondary, #6b6f72); }
.bookcta__lines { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border-hairline, #e4e6e7); padding-top: 16px; }
.bookcta__lines a { display: flex; align-items: center; gap: 9px; font-size: 0.95rem; font-weight: 600; color: var(--cc-forest); text-decoration: none; }
.bookcta__lines a:hover { text-decoration: underline; }
.bookcta__lines i, .bookcta__lines svg { width: 16px; height: 16px; color: var(--cc-green); flex: none; }
@media (max-width: 880px) {
  .bookcta { grid-template-columns: 1fr; gap: 36px; }
  .bookcta__card { justify-self: start; }
}

/* ============================== Footer ============================== */
.foot { background: var(--surface-ink); color: rgba(255,255,255,0.7); padding: 64px 0 40px; }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px){ .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .foot__top { grid-template-columns: 1fr; } }
.foot__brandcopy { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.65; margin-top: 16px; max-width: 320px; }
.foot__contacts { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12); }
.foot__person .cc-contact__name { font-size: 15px; }
.foot__col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  font-weight: var(--fw-bold); margin: 0 0 16px; }
.foot__col a { display: block; color: rgba(255,255,255,0.78); font-size: 14.5px; margin-bottom: 10px; }
.foot__col a:hover { color: #fff; text-decoration: none; }
.foot__legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot__legal .dba { max-width: 60ch; }

/* ============================== How we help — merged cards + detail ============================== */
.helpways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
@media (max-width: 880px){ .helpways { grid-template-columns: 1fr; } }
.hw { display: flex; flex-direction: column; height: 100%; text-align: left; cursor: pointer;
  font-family: var(--font-sans); background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard); }
.hw:hover { border-color: var(--cc-green-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hw[aria-selected="true"] { border-color: var(--accent); box-shadow: var(--shadow-md); }
.hw[aria-selected="true"] .hw__icon { background: var(--accent); color: #fff; }
.hw__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--cc-green-50);
  display: flex; align-items: center; justify-content: center; color: var(--accent-hover); margin-bottom: 20px;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard); }
.hw__icon svg { width: 26px; height: 26px; }
.hw h3 { font-size: 22px; margin: 0 0 8px; }
.hw__when { font-size: 15px; color: var(--text-muted); line-height: 1.55; margin: 0 0 18px; }
.hw__symptom { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; font-weight: var(--fw-semibold);
  color: var(--text-heading); background: var(--surface-brand-soft); border: 1px solid var(--cc-green-100);
  border-radius: 10px; padding: 11px 13px; line-height: 1.4; }
.hw__symptom svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.hw__tags { padding-top: 18px; font-size: 12.5px; font-weight: var(--fw-semibold); color: var(--text-subtle); }
.hw__pick { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: var(--fw-bold); color: var(--accent-hover); }
.hw__pick svg { width: 15px; height: 15px; }
.hw[aria-selected="true"] .hw__pick { color: var(--accent); }

.helpdetail { position: relative; overflow: hidden; margin-top: 24px; background: var(--surface-forest);
  color: #fff; border-radius: var(--radius-lg); padding: 44px 48px; }
.helpdetail__mark { position: absolute; right: -50px; bottom: -70px; width: 250px; opacity: 0.06; pointer-events: none; }
.helpdetail__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px 48px; align-items: center; animation: stuckFade var(--dur-slow) var(--ease-out); }
@media (max-width: 880px){ .helpdetail__inner { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce){ .helpdetail__inner { animation: none; } }
.helpdetail__eyebrow { color: var(--cc-lime); font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 13px; }
.helpdetail h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin: 0 0 14px; line-height: 1.15; }
.helpdetail p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; margin: 0; max-width: 52ch; }
.helpdetail__side { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md); padding: 28px 32px; align-self: stretch;
  display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 880px){ .helpdetail__side { padding: 22px 24px; } }
.helpdetail__sidelabel { font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.helpdetail__svcs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.helpdetail__svcs li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.92); line-height: 1.4; }
.helpdetail__svcs li svg { width: 18px; height: 18px; color: var(--cc-lime); flex-shrink: 0; margin-top: 2px; }
.helpdetail__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.helpdetail__sec { border-color: rgba(255,255,255,0.32) !important; color: #fff !important; background: transparent !important; }
.helpdetail__sec:hover { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.6) !important; }

/* ============================== "Where are you stuck?" picker (alt concept) ============================== */
.altbanner { background: var(--cc-ink); color: rgba(255,255,255,0.92); text-align: center;
  font-size: 13px; font-weight: var(--fw-semibold); letter-spacing: 0.02em; padding: 10px 20px; }
.altbanner b { color: var(--cc-lime); }
.stuck { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 32px; margin-top: 48px; align-items: start; }
@media (max-width: 860px){ .stuck { grid-template-columns: 1fr; } }
.stuck__list { display: flex; flex-direction: column; gap: 10px; }
.stuck__opt { display: flex; align-items: center; gap: 13px; text-align: left; width: 100%; cursor: pointer;
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 16px 18px;
  font-family: var(--font-sans); font-size: 15.5px; font-weight: var(--fw-semibold); color: var(--text-body);
  transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard); }
.stuck__opt:hover { border-color: var(--cc-green-300); background: var(--surface-brand-soft); }
.stuck__opt[aria-selected="true"] { border-color: var(--accent); background: var(--surface-brand-soft); box-shadow: var(--shadow-sm); }
.stuck__opt .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cc-neutral-300); flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-standard); }
.stuck__opt[aria-selected="true"] .dot { background: var(--accent); box-shadow: 0 0 0 4px var(--cc-green-100); }
.stuck__panel { background: var(--surface-forest); color: #fff; border-radius: 16px; padding: 38px; position: relative;
  overflow: hidden; min-height: 320px; }
.stuck__mark { position: absolute; right: -60px; bottom: -70px; width: 250px; opacity: 0.06; pointer-events: none; }
.stuck__inner { position: relative; }
.stuck__eyebrow { color: var(--cc-lime); font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px; }
.stuck__panel h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 1.75rem); margin: 0 0 14px; }
.stuck__panel p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; margin: 0 0 22px; max-width: 46ch; }
.stuck__svcs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.stuck__svcs span { font-size: 13px; font-weight: var(--fw-semibold); color: #fff; background: rgba(255,255,255,0.12);
  border-radius: var(--radius-pill); padding: 7px 13px; white-space: nowrap; }
@keyframes stuckFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.stuck__inner { animation: stuckFade var(--dur-slow) var(--ease-out); }
@media (prefers-reduced-motion: reduce){ .stuck__inner { animation: none; } }

/* ============================== About page ============================== */
.who { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px){ .who { grid-template-columns: 1fr; gap: 36px; } }
.who p { font-size: var(--fs-lead); line-height: 1.65; color: var(--text-muted); margin: 0 0 18px; }
.who p:last-child { margin-bottom: 0; }
.whocard { background: var(--surface-forest); color: #fff; border-radius: var(--radius-lg); padding: 38px;
  position: relative; overflow: hidden; }
.whocard__mark { position: absolute; right: -50px; bottom: -60px; width: 220px; opacity: 0.07; }
.whocard h3 { color: #fff; font-size: 20px; margin: 0 0 18px; position: relative; }
.whocard ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; position: relative; }
.whocard li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: rgba(255,255,255,0.9); line-height: 1.45; }
.whocard li svg { width: 18px; height: 18px; color: var(--cc-lime); flex-shrink: 0; margin-top: 2px; }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
@media (max-width: 900px){ .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .values { grid-template-columns: 1fr; } }
.value__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--cc-green-50);
  display: flex; align-items: center; justify-content: center; color: var(--accent-hover); margin-bottom: 16px; }
.value__icon svg { width: 22px; height: 22px; }
.value h3 { font-size: 17px; margin: 0 0 7px; }
.value p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }

.bios { display: flex; flex-direction: column; gap: 28px; margin-top: 52px; }
.bio { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: start;
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm); }
@media (max-width: 720px){ .bio { grid-template-columns: 1fr; gap: 24px; } }
.bio__photo { width: 200px; height: 240px; border-radius: var(--radius-md); background: var(--cc-neutral-100);
  border: 1px solid var(--border-subtle); display: flex; flex-direction: column; align-items: center;
  justify-content: center; color: var(--cc-neutral-400); position: relative; }
@media (max-width: 720px){ .bio__photo { width: 160px; height: 192px; } }
.bio__photo--img { object-fit: cover; object-position: 50% 20%; display: block; }
.bio__photo svg { width: 44px; height: 44px; }
.bio__photo .ph__tag { position: absolute; bottom: 12px; font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cc-neutral-500); }
.bio__name { font-size: 24px; margin: 0 0 3px; }
.bio__role { font-size: 13px; font-weight: var(--fw-semibold); color: var(--accent-hover);
  letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 16px; }
.bio__body p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin: 0 0 12px; }
.bio__certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--border-subtle); }
.bio__cert { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: var(--fw-semibold);
  color: var(--text-body); background: var(--surface-sunken); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill); padding: 6px 12px; white-space: nowrap; }
.bio__cert svg { width: 14px; height: 14px; color: var(--accent); }
.bio__cert img { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.bio__book { display: flex; align-items: center; gap: 16px; margin-top: 16px;
  background: var(--surface-sunken); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 14px 16px; }
.bio__book img { width: 64px; height: 64px; border-radius: var(--radius-sm); display: block; flex-shrink: 0; }
.bio__book-title { display: block; font-size: 14px; font-weight: var(--fw-bold); color: var(--text-body); margin-bottom: 2px; }
.bio__book-title i { font-style: italic; }
.bio__book-sub { display: block; font-size: 13px; color: var(--text-muted); line-height: 1.45; }
.bio__contact { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; font-size: 14px; }
.bio__contact a { display: inline-flex; align-items: center; gap: 7px; font-weight: var(--fw-semibold); color: var(--accent-hover); white-space: nowrap; }
.bio__contact svg { width: 15px; height: 15px; }

/* ============================== Pinnacle page ============================== */
.pin-intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
@media (max-width: 880px){ .pin-intro { grid-template-columns: 1fr; gap: 32px; } }
.pin-intro__body p { font-size: var(--fs-lead); line-height: 1.65; color: var(--text-muted); margin: 0 0 18px; }
.pin-intro__body p:last-child { margin-bottom: 0; }
.pin-cmark { position: relative; }
.pin-cmark .cc-card { padding: 30px; }
.pin-cmark__row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pin-cmark__badge { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-hover); background: var(--cc-green-50); border-radius: var(--radius-pill); padding: 6px 12px; }
.pin-cmark h3 { font-size: 18px; margin: 0 0 8px; }
.pin-cmark p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }
.pin-cmark__list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 11px; }
.pin-cmark__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-body); line-height: 1.45; }
.pin-cmark__list svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.pin-partner { display: inline-flex; align-items: center; gap: 20px; margin-top: 34px;
  background: #fff; border-radius: var(--radius-lg); padding: 16px 24px; box-shadow: var(--shadow-md); }
.pin-partner img { height: 52px; width: auto; display: block; }
.pin-partner span { font-size: 13px; font-weight: var(--fw-semibold); color: var(--text-muted);
  line-height: 1.4; max-width: 20ch; padding-left: 20px; border-left: 1px solid var(--border-subtle); }
@media (max-width: 560px){
  .pin-partner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pin-partner span { border-left: none; padding-left: 0; }
}

.pin-model { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
@media (max-width: 920px){ .pin-model { grid-template-columns: 1fr; gap: 48px; } }
.pin-model__card { background: #fff; border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); }
.pin-model__card img { width: 100%; display: block; }
@media (max-width: 920px){ .pin-model__card { max-width: 420px; margin: 0 auto; } }

.principles { display: flex; flex-direction: column; margin-top: 36px; }
.principle { display: flex; gap: 20px; align-items: baseline; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.16); }
.principle__n { font-size: 13px; font-weight: var(--fw-bold); color: var(--cc-lime); letter-spacing: 0.08em; flex-shrink: 0; }
.principle h3 { color: #fff; font-size: 18px; margin: 0 0 4px; }
.principle p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.5; margin: 0; }

.pin-steps { margin: 56px auto 0; max-width: 940px; }
.pin-steps img { width: 100%; display: block; }

.path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
@media (max-width: 820px){ .path { grid-template-columns: 1fr; } }
.pathstep { display: flex; flex-direction: column; gap: 8px; padding: 24px; background: var(--surface-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: relative; }
.pathstep__n { width: 34px; height: 34px; border-radius: 50%; background: var(--cc-green-50); color: var(--accent-hover);
  font-size: 14px; font-weight: var(--fw-bold); display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.pathstep h3 { font-size: 16px; margin: 0; }
.pathstep p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ============================== Insights library ============================== */
.ins-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }
.ins-chip { font-family: var(--font-sans); cursor: pointer; font-size: 13.5px; font-weight: var(--fw-semibold);
  color: var(--text-muted); background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill); padding: 8px 16px; transition: all var(--dur-base) var(--ease-standard); }
.ins-chip:hover { border-color: var(--cc-green-300); color: var(--accent-hover); }
.ins-chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }

.ins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.ins-group + .ins-group { margin-top: 72px; }
@media (max-width: 980px){ .ins-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .ins-grid { grid-template-columns: 1fr; } }
.ins-card { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit;
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard); }
.ins-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--cc-green-300); text-decoration: none; }
.ins-card__top { height: 8px; background: var(--accent); }
.ins-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.ins-card__cat { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-hover); margin-bottom: 12px; }
.ins-card h3 { font-size: 19px; line-height: 1.25; margin: 0 0 10px; color: var(--text-heading-on-light); }
.ins-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0 0 18px; }
.ins-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px;
  font-weight: var(--fw-bold); color: var(--accent-hover); }
.ins-card__more svg { width: 15px; height: 15px; }
.ins-empty { margin-top: 40px; color: var(--text-muted); font-size: 15px; }

/* ============================== Video series section ============================== */
.section--video-series { background: var(--surface-sunken); border-top: 1px solid var(--border-subtle); }

.vid-card { display: flex; flex-direction: column; background: var(--surface-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; text-align: left;
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
  padding: 0; }
.vid-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--cc-green-300); }

.vid-card__thumb { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.vid-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 320ms var(--ease-standard); }
.vid-card:hover .vid-card__thumb img { transform: scale(1.03); }

.vid-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.28); transition: background var(--dur-base) var(--ease-standard); }
.vid-card:hover .vid-card__play { background: rgba(0,0,0,0.18); }
.vid-card__play svg { width: 48px; height: 48px; color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }

.vid-card__dur { position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.72); color: #fff; font-size: 11.5px; font-weight: var(--fw-bold);
  letter-spacing: 0.04em; padding: 2px 7px; border-radius: 4px; }

.vid-card__body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.vid-card__body h3 { font-size: 18px; line-height: 1.25; margin: 0 0 14px; color: var(--text-heading-on-light); }

/* Video lightbox modal */
.vid-modal { position: fixed; inset: 0; z-index: 900; background: rgba(0,0,0,0.78);
  display: flex; align-items: center; justify-content: center;
  animation: vidFadeIn 160ms var(--ease-standard) both; }
@keyframes vidFadeIn { from { opacity: 0; } to { opacity: 1; } }

.vid-modal__box { position: relative; width: min(860px, 92vw); }
.vid-modal__frame { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; background: #000; }
.vid-modal__frame iframe { width: 100%; height: 100%; border: none; display: block; }

.vid-modal__close { position: absolute; top: -44px; right: 0; background: none; border: none;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; transition: background var(--dur-fast) var(--ease-standard); }
.vid-modal__close:hover { background: rgba(255,255,255,0.15); }
.vid-modal__close svg { width: 22px; height: 22px; }

.ins-note { margin-top: 56px; padding: 22px 26px; background: var(--surface-brand-soft);
  border: 1px solid var(--cc-green-100); border-radius: var(--radius-lg); font-size: 14px; color: var(--text-body);
  display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
.ins-note svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ============================== Article figures ============================== */
.article__prose figure.afig { margin: 34px 0 38px; }
.afig__panel { background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px; }
.afig__panel--forest { background: var(--surface-forest); border-color: transparent; padding: 30px 26px 24px; }
.afig figcaption { margin-top: 12px; font-size: 13.5px; line-height: 1.5; color: var(--text-muted); }

/* Dunning-Kruger curve */
.dk__zonebar { position: relative; height: 48px; margin-bottom: 4px; }
.dk__zone { position: absolute; top: 0; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.dk__zone b { display: block; font-size: 12.5px; font-weight: var(--fw-bold); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cc-lime); }
.dk__zone i { display: block; font-style: normal; font-size: 11.5px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.dk__plot { position: relative; height: 280px; }
.dk__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.dk__dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #fff;
  transform: translate(-50%, -50%); box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }
.dk__label { position: absolute; transform: translate(-50%, -50%); font-size: 13px;
  font-weight: var(--fw-bold); color: #fff; white-space: nowrap; }
.dk__axis { position: absolute; font-size: 10.5px; font-weight: var(--fw-semibold); letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); }
.dk__axis--y { left: 0; top: 50%; transform: translate(-4px, -50%) rotate(180deg); writing-mode: vertical-rl; }
.dk__axis--x { right: 3%; bottom: 0; }
@media (max-width: 640px){
  .dk__plot { height: 220px; }
  .dk__label { font-size: 10.5px; }
  .dk__zone i { display: none; }
}

/* Conflict continuum */
.ccont__trackwrap { position: relative; padding: 6px 0; }
.ccont__track { display: flex; height: 10px; border-radius: var(--radius-pill); overflow: hidden; }
.ccont__seg--end { flex: 1; background: var(--cc-neutral-300); }
.ccont__seg--mid { flex: 1.35; background: var(--accent); position: relative; }
.ccont__marker { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 5px solid var(--accent);
  box-shadow: var(--shadow-sm); }
.ccont__row { display: flex; justify-content: space-between; gap: 18px; margin-top: 14px; }
.ccont__pt b { display: block; font-size: 14.5px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.ccont__pt i { display: block; font-style: normal; font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.ccont__pt--mid { text-align: center; }
.ccont__pt--right { text-align: right; }
@media (max-width: 640px){ .ccont__pt i { max-width: 16ch; } .ccont__pt--mid i { margin: 2px auto 0; } }

/* Group vs team contrast table */
.tgt { border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
.tgt__row { display: grid; grid-template-columns: 0.9fr 1.15fr 1.15fr; }
.tgt__row + .tgt__row { border-top: 1px solid var(--border-subtle); }
.tgt__row > span { padding: 12px 16px; font-size: 14.5px; line-height: 1.45; color: var(--text-body); }
.tgt__row--head > span { background: var(--surface-sunken); font-size: 12.5px; font-weight: var(--fw-bold);
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.tgt__dim { font-weight: var(--fw-semibold); color: var(--text-heading-on-light); }
.tgt__team { background: var(--surface-brand-soft); }
.tgt__row--head .tgt__team { background: var(--surface-brand-soft); color: var(--cc-forest); }
@media (max-width: 640px){ .tgt__row > span { padding: 10px 10px; font-size: 12.5px; } }

/* Change flow phases */
.cfs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cfs__step { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; position: relative; padding-right: 14px; }
.cfs__step:not(:last-child)::after { content: ''; position: absolute; right: 4px; top: 11px; width: 7px; height: 7px;
  border-top: 2px solid var(--cc-green-300); border-right: 2px solid var(--cc-green-300); transform: rotate(45deg); }
.cfs__n { width: 30px; height: 30px; border-radius: 50%; background: var(--cc-lime); color: var(--cc-forest);
  font-size: 13.5px; font-weight: var(--fw-bold); display: flex; align-items: center; justify-content: center; }
.cfs__l { font-size: 13.5px; font-weight: var(--fw-semibold); color: var(--text-heading-on-light); line-height: 1.25; }
@media (max-width: 760px){
  .cfs { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .cfs__step:nth-child(3)::after { display: none; }
}

/* The three Cs */
.c3__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 13px 0;
  border-top: 1px solid var(--border-subtle); }
.c3__row--head { border-top: 0; padding: 0 0 6px; justify-content: flex-end; }
.c3__opens-head { font-size: 11.5px; font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); }
.c3__c b { display: block; font-size: 15px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.c3__c i { display: block; font-style: normal; font-size: 12.5px; color: var(--text-muted); margin-top: 1px; }
.c3__chips { display: flex; gap: 8px; flex-shrink: 0; }
.c3__chip { font-size: 12.5px; font-weight: var(--fw-semibold); padding: 5px 13px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle); color: var(--text-subtle); }
.c3__chip--on { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (max-width: 640px){ .c3__chip { padding: 4px 9px; font-size: 11.5px; } }

/* Trust continuum */
.tcont__zones { display: flex; margin-bottom: 9px; }
.tcont__zone { flex: 1; text-align: center; font-size: 12.5px; font-weight: var(--fw-bold);
  letter-spacing: 0.1em; text-transform: uppercase; }
.tcont__zone--resist { color: var(--cc-neutral-600); }
.tcont__zone--avoid { color: var(--cc-lime-700); }
.tcont__zone--support { color: var(--accent-hover); }
.tcont__track { display: flex; height: 10px; border-radius: var(--radius-pill); overflow: hidden; }
.tcont__seg { flex: 1; display: block; }
.tcont__seg--resist { background: var(--cc-neutral-300); }
.tcont__seg--avoid { background: var(--cc-green-200); }
.tcont__seg--support { background: var(--accent); }
.tcont__stops { display: flex; justify-content: space-between; margin-top: 10px; }
.tcont__stop { font-size: 12.5px; color: var(--text-muted); }
.tcont__stop--end { font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.tcont__dir { display: flex; justify-content: center; align-items: center; margin-top: 18px; }
.tcont__dir span { position: relative; font-size: 12.5px; font-weight: var(--fw-semibold); }
.tcont__dir-l { color: var(--text-muted); padding-left: 17px; margin-right: 14px; }
.tcont__dir-l::before { content: ''; position: absolute; left: 2px; top: 50%; width: 7px; height: 7px;
  border-left: 2px solid var(--cc-neutral-400); border-bottom: 2px solid var(--cc-neutral-400);
  transform: translateY(-50%) rotate(45deg); }
.tcont__dir-r { color: var(--accent-hover); padding-right: 17px; padding-left: 14px;
  border-left: 1px solid var(--border-subtle); }
.tcont__dir-r::after { content: ''; position: absolute; right: 2px; top: 50%; width: 7px; height: 7px;
  border-right: 2px solid var(--accent); border-top: 2px solid var(--accent);
  transform: translateY(-50%) rotate(45deg); }
@media (max-width: 640px){
  .tcont__stop:not(.tcont__stop--end) { display: none; }
  .tcont__zone { font-size: 10.5px; }
}

/* Trustworthy leadership triad */
.ttriad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.ttriad__item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.ttriad__circle { width: 58px; height: 58px; border-radius: 50%; background: var(--cc-forest); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 7px; }
.ttriad__circle svg { width: 26px; height: 26px; }
.ttriad__item b { font-size: 15.5px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.ttriad__item i { font-style: normal; font-size: 13.5px; line-height: 1.5; color: var(--text-muted); max-width: 24ch; }
@media (max-width: 640px){ .ttriad { grid-template-columns: 1fr; gap: 24px; } }

/* Eight trust attributes */
.tat { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.tat__item { padding: 13px 0; border-top: 1px solid var(--border-subtle); }
.tat__item:nth-child(-n+2) { border-top: 0; padding-top: 2px; }
.tat__item b { display: block; font-size: 15px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.tat__item i { display: block; font-style: normal; font-size: 13.5px; line-height: 1.55; color: var(--text-muted); margin-top: 3px; }
@media (max-width: 640px){
  .tat { grid-template-columns: 1fr; }
  .tat__item:nth-child(2) { border-top: 1px solid var(--border-subtle); padding-top: 13px; }
}

/* Team health quadrants */
.thq { position: relative; padding: 26px 92px; }
.thq__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.thq__quad { border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); background: var(--cc-neutral-50);
  min-height: 138px; padding: 16px 18px; display: flex; flex-direction: column; }
.thq__quad b { font-size: 15.5px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.thq__quad i { font-style: normal; font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.thq__quad:nth-child(2) { text-align: right; }
.thq__quad:nth-child(3) { justify-content: flex-end; }
.thq__quad:nth-child(4) { justify-content: flex-end; text-align: right; }
.thq__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 150px; height: 150px; border-radius: 50%; background: var(--cc-forest); border: 5px solid #fff;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; }
.thq__center span { font-size: 13px; font-weight: var(--fw-semibold); color: #fff; line-height: 1.45; }
.thq__axis { position: absolute; font-size: 11.5px; font-weight: var(--fw-bold); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); }
.thq__axis--top { top: 0; left: 50%; transform: translateX(-50%); }
.thq__axis--bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.thq__axis--left { left: 0; top: 50%; transform: translateY(-50%); }
.thq__axis--right { right: 0; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px){
  .thq { padding: 24px 8px; }
  .thq__axis--left, .thq__axis--right { display: none; }
  .thq__quad { min-height: 116px; padding: 12px; }
  .thq__quad b { font-size: 13.5px; }
  .thq__quad i { font-size: 10.5px; }
  .thq__center { width: 112px; height: 112px; }
  .thq__center span { font-size: 10.5px; }
}

/* Daily reps strip */
.drep { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.drep__item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.drep__circle { width: 52px; height: 52px; border-radius: 50%; background: var(--cc-green-50); color: var(--cc-forest);
  display: flex; align-items: center; justify-content: center; }
.drep__circle svg { width: 23px; height: 23px; }
.drep__item b { font-size: 13.5px; font-weight: var(--fw-semibold); color: var(--text-heading-on-light);
  line-height: 1.3; max-width: 14ch; }
@media (max-width: 640px){ .drep { grid-template-columns: 1fr 1fr; row-gap: 22px; } }

/* Reflection practice */
.rpr__row { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border-subtle); }
.rpr__row:first-child { border-top: 0; padding-top: 2px; }
.rpr__n { width: 26px; height: 26px; border-radius: 50%; background: var(--cc-lime); color: var(--cc-forest);
  font-size: 12.5px; font-weight: var(--fw-bold); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; }
.rpr__body b { display: block; font-size: 14.5px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.rpr__body i { display: block; font-style: normal; font-size: 13.5px; line-height: 1.55; color: var(--text-muted); margin-top: 2px; }

/* Enemies of change — vertical trail */
.enem__row, .enem__end { display: flex; gap: 16px; position: relative; padding-bottom: 18px; }
.enem__row::before, .enem__end::before { content: ''; position: absolute; left: 13px; top: 28px; bottom: 0;
  width: 2px; background: var(--cc-neutral-200); }
.enem__end { padding-bottom: 0; }
.enem__end::before { display: none; }
.enem__row:last-of-type::before { background: var(--cc-green-200); }
.enem__n { width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 2px solid var(--cc-neutral-300);
  color: var(--text-heading-on-light); font-size: 12.5px; font-weight: var(--fw-bold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.enem__n--end { background: var(--accent); border-color: var(--accent); position: relative; }
.enem__n--end::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.enem__body { padding-top: 3px; }
.enem__body b { display: block; font-size: 14.5px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.enem__body i { display: block; font-style: normal; font-size: 13.5px; line-height: 1.55; color: var(--text-muted); margin-top: 2px; }

/* Three illusions */
.illu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.illu__item { display: flex; flex-direction: column; }
.illu__label { font-size: 11.5px; font-weight: var(--fw-bold); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); }
.illu__title { font-size: 19px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); margin-top: 2px; }
.illu__quote { display: block; font-size: 14.5px; line-height: 1.5; font-style: italic; color: var(--text-heading-on-light);
  margin: 12px 0 0; padding-bottom: 12px; border-bottom: 1px solid var(--border-subtle); }
.illu__real { display: block; font-size: 13px; line-height: 1.55; color: var(--text-muted); margin: 12px 0 0; }
@media (max-width: 640px){ .illu { grid-template-columns: 1fr; gap: 24px; } }

/* ============================== Article template ============================== */
.article { max-width: 720px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 20px;
  font-size: 13px; color: var(--text-muted); }
.article__cat { font-weight: var(--fw-bold); letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-hover); }
.article__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--cc-neutral-400); }
.article h1 { font-size: clamp(2rem, 3.6vw, 2.75rem); line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 22px; }
.article__lead { font-size: 1.22rem; line-height: 1.6; color: var(--text-muted); margin: 0 0 12px; }
.article__byline { display: flex; align-items: center; gap: 12px; margin: 32px 0; padding: 18px 0;
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.article__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cc-green-50);
  display: flex; align-items: center; justify-content: center; color: var(--accent-hover); }
.article__avatar svg { width: 22px; height: 22px; }
.article__byname { font-size: 14px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.article__byrole { font-size: 13px; color: var(--text-muted); }
.article__prose > * { max-width: 100%; }
.article__prose h2 { font-size: 1.6rem; line-height: 1.2; margin: 40px 0 14px; }
.article__prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.article__prose p { font-size: 1.06rem; line-height: 1.7; color: var(--text-body); margin: 0 0 20px; }
.article__prose ul { margin: 0 0 20px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.article__prose ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 1.06rem; line-height: 1.6; color: var(--text-body); }
.article__prose ul li svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.article__prose .cc-quote { margin: 28px 0 32px; }
.article__share { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.article__share-label { font-size: 14px; color: var(--text-muted); }
.article-related { background: var(--surface-sunken); }

/* Branded print sign-off — hidden on screen, shown only when printing. */
.article__printmark { display: none; }

.article__topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.article__back { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: var(--fw-semibold); white-space: nowrap; }
.article__print { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: var(--fw-semibold);
  color: var(--text-muted); background: none; border: none; padding: 6px 4px; cursor: pointer; white-space: nowrap;
  transition: color var(--motion-fast) var(--ease-out); }
.article__print:hover { color: var(--accent-hover); }

/* ============================== Print: article only ==============================
   Cmd+P / Save as PDF prints just the article — nav, hero, share CTA, related
   cards and footer are dropped, type is set to print sizes, and a small CC
   sign-off closes the page. */
@media print {
  @page { margin: 18mm 16mm; }
  html, body { background: #fff !important; }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* Drop everything that isn't the article */
  .nav, .nav__mobile, .foot, .article-related, .article__share, .article__back, .article__topbar { display: none !important; }

  /* Let the article fill the printable page */
  .section, .section--tight { padding: 0 !important; }
  .section .site__inner { max-width: none !important; padding: 0 !important; }
  .article { max-width: none !important; margin: 0 !important; }

  /* Print type scale */
  .article h1 { font-size: 25pt; line-height: 1.15; }
  .article__lead { font-size: 13pt; color: #333 !important; }
  .article__prose p, .article__prose ul li { font-size: 11.5pt; line-height: 1.6; color: #000 !important; }
  .article__prose h2 { font-size: 15pt; margin-top: 22pt; }
  .article__prose h3 { font-size: 12.5pt; }

  /* Sensible page breaks */
  .article__byline { break-inside: avoid; }
  .article h1, .article__prose h2, .article__prose h3 { break-after: avoid; }
  .article__prose p, .article__prose ul li, .article__prose figure, .article__prose .cc-quote { break-inside: avoid; }

  /* Branded sign-off */
  .article__printmark { display: block !important; margin-top: 26px; padding-top: 14px; border-top: 1px solid #cfd1d2; }
  .article__printmark-rule { display: block; width: 40px; height: 3px; background: var(--cc-green); border-radius: 2px; margin-bottom: 9px; }
  .article__printmark-org { font-size: 10.5pt; font-weight: 700; color: #000; }
  .article__printmark-url { font-size: 10pt; color: #6b6e70; margin-top: 1px; }
}

/* ============================== Inner page hero ============================== */
.pagehero { background: var(--surface-forest); color: #fff; position: relative; overflow: hidden; }
.pagehero__mark { position: absolute; right: -90px; top: -110px; width: 380px; opacity: 0.06; pointer-events: none; }
.pagehero__inner { padding-block: 88px 80px; position: relative; }
.pagehero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,0.85);
  line-height: 1.6; margin: 18px 0 0; }

/* ===================== Services hero — combined imagery (direction C) ===================== */
.svchero { position: relative; overflow: hidden; color: #fff; background: var(--surface-forest);
  display: flex; align-items: center; min-height: 560px; }
.svchero__inner { position: relative; z-index: 5; padding-block: 100px 90px; }
.svchero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,0.86);
  line-height: 1.6; margin: 20px 0 0; }

/* real photo, forest-duotone treated — the combined direction (C) */
.svchero__photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%; display: block; }
.svchero__duotone { position: absolute; inset: 0; pointer-events: none; }
.svchero__duotone--multiply { z-index: 1; background: #1d4630; mix-blend-mode: multiply; opacity: 0.46; }
.svchero__duotone--screen { z-index: 1; background: #2A6040; mix-blend-mode: color; opacity: 0.34; }
.svchero__scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(100deg, rgba(18,44,29,0.96) 0%, rgba(20,48,32,0.82) 30%, rgba(22,52,35,0.42) 58%, rgba(22,52,35,0.14) 82%, rgba(22,52,35,0.06) 100%); }

/* faint contour motif tucked behind the summit marker */
.svchero__topo { position: absolute; z-index: 3; top: -40px; right: -20px; width: 520px; height: 360px;
  pointer-events: none; opacity: 0.55; }

/* gold summit marker — the one gold element on the page */
.svchero__summit { position: absolute; z-index: 4; top: 70px; right: 158px;
  display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.svchero__summit-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--cc-gold);
  box-shadow: 0 0 0 6px rgba(201,169,77,0.20), 0 1px 6px rgba(0,0,0,0.35); }
.svchero__summit-line { width: 1.5px; height: 56px; background: linear-gradient(to bottom, rgba(201,169,77,0) 0%, var(--cc-gold) 100%); }
.svchero__summit-label { margin-top: 10px; font-size: 11px; font-weight: var(--fw-bold); white-space: nowrap;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cc-gold); text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
@media (max-width: 860px){
  .svchero__topo { display: none; }
  .svchero__summit { right: 34px; top: 52px; }
}

/* Compact, calmer banner — Insights sits one rung down from the story pages:
   shorter, a heavier green wash so the photo reads as texture, no gold marker. */
.svchero--compact { min-height: 360px; }
.svchero--compact .svchero__inner { padding-block: 64px 56px; }
.svchero--compact .svchero__duotone--multiply { opacity: 0.6; }
.svchero--compact .svchero__wash { position: absolute; inset: 0; z-index: 1;
  background: var(--cc-forest); mix-blend-mode: multiply; opacity: 0.34; pointer-events: none; }
.svchero--compact .svchero__scrim {
  background: linear-gradient(100deg, rgba(18,44,29,0.92) 0%, rgba(20,48,32,0.74) 34%, rgba(22,52,35,0.44) 66%, rgba(22,52,35,0.30) 100%); }
@media (max-width: 820px){
  .svchero--compact { min-height: 300px; }
  .svchero--compact .svchero__inner { padding-block: 52px 44px; }
}

/* gold summit marker — the one gold element on the page */
@media (max-width: 820px){
  .svchero { min-height: 480px; }
  .svchero__inner { padding-block: 76px 64px; }
}

/* ============================== Service detail ============================== */
.svc-featured { margin-top: 56px; background: var(--surface-forest); color: #fff; border-radius: var(--radius-lg);
  padding: 48px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
@media (max-width: 860px){ .svc-featured { grid-template-columns: 1fr; gap: 32px; padding: 36px; } }
.svc-featured__mark { position: absolute; right: -70px; top: -80px; width: 320px; opacity: 0.06; pointer-events: none; }
.svc-featured__body { position: relative; }
.svc-featured__eyebrow { color: var(--cc-lime); font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 16px; }
.svc-featured h2 { color: #fff; font-size: clamp(1.7rem, 2.8vw, 2.15rem); line-height: 1.14; margin: 0 0 16px; max-width: 18ch; }
.svc-featured p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; margin: 0 0 18px; max-width: 50ch; }
.svc-featured__link { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: var(--fw-bold);
  color: var(--cc-lime); }
.svc-featured__link svg { width: 16px; height: 16px; }
.svc-featured__link:hover { color: #fff; text-decoration: none; }
.svc-featured__list { position: relative; list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.svc-featured__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: rgba(255,255,255,0.9); line-height: 1.45; }
.svc-featured__list li svg { width: 18px; height: 18px; color: var(--cc-lime); flex-shrink: 0; margin-top: 2px; }

.svcgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
@media (max-width: 860px){ .svcgrid { grid-template-columns: 1fr; } }
.sd { display: flex; flex-direction: column; height: 100%; }
.sd__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.sd__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--cc-green-50);
  display: flex; align-items: center; justify-content: center; color: var(--accent-hover); flex-shrink: 0; }
.sd__icon svg { width: 22px; height: 22px; }
.sd h3 { font-size: 19px; margin: 0; }
.sd__desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; margin: 0 0 18px; }
.sd__forlabel { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-subtle); margin-bottom: 11px; }
.sd__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sd__list li { font-size: 12.5px; color: var(--text-body); background: var(--surface-sunken);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); padding: 5px 11px;
  white-space: nowrap; flex: 0 0 auto; }
.sd__note { margin-top: auto; padding-top: 16px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.sd__note b { color: var(--text-heading-on-light); font-weight: var(--fw-semibold); }
.sd__note a { font-weight: var(--fw-semibold); }
.sd__link { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-subtle);
  display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: var(--fw-bold); color: var(--accent-hover); }
.sd__link svg { width: 15px; height: 15px; }
.sd__link:hover { color: var(--accent); text-decoration: none; }

/* Section heading subtitles run the full content width (site-level override) */
.cc-heading__sub { max-width: none; text-wrap: wrap; }

/* Defeat text-wrap: balance from base styles — titles should fill the full
   line before wrapping, not break into two even half-width lines */
.cc-heading__title, .section h2, .hero h1 { text-wrap: wrap; }

/* ============================== Client logos ============================== */
.clients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px 28px;
  align-items: center;
  margin-top: 44px;
}
.clients__item { display: flex; align-items: center; justify-content: center; min-height: 84px; }
.clients__logo {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 200ms ease, opacity 200ms ease;
}
.clients__item:hover .clients__logo { filter: grayscale(0); opacity: 1; }
@media (max-width: 1080px){ .clients { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px){ .clients { grid-template-columns: repeat(3, 1fr); gap: 8px 18px; } .clients__logo { max-height: 52px; } }

/* ============================== Testimonials ============================== */
.testiwrap { margin-top: 48px; }
.testi { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; padding: 4px; margin: -4px; }
.testi::-webkit-scrollbar { display: none; }
.testi .tcard { flex: 0 0 calc((100% - 52px) / 3); scroll-snap-align: start; }
@media (max-width: 1024px){ .testi .tcard { flex-basis: calc((100% - 30px) / 2); } }
@media (max-width: 700px){ .testi .tcard { flex-basis: min(86%, 340px); } }
.testi__nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.testi__btn { width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--border-subtle); background: var(--surface-card); color: var(--accent-hover);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), opacity var(--dur-base) var(--ease-standard); }
.testi__btn svg { width: 18px; height: 18px; }
.testi__btn:hover:not(:disabled) { border-color: var(--cc-green-300); background: var(--cc-green-50); }
.testi__btn:disabled { opacity: 0.35; cursor: default; }
.tcard { display: flex; flex-direction: column; }
.tcard__mark { font-family: Georgia, serif; font-size: 52px; line-height: 0.6; color: var(--cc-green-200); margin: 4px 0 10px; }
.tcard__quote { font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0 0 20px; }
.tcard__cite { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.tcard__name { font-size: 14px; font-weight: var(--fw-bold); color: var(--text-heading-on-light); }
.tcard__role { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ============================== Reveal on scroll ============================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* heading sizes for section titles (sentence case, never underlined) */
.section h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.12; letter-spacing: -0.01em; }
.section--forest h2, .section--green h2, .section--ink h2 { color: #fff; }
