/* ============================================================
   TruPoint Legal LLC — Las Vegas (Nevada) Theme
   Main Stylesheet — v3.0.0
   ============================================================
   Lightweight, performance-first.
   System fonts only · No @import · No external CSS
   ============================================================
   Brand palette (matches the TruPoint Legal logo):
     --navy   #0F2A55  rich navy (lifted from logo, not too dark)
     --navy-d #061833  deep navy (logo letter color)
     --navy-m #1F3F6E  mid navy
     --gold   #B07828  signature gold (sampled from the logo P)
     --gold-l #C99A55  lighter gold for accents
     --wh     #FFFFFF  white (header + footer background)
   ============================================================ */

/* ─── 1. ROOT TOKENS ────────────────────────────────────────── */
:root {
	--n1:  #0F2A55;        /* primary navy — brand color */
	--n2:  #061833;        /* deepest navy — logo letterform */
	--n3:  #1F3F6E;        /* mid navy */
	--b1:  #4A77B0;        /* mid-tone accent blue */
	--b2:  #7FA3D1;        /* light accent blue */
	--bs:  #2E5A99;        /* link blue */
	--wh:  #FFFFFF;
	--dk:  #0F2A55;
	--bd:  #2F3E55;        /* body text */
	--mt:  #6B7888;        /* muted text */
	--br:  #E2E8F0;        /* border light */
	--cr:  #F6F8FB;        /* cream / page wrap */
	--gr:  #0F8B5C;        /* success green */
	--gl:  #B07828;        /* signature gold — LDA credential, accents */
	--gl2: #C99A55;        /* lighter gold for tints */
	--rd:  10px;
	--fd:  Georgia, 'Times New Roman', Times, serif;
	--fb:  -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	--fm:  ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	--ez:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--sh:  0 4px 24px rgba(15, 42, 85, 0.08);
	--sh2: 0 12px 40px rgba(15, 42, 85, 0.14);
	--header-h: 88px;
}

/* ─── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	font-family: var(--fb);
	font-size: 16px;
	line-height: 1.65;
	color: var(--bd);
	background: var(--wh);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--bs); text-decoration: none; }
a:hover { text-decoration: underline; }

.tp-skip {
	position: absolute; left: -9999px; top: 0;
	padding: 12px 20px; background: var(--n1); color: #fff; z-index: 99999;
}
.tp-skip:focus { left: 8px; top: 8px; }

/* ─── 3. HEADER (WHITE BACKGROUND) ───────────────────────────── */
.tp-header {
	background: #fff;
	border-bottom: 1px solid var(--br);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 12px rgba(15, 42, 85, 0.05);
}
.tp-header-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 24px;
	height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 12px;
}
.tp-logo {
	flex-shrink: 0;
	max-width: 180px;
}
.tp-logo a, .tp-logo img, .tp-logo .custom-logo-link, .tp-logo .custom-logo {
	display: block;
	height: auto;
	max-height: 52px;
	max-width: 180px;
	width: auto;
	object-fit: contain;
}
.tp-logo-text {
	font-family: var(--fd);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--n1);
	letter-spacing: 0.01em;
}
.tp-logo-text .tp-logo-accent { color: var(--gl); }
.tp-logo-text:hover { text-decoration: none; }

/* ─── 4. NAVIGATION ─────────────────────────────────────────── */
.tp-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-start;
	min-width: 0;        /* allows flex shrinking when nav is wide */
	margin-left: 8px;
	margin-right: 12px;  /* hard gap between nav and CTAs — prevents overlap */
}
.tp-nav-list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}
.tp-nav-item { position: relative; }
.tp-nav-item > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 4px;
	color: var(--n1);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
	border-radius: 6px;
	transition: background var(--ez), color var(--ez);
	white-space: nowrap;
}
.tp-nav-item > a:hover {
	background: var(--cr);
	color: var(--gl);
	text-decoration: none;
}
.tp-nav-item.tp-current > a {
	color: var(--gl);
	background: var(--cr);
}
.tp-nav-item.tp-current > a::after {
	content: '';
	position: absolute;
	left: 9px; right: 9px;
	bottom: 4px;
	height: 2px;
	background: var(--gl);
	border-radius: 2px;
}

/* Submenu (level 2 and beyond) */
.tp-sub-menu {
	list-style: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 244px;
	background: #fff;
	border: 1px solid var(--br);
	border-top: 3px solid var(--gl);
	border-radius: 10px;
	box-shadow: var(--sh2);
	padding: 8px;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
	z-index: 200;
}
.tp-nav-item.tp-has-children:hover > .tp-sub-menu,
.tp-nav-item.tp-has-children:focus-within > .tp-sub-menu,
.tp-nav-item.tp-submenu-open > .tp-sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity .18s ease, transform .18s ease;
}
.tp-sub-menu li { position: relative; }
.tp-sub-menu li > a {
	display: block;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 500;
	color: var(--bd);
	border-radius: 6px;
	transition: background var(--ez), color var(--ez);
	white-space: nowrap;
	text-transform: none;
	letter-spacing: 0;
}
.tp-sub-menu li > a:hover {
	background: var(--cr);
	color: var(--n1);
	text-decoration: none;
}

/* Nested submenu */
.tp-sub-menu .tp-sub-menu {
	top: 0;
	left: calc(100% + 4px);
	transform: translateX(-6px);
	border-top: 1px solid var(--br);
	border-left: 3px solid var(--gl);
}
.tp-sub-menu .tp-has-children:hover > .tp-sub-menu,
.tp-sub-menu .tp-has-children:focus-within > .tp-sub-menu,
.tp-sub-menu .tp-has-children.tp-submenu-open > .tp-sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	transition: opacity .18s ease, transform .18s ease;
}

/* Submenu toggle (mobile + a11y) */
.tp-submenu-toggle {
	display: none;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	color: var(--n1);
}
.tp-submenu-toggle svg { width: 14px; height: 14px; transition: transform var(--ez); }
.tp-submenu-open > .tp-submenu-toggle svg { transform: rotate(180deg); }

/* ─── 5. HEADER CTAs ─────────────────────────────────────────── */
.tp-header-ctas {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.tp-header-call {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 11px;
	color: var(--n1);
	font-size: 12px;
	font-weight: 700;
	border-radius: 8px;
	border: 1.5px solid var(--n1);
	transition: background var(--ez), color var(--ez);
	white-space: nowrap;
	min-height: 42px;
}
.tp-header-call:hover {
	background: var(--n1);
	color: #fff;
	text-decoration: none;
}
.tp-header-call svg { width: 14px; height: 14px; flex-shrink: 0; }

.tp-header-book {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 13px;
	background: var(--gl);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	border-radius: 8px;
	border: 2px solid var(--gl);
	white-space: nowrap;
	box-shadow: 0 4px 18px rgba(176, 120, 40, 0.32);
	transition: background var(--ez), color var(--ez), box-shadow var(--ez), transform var(--ez), border-color var(--ez);
	min-height: 42px;
	text-transform: uppercase;
}
.tp-header-book:hover {
	background: var(--n1);
	border-color: var(--n1);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 6px 22px rgba(15, 42, 85, 0.28);
}
.tp-header-book:focus-visible {
	outline: 3px solid var(--gl2);
	outline-offset: 4px;
}

/* ─── 6. MOBILE MENU TOGGLE ─────────────────────────────────── */
.tp-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-left: auto;
	border-radius: 8px;
}
.tp-menu-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--n1);
	border-radius: 2px;
	transition: transform var(--ez), opacity var(--ez);
}
.tp-menu-open .tp-menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tp-menu-open .tp-menu-toggle-bar:nth-child(2) { opacity: 0; }
.tp-menu-open .tp-menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 7. MAIN ───────────────────────────────────────────────── */
.tp-main { display: block; }
.tp-page-wrap { padding: 60px 0; background: var(--cr); min-height: 50vh; }
.tp-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tp-container-narrow { max-width: 760px; }

/* ─── 8. ARTICLE / BLOG ─────────────────────────────────────── */
.tp-article {
	background: #fff;
	border-radius: 12px;
	padding: 48px;
	box-shadow: var(--sh);
}
.tp-article-header { margin-bottom: 32px; }
.tp-article-title {
	font-family: var(--fd);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 600;
	color: var(--n1);
	line-height: 1.2;
	margin-bottom: 12px;
}
.tp-article-meta {
	font-size: 13px;
	color: var(--mt);
	display: flex;
	gap: 14px;
	margin-bottom: 16px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-weight: 600;
}
.tp-article-featured { margin: 0 -48px 32px; overflow: hidden; }
.tp-article-featured img { width: 100%; }
.tp-article-content { font-size: 16.5px; line-height: 1.75; }
.tp-article-content h2 {
	font-family: var(--fd);
	font-size: 1.75rem;
	color: var(--n1);
	margin: 36px 0 16px;
	font-weight: 600;
}
.tp-article-content h3 {
	font-family: var(--fd);
	font-size: 1.35rem;
	color: var(--n1);
	margin: 28px 0 12px;
	font-weight: 600;
}
.tp-article-content p { margin-bottom: 18px; }
.tp-article-content ul, .tp-article-content ol { margin: 0 0 20px 24px; }
.tp-article-content li { margin-bottom: 8px; }
.tp-article-content a { color: var(--bs); text-decoration: underline; }

/* Archive grid */
.tp-archive-header { text-align: center; margin-bottom: 48px; }
.tp-archive-title {
	font-family: var(--fd);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--n1);
	font-weight: 600;
	margin-bottom: 12px;
}
.tp-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
}
.tp-archive-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--sh);
	transition: transform var(--ez), box-shadow var(--ez);
}
.tp-archive-card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.tp-archive-card-img { display: block; aspect-ratio: 16/10; overflow: hidden; }
.tp-archive-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tp-archive-card-body { padding: 24px; }
.tp-archive-card-title {
	font-family: var(--fd);
	font-size: 1.3rem;
	color: var(--n1);
	margin-bottom: 10px;
	line-height: 1.3;
}
.tp-archive-card-title a { color: inherit; }
.tp-archive-card-title a:hover { color: var(--gl); text-decoration: none; }
.tp-archive-card-meta { font-size: 13px; color: var(--mt); margin-bottom: 12px; }
.tp-archive-card-excerpt { font-size: 14.5px; line-height: 1.65; margin-bottom: 16px; }
.tp-archive-card-link { font-weight: 600; font-size: 14px; color: var(--gl); }

/* ─── 9. 404 ────────────────────────────────────────────────── */
.tp-404 {
	background: #fff;
	border-radius: 12px;
	padding: 72px 48px;
	text-align: center;
	box-shadow: var(--sh);
}
.tp-404-num {
	font-family: var(--fd);
	font-size: clamp(5rem, 14vw, 9rem);
	font-weight: 700;
	color: var(--gl);
	line-height: 0.95;
	letter-spacing: -0.04em;
	margin-bottom: 16px;
}
.tp-404-title {
	font-family: var(--fd);
	font-size: 2rem;
	color: var(--n1);
	margin-bottom: 14px;
	font-weight: 600;
}
.tp-404-text { font-size: 16px; color: var(--mt); margin-bottom: 28px; }
.tp-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.tp-404-help { font-size: 15px; color: var(--bd); }
.tp-404-help a { font-weight: 700; color: var(--n1); }

/* Buttons */
.tp-btn-primary, .tp-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 24px;
	font-size: 14.5px;
	font-weight: 700;
	border-radius: 8px;
	transition: transform var(--ez), box-shadow var(--ez), background var(--ez);
}
.tp-btn-primary {
	background: var(--gl);
	color: #fff;
	border: 2px solid var(--gl);
	box-shadow: 0 4px 14px rgba(176, 120, 40, 0.32);
}
.tp-btn-primary:hover {
	background: var(--n1);
	border-color: var(--n1);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(15, 42, 85, 0.28);
}
.tp-btn-secondary {
	background: #fff;
	color: var(--n1);
	border: 2px solid var(--n1);
	box-shadow: 0 2px 8px rgba(15, 42, 85, 0.08);
}
.tp-btn-secondary:hover {
	background: var(--n1);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(15, 42, 85, 0.18);
}

/* ─── 10. FOOTER (WHITE BACKGROUND) ──────────────────────────── */
.tp-footer {
	background: #fff;
	color: var(--bd);
	position: relative;
	z-index: 1;        /* MUST stay below header z-index 100 and dropdown z-index 200 */
	clear: both;
	border-top: 1px solid var(--br);
}
/* Gold accent stripe at the top of footer — pulls eye, ties to logo */
.tp-footer::before {
	content: '';
	display: block;
	height: 4px;
	background: linear-gradient(90deg, var(--n1) 0%, var(--gl) 50%, var(--n1) 100%);
}
.tp-footer-main { padding: 64px 0 48px; }
.tp-footer-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
}
.tp-footer-h {
	color: var(--n1);
	font-family: var(--fd);
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: 0.01em;
	position: relative;
	padding-bottom: 10px;
}
.tp-footer-h::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 32px; height: 2px;
	background: var(--gl);
	border-radius: 2px;
}
.tp-footer-h-sm {
	color: var(--n1);
	font-family: var(--fd);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 12px 0 6px;
	letter-spacing: 0.01em;
}
.tp-footer-logo { display: inline-block; margin-bottom: 18px; }
.tp-footer-logo img { max-height: 72px; width: auto; }
.tp-footer-logo-text {
	font-family: var(--fd);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--n1);
	letter-spacing: 0.01em;
}
.tp-footer-logo-text .tp-logo-accent { color: var(--gl); }

.tp-footer-address {
	font-style: normal;
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--bd);
}
.tp-footer-contact-line { margin-bottom: 8px; font-size: 14px; }
.tp-footer-contact-line a { color: var(--n1); text-decoration: none; font-weight: 500; }
.tp-footer-contact-line a:hover { color: var(--gl); text-decoration: underline; }
.tp-footer-contact-line strong { color: var(--n1); font-weight: 700; }

.tp-footer-hours-block { margin-top: 14px; }
.tp-footer-hours-line { font-size: 13.5px; color: var(--mt); margin: 4px 0; }

.tp-footer-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 14px; }
.tp-fbadge {
	display: inline-block;
	padding: 5px 11px;
	background: rgba(176, 120, 40, 0.08);
	border: 1px solid rgba(176, 120, 40, 0.32);
	border-radius: 100px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--gl);
	letter-spacing: 0.02em;
}

.tp-footer-verify { font-size: 13px; margin-bottom: 14px; }
.tp-footer-verify a {
	color: var(--n1);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	text-decoration: none;
}
.tp-footer-verify a:hover { color: var(--gl); text-decoration: underline; }
.tp-footer-verify svg { width: 14px; height: 14px; }

.tp-footer-map {
	margin-top: 14px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(15, 42, 85, 0.10);
	border: 1px solid var(--br);
}
.tp-footer-map iframe { display: block; width: 100%; border: 0; }

/* Footer column lists (wp_nav_menu output) */
.tp-footer-list { list-style: none; margin: 0; padding: 0; }
.tp-footer-list li { margin-bottom: 8px; }
.tp-footer-list li a {
	color: var(--bd);
	font-size: 14px;
	transition: color var(--ez), padding var(--ez);
	text-decoration: none;
	display: inline-block;
}
.tp-footer-list li a:hover {
	color: var(--gl);
	text-decoration: underline;
	padding-left: 4px;
}

.tp-footer-empty {
	color: var(--mt);
	font-size: 13px;
	font-style: italic;
	line-height: 1.5;
}

/* Sister-brand CTA */
.tp-footer-pro-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	padding: 9px 16px;
	background: rgba(15, 42, 85, 0.04);
	border: 1px solid var(--br);
	border-radius: 8px;
	color: var(--n1);
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tp-footer-pro-cta:hover {
	background: var(--n1);
	border-color: var(--n1);
	color: #fff;
	text-decoration: none;
}

/* LDA Disclaimer banner — navy tint on white */
.tp-footer-disclaimer {
	background: var(--cr);
	border-top: 1px solid var(--br);
	border-bottom: 1px solid var(--br);
	padding: 18px 0;
}
.tp-footer-disclaimer-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	color: var(--bd);
}
.tp-footer-disclaimer svg {
	width: 20px; height: 20px;
	flex-shrink: 0;
	color: var(--gl);
	margin-top: 2px;
}
.tp-footer-disclaimer p { margin: 0; font-size: 13.5px; line-height: 1.6; }
.tp-footer-disclaimer strong { color: var(--n1); font-weight: 700; }
.tp-footer-disclaimer a {
	color: var(--bs);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.tp-footer-disclaimer a:hover { color: var(--gl); }

/* Bottom legal bar */
.tp-footer-bottom {
	background: #fff;
	border-top: 1px solid var(--br);
	padding: 18px 0;
}
.tp-footer-bottom-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: var(--mt);
}
.tp-footer-copy-block { flex: 1; min-width: 260px; }
.tp-footer-copy { margin: 0 0 4px; line-height: 1.5; color: var(--bd); }
.tp-footer-trilingual {
	margin: 0;
	color: var(--gl);
	font-size: 12px;
	font-weight: 600;
	font-style: italic;
}
.tp-footer-legal { display: flex; gap: 8px; align-items: center; }
.tp-footer-legal a { color: var(--mt); text-decoration: none; font-weight: 500; }
.tp-footer-legal a:hover { color: var(--gl); text-decoration: underline; }

/* ─── 11. RESPONSIVE ────────────────────────────────────────── */
/*
 * IMPORTANT: With 8+ top-level menu items, the desktop nav is too wide
 * for standard laptop viewports (1366px, 1440px). The hamburger kicks in
 * at 1440px so the nav never overlaps the CTA buttons on any common screen.
 * Only large external monitors (1500px+) get the full horizontal nav.
 */
@media (max-width: 1500px) {
	.tp-nav-item > a { padding: 8px 4px; font-size: 11px; letter-spacing: 0; }
}

@media (max-width: 1440px) {
	:root { --header-h: 72px; }

	.tp-menu-toggle { display: flex; }
	.tp-header-ctas { display: none; }

	.tp-nav {
		display: block;
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		padding: 24px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .28s cubic-bezier(.4,0,.2,1);
		z-index: 99;
		margin-left: 0;
	}
	.tp-menu-open .tp-nav { transform: translateX(0); }
	.tp-nav-list { flex-direction: column; align-items: stretch; gap: 4px; flex-wrap: wrap; }
	.tp-nav-item { width: 100%; }
	.tp-nav-item > a {
		padding: 14px 16px;
		font-size: 16px;
		letter-spacing: 0.04em;
		justify-content: space-between;
		border-radius: 8px;
	}
	.tp-nav-item.tp-current > a::after { display: none; }
	.tp-submenu-toggle { display: inline-flex; position: absolute; right: 8px; top: 8px; }
	.tp-sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--gl);
		border-radius: 0;
		padding: 4px 0 4px 12px;
		margin: 4px 0 4px 12px;
		display: none;
	}
	.tp-submenu-open > .tp-sub-menu { display: block; }
	.tp-sub-menu .tp-sub-menu {
		left: auto;
		transform: none;
		margin-left: 12px;
	}
}

@media (max-width: 1200px) {
	.tp-footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
	.tp-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
	.tp-footer-inner { grid-template-columns: 1fr; gap: 36px; }
	.tp-footer-bottom-inner { justify-content: center; text-align: center; }
	.tp-footer-legal { justify-content: center; }
	.tp-footer-trilingual { text-align: center; }

	.tp-article { padding: 32px 24px; }
	.tp-article-featured { margin: 0 -24px 24px; }
	.tp-page-wrap { padding: 36px 0; }
}

@media (max-width: 480px) {
	.tp-header-inner { padding: 0 16px; gap: 12px; }
	.tp-container { padding: 0 16px; }
	.tp-404 { padding: 48px 24px; }
	.tp-404-actions { flex-direction: column; align-items: stretch; }

	.tp-footer-disclaimer-inner {
		padding: 0 16px;
	}
}

/* ─── 12. PRINT ─────────────────────────────────────────────── */
@media print {
	.tp-header-ctas, .tp-menu-toggle, .tp-footer-bottom { display: none !important; }
	.tp-header { position: static; box-shadow: none; }
}

/* ─── NEVADA: ANNOUNCEMENT BANNER ───────────────────────────── */
.tp-annc {
	background: linear-gradient(90deg, var(--n2) 0%, var(--n1) 55%, var(--n3) 100%);
	color: #fff;
	border-bottom: 2px solid var(--gl);
}
.tp-annc-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 9px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
}
.tp-annc-ico { width: 16px; height: 16px; color: var(--gl2); flex-shrink: 0; }
.tp-annc-text {
	font-family: var(--fb);
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: .01em;
	line-height: 1.4;
}
@media (max-width: 600px) {
	.tp-annc-inner { padding: 8px 16px; }
	.tp-annc-text { font-size: 12.5px; }
	.tp-annc-ico { display: none; }
}

/* ─── NEVADA: footer logo (square monogram) ─────────────────── */
.tp-footer-logo { display: inline-block; }
.tp-footer-logo img {
	height: auto;
	max-height: 72px;
	width: auto;
	max-width: 160px;
}
.tp-logo-img-link img { height: auto; max-height: 56px; width: auto; }
