/**
 * Al-Ameer Nexus — Design System v2
 * Editorial dark hero · glass nav · bento grid · teal/amber accents
 */

:root {
	--ink: #0a1628;
	--ink-soft: #122038;
	--ink-muted: #5c6b82;
	--surface: #f4f6fa;
	--surface-2: #e8edf5;
	--white: #ffffff;
	--teal: #0f766e;
	--teal-light: #14b8a6;
	--gold: #c9a227;
	--gold-light: #f5d78e;
	--amber: #d4a017;
	--amber-soft: #f0c75a;
	--copper: #b8860b;
	--glass: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(255, 255, 255, 0.14);
	--shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
	--shadow-sm: 0 8px 24px rgba(10, 22, 40, 0.08);
	--shadow-lg: 0 32px 80px rgba(10, 22, 40, 0.16);
	--radius: 18px;
	--radius-sm: 12px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-full: 999px;
	--border: #dde4ef;
	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
	--nav-h: 72px;
	--topbar-h: 36px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--text: #1a2740;
	--text-soft: #5c6b82;
	--bg: var(--surface);
	--card: var(--white);
	--nav-bg: rgba(255, 255, 255, 0.88);
	--hero-bg: linear-gradient(145deg, #0a1628 0%, #122038 45%, #0f2744 100%);
	--hero-text: #f8fafc;
}

[data-theme="dark"] {
	--surface: #0f172a;
	--surface-2: #1e293b;
	--white: #1e293b;
	--text: #e2e8f0;
	--text-soft: #94a3b8;
	--bg: #0c1222;
	--card: #151d30;
	--nav-bg: rgba(12, 18, 34, 0.82);
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--text);
	line-height: 1.65;
	overflow-x: hidden;
	cursor: auto;
	-webkit-font-smoothing: antialiased;
	transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.screen-reader-text { position: absolute; left: -9999px; }

/* Top bar */
.nav-topbar {
	position: fixed; top: 0; left: 0; right: 0; z-index: 1201;
	height: var(--topbar-h); background: var(--ink); color: #cbd5e1;
	font-size: 0.78rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-topbar-inner {
	height: 100%; display: flex; align-items: center; justify-content: flex-end; gap: 24px;
}
.nav-topbar-item { display: inline-flex; align-items: center; gap: 8px; opacity: 0.9; }
.nav-topbar-item svg { width: 14px; height: 14px; color: var(--gold-light); }
.nav-topbar-link { transition: color 0.25s; }
.nav-topbar-link:hover { color: var(--gold-light); }

/* Navigation */
.site-nav {
	position: fixed; top: calc(var(--topbar-h) + 10px); left: 0; right: 0; z-index: 1200;
	padding: 0 20px; pointer-events: none;
}
.nav-shell {
	pointer-events: auto;
	position: relative;
	z-index: 2;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	height: var(--nav-h); padding: 0 10px 0 16px;
	background: var(--nav-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255,255,255,0.65); border-radius: var(--radius-full);
	box-shadow: var(--shadow);
	transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.4s;
}
.site-nav.is-scrolled .nav-shell {
	box-shadow: var(--shadow-lg);
	background: rgba(255,255,255,0.96);
}
.site-nav.is-hidden .nav-shell { transform: translateY(calc(-100% - var(--topbar-h) - 20px)); }
.brand-logo {
	display: flex; align-items: center; gap: 14px; flex-shrink: 0;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.brand-logo:hover { transform: translateY(-1px); opacity: 0.94; }
.brand-mark {
	width: 46px; height: 46px; border-radius: 50%;
	box-shadow:
		0 0 0 1px rgba(201, 162, 39, 0.22),
		0 8px 20px rgba(10, 22, 40, 0.18);
	flex-shrink: 0;
	background: #0a1628;
}
.brand-text {
	display: flex; flex-direction: column; line-height: 1.05;
	gap: 4px;
}
.brand-name {
	font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
	color: var(--ink); letter-spacing: -0.02em;
}
.brand-tag {
	font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.24em;
	color: var(--gold); font-style: normal; font-weight: 700;
}
.brand-logo--footer .brand-mark {
	box-shadow:
		0 0 0 1px rgba(245, 215, 142, 0.28),
		0 10px 24px rgba(0, 0, 0, 0.3);
}
.brand-logo--footer .brand-name { color: #fff; }
.brand-logo--footer .brand-tag { color: var(--gold-light); }
.nav-center { flex: 1; display: flex; justify-content: center; min-width: 0; }
.nav-list { display: flex; gap: 2px; flex-wrap: nowrap; }
.nav-list a {
	display: block; padding: 10px 14px; border-radius: var(--radius-full);
	font-size: 0.84rem; font-weight: 600; color: var(--text-soft);
	transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
	position: relative;
}
.nav-list a span { position: relative; z-index: 1; }
.nav-list a:hover,
.nav-list .current-menu-item a,
.nav-list .current_page_item a {
	color: var(--ink); background: rgba(201, 162, 39, 0.12);
}
.nav-list .current-menu-item a,
.nav-list .current_page_item a {
	box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.25);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
	width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--surface-2);
	background: var(--card); cursor: pointer; font-size: 1rem;
	display: grid; place-items: center; transition: transform 0.25s;
}
.theme-toggle:hover { transform: scale(1.05); }
[data-theme="dark"] .theme-toggle-icon--sun { display: none; }
[data-theme="light"] .theme-toggle-icon--moon,
:root:not([data-theme]) .theme-toggle-icon--moon { display: none; }
.nav-burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; position: relative; }
.nav-burger span {
	display: block; width: 22px; height: 2px; background: var(--text); margin: 5px auto;
	transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-drawer {
	position: fixed; inset: 0; z-index: 1100;
	background: rgba(12,18,34,0.55);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	opacity: 0; visibility: hidden; transition: 0.35s;
	pointer-events: none; /* parent .site-nav uses pointer-events:none — must re-enable when open */
}
.mobile-drawer.is-open {
	opacity: 1; visibility: visible;
	pointer-events: auto;
}
.mobile-drawer-inner {
	position: absolute;
	top: calc(var(--topbar-h) + var(--nav-h) + 28px);
	left: 16px; right: 16px;
	max-height: calc(100vh - var(--topbar-h) - var(--nav-h) - 48px);
	overflow-y: auto; -webkit-overflow-scrolling: touch;
	background: var(--card); border-radius: var(--radius); padding: 20px;
	box-shadow: var(--shadow-lg); transform: translateY(-12px); transition: 0.35s;
	pointer-events: auto;
}
.mobile-drawer.is-open .mobile-drawer-inner { transform: translateY(0); }
.mobile-drawer .nav-list {
	flex-direction: column; margin-bottom: 16px; gap: 4px;
	flex-wrap: nowrap;
}
.mobile-drawer .nav-list a {
	padding: 14px 16px;
	display: block;
	width: 100%;
	touch-action: manipulation;
	-webkit-tap-highlight-color: rgba(201, 162, 39, 0.2);
}
.mobile-drawer .btn-full {
	display: flex; justify-content: center; width: 100%;
	touch-action: manipulation;
}

/* Buttons — navy & gold professional palette */
.btn {
	display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
	border-radius: var(--radius-full); font-weight: 600; font-size: 0.92rem;
	border: none; cursor: pointer; transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 0.85rem; }
.btn-glow {
	background: var(--ink); color: #fff;
	border: 1px solid rgba(201, 162, 39, 0.45);
	box-shadow: 0 10px 28px rgba(10, 22, 40, 0.22);
}
.btn-glow:hover {
	background: var(--ink-soft);
	border-color: var(--gold);
	box-shadow: 0 14px 36px rgba(10, 22, 40, 0.28);
}
.btn-glow svg { width: 18px; height: 18px; }
.btn-gold {
	background: linear-gradient(135deg, var(--gold), var(--amber-soft));
	color: var(--ink);
	box-shadow: 0 10px 28px rgba(201, 162, 39, 0.28);
}
.btn-gold:hover { box-shadow: 0 14px 36px rgba(201, 162, 39, 0.38); }
.btn-ghost {
	background: transparent; color: var(--hero-text); border: 1px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(201, 162, 39, 0.45); }
.btn-ghost-dark {
	background: transparent; color: var(--text); border: 1.5px solid var(--surface-2);
}
.section .btn-ghost,
.founder-actions .btn-ghost {
	color: var(--ink); border-color: rgba(10, 22, 40, 0.18);
}
.section .btn-ghost:hover,
.founder-actions .btn-ghost:hover {
	background: var(--ink); color: #fff; border-color: var(--ink);
}
.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.btn-outline {
	background: transparent; border: 1.5px solid var(--ink); color: var(--ink);
}
.btn-outline:hover {
	background: var(--ink); color: #fff; border-color: var(--ink);
}
.btn-nav {
	padding: 11px 20px; font-size: 0.82rem;
	background: var(--ink); color: #fff; border-radius: var(--radius-full);
	border: 1px solid rgba(201, 162, 39, 0.35);
}
.btn-nav:hover { background: var(--ink-soft); border-color: var(--gold); }
.site-main { padding-top: calc(var(--topbar-h) + var(--nav-h) + 28px); }
.is-front-page .site-main { padding-top: 0; }
.btn-full { width: 100%; justify-content: center; }

/* Hero Nexus */
.hero-nexus {
	position: relative; min-height: 100vh; display: flex; align-items: center;
	padding: calc(var(--topbar-h) + var(--nav-h) + 56px) 0 80px;
	background: var(--hero-bg); color: var(--hero-text); overflow: hidden;
}
.hero-photo {
	position: absolute; inset: 0; overflow: hidden;
}
.hero-photo-img {
	width: 100%; height: 100%; object-fit: cover; object-position: center;
	opacity: 0.42;
}
.hero-nexus--photo .hero-mesh::after {
	content: ''; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(15,23,42,0.55));
}
.hero-mesh { position: absolute; inset: 0; overflow: hidden; }
.mesh-orb {
	position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
	animation: float 12s ease-in-out infinite;
}
.mesh-orb--1 { width: 500px; height: 500px; background: var(--teal); top: -10%; left: -5%; }
.mesh-orb--2 { width: 400px; height: 400px; background: var(--amber); bottom: -10%; right: -5%; animation-delay: -4s; }
.mesh-orb--3 { width: 300px; height: 300px; background: #6366f1; top: 40%; left: 40%; animation-delay: -8s; opacity: 0.3; }
.mesh-grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
@keyframes float { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(20px, -20px); } }

.hero-nexus-inner {
	position: relative; z-index: 2;
	display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-chip {
	display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px;
	border-radius: var(--radius-full); background: var(--glass); border: 1px solid var(--glass-border);
	font-size: 0.82rem; color: #cbd5e1; margin-bottom: 28px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero-headline {
	font-family: var(--font-display); font-size: clamp(2.8rem, 6.5vw, 5rem);
	line-height: 1.02; font-weight: 600; margin-bottom: 24px;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line--accent {
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
	font-style: italic;
}
.hero-headline .line--thin {
	font-size: 0.42em; font-weight: 400; letter-spacing: 0.04em;
	color: #94a3b8; margin-top: 0.15em;
	-webkit-text-fill-color: #94a3b8; background: none;
}
.hero-lead { font-size: 1.1rem; color: #94a3b8; max-width: 520px; margin-bottom: 32px; line-height: 1.75; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-panel-card {
	background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--radius); padding: 28px; backdrop-filter: blur(16px);
	box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.hero-panel-top { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-panel-top strong { display: block; font-size: 1rem; }
.hero-panel-top span { font-size: 0.82rem; color: #94a3b8; }
.hero-panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--amber-soft); }
.hero-stat span { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-panel-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--teal-light); font-weight: 600; }
.hero-panel-link svg { width: 16px; height: 16px; }
.hero-scroll-hint {
	position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #64748b;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--teal-light), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0.3); opacity: 0.3; } 50% { transform: scaleY(1); opacity: 1; } }

/* Marquee */
.marquee-band {
	background: var(--ink-soft); color: #94a3b8; padding: 16px 0; overflow: hidden; border-block: 1px solid rgba(255,255,255,0.06);
}
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee-group { display: flex; align-items: center; gap: 32px; padding-right: 32px; white-space: nowrap; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; }
.marquee-dot { color: var(--teal-light); font-size: 0.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 88px 0; }
.section--compact { padding: 64px 0; }
.eyebrow {
	display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.16em; color: var(--gold); margin-bottom: 12px;
}
.eyebrow--light { color: var(--amber-soft); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--light .section-title,
.section-head--light .section-desc,
.section-head--light .eyebrow { color: #f8fafc; }
.section-head--light .section-title em { color: var(--gold-light); }
.section-head--light .section-desc { color: rgba(248, 250, 252, 0.78); }
.section-head--light .eyebrow { color: var(--gold-light); }
.section-head--center { text-align: center; margin-inline: auto; }
.section-title {
	font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.12; font-weight: 600; margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section:nth-child(even) { background: rgba(255,255,255,0.55); }
[data-theme="dark"] .section:nth-child(even) { background: rgba(255,255,255,0.02); }
.section-values,
.section-leadership,
.section-clients { background: transparent !important; }
.section-desc { color: var(--text-soft); font-size: 1.05rem; max-width: 56ch; }
.section-action { text-align: center; margin-top: 40px; }

/* Values — dark immersive band */
.section-values {
	position: relative; padding: 100px 0; overflow: hidden;
}
.section-values-bg {
	position: absolute; inset: 0; z-index: 0;
}
.section-values-photo {
	position: absolute; inset: -10% 0; background-size: cover; background-position: center;
	transform: scale(1.05); will-change: transform;
}
.section-values-pattern {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(201, 162, 39, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(201, 162, 39, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
}
.section-values-shade {
	position: absolute; inset: 0;
	background:
		linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(10, 22, 40, 0.88) 45%, rgba(15, 40, 60, 0.92) 100%);
}
.section-values-inner { position: relative; z-index: 1; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
	position: relative; padding: 28px 24px 26px; overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(201, 162, 39, 0.22);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(12px);
	transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.value-card:hover {
	transform: translateY(-8px);
	border-color: rgba(201, 162, 39, 0.55);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.value-card-icon svg {
	width: 32px; height: 32px; color: var(--gold-light);
	margin-bottom: 18px;
}
.value-card-num {
	display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
	color: var(--gold); margin-bottom: 10px;
}
.value-card h3 {
	font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; color: #fff;
}
.value-card p { font-size: 0.9rem; color: rgba(248, 250, 252, 0.78); line-height: 1.6; }
.value-card-glow {
	position: absolute; top: -40px; right: -40px; width: 120px; height: 120px;
	background: radial-gradient(circle, rgba(201, 162, 39, 0.25), transparent 70%);
	opacity: 0; transition: opacity 0.45s;
}
.value-card:hover .value-card-glow { opacity: 1; }

/* Bento Grid — image-forward practice cards */
.section-bento {
	position: relative;
	background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 22, 40, 0.03) 45%, var(--bg) 100%);
}
.section-bento--home { padding-top: 72px; }
.section-bento::before {
	content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
	background-image: radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.08), transparent 45%),
		radial-gradient(circle at 80% 80%, rgba(15, 118, 110, 0.06), transparent 40%);
}
.section-bento .container { position: relative; z-index: 1; }

.bento-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
	grid-auto-rows: minmax(300px, auto);
}
.bento-grid--preview .bento-card--featured {
	grid-column: span 2; min-height: 360px;
}
.bento-grid--preview .bento-card--wide { grid-column: span 2; }

.bento-card {
	position: relative; border-radius: var(--radius); overflow: hidden;
	border: 1px solid rgba(10, 22, 40, 0.08);
	box-shadow: var(--shadow);
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento-card--visual { min-height: 300px; color: #fff; }
.bento-card--large { grid-column: span 2; grid-row: span 2; min-height: 100%; }
.bento-card--wide { grid-column: span 2; }
.bento-card--medium { grid-column: span 1; }
.bento-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(201, 162, 39, 0.35);
}

.bento-card-bg {
	position: absolute; inset: 0; z-index: 0;
}
.bento-card-bg img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.65s var(--ease);
}
.bento-card-bg--fallback {
	background: linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 55%, #1a3a5c 100%);
}
.bento-card-shade {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0.55) 45%, rgba(10, 22, 40, 0.92) 100%);
}
.bento-card:hover .bento-card-bg img { transform: scale(1.07); }

.bento-card-content {
	position: relative; z-index: 2; height: 100%; min-height: 300px;
	padding: 26px 28px 28px;
	display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-card-top {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: auto; padding-bottom: 20px;
}
.bento-num {
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
	color: var(--gold-light); background: rgba(10, 22, 40, 0.45);
	padding: 6px 12px; border-radius: var(--radius-full);
	border: 1px solid rgba(201, 162, 39, 0.35);
}
.bento-icon svg {
	width: 28px; height: 28px; color: var(--gold-light);
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.bento-card h3 {
	font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem);
	margin-bottom: 8px; line-height: 1.25; text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.bento-card p {
	font-size: 0.88rem; color: rgba(248, 250, 252, 0.88); flex: 0;
	margin-bottom: 18px; line-height: 1.55;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.bento-btn {
	display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
	padding: 10px 18px; border-radius: var(--radius-full);
	font-size: 0.82rem; font-weight: 600;
	background: rgba(255, 255, 255, 0.95); color: var(--ink);
	border: 1px solid rgba(201, 162, 39, 0.35);
	transition: background 0.25s, color 0.25s, transform 0.25s;
}
.bento-btn svg { width: 15px; height: 15px; transition: transform 0.25s; }
.bento-btn:hover {
	background: var(--gold); color: var(--ink); transform: translateY(-1px);
}
.bento-card:hover .bento-btn svg { transform: translateX(3px); }

/* Legacy aliases — removed faint overlay cards */
.bento-card--has-image .bento-card-media { display: none; }
.bento-link { display: none; }

/* Founder spotlight */
.section-founder-spotlight { background: var(--card); }
.founder-spotlight-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.founder-orbit-card {
	position: relative; width: 280px; height: 280px; margin: 0 auto;
	display: grid; place-items: center;
}
.founder-avatar-xl {
	width: 140px; height: 140px; border-radius: 50%;
	background: linear-gradient(135deg, var(--teal), var(--ink));
	color: #fff; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
	display: grid; place-items: center; position: relative; z-index: 2;
	box-shadow: 0 20px 60px rgba(13, 148, 136, 0.4);
}
.founder-avatar-photo.founder-avatar-xl {
	display: block; background: none; font-size: inherit;
}
.founder-orbit-ring {
	position: absolute; inset: 0; border-radius: 50%;
	border: 1px dashed rgba(13, 148, 136, 0.35);
	animation: spin 20s linear infinite;
}
.founder-meta-cards { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.meta-card {
	padding: 16px 24px; background: var(--bg); border-radius: var(--radius-sm); text-align: center;
	border: 1px solid var(--surface-2);
}
.meta-card strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal); }
.meta-card span { font-size: 0.75rem; color: var(--text-soft); text-transform: uppercase; }
.founder-tags { margin: 24px 0; }
.founder-tags li { padding: 12px 0; border-bottom: 1px solid var(--surface-2); font-size: 0.92rem; color: var(--text-soft); }
.founder-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Timeline */
.timeline-scroll { overflow-x: auto; padding-bottom: 16px; scrollbar-width: thin; }
.timeline-track { display: flex; gap: 20px; width: max-content; padding: 8px 4px; }
.timeline-card {
	width: 300px; padding: 28px; background: var(--card); border-radius: var(--radius);
	border: 1px solid var(--surface-2); flex-shrink: 0;
}
.timeline-year { display: inline-block; padding: 4px 12px; background: rgba(13,148,136,0.1); color: var(--teal); border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 700; margin-bottom: 12px; }
.timeline-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; }
.timeline-org { font-weight: 600; font-size: 0.88rem; color: var(--text-soft); margin-bottom: 8px; }
.timeline-card p:last-child { font-size: 0.9rem; color: var(--text-soft); }
.timeline-vertical { display: grid; gap: 20px; max-width: 720px; margin: 0 auto; }
.timeline-card--vertical { width: 100%; }

/* Testimonials */
.testimonial-swiper { padding-bottom: 48px; }
.testimonial-slide {
	padding: 40px; background: var(--card); border-radius: var(--radius);
	border: 1px solid var(--surface-2); min-height: 260px;
}
.stars { color: var(--amber); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-slide p { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; line-height: 1.6; margin-bottom: 24px; }
.testimonial-slide footer strong { display: block; }
.testimonial-slide footer span { font-size: 0.85rem; color: var(--text-soft); }
.swiper-pagination-bullet-active { background: var(--teal) !important; }

/* Credentials — academic & professional */
.section-credentials {
	position: relative;
	padding: 88px 0;
	background:
		radial-gradient(ellipse at 12% 0%, rgba(201, 162, 39, 0.1), transparent 42%),
		radial-gradient(ellipse at 88% 100%, rgba(15, 118, 110, 0.07), transparent 40%),
		linear-gradient(180deg, var(--bg) 0%, rgba(247, 245, 240, 0.9) 50%, var(--bg) 100%);
	overflow: hidden;
}
.section-credentials::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(10, 22, 40, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 22, 40, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
	opacity: 0.55;
}
.section-credentials .container { position: relative; z-index: 1; }
.credentials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.credentials-scroll {
	display: none;
}
.credential-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 100%;
	padding: 28px 26px 30px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: 0 10px 36px rgba(10, 22, 40, 0.05);
	overflow: hidden;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.credential-card::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--gold), var(--teal-light, #0f766e));
	opacity: 0.85;
}
.credential-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 50px rgba(10, 22, 40, 0.12);
	border-color: rgba(201, 162, 39, 0.35);
}
.credential-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 4px;
}
.credential-index {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: rgba(10, 22, 40, 0.35);
}
.credential-year {
	display: inline-flex;
	align-items: center;
	padding: 5px 11px;
	border-radius: var(--radius-full);
	background: rgba(201, 162, 39, 0.12);
	border: 1px solid rgba(201, 162, 39, 0.28);
	color: var(--gold-dark, #8a7028);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	white-space: nowrap;
}
.credential-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(10, 22, 40, 0.92), #1a3a5c);
	color: var(--gold-light, #e8d5a3);
	margin: 4px 0 6px;
	box-shadow: 0 8px 20px rgba(10, 22, 40, 0.18);
}
.credential-icon svg { width: 20px; height: 20px; }
.credential-school {
	font-family: var(--font-display);
	font-size: 1.18rem;
	line-height: 1.3;
	margin: 0;
	color: var(--ink, var(--text));
}
.credential-degree {
	margin: 0;
	color: var(--text-soft);
	font-size: 0.92rem;
	line-height: 1.6;
}
.credential-rule {
	display: block;
	width: 42px;
	height: 2px;
	margin-top: 8px;
	background: linear-gradient(90deg, var(--gold), transparent);
}

/* Professional roles timeline */
.profile-timeline {
	list-style: none;
	margin: 0;
	padding: 0 0 0 6px;
	display: grid;
	gap: 0;
	border-left: 1px solid rgba(201, 162, 39, 0.35);
}
.profile-timeline-item {
	position: relative;
	padding: 0 0 22px 28px;
}
.profile-timeline-item:last-child { padding-bottom: 0; }
.profile-timeline-dot {
	position: absolute;
	left: -5px;
	top: 8px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}
.profile-timeline-body {
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	background: var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: 12px;
	transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.profile-timeline-item:hover .profile-timeline-body {
	border-color: rgba(201, 162, 39, 0.35);
	box-shadow: 0 10px 28px rgba(10, 22, 40, 0.08);
}
.profile-timeline-body strong {
	font-family: var(--font-display);
	font-size: 1.05rem;
}
.profile-timeline-body span {
	color: var(--text-soft);
	font-size: 0.9rem;
}

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--surface-2); }
.faq-question {
	width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left;
	font-family: var(--font-display); font-size: 1.1rem; color: var(--text);
}
.faq-toggle svg { width: 20px; height: 20px; color: var(--teal); transition: transform 0.3s; }
.faq-item.is-open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.is-open .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 20px; color: var(--text-soft); font-size: 0.95rem; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card {
	padding: 28px; background: var(--card); border-radius: var(--radius); border: 1px solid var(--surface-2);
	transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card time { font-size: 0.78rem; color: var(--teal); font-weight: 600; }
.news-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 10px 0; }
.news-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--teal); margin-top: 12px; }
.news-link svg { width: 16px; height: 16px; }

/* Contact preview */
.contact-preview-box {
	position: relative; padding: 60px; border-radius: calc(var(--radius) + 8px);
	background: var(--ink); color: #fff; text-align: center; overflow: hidden;
}
.contact-preview-glow {
	position: absolute; width: 400px; height: 400px; border-radius: 50%;
	background: radial-gradient(circle, rgba(13,148,136,0.4), transparent 70%);
	top: -50%; left: 50%; transform: translateX(-50%);
}
.contact-preview-box h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; position: relative; }
.contact-preview-box p { color: #94a3b8; margin-bottom: 28px; position: relative; }
.contact-preview-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* Page hero */
.page-hero-modern {
	position: relative; padding: calc(var(--nav-h) + 80px) 0 80px;
	background: var(--ink); color: #fff; overflow: hidden;
}
.page-hero-bg {
	position: absolute; inset: 0;
	background: radial-gradient(circle at 20% 50%, rgba(13,148,136,0.25), transparent 50%),
	            radial-gradient(circle at 80% 30%, rgba(245,158,11,0.15), transparent 40%);
}
.page-hero-inner { position: relative; max-width: 720px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.08; margin-bottom: 16px; }
.page-hero-title em { font-style: italic; color: var(--amber-soft); }
.page-hero-desc { color: #94a3b8; font-size: 1.1rem; }

/* Inner pages */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.split-copy h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; }
.split-copy p { margin-bottom: 16px; color: var(--text-soft); }
.glass-card {
	padding: 32px; background: var(--card); border-radius: var(--radius);
	border: 1px solid var(--surface-2); box-shadow: var(--shadow);
}
.affiliate-list li { padding: 12px 0; border-bottom: 1px solid var(--surface-2); font-weight: 500; }
.practice-detail {
	display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--surface-2);
	scroll-margin-top: calc(var(--nav-h) + 24px);
}
.practice-details-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.practice-detail-card {
	background: var(--card); border-radius: var(--radius); overflow: hidden;
	border: 1px solid var(--surface-2); box-shadow: var(--shadow);
	scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 24px);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.practice-detail-card:hover {
	transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.practice-detail-banner {
	position: relative; height: 200px; overflow: hidden;
}
.practice-detail-banner img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.6s var(--ease);
}
.practice-detail-card:hover .practice-detail-banner img { transform: scale(1.05); }
.practice-detail-banner-shade {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,22,40,0.1), rgba(10,22,40,0.82));
}
.practice-detail-banner-head {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
	padding: 20px 24px; color: #fff;
}
.practice-detail-banner-head h2 {
	font-family: var(--font-display); font-size: 1.35rem; margin-top: 6px;
}
.practice-detail-banner--plain {
	height: auto; min-height: 140px; padding: 24px;
	background: linear-gradient(135deg, var(--ink), var(--ink-soft));
	display: flex; align-items: center; gap: 20px;
}
.practice-detail-banner--plain .practice-detail-banner-head { position: static; padding: 0; color: #fff; }
.eyebrow--light { color: var(--gold-light); }
.practice-detail-body {
	padding: 22px 24px 26px;
}
.practice-detail-body p {
	color: var(--text-soft); font-size: 0.95rem; line-height: 1.65; margin-bottom: 18px;
}
.practice-detail-icon svg { width: 40px; height: 40px; color: var(--gold-light); flex-shrink: 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.info-card {
	display: flex; gap: 16px; padding: 20px; background: var(--card); border-radius: var(--radius-sm);
	border: 1px solid var(--surface-2); margin-bottom: 12px;
}
.info-card svg { width: 24px; height: 24px; color: var(--teal); flex-shrink: 0; }
.map-embed {
	position: relative; margin-top: 16px; height: 280px; border-radius: var(--radius);
	overflow: hidden; border: 1px solid var(--surface-2); box-shadow: var(--shadow);
}
.map-embed iframe { display: block; width: 100%; height: 100%; }
.map-open-link {
	position: absolute; bottom: 12px; right: 12px;
	display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px;
	background: rgba(12, 18, 34, 0.85); color: #fff; border-radius: var(--radius-full);
	font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(8px);
	transition: background 0.25s, transform 0.25s;
}
.map-open-link:hover { background: var(--teal); transform: translateY(-2px); }
.map-open-link svg { width: 14px; height: 14px; }

.founder-avatar-photo {
	width: 140px; height: 140px; border-radius: 50%; overflow: hidden; position: relative; z-index: 2;
	box-shadow: 0 20px 60px rgba(13, 148, 136, 0.4); border: 3px solid rgba(255,255,255,0.15);
}
.founder-avatar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-avatar-xl--page.founder-avatar-photo { width: 220px; height: 220px; }
.hero-founder-thumb {
	width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
	border: 2px solid rgba(255,255,255,0.2);
}

.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-alert {
	padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px;
	font-size: 0.92rem; font-weight: 500;
}
.form-alert--success { background: rgba(13, 148, 136, 0.12); color: var(--teal); border: 1px solid rgba(13, 148, 136, 0.25); }
.form-alert--error { background: rgba(239, 68, 68, 0.1); color: #dc2626; border: 1px solid rgba(239, 68, 68, 0.2); }

.modern-form .form-field { margin-bottom: 16px; }
.modern-form label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; }
.modern-form input, .modern-form select, .modern-form textarea {
	width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
	border: 1.5px solid var(--surface-2); background: var(--bg); color: var(--text);
	font-family: inherit; transition: border-color 0.25s, box-shadow 0.25s;
}
.modern-form input:focus, .modern-form select:focus, .modern-form textarea:focus {
	outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,148,136,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-soft); margin-top: 12px; }
.prose { max-width: 720px; line-height: 1.8; }
.prose p { margin-bottom: 16px; }

/* Footer */
.site-footer { background: var(--ink); color: #94a3b8; }
.footer-cta { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-cta-text h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; max-width: 480px; }
.footer-main { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand p { margin: 16px 0; font-size: 0.92rem; line-height: 1.7; max-width: 300px; }
.footer-social a {
	display: inline-flex; width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255,255,255,0.06); align-items: center; justify-content: center;
	transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--teal); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-display); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--teal-light); }
.footer-contact-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact-list svg { width: 18px; height: 18px; color: var(--teal-light); flex-shrink: 0; }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }

/* Team — premium cards */
.section-team-preview {
	position: relative; padding: 96px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #eef2f8 50%, var(--bg) 100%);
	overflow: hidden;
}
.section-team-bg {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(circle at 10% 20%, rgba(201, 162, 39, 0.09), transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(15, 118, 110, 0.07), transparent 35%);
}
.section-team-preview .container { position: relative; z-index: 1; }

.team-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.team-grid--preview { grid-template-columns: repeat(3, 1fr); }
.team-card {
	background: var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 28px 70px rgba(10, 22, 40, 0.14);
}
.team-card-frame { position: relative; }
.team-card-photo {
	position: relative; aspect-ratio: 4/5; overflow: hidden;
	background: linear-gradient(145deg, var(--ink-soft), #1a3a5c);
}
.team-card-photo img {
	width: 100%; height: 100%; object-fit: cover; object-position: top center;
	transition: transform 0.65s var(--ease);
}
.team-card:hover .team-card-photo img { transform: scale(1.06); }
.team-card-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.75) 100%);
	opacity: 0.85; transition: opacity 0.4s;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-index {
	position: absolute; bottom: 16px; left: 16px; z-index: 2;
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
	color: var(--gold-light); background: rgba(10, 22, 40, 0.55);
	padding: 6px 12px; border-radius: var(--radius-full);
	border: 1px solid rgba(201, 162, 39, 0.35);
}
.team-card-accent {
	height: 4px;
	background: linear-gradient(90deg, var(--gold), var(--teal-light), var(--gold));
	background-size: 200% 100%;
	animation: accentShift 4s ease infinite;
}
@keyframes accentShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
.team-card--lead .team-card-accent { height: 5px; }
.team-card-body { padding: 24px 24px 28px; }
.team-card-body h3 {
	font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px;
}
.team-role {
	display: inline-block; color: var(--gold); font-size: 0.78rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.team-card-body p {
	font-size: 0.9rem; color: var(--text-soft); line-height: 1.65;
	display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
a.team-card {
	display: block;
	text-decoration: none;
	color: inherit;
}
.team-card-cta {
	display: inline-block;
	margin-top: 14px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid rgba(201, 162, 39, 0.55);
	padding-bottom: 2px;
	transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
a.team-card:hover .team-card-cta {
	color: var(--gold-dark, #a88b42);
	border-color: var(--gold);
}

/* Patron and Chief */
.patrons-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}
.section-patron-profile { padding-top: 40px; }
.section-patron-profile--alt {
	background: linear-gradient(180deg, rgba(10, 22, 40, 0.03), transparent 60%);
}
.patron-tagline {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--muted, #6b7280);
}

/* Team member profile */
.section-profile { padding-top: 48px; }
.profile-layout {
	display: grid;
	grid-template-columns: minmax(260px, 340px) 1fr;
	gap: 48px;
	align-items: start;
}
.profile-photo-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/5;
	background: linear-gradient(145deg, var(--ink-soft), #1a3a5c);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(10, 22, 40, 0.08);
}
.profile-photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}
.profile-meta {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.profile-sidebar-name {
	font-family: var(--font-display);
	font-size: 1.45rem;
	line-height: 1.25;
	margin: 0 0 4px;
}
.profile-block + .profile-block { margin-top: 36px; }
.profile-heading {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin-bottom: 16px;
}
.profile-main p {
	color: var(--text-soft);
	line-height: 1.75;
	margin-bottom: 14px;
}
.profile-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}
.profile-list li {
	position: relative;
	padding-left: 22px;
	color: var(--text-soft);
	line-height: 1.65;
}
.profile-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}
.profile-positions {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}
.profile-positions li {
	display: grid;
	gap: 4px;
	padding: 16px 18px;
	background: var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: var(--radius-md, 12px);
}
.profile-positions strong { font-size: 0.98rem; }
.profile-positions span { color: var(--text-soft); font-size: 0.9rem; }
.profile-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.profile-tag {
	display: inline-block;
	padding: 8px 14px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(201, 162, 39, 0.35);
	background: rgba(201, 162, 39, 0.08);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ink);
}
.section-cta-row {
	margin-top: 36px;
	display: flex;
	justify-content: center;
}
.profile-sidebar .btn-full { width: 100%; text-align: center; }

/* Gallery — mosaic layout */
.section-gallery-preview {
	padding: 96px 0;
	background: linear-gradient(180deg, var(--bg), rgba(201, 162, 39, 0.05));
}
.gallery-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-grid--mosaic {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 100px;
	gap: 14px;
}
.gallery-grid--mosaic .gallery-item { min-height: 100%; height: 100%; }
.gallery-item {
	position: relative; margin: 0; border-radius: var(--radius-md);
	overflow: hidden; background: var(--surface-2); cursor: pointer;
}
.gallery-grid:not(.gallery-grid--mosaic) .gallery-item { aspect-ratio: 1; }
.gallery-tile--a { grid-column: span 6; grid-row: span 3; }
.gallery-tile--b { grid-column: span 3; grid-row: span 2; }
.gallery-tile--c { grid-column: span 3; grid-row: span 2; }
.gallery-tile--d { grid-column: span 4; grid-row: span 2; }
.gallery-tile--e { grid-column: span 4; grid-row: span 2; }
.gallery-tile--f { grid-column: span 4; grid-row: span 2; }
.gallery-item img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.6s var(--ease);
}
.gallery-item::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.55) 100%);
	opacity: 0.6; transition: opacity 0.35s;
}
.gallery-item:hover::after { opacity: 0.85; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-cap {
	position: absolute; left: 16px; bottom: 14px; z-index: 2;
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
	color: #fff; opacity: 0; transform: translateY(8px);
	transition: opacity 0.35s, transform 0.35s;
}
.gallery-item-cap svg { width: 14px; height: 14px; }
.gallery-item:hover .gallery-item-cap { opacity: 1; transform: translateY(0); }

/* Clients — showcase wall */
.section-clients {
	position: relative; padding: 96px 0; overflow: hidden;
}
.section-clients-bg {
	position: absolute; inset: 0; z-index: 0;
	background: linear-gradient(145deg, var(--ink) 0%, #0f2744 50%, var(--ink-soft) 100%);
}
.section-clients-bg::before {
	content: ''; position: absolute; inset: 0;
	background-image: radial-gradient(rgba(201, 162, 39, 0.12) 1px, transparent 1px);
	background-size: 28px 28px; opacity: 0.35;
}
.section-clients .container { position: relative; z-index: 1; }

.clients-showcase { display: grid; gap: 36px; }
.clients-stats {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.clients-stat {
	text-align: center; padding: 24px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(201, 162, 39, 0.25);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(8px);
	transition: transform 0.35s var(--ease), border-color 0.35s;
}
.clients-stat:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 162, 39, 0.5);
}
.clients-stat strong {
	display: block; font-family: var(--font-display); font-size: 2rem;
	color: var(--gold-light); margin-bottom: 6px;
}
.clients-stat span {
	font-size: 0.82rem; color: rgba(248, 250, 252, 0.75); letter-spacing: 0.03em;
}
.clients-logo-wall {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.client-logo-card {
	display: flex; align-items: center; gap: 12px;
	padding: 16px 18px; min-height: 72px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
	transition-delay: var(--delay, 0s);
}
.client-logo-card:hover {
	transform: translateY(-3px);
	background: rgba(201, 162, 39, 0.12);
	border-color: rgba(201, 162, 39, 0.35);
}
.client-logo-mark {
	flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
	display: grid; place-items: center;
	background: linear-gradient(135deg, var(--gold), var(--amber-soft));
	color: var(--ink); font-weight: 800; font-size: 0.95rem;
}
.client-logo-name {
	font-size: 0.78rem; font-weight: 600; color: rgba(248, 250, 252, 0.9); line-height: 1.35;
}
.section-clients .clients-marquee { margin-top: 8px; }
.section-clients .clients-group span {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(201, 162, 39, 0.2);
	color: rgba(248, 250, 252, 0.85);
	font-weight: 600;
}
.clients-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.clients-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.clients-group { display: flex; gap: 16px; padding-right: 16px; }
.clients-list { display: flex; flex-wrap: wrap; gap: 12px; }
.clients-grid { display: none; }
.client-pill { display: none; }

/* Practice detail media (legacy) */
.practice-detail-media {
	width: 72px; height: 72px; border-radius: 16px; overflow: hidden; flex-shrink: 0;
}
.practice-detail-media img { width: 100%; height: 100%; object-fit: cover; }

.back-top {
	position: fixed; bottom: 100px; right: 28px; width: 48px; height: 48px;
	border-radius: 50%; border: none; background: var(--teal); color: #fff; cursor: pointer;
	box-shadow: 0 12px 40px rgba(13,148,136,0.4); opacity: 0; visibility: hidden;
	transform: translateY(16px); transition: 0.35s; z-index: 900;
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top svg { width: 20px; height: 20px; }

/* Floating WhatsApp */
.wa-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 910;
	display: inline-flex;
	align-items: center;
	gap: 0;
	min-width: 58px;
	height: 58px;
	padding: 0 14px 0 14px;
	border-radius: 999px;
	background: linear-gradient(145deg, #1fad5c 0%, #128c47 100%);
	color: #fff;
	box-shadow: 0 14px 36px rgba(18, 140, 71, 0.38), 0 2px 8px rgba(10, 22, 40, 0.12);
	transition: padding 0.35s var(--ease), gap 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
	overflow: hidden;
	text-decoration: none;
	isolation: isolate;
}
.wa-float:hover,
.wa-float:focus-visible {
	padding-right: 18px;
	gap: 12px;
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(18, 140, 71, 0.45), 0 4px 12px rgba(10, 22, 40, 0.14);
	outline: none;
}
.wa-float-pulse {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: inherit;
	z-index: -1;
	animation: wa-pulse 2.4s var(--ease) infinite;
	pointer-events: none;
}
.wa-float-icon {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}
.wa-float-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}
.wa-float-label {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	white-space: nowrap;
	transition: max-width 0.35s var(--ease), opacity 0.28s var(--ease);
}
.wa-float-label strong {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.wa-float-label em {
	font-style: normal;
	font-size: 0.7rem;
	opacity: 0.88;
	font-weight: 500;
}
.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
	max-width: 120px;
	opacity: 1;
}
@keyframes wa-pulse {
	0% { transform: scale(1); opacity: 0.55; }
	70% { transform: scale(1.35); opacity: 0; }
	100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 640px) {
	.wa-float { bottom: 20px; right: 16px; min-width: 54px; height: 54px; }
	.back-top { bottom: 88px; right: 16px; }
	.wa-float:hover,
	.wa-float:focus-visible { padding-right: 14px; gap: 0; }
	.wa-float:hover .wa-float-label,
	.wa-float:focus-visible .wa-float-label { max-width: 0; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.wa-float-pulse { animation: none; }
}

/* Gallery lightbox */
.gallery-lightbox {
	position: fixed; inset: 0; z-index: 100000; background: rgba(10,22,40,0.92);
	display: grid; place-items: center; padding: 24px; opacity: 0; transition: opacity 0.3s;
}
.gallery-lightbox.is-open { opacity: 1; }
.gallery-lightbox img { max-width: min(1100px, 100%); max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.gallery-lightbox button {
	position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border: none;
	border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.6rem; cursor: pointer;
}

/* Homepage — trust bar, about strip, compact founder */
.trust-bar {
	background: var(--ink); color: #cbd5e1; padding: 14px 0; border-block: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
	display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
	font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.trust-bar-inner span { opacity: 0.85; }

.about-strip {
	display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center;
}
.about-strip-media {
	border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
	aspect-ratio: 4/3; background: var(--card);
}
.about-strip-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-highlights {
	list-style: none; margin: 20px 0 28px; padding: 0; display: grid; gap: 10px;
}
.about-highlights li {
	padding-left: 22px; position: relative; color: var(--text-soft);
}
.about-highlights li::before {
	content: ''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px;
	border-radius: 50%; background: var(--gold);
}
.about-strip-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-practice-pills {
	display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px;
}
.hero-practice-pills a {
	padding: 7px 14px; border-radius: var(--radius-full); font-size: 0.78rem;
	background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #e2e8f0;
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero-practice-pills a:hover { background: rgba(201,162,39,0.18); border-color: rgba(201,162,39,0.35); }

.hero-panel-contact {
	display: grid; gap: 4px; margin: 16px 0; padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.88rem;
}
.hero-panel-contact a { color: var(--gold); font-weight: 600; }

/* Leadership — gold/navy feature band */
.section-leadership { padding: 0; background: transparent !important; }
.leadership-panel {
	position: relative; padding: 88px 0; overflow: hidden;
}
.leadership-panel-bg {
	position: absolute; inset: 0;
	background:
		linear-gradient(120deg, #0a1628 0%, #122038 40%, #1a3050 70%, #0f2744 100%);
}
.leadership-panel-bg::before {
	content: ''; position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 15% 50%, rgba(201, 162, 39, 0.18), transparent 50%),
		radial-gradient(ellipse at 85% 30%, rgba(20, 184, 166, 0.12), transparent 45%);
}
.leadership-panel-bg::after {
	content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%;
	background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--teal-light));
}
.leadership-panel-inner { position: relative; z-index: 1; }
.founder-compact-grid {
	display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center;
}
.founder-avatar-md.founder-avatar-photo {
	width: 280px; height: 280px; margin: 0 auto;
}
.founder-compact-photo { position: relative; text-align: center; }
.founder-photo-ring {
	position: absolute; inset: -16px; border-radius: 50%;
	border: 1px dashed rgba(201, 162, 39, 0.45);
	animation: spin 24s linear infinite;
}
.founder-badge {
	position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
	padding: 6px 16px; border-radius: var(--radius-full);
	background: linear-gradient(135deg, var(--gold), var(--amber-soft));
	color: var(--ink); font-size: 0.72rem; font-weight: 800;
	letter-spacing: 0.1em; text-transform: uppercase;
	box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.leadership-lead {
	font-size: 1.02rem; line-height: 1.75; color: rgba(248, 250, 252, 0.88); margin-bottom: 8px;
}
.meta-card--gold {
	background: rgba(255, 255, 255, 0.06) !important;
	border: 1px solid rgba(201, 162, 39, 0.3) !important;
}
.meta-card--gold strong { color: var(--gold-light) !important; }
.meta-card--gold span { color: rgba(248, 250, 252, 0.65) !important; }
.section-leadership .founder-actions { margin-top: 28px; }

.insights-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.insight-card {
	padding: 28px; border-radius: var(--radius-lg); background: var(--card);
	border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.insight-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.insight-card p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 16px; }

.section-founder-compact { background: var(--card); }

/* Reveal animations */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible, .reveal-now { opacity: 1; transform: translateY(0); }
[data-reveal-scale] { opacity: 0; transform: scale(0.94); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal-scale].is-visible { opacity: 1; transform: scale(1); }
.hero-headline .line { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
	.nav-topbar-inner { justify-content: center; }
	.nav-center { display: none; }
	.btn-nav { display: none; }
	.nav-burger { display: block; }
	.brand-text { display: none; }
	.hero-nexus-inner, .founder-spotlight-grid, .founder-compact-grid, .about-strip, .faq-grid, .split-layout, .contact-layout, .footer-grid, .team-grid, .team-grid--preview, .profile-layout { grid-template-columns: 1fr; }
	.credentials-grid { grid-template-columns: repeat(2, 1fr); }
	.profile-layout { gap: 28px; }
	.profile-photo-card { max-width: 360px; margin: 0 auto; }
	.gallery-grid, .gallery-grid--mosaic { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid--mosaic {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 160px;
	}
	.gallery-grid--mosaic .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
	.gallery-grid--mosaic .gallery-tile--a { grid-column: span 2 !important; grid-row: span 2 !important; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.clients-logo-wall { grid-template-columns: repeat(2, 1fr); }
	.clients-stats { grid-template-columns: 1fr; }
	.bento-grid { grid-template-columns: repeat(2, 1fr); }
	.bento-grid--preview .bento-card--featured,
	.bento-card--large, .bento-card--wide { grid-column: span 2; grid-row: span 1; }
	.practice-details-grid { grid-template-columns: 1fr; }
	.news-grid { grid-template-columns: 1fr; }
	.clients-grid { grid-template-columns: repeat(2, 1fr); }
	.insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.section { padding: 72px 0; }
	.values-grid, .bento-grid, .gallery-grid, .credentials-grid { grid-template-columns: 1fr; }
	.bento-grid--preview .bento-card--featured,
	.bento-card--large, .bento-card--wide, .bento-card--medium { grid-column: span 1; grid-row: span 1; }
	.form-row { grid-template-columns: 1fr; }
	.hero-panel-stats { grid-template-columns: 1fr 1fr; }
	.footer-cta-inner { flex-direction: column; text-align: center; }
	.contact-preview-box { padding: 40px 24px; }
	.clients-grid { grid-template-columns: repeat(2, 1fr); }
	.insights-grid { grid-template-columns: 1fr; }
}

/* Legal resources — laws, books, news */
.section-resources { padding-top: 48px; }
.resource-disclaimer {
	padding: 16px 20px;
	margin-bottom: 28px;
	border-radius: 14px;
	border: 1px solid rgba(201, 162, 39, 0.28);
	background: rgba(201, 162, 39, 0.08);
	color: var(--text-soft);
	font-size: 0.92rem;
	line-height: 1.6;
}
.resource-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}
.resource-filter {
	border: 1px solid rgba(10, 22, 40, 0.12);
	background: var(--card);
	color: var(--text-soft);
	padding: 8px 14px;
	border-radius: var(--radius-full);
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.resource-filter:hover,
.resource-filter.is-active {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}
.laws-departments { display: grid; gap: 22px; }
.laws-dept-card {
	background: var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: var(--radius-lg);
	padding: 26px 28px;
	box-shadow: var(--shadow-sm);
}
.laws-dept-head {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 18px;
}
.laws-dept-count {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: linear-gradient(145deg, var(--ink), #1a3a5c);
	color: var(--gold-light);
	font-weight: 700;
	font-size: 0.85rem;
}
.laws-dept-head h2 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin-bottom: 6px;
}
.laws-dept-head p { color: var(--text-soft); font-size: 0.92rem; }
.laws-item-list { display: grid; gap: 8px; }
.laws-item-list a {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid transparent;
	background: rgba(10, 22, 40, 0.03);
	transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.laws-item-list a:hover {
	background: rgba(201, 162, 39, 0.1);
	border-color: rgba(201, 162, 39, 0.3);
	transform: translateX(3px);
}
.laws-item-type {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gold);
	background: rgba(201, 162, 39, 0.12);
	padding: 4px 8px;
	border-radius: 999px;
}
.laws-item-name { font-weight: 600; font-size: 0.95rem; }
.laws-item-go { color: var(--ink-muted); font-size: 0.9rem; }
.books-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}
.book-card {
	display: grid;
	grid-template-columns: 56px 1fr;
	background: var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.book-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(10, 22, 40, 0.1);
}
.book-card-spine {
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, #0a1628, #1a3a5c);
	color: var(--gold-light);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
}
.book-card-body { padding: 22px 22px 20px; }
.book-subject {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold);
	margin-bottom: 8px;
}
.book-card-body h2 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	line-height: 1.3;
	margin-bottom: 8px;
}
.book-author { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 10px; }
.book-note { font-size: 0.9rem; color: var(--text-soft); line-height: 1.55; margin-bottom: 12px; }
.book-year {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink);
}
.news-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 36px;
}
.news-refreshed { color: var(--text-soft); font-size: 0.9rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.news-grid--firm {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 56px;
}
.news-card {
	padding: 24px;
	background: var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}
.news-card-date {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 10px;
}
.news-card h3 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	line-height: 1.35;
	margin-bottom: 10px;
}
.news-card p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 14px; }
.news-card-link {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid rgba(201, 162, 39, 0.55);
	padding-bottom: 2px;
}
.news-feed-list { display: grid; gap: 14px; }
.news-feed-item {
	padding: 22px 24px;
	background: var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: var(--radius-lg);
	transition: border-color 0.25s, box-shadow 0.25s;
}
.news-feed-item:hover {
	border-color: rgba(201, 162, 39, 0.35);
	box-shadow: 0 12px 32px rgba(10, 22, 40, 0.08);
}
.news-feed-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	align-items: center;
	margin-bottom: 8px;
	font-size: 0.78rem;
	color: var(--text-soft);
}
.news-feed-source {
	font-weight: 700;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.news-feed-item h3 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	line-height: 1.35;
	margin-bottom: 8px;
}
.news-feed-item p {
	color: var(--text-soft);
	font-size: 0.92rem;
	margin-bottom: 12px;
}
@media (max-width: 1024px) {
	.books-grid,
	.news-grid--firm { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.laws-item-list a { grid-template-columns: 1fr auto; }
	.laws-item-type { grid-column: 1 / -1; justify-self: start; }
}

/* Laws directory — search & year badge */
.laws-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 24px;
	margin-bottom: 22px;
}
.laws-search-wrap { flex: 1 1 280px; max-width: 520px; }
.laws-search {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(10, 22, 40, 0.14);
	border-radius: 12px;
	background: var(--card);
	font-size: 0.95rem;
	color: var(--ink);
	outline: none;
	transition: border-color 0.25s, box-shadow 0.25s;
}
.laws-search:focus {
	border-color: rgba(201, 162, 39, 0.55);
	box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.laws-count {
	margin: 0;
	font-size: 0.88rem;
	color: var(--text-soft);
	font-weight: 600;
}
.laws-item-year {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--ink);
	background: rgba(10, 22, 40, 0.06);
	vertical-align: middle;
}
.laws-empty {
	text-align: center;
	padding: 40px 20px;
	color: var(--text-soft);
	font-size: 1rem;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.resource-filters {
	max-height: 160px;
	overflow-y: auto;
	padding-bottom: 4px;
}

/* Books — clickable PDF cards */
a.book-card {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
a.book-card:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}
.book-open-pdf {
	display: inline-block;
	margin-top: 14px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid rgba(201, 162, 39, 0.55);
	padding-bottom: 2px;
}

/* News thumbnails */
.news-card-thumb {
	display: block;
	margin: -24px -24px 16px;
	overflow: hidden;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	aspect-ratio: 16 / 9;
	background: rgba(10, 22, 40, 0.06);
}
.news-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s var(--ease);
}
.news-card:hover .news-card-thumb img { transform: scale(1.04); }

.news-feed-item.has-thumb {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 20px;
	align-items: start;
}
.news-feed-thumb {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 4 / 3;
	background: linear-gradient(145deg, #0a1628, #1a3a5c);
}
.news-feed-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s var(--ease);
}
.news-feed-item:hover .news-feed-thumb img { transform: scale(1.05); }
.news-feed-body { min-width: 0; }

@media (max-width: 720px) {
	.news-feed-item.has-thumb {
		grid-template-columns: 1fr;
	}
	.news-feed-thumb { max-height: 200px; }
}

/* Laws page — professional research library */
.laws-intro {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 28px;
	align-items: end;
	margin-bottom: 36px;
	padding: 28px 30px;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(135deg, rgba(10, 22, 40, 0.04), rgba(201, 162, 39, 0.08)),
		var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
}
.laws-intro .eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}
.laws-intro h2 {
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	margin-bottom: 10px;
	line-height: 1.25;
}
.laws-intro-copy p:last-child {
	color: var(--text-soft);
	line-height: 1.65;
	margin: 0;
}
.laws-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.laws-stats li {
	background: rgba(255,255,255,0.72);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: 14px;
	padding: 16px 12px;
	text-align: center;
}
.laws-stats strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.55rem;
	color: var(--ink);
	line-height: 1.1;
}
.laws-stats span {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-soft);
}
.laws-featured {
	margin-bottom: 40px;
}
.laws-featured-head {
	margin-bottom: 16px;
}
.laws-featured-head h3 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin-bottom: 4px;
}
.laws-featured-head p {
	color: var(--text-soft);
	margin: 0;
}
.laws-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.laws-featured-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px;
	background: var(--card);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: inherit;
	min-height: 140px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.laws-featured-card:hover {
	transform: translateY(-3px);
	border-color: rgba(201, 162, 39, 0.4);
	box-shadow: 0 14px 34px rgba(10, 22, 40, 0.08);
}
.laws-featured-card strong {
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.35;
	flex: 1;
}
.laws-featured-cta {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid rgba(201, 162, 39, 0.55);
	align-self: start;
	padding-bottom: 2px;
}
.laws-toolbar-pro { margin-bottom: 18px; }
.laws-filter-bar { margin-bottom: 18px; }
.resource-filters-type {
	margin-top: 10px;
	max-height: none;
}
.laws-type-count {
	opacity: 0.65;
	margin-left: 4px;
	font-weight: 600;
}
.laws-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	margin-bottom: 24px;
	font-size: 0.82rem;
	color: var(--text-soft);
}
.laws-legend span { display: inline-flex; align-items: center; gap: 8px; }
.laws-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
}
.laws-dot-pdf { background: #1f7a4c; }
.laws-dot-text { background: #b8860b; }
.laws-dot-portal { background: #5b6b7c; }
.laws-item-list-pro a {
	grid-template-columns: auto 1fr auto auto;
	gap: 10px 14px;
}
.laws-item-badge {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 999px;
	white-space: nowrap;
}
.laws-item-badge--full-pdf {
	background: rgba(31, 122, 76, 0.12);
	color: #1f7a4c;
}
.laws-item-badge--document,
.laws-item-badge--official-text {
	background: rgba(184, 134, 11, 0.14);
	color: #8a6500;
}
.laws-item-badge--official-source {
	background: rgba(91, 107, 124, 0.14);
	color: #445260;
}
.laws-item-go {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-muted);
	white-space: nowrap;
}
.laws-disclaimer-foot { margin-top: 40px; }

/* Punjab Laws library (punjablaws.gov.pk style) */
.laws-sync-notice {
	background: rgba(31, 122, 76, 0.12);
	border: 1px solid rgba(31, 122, 76, 0.28);
	color: #1a5c3a;
	padding: 12px 16px;
	border-radius: 10px;
	margin-bottom: 24px;
	font-weight: 600;
}
.laws-library-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 8px 0 28px;
}
.laws-tab {
	appearance: none;
	border: 1px solid rgba(10, 22, 40, 0.12);
	background: rgba(255,255,255,0.75);
	color: var(--ink-muted);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 10px 18px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.laws-tab.is-active {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}
.laws-panel[hidden] { display: none !important; }
.laws-alpha-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 20px;
	justify-content: center;
}
.laws-alpha {
	appearance: none;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	border: 1px solid rgba(11, 61, 11, 0.35);
	background: #fff;
	color: #0b3d0b;
	font-weight: 700;
	font-size: 0.8rem;
	border-radius: 6px;
	cursor: pointer;
}
.laws-alpha.is-active {
	background: #0b3d0b;
	color: #fff;
	border-color: #0b3d0b;
}
.laws-alpha.is-disabled,
.laws-alpha:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}
.punjab-laws-table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(10, 22, 40, 0.1);
	border-radius: 14px;
	background: rgba(255,255,255,0.82);
	margin-bottom: 16px;
}
.punjab-laws-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}
.punjab-laws-table th,
.punjab-laws-table td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(10, 22, 40, 0.06);
	text-align: left;
	vertical-align: middle;
}
.punjab-laws-table thead th {
	background: #0b3d0b;
	color: #fff;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	position: sticky;
	top: 0;
	z-index: 1;
}
.punjab-laws-table tbody tr:hover {
	background: rgba(11, 61, 11, 0.05);
}
.punjab-laws-table a {
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
}
.punjab-laws-table a:hover {
	color: #0b3d0b;
	text-decoration: underline;
}
.punjab-laws-table .col-num,
.punjab-laws-table .col-year,
.punjab-laws-table .col-roman {
	text-align: center;
	white-space: nowrap;
	width: 1%;
	color: var(--text-soft);
}
.punjab-laws-table .col-pdf {
	text-align: center;
	width: 1%;
}
.punjab-pdf-btn {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 6px;
	background: rgba(11, 61, 11, 0.1);
	color: #0b3d0b !important;
	font-size: 0.72rem;
	font-weight: 800 !important;
	letter-spacing: 0.04em;
	text-decoration: none !important;
}
.punjab-pdf-btn:hover {
	background: #0b3d0b;
	color: #fff !important;
}
.laws-source-line {
	font-size: 0.85rem;
	color: var(--text-soft);
	margin: 8px 0 32px;
}
.laws-source-line a { color: var(--ink); font-weight: 600; }
.laws-admin-sync {
	margin-left: 10px;
	font-size: 0.8rem;
}

/* Books library (aligned with Laws page) */
.section-books-pro .book-row-meta {
	font-size: 0.78rem;
	color: var(--text-soft);
	margin-top: 2px;
}
.books-table-wrap {
	margin-top: 8px;
}
.punjab-laws-loading td {
	text-align: center;
	padding: 28px 12px;
	color: var(--text-soft);
}

/* Judgments research desk */
.judgments-reporters,
.judgments-portals,
.judgments-latest {
	margin-bottom: 36px;
}
.judgments-reporter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 10px;
}
.judgments-reporter {
	appearance: none;
	text-align: left;
	border: 1px solid rgba(10, 22, 40, 0.1);
	background: rgba(255,255,255,0.82);
	border-radius: 12px;
	padding: 14px 14px 12px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.judgments-reporter strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.05rem;
	color: var(--ink);
	margin-bottom: 2px;
}
.judgments-reporter span {
	font-size: 0.72rem;
	color: var(--text-soft);
	line-height: 1.35;
}
.judgments-reporter:hover,
.judgments-reporter.is-active {
	border-color: rgba(11, 61, 11, 0.45);
	background: rgba(11, 61, 11, 0.06);
	transform: translateY(-1px);
}
.judgments-portal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.judgments-portal-card {
	background: rgba(255,255,255,0.82);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: 14px;
	padding: 18px;
}
.judgments-portal-card strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.05rem;
	margin: 6px 0 8px;
}
.judgments-portal-card p {
	font-size: 0.88rem;
	color: var(--text-soft);
	margin: 0 0 14px;
	line-height: 1.5;
}
.judgments-portal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.judgments-toolbar {
	align-items: center;
	gap: 12px;
}
.judgments-selects {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.judgments-selects select {
	appearance: none;
	border: 1px solid rgba(10, 22, 40, 0.12);
	background: #fff;
	border-radius: 10px;
	padding: 10px 14px;
	font: inherit;
	color: var(--ink);
	min-width: 140px;
	max-width: min(100%, 320px);
}
.judgments-judge-combo-wrap {
	position: relative;
	min-width: min(100%, 280px);
	flex: 1 1 260px;
}
.judgments-judge-combo {
	position: relative;
}
.judgments-judge-input {
	width: 100%;
	appearance: none;
	border: 1px solid rgba(10, 22, 40, 0.12);
	background: #fff;
	border-radius: 10px;
	padding: 10px 36px 10px 14px;
	font: inherit;
	color: var(--ink);
}
.judgments-judge-clear {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	color: rgba(10, 22, 40, 0.45);
	padding: 4px 6px;
}
.judgments-judge-list {
	position: absolute;
	z-index: 40;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(10, 22, 40, 0.12);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(10, 22, 40, 0.12);
	max-height: 260px;
	overflow: auto;
}
.judgments-judge-list li {
	padding: 8px 14px;
	cursor: pointer;
	font-size: 0.92rem;
}
.judgments-judge-list li:hover,
.judgments-judge-list li:focus {
	background: rgba(10, 22, 40, 0.06);
	outline: none;
}
.judgments-judge-status {
	margin: 10px 0 0;
	font-size: 0.88rem;
	color: rgba(10, 22, 40, 0.65);
}
.judgments-loading td {
	padding: 28px 16px;
	text-align: center;
	color: rgba(10, 22, 40, 0.55);
}
.judgments-pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 18px;
	margin-top: 16px;
	padding: 8px 0 4px;
}
.judgments-pager span {
	font-size: 0.9rem;
	color: rgba(10, 22, 40, 0.65);
}
.judgments-pager button:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.judgments-table-wrap {
	content-visibility: auto;
	contain-intrinsic-size: 800px;
}
.judgments-court-pill,
.judgments-reporter-pill {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 999px;
	margin: 0 2px 2px 0;
}
.judgments-court-pill {
	background: rgba(11, 61, 11, 0.1);
	color: #0b3d0b;
}
.judgments-reporter-pill {
	background: rgba(184, 134, 11, 0.14);
	color: #8a6500;
}
.judgments-synced {
	margin-left: 8px;
	font-size: 0.8rem;
	color: var(--text-soft);
}
.judgments-table .col-court {
	white-space: nowrap;
	width: 1%;
}
.btn-sm {
	padding: 6px 12px;
	font-size: 0.78rem;
}

@media (max-width: 1024px) {
	.judgments-portal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.judgments-portal-grid { grid-template-columns: 1fr; }
	.judgments-table .col-court { display: none; }
}

/* Paint containment — smoother scrolling on long pages */
.section,
.laws-dept-card,
.gallery-item {
	content-visibility: auto;
	contain-intrinsic-size: 1px 360px;
}
.hero-nexus,
.page-hero,
.site-header {
	content-visibility: visible;
}

@media (max-width: 1024px) {
	.laws-intro { grid-template-columns: 1fr; }
	.laws-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.laws-stats { grid-template-columns: 1fr; }
	.laws-featured-grid { grid-template-columns: 1fr; }
	.laws-item-list-pro a {
		grid-template-columns: 1fr auto;
	}
	.laws-item-badge { grid-column: 1 / -1; justify-self: start; }
	.punjab-laws-table .col-roman { display: none; }
}

/* Resource detail pages (laws / judgments / books SEO landings) */
.section-resource-detail .resource-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	font-size: 0.85rem;
	margin-bottom: 28px;
	color: var(--muted, #6b7280);
}
.section-resource-detail .resource-breadcrumb a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.resource-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
	gap: 40px;
	align-items: start;
}
.resource-detail-main h2 {
	font-family: var(--font-display, Fraunces, Georgia, serif);
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	line-height: 1.25;
	margin: 0 0 16px;
}
.resource-aka {
	margin: 0 0 16px;
	font-size: 0.95rem;
	color: var(--muted, #6b7280);
}
.resource-detail-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: grid;
	gap: 8px;
	font-size: 0.95rem;
}
.resource-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}
.resource-cta-card {
	padding: 24px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: linear-gradient(160deg, #f8f6f2 0%, #fff 100%);
}
.resource-cta-card h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
}
.resource-cta-card p {
	margin: 0 0 16px;
	font-size: 0.92rem;
	color: var(--muted, #6b7280);
}
.btn-full { width: 100%; text-align: center; }

.seo-crawl-list {
	margin-top: 48px;
	padding: 20px 0 0;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 0.82rem;
	max-height: 280px;
	overflow: auto;
	columns: 2;
	column-gap: 28px;
}
.seo-crawl-list ol {
	margin: 0;
	padding-left: 1.2rem;
}
.seo-crawl-list li {
	margin-bottom: 6px;
	break-inside: avoid;
}
.seo-crawl-list a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.news-seo-intro {
	margin-bottom: 36px;
	max-width: 720px;
}
.news-seo-intro h2 {
	font-family: var(--font-display, Fraunces, Georgia, serif);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	margin: 8px 0 12px;
}
.news-seo-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	font-size: 0.92rem;
}
.news-seo-links a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (max-width: 900px) {
	.resource-detail-layout { grid-template-columns: 1fr; }
	.seo-crawl-list { columns: 1; }
}
