/*
 * Kate Angelo — /about/ PHASE 2 rebuild (Daria) — page-about.css
 * ============================================================================
 * Companion stylesheet for page-about.php. Hand-coded, theme-native — no
 * Elementor. Namespaced under `.ka-a2-*` / `#ka-about2` (a fresh prefix, NOT
 * `.ka-about-*`) deliberately, to avoid any collision with the retired
 * Elementor build's own about-hero-fix.css / about-lower-sections-fix.css
 * class names, which this template does not use. The ONE exception is the
 * pinned scroll-story in Section 3, which reuses assets/about-scroll-story.js
 * /.css and its `.ka-story-*` classes VERBATIM and unmodified — see that
 * file's own header comment.
 *
 * ── FULL-WIDTH DISCIPLINE ──────────────────────────────────────────────────
 * This exact page has a documented history (see CHANGELOG.md v1.3.1/v1.3.2)
 * of being fixed for "boxed/large-side-gutter" bugs multiple times on the old
 * Elementor build. Every section below is edge-to-edge at the section level
 * (background spans full viewport width, no outer max-width/margin:auto);
 * only INNER content gets a comfortable reading-measure cap, matching the
 * pattern that fixed those earlier bugs.
 *
 * ── ALTERNATING TONE RHYTHM ────────────────────────────────────────────────
 * Per project convention (never two adjacent sections the same tone):
 *   1 Hero (photo+navy scrim) -> 2 Letter (navy solid) -> 3 Story (royal-blue
 *   gradient) -> 4 Credibility (navy solid) -> 5 Tiles (royal-blue gradient)
 *   -> 6 Bios (navy solid) -> 7 Speaking (royal-blue gradient) -> 8
 *   Newsletter (navy solid).
 *
 * ── MOTION ──────────────────────────────────────────────────────────────
 * [data-reveal] / [data-split] elements are handled entirely by the shared
 * assets/motion-engine.js/.css (loaded sitewide) — this file adds NO opacity/
 * transform hiding rules of its own for those attributes; default state here
 * is always fully visible, exactly matching motion-engine.css's own failsafe
 * contract. The bio tabs + stat count-up have their own small, self-gated
 * script (assets/page-about.js) with the same "real content by default"
 * failsafe: every bio panel's HTML has real, final text already in place,
 * and every stat number's default text IS its correct final value.
 */

#ka-about2 {
	--ka2-navy:        #020F24;
	--ka2-navy-1:      #1A4A90;
	--ka2-navy-2:      #0D3170;
	--ka2-navy-3:      #08204d;
	--ka2-gold:        #F5D000;
	--ka2-pink:        #DF6176;
	--ka2-pink-hover:  #e87a8f;
	--ka2-text:        #EEF2F8;
	--ka2-muted:       rgba(238,242,248,.72);
	--ka2-muted-2:     rgba(238,242,248,.5);
	--ka2-border:      rgba(238,242,248,.14);
	--ka2-fbig:        'Oswald', Impact, sans-serif;
	--ka2-fcg:         'Cormorant Garamond', Georgia, serif;
	--ka2-fsec:        var(--ka-font-secondary, 'Hanken Grotesk', sans-serif);
	--ka2-fbody:       'Poppins', sans-serif;
	/* Handwritten accent face for the letter's "Dear Reader," script header
	 * (item 10, staging batch round) — Google-hosted, pairs with the
	 * existing Cormorant Garamond italic accent already used elsewhere on
	 * this page (e.g. .ka-a2-letter__body em). */
	--ka2-fscript:     'Caveat', var(--ka2-fcg);
	--ka2-gradient:    linear-gradient(180deg, var(--ka2-navy-1) 0%, var(--ka2-navy-2) 50%, var(--ka2-navy-3) 100%);

	position: relative;
	overflow-x: hidden;
	color: var(--ka2-text);
	font-family: var(--ka2-fbody);
}
#ka-about2 * { box-sizing: border-box; }
#ka-about2 a { color: inherit; }
#ka-about2 h1, #ka-about2 h2, #ka-about2 h3 { font-family: var(--ka2-fbig); margin: 0; }
#ka-about2 p { margin: 0; }
#ka-about2 ul { margin: 0; padding: 0; list-style: none; }

/* Shared eyebrow / heading rhythm, reused across sections */
.ka-a2-eyebrow,
.ka-a2-hero__eyebrow,
.ka-a2-letter__eyebrow,
.ka-a2-cred__eyebrow,
.ka-a2-bios__eyebrow,
.ka-a2-speaking__eyebrow {
	font-family: var(--ka2-fsec);
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--ka2-gold);
}

/* Shared buttons */
.ka-a2-btn {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: var(--ka2-fbody);
	font-weight: 600;
	font-size: .88rem;
	letter-spacing: .02em;
	text-decoration: none;
	padding: .85rem 1.7rem;
	border-radius: 3px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .18s ease, border-color .2s ease;
}
/* SPECIFICITY FIX (Daria, staging round 2): this file's own `#ka-about2 a {
 * color: inherit; }` rule (line 68) is an ID selector, so it ALWAYS
 * outranks a plain class selector like `.ka-a2-btn--gold` regardless of
 * source order — meaning the color declarations below were being silently
 * discarded and every one of these anchor-tag buttons was actually
 * rendering light `--ka2-text` (#EEF2F8) on gold, not the intended navy.
 * Confirmed live via getComputedStyle() on staging: all three hero CTAs
 * (About Kate/Press Kit/Book Kate), the bottom "Book Kate to Speak" CTA,
 * AND the scroll-story's "See All the Books" link (assets/
 * about-scroll-story.css's `.ka-story-beat__btn`, also nested inside
 * #ka-about2) were all affected — the v1.6.0 changelog's claim that this
 * was already fixed never actually took visual effect. Re-prefixing with
 * the `#ka-about2` ancestor ID here restores a matching (1,1,0) vs (1,0,1)
 * specificity, which wins because class-count (1) beats the plain rule's
 * class-count (0) once the ID digit ties — see this same ancestor-ID-
 * prefix pattern already used for the header's background-color fight in
 * assets/site-header-footer.css. `.ka-story-beat__btn` gets the identical
 * fix directly in about-scroll-story.css. */
#ka-about2 .ka-a2-btn--gold {
	background: var(--ka2-gold);
	color: var(--ka2-navy-3);
	border: 1.5px solid var(--ka2-gold);
}
#ka-about2 .ka-a2-btn--gold:hover { background: #ffe033; transform: translateY(-2px); }
#ka-about2 .ka-a2-btn--ghost {
	background: transparent;
	color: var(--ka2-text);
	border: 1.5px solid rgba(238,242,248,.35);
}
#ka-about2 .ka-a2-btn--ghost:hover { border-color: var(--ka2-text); transform: translateY(-2px); }

/* ────────────────────────────────────────────────────────────────────────
   1. HERO
──────────────────────────────────────────────────────────────────────── */
.ka-a2-hero {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding: 7rem 1.5rem 5rem;
}
.ka-a2-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center top;
}
.ka-a2-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(2,15,36,.55) 0%, rgba(2,15,36,.62) 55%, var(--ka2-navy) 100%);
}
.ka-a2-hero__content {
	position: relative;
	z-index: 2;
	max-width: 960px;
}
.ka-a2-hero__eyebrow { margin-bottom: 1.5rem; }

/* ── HEADLINE — "From Foster Care to Fiction." two deliberate sizes ───────
 * (item 9, staging batch round): the setup line reads at a moderate
 * headline size; "Fiction." carries the emphasis at roughly double that
 * size, in gold, so the headline reads as intentionally staged rather than
 * one flat size. Judgment call on the exact split — Kate can tune via these
 * two clamp() values if she wants more/less contrast between the lines. */
.ka-a2-hero__headline {
	line-height: .95;
	text-transform: uppercase;
}
.ka-a2-hero__headline-sm,
.ka-a2-hero__headline-lg {
	display: block;
	font-family: var(--ka2-fbig);
	letter-spacing: -.01em;
}
.ka-a2-hero__headline-sm {
	font-weight: 600;
	font-size: clamp(1.5rem, 4.2vw, 2.6rem);
	color: var(--ka2-text);
	margin-bottom: .25em;
}
.ka-a2-hero__headline-lg {
	font-weight: 900;
	font-size: clamp(3.8rem, 12vw, 8.5rem);
	color: var(--ka2-gold);
}
.ka-a2-hero__tagline {
	margin-top: 2rem;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	font-family: var(--ka2-fsec);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: .01em;
	text-transform: none;
	color: var(--ka2-text);
}
.ka-a2-hero__tagline span { color: var(--ka2-gold); }
.ka-a2-hero__ctas {
	margin-top: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}
.ka-a2-hero__scrollhint {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .6rem;
}
.ka-a2-hero__scrollline {
	width: 1px;
	height: 42px;
	background: linear-gradient(to bottom, var(--ka2-pink), transparent);
	animation: ka-a2-pulse 2.2s ease-in-out infinite;
}
.ka-a2-hero__scrolllabel {
	font-family: var(--ka2-fsec);
	font-size: .62rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--ka2-muted-2);
}
@keyframes ka-a2-pulse {
	0%, 100% { opacity: .3; transform: scaleY(.7); }
	50%      { opacity: 1;  transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
	.ka-a2-hero__scrollline { animation: none; opacity: .6; }
}

/* ────────────────────────────────────────────────────────────────────────
   2. WARM LETTER BIO → CASSANDRA-WORTHY SPEECH-BUBBLE REDESIGN (item 10)
   Circular portrait (left) + connector line into a speech-bubble callout
   (right), handwritten script header, bold intro line, colored accent
   sub-lines, then body copy — deliberately varied sizes throughout for
   hierarchy. Brand-adapted palette: gold + pink accents (Kate's own brand
   colors) standing in for Cassandra Worthy's neon green.
──────────────────────────────────────────────────────────────────────── */
.ka-a2-letter {
	width: 100%;
	background: var(--ka2-navy);
	padding: 6rem 1.5rem;
}
.ka-a2-letter__inner {
	max-width: 1080px;
	margin: 0 auto;
}
.ka-a2-letter__eyebrow { display: block; text-align: center; margin-bottom: 2.5rem; }

.ka-a2-letter__grid {
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: start;
	gap: 0 2.5rem;
}

.ka-a2-letter__portrait-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: sticky;
	top: 6rem;
}
.ka-a2-letter__portrait {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--ka2-gold);
	box-shadow: var(--ka-glow-gold, 0 4px 24px rgba(245,208,0,.35));
	flex-shrink: 0;
}
.ka-a2-letter__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Connecting line from the portrait into the speech bubble — a simple
 * dashed rule that reads as "this photo is speaking the bubble". */
.ka-a2-letter__connector {
	display: block;
	width: 3px;
	flex: 1;
	min-height: 60px;
	margin-top: 1.25rem;
	background: repeating-linear-gradient(to bottom, var(--ka2-pink) 0 8px, transparent 8px 16px);
	border-radius: 2px;
}

.ka-a2-letter__bubble {
	position: relative;
	background: rgba(255,255,255,.045);
	border: 1.5px solid var(--ka2-border);
	border-radius: 26px;
	padding: 2.75rem 3rem;
}
.ka-a2-letter__bubble-tail {
	position: absolute;
	top: 52px;
	left: -22px;
	width: 30px;
	height: 30px;
	background: rgba(255,255,255,.045);
	border-left: 1.5px solid var(--ka2-border);
	border-bottom: 1.5px solid var(--ka2-border);
	border-radius: 0 0 0 8px;
	transform: rotate(45deg);
}

/* Handwritten-script accent header — the #1 hierarchy cue: this is the
 * LARGEST, most decorative element in the bubble, deliberately not the
 * same weight/face as anything else here. */
.ka-a2-letter__script {
	font-family: var(--ka2-fscript);
	font-weight: 600;
	font-size: clamp(2.6rem, 5vw, 3.8rem);
	line-height: 1;
	color: var(--ka2-pink);
	margin-bottom: 1.25rem;
}

/* Bold name/intro line — second-largest, sets up who's "speaking". */
.ka-a2-letter__intro {
	font-family: var(--ka2-fbig);
	font-weight: 700;
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	line-height: 1.35;
	color: var(--ka2-text);
	margin-bottom: 1.75rem;
}

.ka-a2-letter__body p {
	font-family: var(--ka2-fbody);
	font-weight: 300;
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--ka2-muted);
}
.ka-a2-letter__body p + p { margin-top: 1.3rem; }
.ka-a2-letter__body em { font-style: italic; color: var(--ka2-gold); }

/* Colored ACCENT sub-lines — pulled from the letter's own dramatic beats
 * (see page-about.php's inline comment for which two, and why). Rendered
 * noticeably larger + bolder + colored so they function as the bubble's
 * own internal pull-quotes, the main mechanic fixing the old "too flat"
 * complaint. */
.ka-a2-letter__accent {
	font-family: var(--ka2-fcg);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.2rem, 2.1vw, 1.55rem);
	line-height: 1.45;
}
.ka-a2-letter__accent + p,
p + .ka-a2-letter__accent { margin-top: 1.3rem; }
/* Specificity fix: `.ka-a2-letter__body p` (a class + a type selector,
 * just above) otherwise outranks a single-class `.ka-a2-letter__accent
 * --pink`/`--gold` selector regardless of source order, which was
 * silently winning and leaving both accent lines stuck at the same muted
 * body color as every other paragraph — confirmed live via
 * getComputedStyle before this fix. Both rules below add the parent class
 * to win on specificity instead of relying on cascade order. */
.ka-a2-letter__body .ka-a2-letter__accent--pink { color: var(--ka2-pink); }
.ka-a2-letter__body .ka-a2-letter__accent--gold { color: var(--ka2-gold); }

@media (max-width: 760px) {
	.ka-a2-letter__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.ka-a2-letter__portrait-col {
		position: static;
		flex-direction: row;
		justify-content: center;
	}
	.ka-a2-letter__portrait { width: 130px; height: 130px; }
	.ka-a2-letter__connector { display: none; }
	.ka-a2-letter__bubble { padding: 2.25rem 1.5rem; border-radius: 18px; }
	.ka-a2-letter__bubble-tail {
		top: -14px;
		left: 50%;
		transform: translateX(-50%) rotate(45deg);
		border-left: none;
		border-top: 1.5px solid var(--ka2-border);
		border-right: 1.5px solid var(--ka2-border);
	}
}

/* ────────────────────────────────────────────────────────────────────────
   3. STORY WRAP — page-level spacing only. Inner .ka-story-* mechanics and
   pinned-mode styling live entirely in about-scroll-story.css (untouched).
   Full-width per the earlier "width fix round 2" lesson (CHANGELOG v1.3.2):
   no max-width/margin:auto cap on the wrap itself.
──────────────────────────────────────────────────────────────────────── */
.ka-about-story-wrap {
	width: 100%;
	background: var(--ka2-gradient);
	padding: 5.5rem clamp(16px, 4vw, 32px);
}

/* ────────────────────────────────────────────────────────────────────────
   4. CREDIBILITY STRIP
──────────────────────────────────────────────────────────────────────── */
.ka-a2-cred {
	width: 100%;
	background: var(--ka2-navy);
	padding: 5.5rem 1.5rem;
	text-align: center;
}
.ka-a2-cred__eyebrow { display: block; margin-bottom: 2rem; }
.ka-a2-cred__logos {
	max-width: 1100px;
	margin: 0 auto 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.25rem 3rem;
}
.ka-a2-cred__logo {
	font-family: var(--ka2-fbig);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--ka2-muted);
	opacity: .9;
}
.ka-a2-cred__stats {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
}
.ka-a2-stat { display: flex; flex-direction: column; gap: .5rem; }
.ka-a2-stat__num {
	font-family: var(--ka2-fbig);
	font-weight: 900;
	font-size: clamp(2.6rem, 5vw, 4rem);
	color: var(--ka2-gold);
	line-height: 1;
}
.ka-a2-stat__label {
	font-family: var(--ka2-fsec);
	font-size: .82rem;
	letter-spacing: .06em;
	color: var(--ka2-muted);
}
@media (max-width: 700px) {
	.ka-a2-cred__stats { grid-template-columns: 1fr; gap: 2rem; }
}

/* ────────────────────────────────────────────────────────────────────────
   5. RESOURCE TILES
──────────────────────────────────────────────────────────────────────── */
.ka-a2-tiles {
	width: 100%;
	background: var(--ka2-gradient);
	padding: 5.5rem 1.5rem;
}
.ka-a2-tiles__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.75rem;
}
@media (max-width: 900px) {
	.ka-a2-tiles__inner { grid-template-columns: 1fr; }
}
.ka-a2-tile {
	display: flex;
	flex-direction: column;
	gap: .85rem;
	text-decoration: none;
	background: rgba(255,255,255,.05);
	border: 1px solid var(--ka2-border);
	border-top: 3px solid var(--ka2-gold);
	border-radius: 6px;
	padding: 2.25rem 2rem;
	transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.ka-a2-tile:nth-child(2) { border-top-color: var(--ka2-pink); }
.ka-a2-tile:hover {
	transform: translateY(-5px);
	background: rgba(255,255,255,.085);
	box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.ka-a2-tile__eyebrow {
	font-family: var(--ka2-fsec);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ka2-gold);
}
.ka-a2-tile:nth-child(2) .ka-a2-tile__eyebrow { color: var(--ka2-pink); }
.ka-a2-tile__heading {
	font-size: 1.5rem;
	color: var(--ka2-text);
	line-height: 1.2;
}
.ka-a2-tile__text {
	font-family: var(--ka2-fbody);
	font-weight: 300;
	font-size: .95rem;
	line-height: 1.7;
	color: var(--ka2-muted);
	flex: 1;
}
.ka-a2-tile__link {
	font-family: var(--ka2-fbody);
	font-weight: 600;
	font-size: .86rem;
	color: var(--ka2-gold);
}
.ka-a2-tile:nth-child(2) .ka-a2-tile__link { color: var(--ka2-pink); }

/* ────────────────────────────────────────────────────────────────────────
   6. BIOS + DOWNLOADS
──────────────────────────────────────────────────────────────────────── */
.ka-a2-bios {
	width: 100%;
	background: var(--ka2-navy);
	padding: 5.5rem 1.5rem;
}
.ka-a2-bios__inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}
.ka-a2-bios__eyebrow { display: block; margin-bottom: 1rem; }
.ka-a2-bios__heading {
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	color: var(--ka2-text);
	margin-bottom: 2.25rem;
}
.ka-a2-bios__tabs {
	display: flex;
	justify-content: center;
	gap: .6rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}
.ka-a2-bios__tab {
	font-family: var(--ka2-fsec);
	font-weight: 600;
	font-size: .85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	background: transparent;
	color: var(--ka2-muted);
	border: 1.5px solid var(--ka2-border);
	border-radius: 999px;
	padding: .6rem 1.5rem;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ka-a2-bios__tab:hover { border-color: var(--ka2-gold); color: var(--ka2-text); }
.ka-a2-bios__tab.is-active {
	background: var(--ka2-gold);
	border-color: var(--ka2-gold);
	color: var(--ka2-navy-3);
}
.ka-a2-bios__panels { text-align: left; }

/* Default (no-JS / JS-not-yet-initialized) state: every panel renders
   stacked and fully visible, each with its own visible label — see
   page-about.php's own comment on this block for why. Tab buttons are
   still clickable-looking but inert until JS wires them up; that's an
   acceptable degrade (all THREE bios are still fully readable either way,
   nothing is ever hidden-and-inaccessible). */
.ka-a2-bios__panel-label {
	font-family: var(--ka2-fsec);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ka2-gold);
	margin-bottom: .75rem;
}
.ka-a2-bios__panel + .ka-a2-bios__panel {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--ka2-border);
}
.ka-a2-bios__panel p {
	font-family: var(--ka2-fbody);
	font-weight: 300;
	font-size: 1.02rem;
	line-height: 1.85;
	color: var(--ka2-muted);
}
.ka-a2-bios__panel p + p { margin-top: 1.2rem; }
.ka-a2-bios__panel em { font-style: italic; color: var(--ka2-text); }

/* ONLY once page-about.js has successfully wired up the tab buttons does
   it add this class to #ka-a2-bios-panels — from that point on, the JS
   itself manages which single panel is visible (via inline style / the
   `hidden` attribute) and this rule stops the labels+dividers doubling as
   a visual "already obviously stacked" cue that would look broken next to
   now-functional tabs. */
.ka-a2-bios-js .ka-a2-bios__panel-label { display: none; }
.ka-a2-bios-js .ka-a2-bios__panel + .ka-a2-bios__panel { border-top: none; padding-top: 0; margin-top: 0; }
.ka-a2-bios-js .ka-a2-bios__panel[hidden] { display: none; }

.ka-a2-bios__downloads {
	margin-top: 2.75rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.ka-a2-download {
	display: flex;
	flex-direction: column;
	gap: .3rem;
	min-width: 180px;
	text-decoration: none;
	background: rgba(255,255,255,.05);
	border: 1px solid var(--ka2-border);
	border-radius: 6px;
	padding: 1rem 1.4rem;
	transition: background .2s ease, border-color .2s ease, transform .18s ease;
}
.ka-a2-download:hover { background: rgba(255,255,255,.09); border-color: var(--ka2-gold); transform: translateY(-2px); }
.ka-a2-download__label {
	font-family: var(--ka2-fbody);
	font-weight: 600;
	font-size: .92rem;
	color: var(--ka2-text);
}
.ka-a2-download__meta {
	font-family: var(--ka2-fsec);
	font-size: .72rem;
	letter-spacing: .05em;
	color: var(--ka2-gold);
}
.ka-a2-download--stub {
	cursor: default;
	opacity: .55;
}
.ka-a2-download--stub:hover { transform: none; border-color: var(--ka2-border); background: rgba(255,255,255,.05); }
.ka-a2-download--stub .ka-a2-download__meta { color: var(--ka2-muted-2); }

/* ────────────────────────────────────────────────────────────────────────
   7. SPEAKING TEASER
──────────────────────────────────────────────────────────────────────── */
.ka-a2-speaking {
	position: relative;
	width: 100%;
	background: var(--ka2-gradient);
	padding: 6rem 1.5rem;
	text-align: center;
	overflow: hidden;
}
.ka-a2-speaking__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70vw;
	height: 70vw;
	max-width: 900px;
	max-height: 900px;
	background: radial-gradient(circle, rgba(223,97,118,.12) 0%, transparent 70%);
	pointer-events: none;
}
.ka-a2-speaking__inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin: 0 auto;
}
.ka-a2-speaking__eyebrow { display: block; margin-bottom: 1.5rem; }
.ka-a2-speaking__heading {
	font-size: clamp(2.2rem, 5vw, 4rem);
	color: var(--ka2-text);
	margin-bottom: 2rem;
}
.ka-a2-speaking__topics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .6rem 1rem;
	margin-bottom: 2.5rem;
}
.ka-a2-speaking__topics li {
	font-family: var(--ka2-fsec);
	font-size: .82rem;
	letter-spacing: .04em;
	color: var(--ka2-muted);
	background: rgba(255,255,255,.06);
	border: 1px solid var(--ka2-border);
	border-radius: 999px;
	padding: .5rem 1.1rem;
}

/* ────────────────────────────────────────────────────────────────────────
   8. NEWSLETTER — footer-field styling reused verbatim from
   assets/site-header-footer.css's --ka-field-blue / gold-button convention.
──────────────────────────────────────────────────────────────────────── */
.ka-a2-newsletter {
	width: 100%;
	background: var(--ka2-navy);
	border-top: 1px solid var(--ka2-border);
	padding: 5.5rem 1.5rem;
}
.ka-a2-newsletter__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}
@media (max-width: 760px) {
	.ka-a2-newsletter__inner { grid-template-columns: 1fr; }
}
.ka-a2-newsletter__heading {
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
	color: var(--ka2-text);
	margin-bottom: .9rem;
}
.ka-a2-newsletter__sub {
	font-family: var(--ka2-fbody);
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--ka2-muted);
}
.ka-a2-newsletter__form { display: flex; flex-direction: column; gap: .75rem; }
.ka-a2-newsletter__row { display: flex; gap: .6rem; flex-wrap: wrap; }
.ka-a2-newsletter__input {
	flex: 1 1 200px;
	font-family: 'Space Mono', monospace;
	font-size: .85rem;
	color: var(--ka2-text);
	background: #0F3271; /* --ka-field-blue, matches site-header-footer.css exactly */
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 2px;
	padding: .85rem 1.1rem;
	outline: none;
	transition: border-color .2s ease;
}
.ka-a2-newsletter__input::placeholder { color: rgba(238,242,248,.5); }
.ka-a2-newsletter__input:focus { border-color: var(--ka2-gold); }
.ka-a2-newsletter__submit {
	font-family: 'Space Mono', monospace;
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ka2-navy);
	background: var(--ka2-gold);
	border: none;
	border-radius: 2px;
	padding: .85rem 1.5rem;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease;
	align-self: flex-start;
}
.ka-a2-newsletter__submit:hover { background: #ffe033; transform: translateY(-2px); }
.ka-a2-newsletter__note {
	font-family: var(--ka2-fsec);
	font-size: .7rem;
	letter-spacing: .04em;
	color: var(--ka2-muted-2);
}

/* ────────────────────────────────────────────────────────────────────────
   RESPONSIVE — mobile (<=760px)
──────────────────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
	.ka-a2-hero { padding: 6rem 1.25rem 4rem; }
	.ka-a2-letter,
	.ka-a2-cred,
	.ka-a2-tiles,
	.ka-a2-bios,
	.ka-a2-speaking,
	.ka-a2-newsletter { padding-left: 1.25rem; padding-right: 1.25rem; }
	.ka-about-story-wrap { padding-left: 1.1rem; padding-right: 1.1rem; }
}
