/* ─────────────────────────────────────────────────────────────────────────────
   TANIA KASSIS — homepage, v2
   warm-dark, gold-lit, slow.
───────────────────────────────────────────────────────────────────────────── */

:root {
	--ink: #0A0706;
	--gold: #B89968;
	--ivory: #F2EAD8;
	--amber: #7A4F2C;
	--smoke: #1F1612;
	--type-ink: #1A1310;

	--font-display: "Tenor Sans", "Cormorant Garamond", serif;
	--font-sans: "Inter Tight", "Söhne", -apple-system, sans-serif;

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);

	--reading-max: 38rem;
	--col-pad: clamp(24px, 5vw, 96px);
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--ink);
	color: var(--ivory);
	font-family: var(--font-sans);
	font-feature-settings: "ss01", "kern";
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body {
	background:
		radial-gradient(ellipse 120% 80% at 50% -10%, rgba(122, 79, 44, 0.18), transparent 60%),
		radial-gradient(ellipse 90% 60% at 50% 110%, rgba(122, 79, 44, 0.14), transparent 65%),
		var(--ink);
	background-attachment: fixed;
	min-height: 100vh;
	overflow-x: hidden;
}

/* Page-wide soft film grain */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 9;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: 0.13;
	mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

.pillar-item,
.feature,
.site-footer {
	scroll-margin-top: 96px;
}

/* Visually hidden (for skip link) */
.visually-hidden-focusable {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.visually-hidden-focusable:focus {
	position: fixed;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 14px;
	clip: auto;
	background: var(--ivory);
	color: var(--type-ink);
	z-index: 9999;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* ── Reusable type tokens ──────────────────────────────────────────── */
.micro-caption {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ivory);
	display: inline-block;
}
.micro-caption.muted { color: rgba(242, 234, 216, 0.42); }
.micro-caption.ink { color: var(--type-ink); }

/* ─────────────────────────────────────────────────────────────────────
   VEIL — atmospheric signature
───────────────────────────────────────────────────────────────────── */
.veil-root {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 7;
	overflow: hidden;
	mix-blend-mode: screen;
	opacity: 1;
}

.veil-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(64px);
	will-change: transform, opacity;
	transition: opacity 1.6s var(--ease);
	opacity: 0.64;
}

.veil-orb-1 {
	width: 76vw;
	height: 76vw;
	left: 0;
	top: 0;
	background: radial-gradient(closest-side, rgba(184, 153, 104, 0.62), rgba(122, 79, 44, 0.32) 34%, rgba(122, 79, 44, 0.08) 56%, transparent 74%);
}

.veil-orb-1::after {
	background: radial-gradient(closest-side, rgba(242, 234, 216, 0.18), rgba(184, 153, 104, 0.1) 32%, transparent 64%);
	border-radius: inherit;
	content: "";
	inset: 18%;
	position: absolute;
}

@keyframes drift-1 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(8vw, 5vh, 0) scale(1.08); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes drift-2 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(-6vw, -4vh, 0) scale(1.12); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}

.veil-orb-1.is-drifting { animation: drift-1 22s ease-in-out infinite; }

.veil-grain {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 3px 3px;
	mix-blend-mode: overlay;
	pointer-events: none;
	opacity: 0.08;
}

/* ─────────────────────────────────────────────────────────────────────
   TOP BAR
───────────────────────────────────────────────────────────────────── */
.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	align-items: center;
	display: grid;
	grid-template-columns: minmax(120px, 0.7fr) auto minmax(120px, 0.7fr);
	gap: 24px;
	min-height: 72px;
	opacity: 1;
	padding: 0 var(--col-pad);
	pointer-events: none;
	transform: translateY(0);
	transition: opacity 600ms var(--ease), transform 600ms var(--ease), background-color 700ms var(--ease), border-color 700ms var(--ease), backdrop-filter 700ms var(--ease);
	visibility: visible;
}
.topbar.is-visible {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}
.topbar.is-scrolled {
	background: rgba(6, 4, 3, 0.82);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(242, 234, 216, 0.08);
}
.admin-bar .topbar { top: 32px; }
@media (max-width: 782px) { .admin-bar .topbar { top: 46px; } }
@media (max-width: 1120px) {
	.topbar {
		grid-template-columns: 1fr auto;
	}
	.topbar-nav {
		display: none;
	}
}

.topbar > * { pointer-events: auto; }

.topbar-brand {
	color: var(--ivory);
	font-family: var(--font-display);
	font-size: 20px;
	letter-spacing: 0.02em;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: color 600ms var(--ease), opacity 600ms var(--ease), transform 600ms var(--ease);
	visibility: hidden;
	white-space: nowrap;
}
.topbar.is-scrolled .topbar-brand {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}
.topbar-brand:hover { color: var(--gold); }

.topbar-nav {
	align-items: center;
	display: flex;
	gap: clamp(16px, 2.2vw, 32px);
	justify-content: center;
}
.topbar-nav a {
	color: rgba(242, 234, 216, 0.68);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	position: relative;
	text-transform: uppercase;
	transition: color 600ms var(--ease);
	white-space: nowrap;
}
.topbar-nav a::after {
	background: var(--gold);
	bottom: -9px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 600ms var(--ease);
}
.topbar-nav a:hover {
	color: var(--ivory);
}
.topbar-nav a:hover::after {
	transform: scaleX(1);
}
@media (max-width: 1120px) {
	.topbar-nav {
		display: none;
	}
}

.topbar-actions {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: flex-end;
}

.topbar-index {
	background: none;
	border: none;
	color: var(--ivory);
	cursor: pointer;
	display: none;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	font: inherit;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	transition: color 600ms var(--ease);
	position: relative;
}
.topbar-index::after {
	content: "";
	position: absolute;
	left: 22px;
	right: 0;
	bottom: 4px;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 600ms var(--ease);
}
.topbar-index:hover::after { transform: scaleX(1); }
.topbar-index:hover { color: var(--gold); }
@media (max-width: 1120px) {
	.topbar-index {
		display: inline-flex;
	}
}

.dot-pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 10px rgba(184, 153, 104, 0.8);
	animation: pulse 4.5s ease-in-out infinite;
	display: inline-block;
}
@keyframes pulse {
	0%, 100% { opacity: 0.55; transform: scale(1); }
	50%      { opacity: 1;    transform: scale(1.3); }
}

/* ─────────────────────────────────────────────────────────────────────
   INDEX OVERLAY
───────────────────────────────────────────────────────────────────── */
.site-socials {
	align-items: center;
	display: flex;
	gap: 12px;
}

.site-social-link {
	align-items: center;
	color: var(--gold);
	display: inline-flex;
	height: 34px;
	justify-content: center;
	opacity: 0.84;
	transition: color 600ms var(--ease), opacity 600ms var(--ease), transform 600ms var(--ease);
	width: 34px;
}

.site-social-link .listen-icon {
	flex: 0 0 23px;
	height: 23px;
	width: 23px;
}

.site-social-link:hover {
	color: var(--ivory);
	opacity: 1;
	transform: translateY(-1px);
}

.index-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	pointer-events: none;
	opacity: 0;
	transition: opacity 800ms var(--ease);
}
.index-overlay.is-open { opacity: 1; pointer-events: auto; }

.index-veil {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% 30%, rgba(122, 79, 44, 0.45), transparent 70%),
		rgba(10, 7, 6, 0.96);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.index-inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 36px var(--col-pad) 48px;
}

.index-topline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.index-topline > .micro-caption:not(.index-menu-label) { display: none; }

.index-close {
	background: none;
	border: none;
	color: var(--ivory);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 0;
	font: inherit;
}
.index-close-label {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.index-close-x {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 30px;
	color: var(--gold);
	line-height: 1;
}

.index-list {
	list-style: none;
	margin: auto 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 1.5vh, 16px);
}

.index-item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 900ms var(--ease), transform 900ms var(--ease);
	transition-delay: calc(var(--i) * 90ms + 200ms);
}
.is-open .index-item { opacity: 1; transform: translateY(0); }

.index-item a {
	display: grid;
	grid-template-columns: 56px 1fr 2fr;
	align-items: baseline;
	gap: clamp(20px, 4vw, 60px);
	padding: 14px 0;
	border-top: 1px solid rgba(242, 234, 216, 0.12);
	transition: padding 600ms var(--ease);
}
.index-item:last-child a { border-bottom: 1px solid rgba(242, 234, 216, 0.12); }
.index-item a:hover { padding-left: 18px; }
.index-item a:hover .index-label { color: var(--gold); }

.index-num {
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.22em;
	color: rgba(242, 234, 216, 0.45);
}
.index-label {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(36px, 5.5vw, 76px);
	letter-spacing: -0.01em;
	color: var(--ivory);
	transition: color 600ms var(--ease);
}
.index-note {
	font-size: 13px;
	font-weight: 400;
	color: rgba(242, 234, 216, 0.55);
	letter-spacing: 0.02em;
}

.index-foot {
	display: flex;
	gap: 28px;
	justify-content: flex-end;
	padding-top: 20px;
	border-top: 1px solid rgba(242, 234, 216, 0.08);
}

/* ─────────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────────── */
.hero {
	position: relative;
	z-index: 5;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 120px var(--col-pad) 80px;
	text-align: center;
}

.hero-offaxis {
	align-items: flex-start;
	text-align: left;
	padding-left: clamp(48px, 12vw, 200px);
	padding-top: 180px;
}

.hero-stack {
	--hero-scroll-y: 0px;
	display: flex;
	flex-direction: column;
	align-items: inherit;
	gap: 36px;
	opacity: 0;
	transform: translateY(calc(20px + var(--hero-scroll-y)));
	transition: opacity 1.6s var(--ease);
}
.hero-stack.is-in { opacity: 1; transform: translateY(var(--hero-scroll-y)); }

.hero-eyebrow {
	opacity: 0.55;
}

.hero-line {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(56px, 11vw, 168px);
	line-height: 0.98;
	letter-spacing: -0.018em;
	margin: 0;
	color: var(--ivory);
	text-wrap: balance;
}
.hero-line em {
	font-style: italic;
	font-weight: 400;
	display: inline-block;
}
.hero-word {
	display: inline-block;
}

.hero-rule {
	display: block;
	width: 64px;
	height: 1px;
	background: var(--gold);
	transform-origin: left;
	transform: scaleX(0);
	animation: rule-draw 0.7s var(--ease) forwards;
	animation-delay: 1.5s;
	box-shadow: 0 0 12px rgba(184, 153, 104, 0.4);
}
@keyframes rule-draw { to { transform: scaleX(1); } }

.hero-sub {
	font-family: var(--font-sans);
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1.6;
	color: rgba(242, 234, 216, 0.62);
	margin: 0;
	max-width: 36ch;
}

.hero-scroll {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	opacity: 0;
	animation: fade-in 1.6s var(--ease) 3s forwards;
}
.hero-scroll-line {
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, rgba(242, 234, 216, 0.55), transparent);
	display: block;
	animation: scroll-line 4s ease-in-out infinite;
	transform-origin: top;
}
@keyframes scroll-line {
	0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
	50%      { transform: scaleY(1);   opacity: 1; }
}
@keyframes fade-in { to { opacity: 1; } }

/* Hero cinematic — photo as full-bleed background, text floats over */
.hero-cinematic {
	align-items: stretch;
	text-align: left;
	padding: 0;
	overflow: hidden;
}
.hero-photo {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, rgba(0,0,0,0.4) 80%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 0%, black 50%, rgba(0,0,0,0.4) 80%, transparent 100%);
}
.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% center;
	display: block;
	will-change: transform;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(105deg, rgba(10,7,6,0.92) 0%, rgba(10,7,6,0.55) 32%, rgba(10,7,6,0.12) 58%, transparent 75%),
		linear-gradient(180deg, rgba(10,7,6,0.4) 0%, transparent 45%);
	pointer-events: none;
}
.hero-content {
	position: relative;
	z-index: 8;
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	padding: 140px var(--col-pad) 140px;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}
.hero-cinematic .hero-stack {
	align-items: flex-start;
	text-align: left;
	max-width: 100%;
}
.hero-cinematic .hero-line {
	word-spacing: -0.18em;
}
.hero-cinematic .hero-line .hero-word + .hero-word {
	margin-left: 0;
}
.hero-cinematic .hero-line {
	font-size: clamp(48px, 9vw, 140px);
	letter-spacing: -0.02em;
	line-height: 0.94;
	text-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.hero-cinematic .hero-sub {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(18px, 2.4vw, 36px);
	line-height: 1.32;
	color: rgba(242, 234, 216, 0.95);
	max-width: 28ch;
	text-shadow: 0 4px 22px rgba(0,0,0,0.5);
	letter-spacing: -0.005em;
	margin: 0;
}
.hero-cinematic .hero-rule {
	width: 96px;
	box-shadow: 0 0 18px rgba(184, 153, 104, 0.55);
}

.hero-sub-word {
	display: inline-block;
}

/* Hero text entry — name rises + unblurs, then rule draws, then subtitle rises */
.hero-line {
	opacity: 0;
	transform: translateY(24px);
	filter: blur(14px);
	will-change: filter, opacity, transform;
	animation: hero-rise-unblur 1.0s var(--ease) 0.4s forwards;
}
.hero-cinematic .hero-sub {
	opacity: 0;
	transform: translateY(28px);
	filter: blur(8px);
	will-change: transform, filter, opacity;
	animation: hero-rise-unblur 1.1s var(--ease) 2.0s forwards;
}
@keyframes hero-rise-unblur {
	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}
.hero-scroll { z-index: 8; }

/* Floating warm motes — atmospheric particles */
.motes {
	position: fixed;
	inset: 0;
	z-index: 8;
	pointer-events: none;
	overflow: hidden;
	mix-blend-mode: screen;
}
.mote {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(184,153,104,0.9), transparent 65%);
	filter: blur(1px);
	opacity: 0.5;
	will-change: transform, opacity;
}
.mote.mote-large {
	width: 8px;
	height: 8px;
	filter: blur(2px);
}
.mote.mote-tiny {
	width: 2px;
	height: 2px;
	filter: blur(0.5px);
}

/* Cedar mark — subtle Lebanon nod in section eyebrow */
.cedar-mark {
	display: inline-flex;
	width: 14px;
	height: 14px;
	color: var(--gold);
	opacity: 0.7;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
}
.cedar-mark svg { width: 100%; height: 100%; fill: currentColor; }

/* Image reveal helper — JS adds .ph-reveal initially, GSAP unclips */
.ph-reveal {
	clip-path: inset(0 0 100% 0);
}

/* Voicenote watermark — Arabic-inspired star tile, very faint */
.voicenote { position: relative; }
.voicenote-pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='none' stroke='%237A4F2C' stroke-width='0.7' opacity='0.6'><polygon points='40,8 48,32 72,40 48,48 40,72 32,48 8,40 32,32'/><circle cx='40' cy='40' r='6'/></g></svg>");
	background-size: 96px 96px;
	background-repeat: repeat;
	opacity: 0.06;
}
.voicenote-inner { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────────────────────
   PILLARS
───────────────────────────────────────────────────────────────────── */
.pillars {
	position: relative;
	z-index: 5;
	padding: 140px var(--col-pad) 120px;
	max-width: 1400px;
	margin: 0 auto;
}

.section-eyebrow {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 80px;
}
.section-rule {
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, rgba(242, 234, 216, 0.18), transparent);
}

.pillar-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.pillar-item {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(40px, 8vw, 120px);
	padding: 80px 0;
	border-top: 1px solid rgba(242, 234, 216, 0.1);
	align-items: center;
}
.pillar-item:first-child { border-top: none; }
.pillar-item:last-child { border-bottom: 1px solid rgba(242, 234, 216, 0.1); }

.pillar-item:nth-child(even) {
	grid-template-columns: 1.1fr 1fr;
}
.pillar-item:nth-child(even) .pillar-image { order: 2; }
.pillar-item:nth-child(even) .pillar-text  { order: 1; }

.pillar-image { position: relative; }

.pillar-text {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 36rem;
}

.pillar-num { color: rgba(242, 234, 216, 0.45); }

.pillar-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(40px, 5vw, 76px);
	line-height: 1.05;
	letter-spacing: -0.012em;
	margin: 0;
	transition: color 1.4s var(--ease), text-shadow 1.4s var(--ease);
}

.pillar-title.is-spotlit,
.feature-title.is-spotlit {
	color: var(--ivory);
	text-shadow: 0 0 34px rgba(184, 153, 104, 0.28);
}

.pillar-subtitle {
	color: var(--gold);
	font-family: var(--font-display);
	font-size: clamp(16px, 1.35vw, 20px);
	font-style: italic;
	line-height: 1.35;
	margin: -4px 0 0;
	max-width: 34ch;
	opacity: 0.9;
}

.pillar-line {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(18px, 1.6vw, 22px);
	line-height: 1.4;
	color: var(--ivory);
	margin: 0;
	opacity: 0.9;
}

.pillar-note {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.7;
	color: rgba(242, 234, 216, 0.62);
	margin: 0;
	max-width: 36ch;
}

.pillar-honors {
	font-family: var(--font-sans);
	font-size: 14px;
	line-height: 1.7;
	color: rgba(242, 234, 216, 0.72);
	margin: 0;
	max-width: 38ch;
	padding-top: 4px;
	border-left: 1px solid rgba(184, 153, 104, 0.35);
	padding-left: 18px;
}

.pillar-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding-top: 14px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ivory);
	align-self: flex-start;
	position: relative;
	transition: color 600ms var(--ease);
}
.pillar-link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 24px;
	height: 1px;
	background: var(--gold);
	transition: width 800ms var(--ease);
}
.pillar-link:hover { color: var(--gold); }
.pillar-link:hover::before { width: 64px; }
.pillar-arrow {
	transition: transform 600ms var(--ease);
	margin-left: 24px;
}
.pillar-link:hover .pillar-arrow { transform: translateX(8px); }

.pillar-link-bio {
	margin-top: 18px;
}
.pillar-link-bio::before { top: 28px; }

.pillar-listen {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 34rem;
	padding-top: 10px;
}

.pillar-listen .micro-caption {
	color: rgba(242, 234, 216, 0.5);
	letter-spacing: 0.18em;
}

.listen-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
}

.listen-link {
	align-items: center;
	color: var(--ivory);
	display: inline-flex;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	gap: 8px;
	letter-spacing: 0.22em;
	padding-bottom: 9px;
	position: relative;
	text-transform: uppercase;
	transition: color 600ms var(--ease);
}

.listen-icon {
	color: var(--gold);
	display: block;
	fill: currentColor;
	flex: 0 0 20px;
	height: 20px;
	opacity: 0.88;
	transition: opacity 600ms var(--ease), transform 600ms var(--ease);
	width: 20px;
}

.listen-link:hover .listen-icon {
	opacity: 1;
	transform: translateY(-1px);
}

.listen-icon-cut {
	fill: var(--ink);
}

.listen-icon-outline {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.listen-icon-line {
	fill: none;
	stroke: var(--ink);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.35;
}

.listen-link::after {
	background: linear-gradient(90deg, var(--gold), transparent);
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	opacity: 0.7;
	position: absolute;
	right: 0;
	transform: scaleX(0.38);
	transform-origin: left center;
	transition: opacity 600ms var(--ease), transform 800ms var(--ease);
}

.listen-link:hover {
	color: var(--gold);
}

.listen-link:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.listen-arrow {
	display: none;
}

/* ─────────────────────────────────────────────────────────────────────
   PLACEHOLDER IMAGES
───────────────────────────────────────────────────────────────────── */
.ph {
	position: relative;
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--smoke);
	border: 1px solid rgba(242, 234, 216, 0.06);
}
.ph-tall { aspect-ratio: 3 / 4; }
.ph-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	backface-visibility: hidden;
	will-change: transform;
}

/* Real-photo treatment — hero-style, dissolves into the page on the inside edge */
.ph-photo {
	--photo-fade-direction: to right;
	border: none;
	border-radius:15px;
	background: transparent;
	box-shadow: none;
	contain: paint;
	isolation: isolate;
	overflow: hidden;
	/* Default: image sits on the LEFT of the row, fade to the RIGHT toward text */
	-webkit-mask-image: linear-gradient(var(--photo-fade-direction), black 0%, black 58%, rgba(0,0,0,0.82) 72%, rgba(0,0,0,0.34) 90%, transparent 100%);
	mask-image: linear-gradient(var(--photo-fade-direction), black 0%, black 58%, rgba(0,0,0,0.82) 72%, rgba(0,0,0,0.34) 90%, transparent 100%);
}
.ph-photo .ph-img {
	height: calc(100% + 4px);
	left: -2px;
	max-width: none;
	position: absolute;
	top: -2px;
	width: calc(100% + 4px);
}
.ph-photo::after {
	background: linear-gradient(var(--photo-fade-direction), transparent 50%, rgba(10, 7, 6, 0.18) 72%, rgba(10, 7, 6, 0.76) 100%);
	content: "";
	inset: -2px;
	mix-blend-mode: multiply;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}
.pillar-item:nth-child(even) .ph-photo {
	--photo-fade-direction: to left;
	/* Image on the RIGHT, fade to the LEFT toward text */
	-webkit-mask-image: linear-gradient(var(--photo-fade-direction), black 0%, black 58%, rgba(0,0,0,0.82) 72%, rgba(0,0,0,0.34) 90%, transparent 100%);
	mask-image: linear-gradient(var(--photo-fade-direction), black 0%, black 58%, rgba(0,0,0,0.82) 72%, rgba(0,0,0,0.34) 90%, transparent 100%);
}
.ph-photo .ph-grain {
	position: absolute;
	inset: -2px;
	background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 3px 3px;
	mix-blend-mode: overlay;
	opacity: 0.18;
	z-index: 2;
	pointer-events: none;
}

.ph-glow { position: absolute; inset: 0; }
.ph-veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(10, 7, 6, 0.6) 100%);
}
.ph-grain {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 3px 3px;
	mix-blend-mode: overlay;
	opacity: 0.4;
}

.ph-warm-portrait .ph-glow {
	background:
		radial-gradient(ellipse 80% 60% at 30% 30%, rgba(184, 153, 104, 0.55), transparent 60%),
		radial-gradient(ellipse 60% 80% at 70% 80%, rgba(122, 79, 44, 0.55), transparent 65%),
		linear-gradient(135deg, #2a1a12 0%, #0f0a08 100%);
}
.ph-warm-interior .ph-glow {
	background:
		radial-gradient(ellipse 100% 50% at 50% 0%, rgba(184, 153, 104, 0.45), transparent 70%),
		linear-gradient(180deg, #1f1612 0%, #0a0706 100%);
}
.ph-warm-stage .ph-glow {
	background:
		radial-gradient(ellipse 80% 40% at 50% 100%, rgba(122, 79, 44, 0.7), transparent 70%),
		radial-gradient(circle at 50% 100%, rgba(184, 153, 104, 0.4), transparent 50%),
		linear-gradient(180deg, #0a0706 30%, #2a1a12 100%);
}
.ph-warm-architecture .ph-glow {
	background:
		linear-gradient(110deg, rgba(184, 153, 104, 0.18) 0%, transparent 35%),
		radial-gradient(ellipse 50% 80% at 80% 50%, rgba(122, 79, 44, 0.55), transparent 65%),
		linear-gradient(180deg, #1a110d 0%, #0a0706 100%);
}
.ph-warm-cathedral .ph-glow {
	background:
		radial-gradient(ellipse 70% 90% at 50% 100%, rgba(184, 153, 104, 0.7), transparent 70%),
		radial-gradient(ellipse 100% 40% at 50% 0%, rgba(122, 79, 44, 0.4), transparent 65%),
		linear-gradient(180deg, #0a0706 0%, #1a110d 50%, #2a1a12 100%);
}

.ph-caption {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	z-index: 2;
	opacity: 0.7;
}
.ph-caption .micro-caption {
	font-size: 10px;
	letter-spacing: 0.2em;
	line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────────────
   FEATURE
───────────────────────────────────────────────────────────────────── */
.feature {
	position: relative;
	z-index: 5;
	padding: 120px var(--col-pad) 140px;
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(40px, 8vw, 100px);
	align-items: center;
}

.feature-image .ph { aspect-ratio: 3 / 4; }

.feature-video-trigger {
	background: none;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: block;
	height: 100%;
	inset: 0;
	padding: 0;
	position: absolute;
	width: 100%;
	z-index: 4;
}
.feature-play {
	align-items: center;
	background: rgba(10, 7, 6, 0.34);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(242, 234, 216, 0.46);
	border-radius: 50%;
	box-shadow: 0 0 36px rgba(184, 153, 104, 0.26), inset 0 0 18px rgba(242, 234, 216, 0.08);
	display: inline-flex;
	height: clamp(64px, 7vw, 92px);
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: background 600ms var(--ease), border-color 600ms var(--ease), box-shadow 600ms var(--ease), transform 600ms var(--ease);
	width: clamp(64px, 7vw, 92px);
	z-index: 3;
}
.feature-play::before {
	border-bottom: 11px solid transparent;
	border-left: 17px solid var(--ivory);
	border-top: 11px solid transparent;
	content: "";
	margin-left: 4px;
}
.feature-video-trigger:hover .feature-play,
.feature-video-trigger:focus-visible .feature-play {
	background: rgba(184, 153, 104, 0.24);
	border-color: rgba(242, 234, 216, 0.72);
	box-shadow: 0 0 52px rgba(184, 153, 104, 0.42), inset 0 0 20px rgba(242, 234, 216, 0.12);
	transform: translate(-50%, -50%) scale(1.05);
}
.feature-video-trigger:focus-visible {
	outline: 1px solid var(--gold);
	outline-offset: 8px;
}

.feature-text { display: flex; flex-direction: column; gap: 24px; }
.feature-text > .micro-caption:not(.feature-caption) { display: none; }

.feature-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(44px, 5.6vw, 96px);
	line-height: 1;
	letter-spacing: -0.015em;
	margin: 0;
	color: var(--gold);
	text-wrap: balance;
}

.feature-deck {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(18px, 1.5vw, 22px);
	line-height: 1.55;
	color: var(--ivory);
	max-width: 36ch;
	margin: 0;
}

.feature-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(242, 234, 216, 0.55);
	margin: 0;
	padding-top: 12px;
}
.dot-sep { color: var(--gold); opacity: 0.7; }

.feature-link {
	display: inline-flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 16px;
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	align-self: flex-start;
	position: relative;
}
.feature-link-rule {
	display: block;
	width: 64px;
	height: 1px;
	background: var(--gold);
	transition: width 800ms var(--ease);
}
.feature-link:hover .feature-link-rule { width: 140px; }

.video-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding: var(--col-pad);
	pointer-events: none;
	position: fixed;
	transition: opacity 500ms var(--ease), visibility 500ms var(--ease);
	visibility: hidden;
	z-index: 300;
}
.video-modal.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
.video-modal-backdrop {
	background: rgba(6, 4, 3, 0.86);
	backdrop-filter: blur(18px);
	inset: 0;
	position: absolute;
}
.video-modal-panel {
	position: relative;
	width: min(1080px, 100%);
	z-index: 1;
}
.video-modal-close {
	align-items: center;
	background: rgba(10, 7, 6, 0.54);
	border: 1px solid rgba(242, 234, 216, 0.22);
	border-radius: 50%;
	color: var(--ivory);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-display);
	font-size: 34px;
	height: 46px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 0;
	top: -60px;
	transition: border-color 500ms var(--ease), color 500ms var(--ease), transform 500ms var(--ease);
	width: 46px;
}
.video-modal-close:hover {
	border-color: rgba(184, 153, 104, 0.72);
	color: var(--gold);
	transform: rotate(8deg);
}
.video-frame {
	aspect-ratio: 16 / 9;
	background: #000;
	box-shadow: 0 28px 120px rgba(0, 0, 0, 0.55);
	overflow: hidden;
	width: 100%;
}
.video-frame iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────
   VOICE NOTE
───────────────────────────────────────────────────────────────────── */
.voicenote {
	position: relative;
	z-index: 5;
	background: var(--ivory);
	color: var(--type-ink);
	padding: clamp(80px, 12vh, 160px) var(--col-pad);
}
.voicenote::before, .voicenote::after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	height: 80px;
	pointer-events: none;
	z-index: 1;
}
.voicenote::before {
	top: -80px;
	background: linear-gradient(to bottom, transparent, rgba(122, 79, 44, 0.18) 60%, var(--ivory));
}
.voicenote::after {
	bottom: -80px;
	background: linear-gradient(to top, transparent, rgba(122, 79, 44, 0.18) 60%, var(--ivory));
}

.voicenote-inner {
	max-width: var(--reading-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.voicenote-body {
	font-family: var(--font-display);
	font-weight: 400;
	font-style: normal;
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.55;
	color: var(--type-ink);
	margin: 0;
	letter-spacing: -0.005em;
}
.voicenote-body em { color: var(--amber); font-style: italic; }

.voicenote-sign {
	display: flex;
	flex-direction: column;
	font-family: var(--font-display);
	font-size: 20px;
	gap: 14px;
	color: var(--amber);
	align-self: flex-start;
}
.voicenote-sign span {
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.voicenote-sign em {
	font-size: 24px;
}

/* ─────────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────────── */
.site-footer {
	position: relative;
	z-index: 5;
	background: #060403;
	padding: 120px var(--col-pad) 48px;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(40px, 8vw, 100px);
	align-items: start;
	border-top: 1px solid rgba(242, 234, 216, 0.06);
}

.footer-mark {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.footer-mark > .micro-caption { display: none; }
.footer-wordmark {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(40px, 4vw, 64px);
	line-height: 1;
	margin: 0;
	color: var(--ivory);
	letter-spacing: -0.01em;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
	border-top: 1px solid rgba(242, 234, 216, 0.12);
	padding-top: 24px;
	min-width: 0;
	max-width: 36rem;
}
.footer-contact a {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(20px, 2.4vw, 34px);
	color: var(--gold);
	transition: color 600ms var(--ease);
	word-break: break-word;
	overflow-wrap: anywhere;
	line-height: 1.1;
}
.footer-contact a:hover { color: var(--ivory); }
.footer-contact p {
	color: rgba(242, 234, 216, 0.58);
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
	max-width: 34rem;
}

.footer-base {
	grid-column: 1 / -1;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 80px;
	padding-top: 24px;
	border-top: 1px solid rgba(242, 234, 216, 0.08);
}
.footer-base .micro-caption:not(:first-child) { display: none; }
.index-foot { display: none; }

/* ─────────────────────────────────────────────────────────────────────
   PAGE / POST FALLBACKS (non-front pages keep working)
───────────────────────────────────────────────────────────────────── */
.tk-page {
	background: var(--ivory);
	color: var(--type-ink);
	min-height: 70vh;
	padding: 180px var(--col-pad) 120px;
}
.tk-entry h1 {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(42px, 6vw, 86px);
	margin: 0 0 24px;
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE
───────────────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
	.topbar {
		grid-template-columns: 1fr auto;
		min-height: 64px;
	}
	.topbar-nav,
	.topbar-socials {
		display: none;
	}
	.topbar-index {
		display: inline-flex;
	}

	.hero-cinematic .hero-stack { max-width: 100%; }
	.hero-overlay {
		background:
			linear-gradient(180deg, rgba(10,7,6,0.85) 0%, rgba(10,7,6,0.7) 50%, rgba(10,7,6,0.85) 100%);
	}

	.pillar-item, .pillar-item:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.pillar-item:nth-child(even) .pillar-image { order: 0; }
	.pillar-item:nth-child(even) .pillar-text  { order: 1; }
	.pillar-image .ph { aspect-ratio: 4 / 3; }

	.feature { grid-template-columns: 1fr; }
	.video-modal {
		padding: 24px;
	}
	.video-modal-close {
		right: 0;
		top: -54px;
	}
	.site-footer { grid-template-columns: 1fr; }
	.footer-contact { max-width: 100%; }

	.index-item a {
		grid-template-columns: 36px 1fr;
		gap: 16px;
	}
	.index-note { display: none; }
}

/* Lock body scroll when index overlay is open */
body.tk-no-scroll,
body.video-modal-open {
	overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────────────
   TYPOGRAPHY OVERRIDES — Tenor Sans is upright-only
───────────────────────────────────────────────────────────────────── */
em,
.hero-line em,
.hero-cinematic .hero-sub,
.pillar-line,
.pillar-title em,
.feature-deck,
.feature-deck em,
.feature-title em,
.voicenote-body em,
.voicenote-sign,
.footer-path a,
.footer-wordmark em,
.footer-wordmark,
.index-label,
.index-close-x,
.tk-entry h1 {
	font-style: normal;
}

/* ─────────────────────────────────────────────────────────────────────
   BIOGRAPHY PAGE
───────────────────────────────────────────────────────────────────── */

.bio {
	display: block;
	position: relative;
}

/* Hero ----------------------------------------------------------- */
.bio-hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 0 var(--col-pad) clamp(48px, 8vh, 96px);
}

.bio-hero-photo {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
	will-change: transform;
}

.bio-hero-img {
	width: 100%;
	height: 115%;
	object-fit: cover;
	object-position: center top;
	filter: saturate(0.92) contrast(1.05);
	transform: translateY(0) scale(1.04);
}

.bio-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 80% 60% at 30% 70%, rgba(10, 7, 6, 0.4), transparent 70%),
		linear-gradient(180deg, rgba(10, 7, 6, 0.35) 0%, rgba(10, 7, 6, 0.55) 60%, rgba(10, 7, 6, 0.92) 100%);
}

.bio-hero-content {
	position: relative;
	z-index: 2;
	max-width: 880px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.bio-eyebrow {
	color: var(--gold);
	letter-spacing: 0.32em;
}

.bio-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(64px, 11vw, 168px);
	line-height: 0.95;
	letter-spacing: -0.02em;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0 0.32em;
	color: var(--ivory);
}

.bio-title em {
	font-style: italic;
	font-family: "Cormorant Garamond", serif;
}

.bio-title-word {
	display: inline-block;
	opacity: 0;
	transform: translateY(28px);
	will-change: transform, opacity;
}

.bio-subtitle {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.4;
	color: rgba(242, 234, 216, 0.86);
	margin: 0;
	max-width: 40ch;
	opacity: 0;
	transform: translateY(20px);
}

.bio-rule {
	display: block;
	width: 0;
	height: 1px;
	background: var(--gold);
	opacity: 0.6;
}

.bio-scroll-cue {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: rgba(242, 234, 216, 0.7);
	opacity: 0;
	transition: color 600ms var(--ease);
	margin-top: 16px;
}

.bio-scroll-cue:hover { color: var(--gold); }

.bio-scroll-line {
	display: inline-block;
	width: 44px;
	height: 1px;
	background: rgba(242, 234, 216, 0.4);
	transition: width 800ms var(--ease), background-color 600ms var(--ease);
}

.bio-scroll-cue:hover .bio-scroll-line {
	width: 96px;
	background: var(--gold);
}

/* Story prose ---------------------------------------------------- */
.bio-story {
	padding: clamp(96px, 14vh, 168px) var(--col-pad);
	display: flex;
	justify-content: center;
}

.bio-story-inner {
	max-width: 64ch;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.bio-lede {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(22px, 2.1vw, 30px);
	line-height: 1.45;
	color: var(--ivory);
	margin: 0;
}

.bio-paragraph {
	font-family: var(--font-sans);
	font-size: clamp(16px, 1.15vw, 18px);
	line-height: 1.75;
	color: rgba(242, 234, 216, 0.82);
	margin: 0;
}

.bio-paragraph em {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	color: var(--ivory);
	font-size: 1.08em;
}

[data-bio-lines] > .bio-line {
	display: block;
	overflow: hidden;
}

[data-bio-lines] > .bio-line > span {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
	will-change: transform, opacity;
}

/* Honors --------------------------------------------------------- */
.bio-honors {
	padding: clamp(72px, 10vh, 128px) var(--col-pad);
	background:
		radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 153, 104, 0.08), transparent 70%);
	border-top: 1px solid rgba(242, 234, 216, 0.08);
	border-bottom: 1px solid rgba(242, 234, 216, 0.08);
}

.bio-honors-inner {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.bio-section-eyebrow {
	color: var(--gold);
	letter-spacing: 0.32em;
	opacity: 0;
	transform: translateY(14px);
}

.bio-section-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(36px, 4.5vw, 64px);
	line-height: 1.05;
	letter-spacing: -0.012em;
	margin: 0;
	color: var(--ivory);
	opacity: 0;
	transform: translateY(18px);
}

.bio-section-title em {
	font-style: italic;
	font-family: "Cormorant Garamond", serif;
}

.bio-honors-grid {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(184, 153, 104, 0.22);
}

.bio-honor {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: clamp(20px, 3vw, 48px);
	align-items: baseline;
	padding: clamp(28px, 4.5vh, 44px) 0;
	border-bottom: 1px solid rgba(184, 153, 104, 0.22);
	position: relative;
	opacity: 0;
	transform: translateY(24px);
	background: transparent;
}

.bio-honor::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 1px;
	background: var(--gold);
	opacity: 0;
	transition: width 1.4s var(--ease), opacity 800ms var(--ease);
}

.bio-honor.is-revealed::before {
	width: 64px;
	opacity: 0.5;
}

.bio-honor-num {
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.32em;
	color: var(--gold);
	text-transform: uppercase;
	padding-top: 4px;
}

.bio-honor-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bio-honor-label {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.25;
	color: var(--ivory);
	margin: 0;
}

.bio-honor-note {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.65;
	color: rgba(242, 234, 216, 0.62);
	margin: 0;
	max-width: 56ch;
}

@media (max-width: 640px) {
	.bio-honor {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.bio-honor-num {
		padding-top: 0;
	}
}

/* Stages list ---------------------------------------------------- */
.bio-stages {
	padding: clamp(96px, 12vh, 144px) var(--col-pad);
}

.bio-stages-inner {
	max-width: 880px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.bio-stages-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(242, 234, 216, 0.12);
}

.bio-stage {
	display: flex;
	align-items: baseline;
	gap: 32px;
	padding: 22px 0;
	border-bottom: 1px solid rgba(242, 234, 216, 0.12);
	opacity: 0;
	transform: translateX(-20px);
	will-change: transform, opacity;
	transition: color 600ms var(--ease);
}

.bio-stage:hover { color: var(--gold); }

.bio-stage-num {
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.22em;
	color: var(--gold);
	min-width: 36px;
	opacity: 0.8;
}

.bio-stage-name {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.3;
	color: var(--ivory);
}

/* FAQ ------------------------------------------------------------ */
.bio-faq {
	padding: clamp(72px, 10vh, 128px) var(--col-pad);
	border-top: 1px solid rgba(242, 234, 216, 0.08);
}

.bio-faq-inner {
	max-width: 880px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.bio-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid rgba(242, 234, 216, 0.12);
}

.bio-faq-item {
	border-bottom: 1px solid rgba(242, 234, 216, 0.12);
	padding: 22px 0;
}

.bio-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 24px;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(18px, 1.6vw, 24px);
	line-height: 1.35;
	color: var(--ivory);
	transition: color 600ms var(--ease);
}

.bio-faq-question::-webkit-details-marker { display: none; }
.bio-faq-question::marker { display: none; }

.bio-faq-question:hover { color: var(--gold); }

.bio-faq-icon {
	font-family: var(--font-sans);
	font-weight: 300;
	font-size: 22px;
	line-height: 1;
	color: var(--gold);
	transition: transform 600ms var(--ease);
	flex-shrink: 0;
}

.bio-faq-item[open] .bio-faq-icon {
	transform: rotate(45deg);
}

.bio-faq-answer {
	padding-top: 16px;
	padding-right: 48px;
}

.bio-faq-answer p {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.75;
	color: rgba(242, 234, 216, 0.78);
	margin: 0;
}

/* CTA ------------------------------------------------------------ */
.bio-cta {
	padding: clamp(96px, 14vh, 168px) var(--col-pad) clamp(120px, 16vh, 200px);
	background:
		radial-gradient(ellipse 60% 50% at 50% 100%, rgba(122, 79, 44, 0.15), transparent 70%);
	text-align: center;
}

.bio-cta-inner {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.bio-cta-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.1;
	margin: 0;
	opacity: 0;
	transform: translateY(18px);
}

.bio-cta-title em {
	font-style: italic;
	font-family: "Cormorant Garamond", serif;
}

.bio-cta-line {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.7;
	color: rgba(242, 234, 216, 0.68);
	margin: 0 0 16px;
	opacity: 0;
	transform: translateY(14px);
}

.bio-cta-links {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
	max-width: 480px;
}

.bio-cta-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border: 1px solid rgba(242, 234, 216, 0.12);
	border-radius: 2px;
	font-family: var(--font-sans);
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--ivory);
	opacity: 0;
	transform: translateY(14px);
	transition: border-color 600ms var(--ease), color 600ms var(--ease), background-color 600ms var(--ease), transform 600ms var(--ease);
}

.bio-cta-link:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(184, 153, 104, 0.04);
}

.bio-cta-arrow {
	transition: transform 600ms var(--ease);
}

.bio-cta-link:hover .bio-cta-arrow {
	transform: translateX(8px);
}

/* Reduced-motion fallback for bio page --------------------------- */
@media (prefers-reduced-motion: reduce) {
	.bio-title-word,
	.bio-subtitle,
	.bio-scroll-cue,
	.bio-section-eyebrow,
	.bio-section-title,
	.bio-honor,
	.bio-stage,
	.bio-cta-title,
	.bio-cta-line,
	.bio-cta-link {
		opacity: 1 !important;
		transform: none !important;
	}
	.bio-rule { width: 96px; }
}

/* ─────────────────────────────────────────────────────────────────────
   PREFERS REDUCED MOTION
───────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
