/* ============================================================
   Taylor Dee Hawkins — production site styles
   Light-dominant editorial system. Pairs with css/tokens.css
   (linked first). Class conventions match js/main.js
   (.nav-toggle/.nav/.is-open, .reveal/.is-in, .gallery, data-contact-form).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-strong); font-weight: 380; line-height: var(--lh-head); letter-spacing: var(--track-tight); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { color: var(--text-body); }
em { font-style: italic; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(1.4rem, 1rem + 1.4vw, 2.4rem); }
.measure { max-width: var(--measure); }
.center { text-align: center; }
.center .measure { margin-inline: auto; }

/* ---------- editorial atoms ---------- */
.idx {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}
/* eyebrow = warm editorial kicker (Fraunces italic + short lead-line) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1rem, .95rem + .25vw, 1.15rem); line-height: 1.1;
  letter-spacing: 0; text-transform: none; color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; flex: none; opacity: .9; }
.eyebrow--muted, .idx--muted { color: var(--text-muted); }
.rule { height: 1px; background: var(--border); border: 0; margin: 0; }
.lead { font-size: clamp(1.1rem, 1rem + .6vw, 1.45rem); line-height: 1.5; color: var(--text-body); }

/* section heading block */
.shead { margin-bottom: 1.8rem; }
.shead .eyebrow { margin-bottom: .9rem; }
.shead h2 { font-size: var(--fs-h2); }
.center .shead .eyebrow, .kind__head .eyebrow { justify-content: center; }
.sintro { max-width: 58ch; color: var(--text-body); margin: -1.2rem 0 2.4rem; }

/* thesis / premise statement quote */
.thesis-band { padding-block: clamp(2rem, 1.5rem + 1.8vw, 3.5rem); }
.thesis-band .idx { margin-bottom: 1.6rem; }
.thesis { font-family: var(--font-display); font-weight: 360; font-size: clamp(1.65rem, 1.2rem + 2vw, 3rem); line-height: 1.22; letter-spacing: var(--track-tight); color: var(--text-strong); max-width: 30ch; margin: 0 auto; text-wrap: balance; }
.thesis em { font-style: italic; color: var(--accent); }
.thesis-band .lead { margin-top: 2.2rem; }

/* ---------- buttons & links ---------- */
/* combined glow: breathing aura (continuous) + soft halo (hover). Light + dark variants. */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans); font-weight: 600; font-size: .95rem; letter-spacing: .03em;
  padding: .9em 1.7em; border-radius: var(--radius-pill);
  background: var(--accent); color: var(--pure-white); text-decoration: none;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 14px 0 rgba(0,135,125,.2);
  animation: btn-aura 3.8s ease-in-out infinite;
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease);
}
@keyframes btn-aura { 0%,100% { box-shadow: 0 0 12px 0 rgba(0,135,125,.18); } 50% { box-shadow: 0 0 26px 3px rgba(0,135,125,.4); } }
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); animation: none; box-shadow: 0 0 0 1px var(--accent), 0 10px 28px -8px rgba(0,135,125,.55), 0 0 30px rgba(0,135,125,.34); }
.btn .arr { transition: transform var(--dur-2) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--border); }
.btn--ghost:hover { background: transparent; color: var(--accent-hover); border-color: var(--accent); }
.btn--light { background: var(--pure-white); color: var(--text-strong); border-color: var(--pure-white); }
.btn--light:hover { background: transparent; color: var(--pure-white); border-color: var(--pure-white); }
/* dark-background variant: teal-glow aura + halo */
.btn--on-dark { background: transparent; color: var(--on-accent-glow); border-color: rgba(91,208,196,.5); animation: btn-aura-dark 3.8s ease-in-out infinite; }
@keyframes btn-aura-dark { 0%,100% { box-shadow: 0 0 12px 0 rgba(91,208,196,.22); } 50% { box-shadow: 0 0 28px 4px rgba(91,208,196,.46); } }
.btn--on-dark:hover { background: var(--on-accent-glow); color: var(--deep-navy); border-color: var(--on-accent-glow); animation: none; box-shadow: 0 0 0 1px var(--on-accent-glow), 0 10px 28px -8px rgba(91,208,196,.5), 0 0 32px rgba(91,208,196,.42); }
@media (prefers-reduced-motion: reduce) { .btn, .btn--on-dark { animation: none; } }
.link {
  display: inline-flex; align-items: center; gap: .5em; position: relative;
  font-family: var(--font-sans); font-weight: 600; font-size: .9rem; letter-spacing: .03em;
  color: var(--accent); text-decoration: none;
}
.link .arr, .link span { transition: transform var(--dur-2) var(--ease); }
.link::after { content:""; position:absolute; left:0; bottom:-3px; height:1.5px; width:0; background: var(--accent); transition: width var(--dur-2) var(--ease); }
.link:hover::after { width: 100%; }
.link:hover span { transform: translateX(4px); }

/* ---------- motif kit ---------- */
.ring { fill: none; stroke: var(--accent); stroke-width: 1.25; vector-effect: non-scaling-stroke; }
.ring--faint { opacity: .3; }
.node { fill: var(--accent); }
.draw { stroke-dasharray: var(--len, 760); stroke-dashoffset: var(--len, 760); animation: draw var(--dur-3) var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.spin { transform-box: fill-box; transform-origin: center; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.86); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--border); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--font-display); font-size: 1.22rem; color: var(--text-strong); letter-spacing: .01em; white-space: nowrap; }
.brand svg { width: 22px; height: 22px; flex: none; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.3rem); }
.nav a { font-size: .98rem; letter-spacing: .01em; color: var(--text-strong); text-decoration: none; position: relative; padding: .3rem 0; transition: color var(--dur-1) var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }
.nav a[aria-current="page"]::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:1.5px; background: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; }
.nav-toggle span { display:block; width: 24px; height: 1.5px; background: var(--text-strong); margin: 5px 0; transition: var(--dur-1) var(--ease); }

/* nav dropdown */
.nav-group { position: relative; display: inline-flex; align-items: center; gap: .15rem; }
.nav-caret { background: none; border: 0; padding: .3rem .1rem; margin: 0; cursor: pointer; color: inherit; display: inline-flex; align-items: center; line-height: 0; }
.nav-caret-i { width: 11px; height: 8px; transition: transform var(--dur-1) var(--ease); }
.nav-group.is-active > .nav-parent { color: var(--accent); }
.nav-group.is-active > .nav-parent::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:1.5px; background: var(--accent); }
.nav-sub { position: absolute; top: 100%; left: -1rem; margin-top: .55rem; min-width: 210px; background: var(--pure-white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: 0 22px 44px -26px rgba(11,35,60,.42); padding: .5rem; display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), visibility var(--dur-1); }
.nav-group:hover .nav-sub, .nav-group:focus-within .nav-sub, .nav-group.is-open .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-group:hover .nav-caret-i, .nav-group:focus-within .nav-caret-i, .nav-group.is-open .nav-caret-i { transform: rotate(180deg); }
.nav-sub a { padding: .55rem .85rem; border-radius: var(--radius-sm); font-size: .9rem; white-space: nowrap; }
.nav-sub a::after { display: none !important; }
.nav-sub a:hover, .nav-sub a[aria-current="page"] { background: var(--bg-alt); color: var(--accent); }

@media (max-width: 820px) {
  /* comfortable 44px touch target while keeping the bars optically right-aligned */
  .nav-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; margin-right: -.3rem; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--pure-white); padding: .5rem var(--gutter) 1.6rem; border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform var(--dur-2) var(--ease); box-shadow: 0 20px 40px -24px rgba(11,35,60,.3);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  /* dropdown on mobile: inline accordion */
  .nav-group { flex-wrap: wrap; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-group .nav-parent { flex: 1; border-bottom: 0; }
  .nav-caret { padding: .9rem .5rem; }
  .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; padding: 0 0 .7rem 1rem; margin: 0; min-width: 0; width: 100%; display: none; }
  .nav-group.is-open .nav-sub { display: grid; }
  .nav-sub a { font-size: 1rem; padding: .6rem 0; }
}

/* ---------- keynotes page ---------- */
.kt-list { display: grid; }
.kt { border-top: 1px solid var(--border); padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.kt:first-child { border-top: 0; padding-top: 0; }
.kt__top { display: flex; align-items: flex-start; gap: clamp(1rem, 2.4vw, 2.2rem); margin-bottom: 1.8rem; }
.kt__index { font-family: var(--font-display); font-weight: 330; font-size: clamp(2.6rem, 1.6rem + 3.4vw, 4.4rem); line-height: .85; color: var(--text-strong); flex: none; }
.kt__head { flex: 1; min-width: 0; }
.kt__head .idx { display: block; margin-bottom: .55rem; }
.kt__title { font-size: var(--fs-h3); line-height: 1.12; max-width: 28ch; }
.kt__mark { flex: none; width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,135,125,.08); color: var(--accent); }
.kt__mark svg { width: 58%; height: auto; display: block; overflow: visible; }
.kt__grid { display: grid; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); }
@media (min-width: 860px) { .kt__grid { grid-template-columns: 1.05fr .95fr; align-items: start; padding-left: clamp(3rem, 1.6rem + 3.4vw, 5rem); } }
.kt__syn { font-size: clamp(1.02rem, .98rem + .35vw, 1.22rem); line-height: 1.6; color: var(--text-body); }
.kt__panel { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(1.4rem, 1rem + 1.5vw, 2.1rem); transition: box-shadow var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.kt__panel:hover { box-shadow: 0 18px 40px -28px rgba(11,35,60,.35); transform: translateY(-2px); }
.kt__panel .idx { display: block; margin-bottom: 1rem; }
@media (max-width: 560px) { .kt__mark { display: none; } }

/* keynotes - contents/jump banner */
html { scroll-behavior: smooth; }
.kt, #bespoke, #mc, #why { scroll-margin-top: 92px; }
.kt-toc { margin-top: clamp(2rem, 1.5rem + 2vw, 3rem); display: grid; gap: .9rem; padding: clamp(1.1rem,.9rem + 1vw,1.5rem) clamp(1.2rem,1rem + 1.4vw,1.8rem); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg); }
.kt-toc__group { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.2rem; }
.kt-toc__group--also { padding-top: .9rem; border-top: 1px dashed var(--border); }
.kt-toc__group--also .kt-toc__links a { border-color: transparent; background: var(--bg-alt); color: var(--text-muted); }
.kt-toc__group--also .kt-toc__links a:hover { color: var(--accent); background: var(--bg-alt); }
.kt-toc__label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); flex: none; }
.kt-toc__links { display: flex; flex-wrap: wrap; gap: .5rem .55rem; }
.kt-toc__links a { font-family: var(--font-sans); font-size: .86rem; font-weight: 500; color: var(--text-strong); text-decoration: none; padding: .42rem .9rem; border: 1px solid var(--border); border-radius: var(--radius-pill); transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease); }
.kt-toc__links a:hover { color: var(--accent); border-color: var(--accent); background: var(--bg-alt); }

/* keynotes - bespoke engagements */
.bespoke__grid { display: grid; gap: clamp(1.6rem, 1rem + 2vw, 2.6rem); margin-top: 1rem; }
@media (min-width: 760px) { .bespoke__grid { grid-template-columns: repeat(3, 1fr); } }
.bespoke__pt { border-top: 2px solid var(--accent); padding-top: 1.2rem; }
.bespoke__no { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--accent); }
.bespoke__pt h3 { font-size: var(--fs-h3); margin: .5rem 0; }
.bespoke__pt p { color: var(--text-body); font-size: .98rem; line-height: 1.6; }

/* keynotes - master of ceremonies card (distinct) */
.mc-card { display: grid; gap: clamp(1.6rem, 1rem + 3vw, 3rem); padding: clamp(1.8rem, 1.4rem + 2vw, 3.2rem); border-radius: var(--radius-md); border: 1px solid rgba(0,135,125,.28); background: linear-gradient(135deg, rgba(0,135,125,.06), rgba(91,208,196,.12)); }
@media (min-width: 820px) { .mc-card { grid-template-columns: .8fr 1.6fr; align-items: start; } }
.mc-card__aside .idx { display: block; margin-bottom: .7rem; }
.mc-card__aside h2 { font-size: var(--fs-h2); line-height: 1.05; }
.mc-card__motif { display: block; width: 64px; color: var(--accent); margin-top: 1.6rem; }
.mc-card__motif svg { width: 100%; height: auto; }
.mc-card__body p { color: var(--ink-soft); font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem); line-height: 1.62; }
.mc-tags { display: flex; flex-wrap: wrap; gap: .8rem 1.7rem; margin: 1.5rem 0 1.6rem; }
.mc-tag { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-deep); background: none; border: 0; border-radius: 0; padding: 0; }
.mc-tag::before { content: ""; width: 5px; height: 5px; background: var(--accent); transform: rotate(45deg); flex: none; }

/* keynotes - why band with portrait */
.why-grid { display: grid; gap: clamp(2rem, 1.5rem + 3vw, 4rem); align-items: center; }
@media (min-width: 860px) { .why-grid { grid-template-columns: 1.3fr .7fr; } }
.why-grid__text h2 { margin-top: 1rem; max-width: 16ch; }
.why-grid__text p { margin-top: 1.6rem; }
.why-grid__media { border-radius: var(--radius-md); overflow: hidden; }
.why-grid__media img { width: 100%; height: 100%; object-fit: cover; max-height: 540px; }

/* ---------- hero (home) ---------- */
.hero { position: relative; overflow: hidden; }
.hero__halo { position: absolute; inset: 0; z-index: -1; background: radial-gradient(42% 42% at 70% 38%, rgba(0,135,125,.09), transparent 70%); }
.hero .wrap { display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
@media (min-width: 920px) { .hero .wrap { align-items: start; } }
@media (min-width: 920px) { .hero .wrap { grid-template-columns: 1.02fr .98fr; } }
.hero__eyebrow { display: inline-flex; gap: .8rem; margin-bottom: 1.4rem; }
.hero h1 { font-size: var(--fs-display); max-width: 15ch; }
.hero h1 em { color: var(--accent); }
.hero__lead { margin-top: 1.6rem; max-width: 44ch; font-size: 1.18rem; color: var(--text-body); }
.hero blockquote { margin-top: 1.6rem; font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem,1rem + .7vw,1.5rem); line-height: 1.4; color: var(--ink-soft); max-width: 40ch; }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; }
.hero__portrait { position: relative; }
.hero__portrait .frame { position: relative; aspect-ratio: 4/5; border-radius: 220px 220px var(--radius-md) var(--radius-md); overflow: hidden; background: var(--bg-alt); max-width: 460px; margin-inline: auto; }
.hero__portrait .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__portrait .orbit { position: absolute; inset: -6% -6% -6% -6%; z-index: 2; pointer-events: none; overflow: visible; }

/* ---------- credential / stat row ---------- */
.creds { border-block: 1px solid var(--border); }
.creds .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.cred { padding: clamp(1.6rem,1rem + 2vw,2.6rem) 0; }
.cred + .cred { border-left: 1px solid var(--border); padding-left: clamp(1rem,2vw,2rem); }
.cred .v { font-family: var(--font-display); font-size: clamp(2rem,1.4rem + 2.4vw,3.2rem); color: var(--text-strong); line-height: 1; }
.cred .v em { color: var(--accent); }
.cred .k { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); margin-top: .7rem; }
@media (max-width: 640px) { .creds .wrap { grid-template-columns: 1fr; } .cred + .cred { border-left: 0; border-top: 1px solid var(--border); padding-left: 0; } }

/* ---------- interior page head ---------- */
.page-head { padding-block: clamp(2.25rem, 1.6rem + 2.4vw, 4.25rem) clamp(1.25rem,.9rem + 1.6vw,2.5rem); }
.page-head .idx { margin-bottom: 1.2rem; }
.page-head h1 { font-size: var(--fs-display); max-width: 16ch; }
.page-head .lead { margin-top: 1.4rem; max-width: 52ch; }

/* ---------- services (editorial cards) ---------- */
.services { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
@media (min-width: 760px) { .services { grid-template-columns: 1fr 1fr; } }
.svc { background: var(--bg); padding: clamp(2rem,1.5rem + 1.8vw,3.1rem); display: flex; flex-direction: column; gap: .85rem; min-height: 250px; transition: background var(--dur-2) var(--ease); }
.svc h3 { max-width: 24ch; }
.svc p { font-size: .96rem; flex: 1; max-width: 46ch; }
.svc .link { margin-top: .4rem; }
.svc:hover { background: var(--bg-alt); }
.svc--accent { background: var(--teal-deep); }   /* white body passes AA */
.svc--accent h3, .svc--accent p { color: var(--pure-white); }
.svc--accent .idx { color: rgba(255,255,255,.72); }
.svc--accent .link { color: var(--pure-white); }
.svc--accent .link::after { background: var(--pure-white); }
.svc--accent:hover { background: var(--deep-navy); }

/* ---------- feature (alternating media + text) ---------- */
.feature { display: grid; gap: clamp(1.5rem,1rem + 3vw,4rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem,2rem + 4vw,6rem); }
@media (min-width: 880px) { .feature { grid-template-columns: 1fr 1fr; } .feature--flip .feature__media { order: 2; } }
.feature__media { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-alt); }
.feature__media img { width: 100%; height: 100%; max-height: 600px; object-fit: cover; }
.feature__body { max-width: 56ch; }
.feature__body .eyebrow { margin-bottom: 1rem; }
.feature__body h3 + .feature__rule { margin-top: 1rem; }
.feature__rule { display: block; width: 44px; height: 2px; background: var(--accent); margin-bottom: 1.3rem; }
.feature__body p { margin-top: 1.1rem; }
.feature__body p:first-of-type { margin-top: 0; }
.feature__body .btn, .feature__body .link { margin-top: 1.6rem; }
.engage-snap { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.engage-snap__lbl { display: block; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); }
.engage-snap__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: .8rem 0 1.1rem; }
.engage-snap__tag { font-size: .82rem; color: var(--text-body); background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .4rem .7rem; }
.engage-snap__tag b { color: var(--text-strong); font-weight: 600; }
.about-bio__lead { font-family: var(--font-display); font-weight: 380; font-size: clamp(1.25rem, 1.05rem + 1vw, 1.6rem); line-height: 1.35; color: var(--text-strong); }

/* ---- About bio: full-width lead + two-column body ---- */
.ab2-top { display: grid; gap: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); align-items: center; }
@media (min-width: 780px) { .ab2-top { grid-template-columns: 1.1fr 1fr; } }
.ab2-portrait { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 3; }
.ab2-portrait img { width: 100%; height: 100%; object-fit: cover; }
.ab2-cols { margin-top: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); padding-top: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); border-top: 1px solid var(--border); color: var(--text-body); }
@media (min-width: 780px) { .ab2-cols { column-count: 2; column-gap: clamp(2rem, 1.5rem + 2vw, 3.2rem); } }
.ab2-cols p { margin: 0 0 1.1rem; break-inside: avoid; }
.engage-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; height: 100%; min-height: 320px; }
.engage-gallery img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-sm); }
.engage-kn-list { list-style: none; padding: 0; display: grid; gap: .55rem; margin: 1.2rem 0 0; }
.engage-kn-list li { position: relative; padding-left: 1.5rem; color: var(--text-strong); font-weight: 500; font-size: .95rem; }
.engage-kn-list li::before { content:""; position:absolute; left:0; top:.55em; width:.5rem; height:.5rem; border:1px solid var(--accent); border-radius:50%; }
.callout { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem,1.1rem + 1vw,2rem); color: var(--accent); line-height: 1.3; }
.prose-block { max-width: var(--measure); }
.prose-block p + p { margin-top: 1.1rem; }

/* statements (home dark band) */
.statements { display: grid; gap: 1.4rem; }
.statements .big { font-family: var(--font-display); font-weight: 360; font-size: clamp(1.4rem,1.1rem + 1.4vw,2.1rem); line-height: 1.25; color: var(--on-accent-text); }
.statements .big--accent { color: var(--on-accent-glow); }

/* ---------- dark / accent bands ---------- */
.band-dark { background: var(--section-dark-bg); color: var(--on-accent-text); position: relative; overflow: hidden; }
.band-dark h2, .band-dark h3 { color: var(--pure-white); }
.band-dark p { color: rgba(255,255,255,.82); }
.band-dark .eyebrow, .band-dark .idx { color: var(--on-accent-glow); }
.band-quote .wrap { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .band-quote .wrap { grid-template-columns: 1.5fr .5fr; } }
.band-quote blockquote { font-family: var(--font-display); font-weight: 360; font-size: clamp(1.9rem,1.3rem + 2.6vw,3.4rem); line-height: 1.12; color: var(--pure-white); max-width: 18ch; margin-top: 1rem; }
.band-quote blockquote em { color: var(--on-accent-glow); }
.band__art { display: grid; place-items: center; }
.band__art .ring { stroke: var(--on-accent-glow); }
.band__art .node { fill: var(--on-accent-glow); }

/* ---------- testimonial slider (3-up, slide on navigate) ---------- */
.kind__head { display: flex; flex-direction: column; align-items: center; gap: .8rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.2rem); }
.kind__head h2 { font-size: var(--fs-h2); }
.tsl { --tgap: clamp(1.2rem, 1rem + 1.4vw, 2rem); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(.6rem, 1.6vw, 1.6rem); }
.tsl__viewport { overflow: hidden; }
.tsl__track { display: flex; gap: var(--tgap); transition: transform .55s var(--ease); will-change: transform; }
.tcard { flex: 0 0 calc((100% - 2 * var(--tgap)) / 3); display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); }
.tcard blockquote { margin: 0; font-family: var(--font-display); font-weight: 360; font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem); line-height: 1.45; color: var(--ink-soft); }
.tcard blockquote strong { font-weight: 600; color: var(--accent); }
.tcard cite { display: block; margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--border); font-family: var(--font-mono); font-style: normal; font-size: .66rem; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 940px) { .tcard { flex-basis: calc((100% - var(--tgap)) / 2); } }
@media (max-width: 600px) { .tcard { flex-basis: 100%; } }
.kwc__nav { width: 46px; height: 46px; flex: none; border-radius: 50%; border: 1px solid var(--border); background: transparent; color: var(--text-strong); display: grid; place-items: center; cursor: pointer; transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease); }
.kwc__nav:hover { color: var(--accent); border-color: var(--accent); background: var(--bg-alt); }
.kwc__nav svg { width: 20px; height: 20px; }
.tsl__progress { display: flex; justify-content: center; gap: .45rem; margin-top: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); }
.tsl-dot { height: 4px; width: 22px; padding: 0; border: 0; border-radius: 999px; background: var(--line); cursor: pointer; transition: background var(--dur-1) var(--ease), width var(--dur-1) var(--ease); }
.tsl-dot:hover { background: var(--ink-faint); }
.tsl-dot.is-active { background: var(--accent); width: 38px; }
@media (prefers-reduced-motion: reduce) { .tsl__track { transition: none; } }

/* ---------- keynote cards (engage) ---------- */
.keynotes { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
@media (min-width: 980px) { .keynotes { grid-template-columns: repeat(3, 1fr); } }
.keynote { background: var(--bg); padding: clamp(1.8rem,1.3rem + 1.5vw,2.6rem); }
.keynote h4 { font-size: var(--fs-h3); margin-bottom: .8rem; }
.takeaways-title { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); margin-top: 1.2rem; }
.takeaways { list-style: none; padding: 0; display: grid; gap: .6rem; margin-top: .8rem; }
.takeaways li { position: relative; padding-left: 1.5rem; color: var(--text-body); font-size: .95rem; }
.takeaways li::before { content:""; position:absolute; left:0; top:.62em; width:.5rem; height:.5rem; border:1px solid var(--accent); border-radius:50%; }
.perfect-for { margin-top: 1.2rem; font-style: italic; color: var(--text-muted); font-family: var(--font-display); }

/* ---------- gallery carousel (about: "Moments") - native horizontal scroll-snap so each
   photo keeps its own natural aspect ratio (variable width, never cropped on the sides) ---------- */
.moments-slider { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(.6rem, 1.6vw, 1.6rem); }
.moments-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 2px; }
.moments-track::-webkit-scrollbar { display: none; }
.moment { flex: 0 0 auto; height: clamp(220px, 28vw, 320px); overflow: hidden; border-radius: var(--radius-sm); margin: 0; scroll-snap-align: start; }
.moment img { height: 100%; width: auto; display: block; max-width: none; transition: transform .6s var(--ease); cursor: zoom-in; }
.moment img:hover { transform: scale(1.03); }
@media (max-width: 600px) { .moment { height: 220px; } }

/* ---------- awards (about) ---------- */
.awards { display: grid; gap: 0; max-width: 60ch; }
.award { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.award .yr { font-family: var(--font-mono); font-size: .82rem; color: var(--accent); }

/* ---------- roles & appointments (side by side) ---------- */
.roles { display: grid; gap: clamp(1.4rem, 1rem + 2vw, 2.1rem); grid-template-columns: 1fr; }
@media (min-width: 760px) { .roles { grid-template-columns: repeat(3, 1fr); } }
.role-card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.role-card:hover { box-shadow: 0 22px 46px -30px rgba(11,35,60,.45); transform: translateY(-3px); }
.role-card__img { aspect-ratio: 16/11; overflow: hidden; background: var(--bg-alt); }
.role-card__img img { width: 100%; height: 100%; object-fit: cover; }
.role-card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.3rem, 1rem + 1vw, 1.8rem); }
.role-card__body .idx { display: block; margin-bottom: .55rem; }
.role-card__body h3 { font-size: var(--fs-h3); line-height: 1.12; }
.role-card__period { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); display: block; margin: .45rem 0 .2rem; }
.role-card__body p { color: var(--text-body); margin: .6rem 0 1.1rem; font-size: .96rem; }
.role-card__body .link { margin-top: auto; }

/* boards & advisory appointments register */
.appt-wrap { margin-top: clamp(2.6rem, 2rem + 3vw, 4.5rem); }
.appt-wrap__label { display: block; margin-bottom: 1.3rem; }
.appointments { border-top: 1px solid var(--border); }
/* compact index format */
.appt { padding: 1.4rem 1rem; margin-inline: -1rem; border-bottom: 1px solid var(--border); border-radius: var(--radius-sm); transition: background var(--dur-1) var(--ease); }
.appt:hover { background: var(--pure-white); }
.appt__org { font-family: var(--font-display); font-weight: 400; font-size: 1.22rem; line-height: 1.2; color: var(--text-strong); }
.appt__role { display: block; margin-top: .4rem; color: var(--accent); font-weight: 600; font-size: .9rem; }
.roles-rep { margin-top: 2rem; color: var(--text-muted); font-size: .95rem; }
.roles-rep a { color: var(--accent); }
/* speaking representation banner (point of interest) */
.speaker-rep { background: var(--deep-navy); }
.speaker-rep__inner { max-width: 720px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.speaker-rep__inner .eyebrow { color: var(--teal-glow); }
.speaker-rep__inner p { color: #fff; font-family: var(--font-display); font-weight: 380; font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.15rem); line-height: 1.28; max-width: 24ch; }
.speaker-rep__inner p strong { color: var(--teal-glow); font-weight: 400; }
.speaker-rep__inner .btn { margin-top: .5rem; }

/* recent projects (card row) */
.proj-cards { display: grid; gap: clamp(1.4rem, 1rem + 1.5vw, 2.2rem); }
@media (min-width: 720px) { .proj-cards { grid-template-columns: repeat(3, 1fr); } }
.proj-card { display: flex; flex-direction: column; }
.proj-card__img { aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-alt); }
.proj-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-3) var(--ease); }
.proj-card:hover .proj-card__img img { transform: scale(1.04); }
.proj-card .idx { display: block; margin: 1rem 0 .4rem; }
.proj-card h3 { font-size: var(--fs-h3); }
.proj-card p { color: var(--text-body); margin: .5rem 0 1rem; font-size: .96rem; }
.proj-card .link { margin-top: auto; }

/* ---- recent projects: flagship banner + carousel ---- */
.projects .sintro { margin-top: -.6rem; }
.flagship { display: grid; gap: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--deep-navy); color: #fff; margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 3rem); }
@media (min-width: 860px) { .flagship { grid-template-columns: 1.3fr .85fr; } }
.flagship__body { padding: clamp(1.8rem, 1.4rem + 2vw, 3.2rem); }
.flagship__tag { display: inline-block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--deep-navy); background: var(--teal-glow); padding: .42rem .8rem; border-radius: var(--radius-pill); }
.flagship__body h3 { color: #fff; font-size: clamp(1.55rem, 1.2rem + 1.8vw, 2.3rem); line-height: 1.08; margin: 1.1rem 0 0; }
.flagship__body p { color: rgba(255,255,255,.82); line-height: 1.65; margin: 1.1rem 0 0; max-width: 54ch; }
.flagship__meta { display: block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--teal-glow); margin: 1.3rem 0 0; }
.flagship__links { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: 1.7rem; }
.flagship__link { color: var(--teal-glow); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .35rem; }
.flagship__link span { transition: transform var(--dur-2) var(--ease); }
.flagship__link:hover span { transform: translateX(4px); }
.flagship__visual { position: relative; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; gap: .35rem; padding: clamp(1.8rem, 1.4rem + 2vw, 3.2rem); background-color: var(--teal-deep); background-size: cover; background-position: center; overflow: hidden; }
.flagship__visual-eyebrow { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.flagship__visual-mark { font-family: var(--font-display); font-size: clamp(1.7rem, 1.3rem + 2vw, 2.6rem); line-height: 1.04; color: #fff; }
.flagship__visual-yr { font-family: var(--font-mono); font-size: 1rem; color: rgba(255,255,255,.85); margin-top: .7rem; }

.proj-slider { margin-top: .4rem; }
.proj-slider .tsl__track { align-items: stretch; }
.pcard { flex: 0 0 calc((100% - 2 * var(--tgap)) / 3); display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease); }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -28px rgba(11,35,60,.5); }
@media (max-width: 940px) { .pcard { flex-basis: calc((100% - var(--tgap)) / 2); } }
@media (max-width: 600px) { .pcard { flex-basis: 100%; } }
.pcard__cover { aspect-ratio: 16/10; display: flex; flex-direction: column; justify-content: flex-end; gap: .5rem; padding: 1.2rem 1.3rem; color: #fff; background-color: var(--deep-navy); background-size: cover; background-position: center; }
.pcard__cover .pcard__tag { color: rgba(255,255,255,.85); }
.pcard__cover h3 { font-size: 1.12rem; line-height: 1.15; color: #fff; text-shadow: 0 1px 14px rgba(11,35,60,.45); }
.pcard__tag { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.pcard__body { padding: clamp(1.2rem, 1rem + .6vw, 1.6rem); display: flex; flex-direction: column; flex: 1; }
.pcard__body p { font-size: .9rem; color: var(--text-body); line-height: 1.55; }
.pcard__links { margin-top: auto; padding-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; }
.pcard__link { font-size: .82rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: .3rem; }
.pcard__link span { transition: transform var(--dur-2) var(--ease); }
.pcard__link:hover span { transform: translateX(4px); }
/* book card: show the cover whole, centred on a brand backdrop (kept to 16:10 like the others) */
.pcard__cover--book { position: relative; padding: 0; background: radial-gradient(120% 120% at 50% 0, #0d2c4a, var(--deep-navy) 70%); }
.pcard__cover--book .bookcover__svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: 84%; width: auto; border-radius: 3px; box-shadow: 0 16px 34px -16px rgba(0,0,0,.6); }
/* flagship visual showing a full cover image (no overlay) - contain, not cover, so the
   designed collage graphic is never cropped at the edges */
.flagship__visual--cover { background-color: #fff; background-size: contain; background-repeat: no-repeat; min-height: 280px; }

/* ---------- media grid ---------- */
.media-grid { display: grid; gap: clamp(1.4rem,1rem + 2vw,2.2rem); }
@media (min-width: 680px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .media-grid { grid-template-columns: repeat(3, 1fr); } }
.media-card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.media-card:hover { box-shadow: 0 20px 44px -30px rgba(11,35,60,.4); transform: translateY(-3px); }
.media-card__img { aspect-ratio: 3/2; overflow: hidden; background: var(--bg-alt); }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.media-card__img img.is-contain { object-fit: contain; }
.media-card:hover .media-card__img img { transform: scale(1.05); }
.media-card:hover .media-card__img img.is-contain { transform: none; }
.media-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.media-card__kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: var(--track-label); font-size: .66rem; color: var(--accent); }
.media-card h3 { font-size: 1.28rem; line-height: 1.18; }
.media-card p { font-size: .92rem; color: var(--text-body); }
.media-card .more { margin-top: auto; }
.media-card__video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--section-dark-bg); }
.media-card__links { margin-top: auto; display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; padding-top: .35rem; }
.media-card__links .more { margin-top: 0; }

/* republished article (hidden) pages */
.article-head .article-back { display: inline-block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--text-muted); margin-bottom: 1.1rem; }
.article-head .article-back:hover { color: var(--accent); }
.article-head h1 { max-width: 20ch; }
.article-byline { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-top: .9rem; }
.article-hero { max-width: 980px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; background: var(--bg-alt); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { max-width: 40rem; margin-inline: auto; }
.article-body > * + * { margin-top: 1.15rem; }
.article-body p { font-size: 1.08rem; line-height: 1.78; color: var(--text-body); }
.article-body h2, .article-body h3 { font-family: var(--font-display); font-weight: 420; color: var(--text-strong); line-height: 1.2; margin-top: 2.3rem; }
.article-body h2 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 1.95rem); }
.article-body h3 { font-size: clamp(1.18rem, 1rem + 1vw, 1.5rem); }
.article-body ul, .article-body ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .55rem; }
.article-body li { font-size: 1.05rem; line-height: 1.7; color: var(--text-body); }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body blockquote { border-left: 3px solid var(--accent); padding: .2rem 0 .2rem 1.2rem; font-style: italic; color: var(--text-strong); font-size: 1.14rem; }
.article-foot { max-width: 40rem; margin: 2.8rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.article-foot p { width: 100%; color: var(--text-muted); font-size: .9rem; margin-bottom: .4rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem,1rem + 4vw,4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-aside p { margin-bottom: 1rem; max-width: 46ch; }
.contact-aside a { color: var(--accent); }
.field { display: grid; gap: .45rem; margin-bottom: 1.2rem; }
.field label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); }
.field input, .field textarea { font: inherit; font-size: 1rem; color: var(--text-strong); padding: .85rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); width: 100%; transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,135,125,.12); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-img { border-radius: var(--radius-md); overflow: hidden; }
.contact-img img { width: 100%; height: 100%; object-fit: cover; max-height: 560px; }

/* ---------- reel (engage) ---------- */
.reel { aspect-ratio: 16/9; background: var(--section-dark-bg); display: grid; place-items: center; max-width: 980px; margin-inline: auto; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 30px 60px -34px rgba(11,35,60,.5); }
.reel__video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--section-dark-bg); }
.reel__play { width: 78px; height: 78px; border-radius: 50%; border: 1.5px solid rgba(91,208,196,.7); display: grid; place-items: center; }
.reel__play::after { content:""; border-left: 20px solid var(--on-accent-glow); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }

/* ---------- footer ---------- */
.site-footer { background: var(--section-dark-bg); color: rgba(255,255,255,.78); padding-block: clamp(3rem,2rem + 3vw,5rem); }
.site-footer .wrap { display: grid; gap: 2.4rem; }
.footer-top { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h3 { color: var(--pure-white); font-size: 1.7rem; margin-bottom: .5rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; transition: color var(--dur-1) var(--ease); }
.site-footer a:hover { color: var(--on-accent-glow); }
.footer-col h4 { color: var(--pure-white); font-family: var(--font-mono); font-size: .72rem; letter-spacing: var(--track-label); text-transform: uppercase; margin-bottom: 1rem; opacity: .7; font-weight: 400; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: grid; place-items: center; }
.footer-social a:hover { background: var(--on-accent-glow); border-color: var(--on-accent-glow); }
.footer-social a:hover svg { fill: var(--deep-navy); }
.footer-social svg { width: 17px; height: 17px; fill: rgba(255,255,255,.8); }
.acknowledgement { border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 1.6rem; font-size: .82rem; color: rgba(255,255,255,.6); max-width: 80ch; line-height: 1.6; }
.copyright { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: rgba(255,255,255,.5); }

/* ---------- lightbox (about gallery) ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(11,35,60,.94); display: none; place-items: center; padding: 4vw; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; object-fit: contain; }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.8rem; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .draw { animation: none; stroke-dashoffset: 0; }
  .spin { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- methodology page ---------- */
.pillars { display: grid; gap: clamp(1.4rem, 1rem + 2vw, 2.4rem); }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
.pillar { border-top: 2px solid var(--accent); padding-top: 1.2rem; }
.pillar__no { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--accent); }
.pillar h3 { font-size: var(--fs-h3); margin: .5rem 0; }
.pillar p { color: var(--text-body); line-height: 1.6; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; max-width: 64ch; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: 1.6rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.step:first-child { border-top: 1px solid var(--border); }
.step__no { font-family: var(--font-display); font-size: 1.9rem; color: var(--accent); line-height: 1; }
.step h4 { font-size: 1.2rem; }
.step p { color: var(--text-body); margin-top: .3rem; line-height: 1.55; }
.apply-grid { display: grid; gap: clamp(1.2rem, 1rem + 1.5vw, 2rem); }
@media (min-width: 760px) { .apply-grid { grid-template-columns: repeat(3, 1fr); } }
.apply-card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(1.4rem, 1rem + 1.5vw, 2rem); text-decoration: none; transition: box-shadow var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), border-color var(--dur-1) var(--ease); }
.apply-card:hover { box-shadow: 0 22px 46px -30px rgba(11,35,60,.4); transform: translateY(-3px); border-color: var(--accent); }
.apply-card .idx { display: block; margin-bottom: .8rem; }
.apply-card h3 { font-size: 1.3rem; color: var(--text-strong); }
.apply-card p { color: var(--text-body); margin: .5rem 0 1.1rem; font-size: .95rem; flex: 1; }
.apply-card .link { margin-top: auto; }

/* ---------- book page ---------- */
.book-feature { display: grid; gap: clamp(2rem, 1.5rem + 3vw, 4rem); align-items: center; }
@media (min-width: 820px) { .book-feature { grid-template-columns: .85fr 1.15fr; } }
.book-feature__body .eyebrow { margin-bottom: 1rem; display: block; }
.book-feature__body .btn { margin-top: 1.5rem; }
.bk-note { font-size: .85rem; color: var(--text-muted); font-style: italic; }
.book-cover { aspect-ratio: 2/3; max-width: 330px; width: 100%; margin-inline: auto; border-radius: 4px 7px 7px 4px; background: linear-gradient(155deg, var(--deep-navy), #0d2c4a 58%, var(--teal-deep)); color: #fff; padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; box-shadow: 0 30px 60px -28px rgba(11,35,60,.6); border-left: 6px solid var(--teal-glow); }
.book-cover__kicker { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-glow); }
.book-cover__title { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.8rem, 1.4rem + 2vw, 2.5rem); line-height: 1.05; margin-top: .3rem; }
.book-cover__sub { font-family: var(--font-sans); font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.4; }
.book-cover__rule { margin-top: auto; width: 42px; height: 2px; border-radius: 2px; background: var(--teal-glow); opacity: .8; }
.book-cover__pub { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.bk-themes { display: grid; gap: clamp(1.4rem, 1rem + 2vw, 2.4rem); }
@media (min-width: 760px) { .bk-themes { grid-template-columns: repeat(3, 1fr); } }
.bk-theme { border-top: 2px solid var(--accent); padding-top: 1.2rem; }
.bk-theme__no { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--accent); }
.bk-theme h3 { font-size: var(--fs-h3); margin: .5rem 0; }
.bk-theme p { color: var(--text-body); line-height: 1.6; font-size: .96rem; }
.bk-details { display: grid; gap: 0; border-top: 1px solid var(--border); max-width: 62ch; }
.bk-detail { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.bk-detail p { color: var(--text-strong); }

/* ---------- client logos (home marquee + about grid) ---------- */
.logos-band { padding-block: clamp(2.2rem, 1.6rem + 2vw, 3.6rem); border-top: 1px solid var(--border); }
.logos-label { display: block; text-align: center; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.6rem; }
.logos-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logos-track { display: flex; align-items: center; gap: clamp(2.5rem, 5vw, 5rem); width: max-content; animation: logos-scroll var(--marq-dur, 55s) linear infinite; }
.logos-band:hover .logos-track { animation-play-state: paused; }
@keyframes logos-scroll { to { transform: translateX(-50%); } }
.logos-track .logo-cell { flex: none; display: grid; place-items: center; background: none; }
.logos-track .logo-cell img { height: 72px; width: auto; max-width: 260px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: opacity var(--dur-1) var(--ease), filter var(--dur-1) var(--ease); }
.logos-track .logo-cell:hover img { filter: grayscale(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) { .logos-track { animation: none; } }
/* events / platforms band: matched-speed marquee scrolling the opposite way
   (duration is set per-track via --marq-dur so px/s matches the client band) */
.logos-band--events { padding-block-start: clamp(1.4rem, 1rem + 1.4vw, 2.4rem); }
.logos-track--rev { animation-direction: reverse; }

/* Future50 film feature (About > recent projects) */
.f50__grid { display: grid; gap: clamp(1.6rem, 1rem + 3vw, 3.4rem); align-items: center; }
@media (min-width: 880px) { .f50__grid { grid-template-columns: 0.82fr 1.18fr; } }
.f50__body h2 { font-family: var(--font-display); font-weight: 380; font-size: clamp(1.55rem, 1.2rem + 1.8vw, 2.4rem); line-height: 1.12; color: var(--text-strong); margin: .55rem 0 0; }
.f50__body p { color: var(--text-body); line-height: 1.65; margin: 1rem 0 1.3rem; max-width: 46ch; }
.f50__media { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 30px 60px -34px rgba(11,35,60,.5); background: var(--section-dark-bg); aspect-ratio: 16 / 9; }
.f50__video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--section-dark-bg); }

/* ---------- Phi background line-work (the approved motif, faint behind sections) ---------- */
.phi-host { position: relative; overflow: hidden; }
.phi-host > .wrap { position: relative; z-index: 1; }
.phi-bg { position: absolute; inset: 0; z-index: 0; color: var(--accent); pointer-events: none; opacity: .22; }
.phi-bg.reveal { opacity: .22 !important; transform: none !important; }
.phi-bg__svg { position: absolute; width: clamp(300px, 48%, 560px); height: auto; }
.phi-bg--right .phi-bg__svg { top: 50%; right: -3%; transform: translateY(-50%); }
.phi-bg--left .phi-bg__svg { top: 50%; left: -3%; transform: translateY(-50%) scaleX(-1); }
.phi-bg__svg [pathLength] { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.3s var(--ease); }
.phi-bg.is-in .phi-bg__svg [pathLength] { stroke-dashoffset: 0; }
.phi-bg.is-in .phi-bg__svg [pathLength]:nth-child(2) { transition-delay: .1s; }
.phi-bg.is-in .phi-bg__svg [pathLength]:nth-child(3) { transition-delay: .2s; }
.phi-bg.is-in .phi-bg__svg [pathLength]:nth-child(4) { transition-delay: .3s; }
.phi-bg.is-in .phi-bg__svg [pathLength]:nth-child(5) { transition-delay: .4s; }
.phi-bg.is-in .phi-bg__svg [pathLength]:nth-child(6) { transition-delay: .52s; }
.phi-bg.is-in .phi-bg__svg [pathLength]:nth-child(7) { transition-delay: .66s; }
.phi-bg.is-in .phi-bg__svg [pathLength]:nth-child(8) { transition-delay: .8s; }
@media (max-width: 700px) { .phi-bg { opacity: .14 !important; } .phi-bg__svg { width: 70%; } }
@media (prefers-reduced-motion: reduce) { .phi-bg__svg [pathLength] { stroke-dashoffset: 0; transition: none; } }

/* ---------- accordion (A+B: hairline index, + to x, teal shading + rail on open) ---------- */
.acc { display: grid; }
.acc__item { position: relative; border-top: 1px solid var(--border); transition: background var(--dur-1) var(--ease); }
.acc__item:last-child { border-bottom: 1px solid var(--border); }
.acc__item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform var(--dur-2) var(--ease); }
.acc__item.is-open::before { transform: scaleY(1); }
.acc__item.is-open { background: rgba(0,135,125,.06); }
.acc__head { width: 100%; display: flex; align-items: center; gap: 1.2rem; background: none; border: 0; cursor: pointer; text-align: left; font: inherit; color: var(--text-strong); padding: 1.3rem clamp(1.1rem, 2vw, 1.7rem); transition: padding var(--dur-2) var(--ease); }
.acc__item.is-open .acc__head { padding-left: clamp(1.4rem, 2.4vw, 2rem); }
.acc__no { flex: none; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--text-muted); }
.acc__title { flex: 1; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.2rem, 1rem + .8vw, 1.55rem); line-height: 1.15; transition: color var(--dur-1) var(--ease); }
.acc__head:hover .acc__title, .acc__item.is-open .acc__title { color: var(--accent); }
.acc__ind { flex: none; color: var(--accent); display: inline-flex; }
.acc-ind-svg { width: 18px; height: 18px; transition: transform var(--dur-2) var(--ease); }
.acc__item.is-open .acc-ind-svg { transform: rotate(45deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-2) var(--ease); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__inner p { color: var(--text-body); line-height: 1.6; max-width: 64ch; padding: 0 clamp(1.1rem, 2vw, 1.7rem) 1.4rem; transition: padding var(--dur-2) var(--ease); }
.acc__item.is-open .acc__inner p { padding-left: clamp(1.4rem, 2.4vw, 2rem); }
@media (prefers-reduced-motion: reduce) { .acc__panel, .acc-ind-svg, .acc__item::before { transition: none; } }

.tq .tqc { margin: 0; }
.tq blockquote { margin: 0; }
.tq cite { font-style: normal; }
/* Option 1 - single spotlight */
.tq--spot .tqc { flex: 0 0 100%; text-align: center; padding: clamp(1rem,1rem + 2vw,2rem) clamp(1rem,6vw,6rem); }
.tq--spot blockquote { font-family: var(--font-display); font-weight: 380; font-size: clamp(1.3rem,1.05rem + 1.5vw,2.05rem); line-height: 1.38; color: var(--text-strong); max-width: 32ch; margin-inline: auto; }
.tq--spot blockquote strong { color: var(--accent); font-weight: 600; }
.tq--spot cite { display: block; margin-top: 1.5rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
/* Option 2 - editorial */
.tq--editorial .tqc { flex: 0 0 100%; position: relative; background: var(--bg-alt); border-radius: var(--radius-md); padding: clamp(1.8rem,1.2rem + 4vw,3.4rem) clamp(1.5rem,1rem + 4vw,3.6rem); }
.tq--editorial .tqc::before { content: "\201C"; position: absolute; top: .1em; left: .3em; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--accent); opacity: .25; }
.tq--editorial blockquote { font-family: var(--font-display); font-size: clamp(1.2rem,1rem + 1.3vw,1.85rem); line-height: 1.42; color: var(--text-strong); max-width: 44ch; position: relative; }
.tq--editorial blockquote strong { color: var(--accent); font-weight: 600; }
.tq--editorial cite { display: block; margin-top: 1.4rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
/* Option 3 - two up */
.tq--two .tqc { flex: 0 0 calc((100% - var(--tgap)) / 2); display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(1.5rem,1.2rem + 1vw,2.2rem); }
@media (max-width: 700px) { .tq--two .tqc { flex: 0 0 100%; } }
.tq--two blockquote { font-family: var(--font-display); font-weight: 360; font-size: clamp(1.02rem,.96rem + .4vw,1.22rem); line-height: 1.45; color: var(--ink-soft); }
.tq--two blockquote strong { color: var(--text-strong); font-weight: 600; }
.tq--two cite { display: block; margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: .66rem; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); }

/* ---- recurring sign-up band (in footer, all pages) ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.signup { display: grid; gap: 1.5rem; padding-bottom: clamp(2rem,1.5rem + 2vw,3rem); border-bottom: 1px solid rgba(255,255,255,.13); }
@media (min-width: 800px) { .signup { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3rem; } }
.signup__text .idx { color: var(--on-accent-glow); }
.signup__text h3 { color: #fff; font-size: clamp(1.5rem,1.2rem + 1.4vw,2.1rem); margin: .5rem 0 .55rem; }
.signup__text p { color: rgba(255,255,255,.72); line-height: 1.6; max-width: 46ch; margin: 0; }
.signup__form { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.signup__form input { flex: 1 1 220px; min-width: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.26); border-radius: var(--radius-pill); padding: .85rem 1.25rem; color: #fff; font-family: var(--font-sans); font-size: .95rem; }
.signup__form input::placeholder { color: rgba(255,255,255,.5); }
.signup__form input:focus { outline: none; border-color: var(--on-accent-glow); box-shadow: 0 0 0 3px rgba(91,208,196,.2); }
.signup__form .btn { flex: none; }
.signup__note { flex-basis: 100%; margin: .35rem 0 0; font-size: .85rem; color: var(--on-accent-glow); display: none; }
.signup__note.show { display: block; }

/* eyebrows on dark backgrounds (footer signup, dark bands) */
.band-dark .eyebrow, .signup .eyebrow { color: var(--on-accent-glow); }
