:root {
	--ink: #0f172a;
	--slate: #1f2937;
	--muted: #64748b;
	--mist: #e5e7eb;
	--silver: #b8c0cc;
	--ice: #f8fafc;
	--accent: #c28b2c;
	--accent-dark: #8a611d;
	--radius: 14px;
	--font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	--font-heading: Garamond, Baskerville, 'Times New Roman', serif;
	--font-size-base: 18px;
	--line-height-base: 1.65;
	--h1-size: clamp(2rem, 4vw, 3.2rem);
	--h2-size: clamp(1.6rem, 3vw, 2.4rem);
	--h3-size: clamp(1.2rem, 2vw, 1.6rem);
	--h4-size: 1.2rem;
	--h5-size: 1.05rem;
	--h6-size: 1rem;
	--p-size: 1rem;
	--heading-spacing: 0.7em;
	--paragraph-spacing: 1em;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-body);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--slate);
	background:
		radial-gradient(circle at 10% 10%, rgba(194, 139, 44, 0.1), transparent 35%),
		radial-gradient(circle at 90% 20%, rgba(184, 192, 204, 0.25), transparent 35%),
		linear-gradient(180deg, #eef2f7 0%, #f7f9fc 30%, #ffffff 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--ink);
	line-height: 1.15;
	margin-top: 0;
	margin-bottom: var(--heading-spacing);
}

/* Use body prefix to override Gutenberg block-library stylesheet */
body h1 { font-size: var(--h1-size); }
body h2 { font-size: var(--h2-size); }
body h3 { font-size: var(--h3-size); }
body h4 { font-size: var(--h4-size); }
body h5 { font-size: var(--h5-size); }
body h6 { font-size: var(--h6-size); }

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

p {
	font-size: var(--p-size);
	margin-top: 0;
	margin-bottom: var(--paragraph-spacing);
}

.skip-link {
	position: absolute;
	left: 12px;
	top: -48px;
	background: #111827;
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	z-index: 999;
}

.skip-link:focus {
	top: 12px;
}

a {
	color: #0c4a6e;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	width: min(1180px, 92%);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(8px);
	background: rgba(248, 250, 252, 0.9);
	border-bottom: 1px solid #d1d5db;
}

.clean-header {
	position: relative;
	background: rgba(248, 250, 252, 0.98);
}

.clean-header-inner {
	justify-content: center;
	padding: 1.2rem 0;
}

.clean-header-layout .site-main {
	padding-top: 0.5rem;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 0;
}

.brand {
	flex-shrink: 0;
}

/* Logo sizing — constrain to match silverelef.com (~136px tall) */
.brand .custom-logo,
.brand img {
	max-height: 140px;
	max-width: 360px;
	width: auto;
	display: block;
}

/* Nav always pushed to the far right */
.site-nav {
	margin-left: auto;
}

.site-title {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--ink);
}

.site-nav > ul {
	display: flex;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Hide ALL nested uls regardless of class (covers .sub-menu and wp_page_menu .children) */
.site-nav ul ul {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav a {
	font-weight: 600;
	font-size: 0.94rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ── Dropdown navigation ─────────────────────────────────────────── */

.site-nav li {
	position: relative;
	display: flex;
	align-items: center;
}

.site-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 230px;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
	padding: 0.35rem 0;
	z-index: 200;
	list-style: none;
	flex-direction: column;
	gap: 0;
	margin: 0;
}

.site-nav li:hover > .sub-menu,
.site-nav li:hover > ul,
.site-nav li.is-open > .sub-menu,
.site-nav li.is-open > ul {
	display: flex;
}

.site-nav .sub-menu a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0.75rem 1.1rem;
	min-height: 44px;
	font-size: 0.88rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	white-space: nowrap;
	color: var(--slate);
}

.site-nav .sub-menu a:hover {
	background: #f1f5f9;
	color: var(--ink);
	text-decoration: none;
}

.submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	width: 44px;
	height: 44px;
	margin-left: 2px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	color: inherit;
	vertical-align: middle;
}

.submenu-arrow {
	display: block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.65;
	transition: transform 0.2s ease;
}

.is-open > .submenu-toggle .submenu-arrow,
[aria-expanded="true"] .submenu-arrow {
	transform: rotate(180deg);
	opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────── */

.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid #9ca3af;
	padding: 0.7rem 1rem;
	border-radius: 8px;
	min-height: 44px;
	cursor: pointer;
}

.hero {
	position: relative;
	padding: 7rem 0 6rem;
	overflow: hidden;
	background:
		linear-gradient(115deg, rgba(15, 23, 42, 0.95) 0%, rgba(31, 41, 55, 0.88) 40%, rgba(138, 97, 29, 0.6) 100%),
		radial-gradient(circle at 85% 5%, rgba(255, 255, 255, 0.14), transparent 35%),
		radial-gradient(circle at 20% 95%, rgba(255, 255, 255, 0.08), transparent 30%);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.42));
}

.hero-content {
	position: relative;
	max-width: 720px;
	color: #fff;
	animation: rise-up 0.9s ease-out both;
}

.eyebrow {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-weight: 600;
	color: #94a3b8;
	margin-bottom: 0.5rem;
}

.hero .eyebrow {
	color: #cbd5e1;
}

.hero h1 {
	font-size: clamp(2.1rem, 5vw, 4.2rem);
	color: #fff;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.1rem;
	max-width: 65ch;
}

.btn {
	display: inline-block;
	background: linear-gradient(130deg, var(--accent), var(--accent-dark));
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.8rem 1.2rem;
	border-radius: 999px;
	margin-top: 0.9rem;
	border: 0;
}

.btn:hover {
	text-decoration: none;
	filter: brightness(1.06);
}

.market-strip {
	padding: 2.2rem 0;
	background: #f1f5f9;
	border-top: 1px solid #cbd5e1;
	border-bottom: 1px solid #cbd5e1;
}

.market-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.market-card {
	background: #fff;
	padding: 1rem;
	border-radius: var(--radius);
	border: 1px solid #dbe2ea;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

#homepage-content .section{
    padding: 0;
}

.section {
	padding: 4.5rem 0;
}

.section.alt {
	background: #f8fafc;
}

.block-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	padding-left: 1rem;
}

.two-col {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
}

.about-panel {
	background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 1.2rem;
	border: 1px solid #cbd5e1;
	border-radius: var(--radius);
}

.about-panel ul {
	margin: 0;
	padding-left: 1rem;
}

.project-highlight {
	background:
		linear-gradient(160deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 41, 59, 0.9) 100%),
		linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.project-highlight h2,
.project-highlight p,
.project-highlight .eyebrow {
	color: #e2e8f0;
}

.management-grid,
.news-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.downloads-list {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.downloads-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 1rem;
	background: #fff;
	border: 1px solid #d9e1eb;
	border-radius: 10px;
}

.download-date {
	font-size: 0.84rem;
	color: var(--muted);
	white-space: nowrap;
}

.person-card,
.news-item,
.contact-card {
	background: #fff;
	border: 1px solid #d9e1eb;
	border-radius: var(--radius);
	padding: 1rem;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.news-date {
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 0.3rem;
}

.contact-card {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1rem;
}

.content-list {
	padding: 2rem 0 4rem;
}

.entry-card {
	margin-bottom: 1rem;
}

.site-footer {
	padding: 3rem 0 1rem;
	background: #0f172a;
	color: #cbd5e1;
}

.site-footer h3 {
	color: #fff;
}

.site-footer a {
	color: #f8fafc;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.copyright {
	text-align: center;
	padding-top: 1rem;
	font-size: 0.88rem;
	color: #94a3b8;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
	opacity: 1;
	transform: translateY(0);
}

.block-slider {
	position: relative;
	overflow: hidden;
	padding: 0.5rem 0;
}

.slider-track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 0.4rem;
	scrollbar-width: thin;
}

.slider-track::-webkit-scrollbar {
	height: 8px;
}

.slider-track::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 999px;
}

.slider-item {
	flex: 0 0 min(360px, 85vw);
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid #d9e1eb;
	border-radius: var(--radius);
	padding: 1rem;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.slider-media {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0.7rem;
}

.slider-media img {
	display: block;
	width: 100%;
	height: auto;
}

.person-role {
	margin-top: -0.2rem;
	font-size: 0.86rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #334155;
	font-weight: 700;
}

.slider-controls {
	display: flex;
	justify-content: flex-end;
	gap: 0.6rem;
	margin-top: 0.8rem;
}

.slider-prev,
.slider-next,
.c-slider-btn {
	border: 1px solid #94a3b8;
	background: #fff;
	color: #0f172a;
	padding: 0.8rem 1rem;
	border-radius: 8px;
	cursor: pointer;
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.slider-prev:focus-visible,
.slider-next:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
	outline: 2px solid #0c4a6e;
	outline-offset: 2px;
}

@keyframes rise-up {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 960px) {
	.two-col,
	.management-grid,
	.news-grid,
	.footer-grid,
	.market-grid,
	.block-list {
		grid-template-columns: 1fr;
	}

	.contact-card {
		grid-template-columns: 1fr;
	}

	.menu-toggle {
		display: inline-block;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: 68px;
		right: 4%;
		background: #fff;
		padding: 0.9rem;
		border: 1px solid #d1d5db;
		border-radius: 12px;
		box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
	}

	.site-nav.open {
		display: block;
	}

	.site-nav > ul {
		flex-direction: column;
	}

	/* Disable hover dropdown on mobile — use only JS toggle */
	.site-nav li:hover > .sub-menu,
	.site-nav li:hover > ul {
		display: none;
	}

	.site-nav li.is-open > .sub-menu,
	.site-nav li.is-open > ul {
		display: flex;
	}

	.site-nav .sub-menu,
	.site-nav ul ul {
		position: static;
		box-shadow: none;
		border: 1px solid #e5e7eb;
		border-radius: 6px;
		background: #f8fafc;
		padding: 0.25rem 0 0.25rem 0.5rem;
		margin: 0.25rem 0 0.4rem;
		min-width: 0;
		width: 100%;
		flex-direction: column;
	}

	.site-nav .sub-menu a,
	.site-nav ul ul a {
		white-space: normal;
	}

	.hero {
		padding: 5rem 0 4.2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* ================================================================
   TICKER BAR
   ================================================================ */

.ticker-bar {
	background: #0f172a;
	color: #94a3b8;
	font-size: 0.8rem;
	padding: 0.35rem 0;
	border-bottom: 1px solid #1e293b;
}

.ticker-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.ticker-prices {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	white-space: nowrap;
}

.ticker-item a {
	color: #cbd5e1;
	font-weight: 600;
	font-size: 0.8rem;
	text-decoration: none;
}

.ticker-item a:hover {
	color: #fff;
	text-decoration: underline;
}

.ticker-item .sq-price {
	color: #4ade80;
	font-weight: 700;
	font-size: 0.8rem;
}

.ticker-item .sm-inline-price {
	color: #4ade80;
	font-weight: 700;
	font-size: 0.8rem;
}

.ticker-sep {
	color: #334155;
	user-select: none;
}

.ticker-social {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #64748b;
	transition: color 0.2s ease;
	text-decoration: none;
}

.social-icon:hover {
	color: #e2e8f0;
	text-decoration: none;
}

/* Header presentation button */
.btn-header {
	padding: 0.55rem 1rem;
	margin-top: 0;
	font-size: 0.82rem;
	margin-left: 0.4rem;
}

/* ================================================================
   HERO IMAGE SLIDER
   ================================================================ */

.hero-image-slider {
	position: relative;
	width: 100%;
	height: clamp(320px, 45vw, 520px);
	overflow: hidden;
	background: #0f172a;
}

.his-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.his-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.9s ease;
	will-change: opacity;
}

.his-slide--active {
	opacity: 1;
}

.his-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.his-bg-gradient {
	background: linear-gradient(115deg, #0f172a 0%, #1e293b 60%, #334155 100%);
}

.his-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(15, 23, 42, 0.72) 0%,
		rgba(15, 23, 42, 0.22) 60%,
		transparent 100%
	);
}

.his-caption {
	position: absolute;
	bottom: 4rem;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	padding: 0 2rem;
}

.his-text {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4vw, 3.4rem);
	font-weight: 400;
	margin: 0 0 0.4rem;
	letter-spacing: 0.02em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.his-sub {
	font-size: 1rem;
	color: #cbd5e1;
	margin: 0;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.his-caption--centered {
	bottom: 50%;
	transform: translateY(50%);
}

.hero-image-slider--empty {
	height: 60vh;
}

/* Controls */
.his-controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 1rem;
	z-index: 5;
}

.his-btn {
	pointer-events: all;
	background: rgba(15, 23, 42, 0.45);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	font-size: 2rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
}

.his-btn:hover {
	background: rgba(194, 139, 44, 0.7);
}

/* Dots */
.his-dots {
	position: absolute;
	bottom: 1.2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 5;
}

.his-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.his-dot--active,
.his-dot:hover {
	background: #fff;
	transform: scale(1.25);
}

/* ================================================================
   CTA STRIP
   ================================================================ */

.cta-strip {
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	padding: 1.4rem 0;
}

.cta-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-outline {
	background: transparent;
	color: var(--ink);
	border: 2px solid var(--accent);
}

.btn-outline:hover {
	background: var(--accent);
	color: #fff;
	filter: none;
	text-decoration: none;
}

/* ================================================================
   SUBSCRIBE STRIP
   ================================================================ */

.subscribe-strip {
	background: #f1f5f9;
	border-bottom: 1px solid #cbd5e1;
	padding: 1.2rem 0;
}

.subscribe-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	flex-wrap: wrap;
}

.subscribe-title {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--slate);
	margin: 0;
}

.subscribe-form {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
	border: 1px solid #94a3b8;
	border-radius: 999px;
	padding: 0.55rem 1rem;
	font-size: 0.9rem;
	min-width: 220px;
	outline: none;
}

.subscribe-form input[type="email"]:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(194, 139, 44, 0.18);
}

.subscribe-form .btn {
	margin-top: 0;
	padding: 0.55rem 1.2rem;
	font-size: 0.88rem;
}

/* ================================================================
   STOCK QUOTES SECTION
   ================================================================ */

.stock-quotes-section {
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.stock-quotes-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.stock-quote-box {
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.sq-label {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
	color: var(--ink);
}

.sq-label a {
	color: var(--ink);
	text-decoration: none;
}

.sq-label a:hover {
	text-decoration: underline;
}

.sq-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 0.3rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.sq-row:last-of-type {
	border-bottom: none;
}

.sq-val {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--ink);
}

.sq-meta {
	font-size: 0.82rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sq-change {
	color: #16a34a;
}

.sq-date {
	font-size: 0.78rem;
	color: var(--muted);
	margin: 0.6rem 0 0;
}

/* ================================================================
   ABOUT SECTION (home)
   ================================================================ */

.about-lead {
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 80ch;
	color: var(--slate);
}

/* ================================================================
   PROJECTS SECTION
   ================================================================ */

.projects-section {
	background:
		linear-gradient(160deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 41, 59, 0.90) 100%),
		linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.projects-dual {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3rem;
}

.project-col {
	color: #e2e8f0;
}

.project-title {
	font-size: var(--h2-size);
	color: #fff;
	margin-bottom: 0.3rem;
}

.project-sub {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent);
	font-weight: 700;
	margin-bottom: 1rem;
}

.project-desc {
	color: #cbd5e1;
	margin-bottom: 1.2rem;
	font-size: 0.98rem;
}

.btn-project {
	display: inline-block;
	background: transparent;
	border: 1px solid var(--accent);
	color: var(--accent);
	border-radius: 4px;
	padding: 0.6rem 1.2rem;
	margin-bottom: 1rem;
	font-size: 0.88rem;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.btn-project:hover {
	background: var(--accent);
	color: #fff;
	text-decoration: none;
}

.project-figure {
	margin: 1rem 0 0;
}

.project-figure img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.project-figure figcaption {
	font-size: 0.82rem;
	color: #94a3b8;
	margin-top: 0.4rem;
}

.project-news-link {
	display: none;
}

/* ================================================================
   DOWNLOADS + PHOTO GALLERY
   ================================================================ */

.photo-gallery {
	position: relative;
	margin-top: 1.5rem;
}

.pg-track {
	display: flex;
	gap: 0.75rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	padding-bottom: 0.5rem;
}

.pg-track::-webkit-scrollbar {
	height: 6px;
}

.pg-track::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 999px;
}

.pg-item {
	flex: 0 0 min(220px, 70vw);
	scroll-snap-align: start;
	border-radius: 10px;
	overflow: hidden;
}

.pg-item img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.pg-controls {
	display: flex;
	gap: 0.8rem;
	justify-content: flex-end;
	margin-top: 0.6rem;
}

.pg-prev,
.pg-next {
	background: #fff;
	border: 1px solid #94a3b8;
	border-radius: 6px;
	padding: 0.4rem 0.9rem;
	font-size: 0.85rem;
	cursor: pointer;
	color: var(--slate);
}

.pg-prev:hover,
.pg-next:hover {
	background: #f1f5f9;
}

/* ================================================================
   MANAGEMENT SECTION
   ================================================================ */

.management-section .block-slider {
	margin-top: 1.2rem;
}

/* ================================================================
   NEWS SECTION – More News link
   ================================================================ */

.news-more {
	margin-top: 1.4rem;
}

.news-more a {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.88rem;
}

/* ================================================================
   RESPONSIVE OVERRIDES
   ================================================================ */

@media (max-width: 960px) {
	.hero-image-slider {
		height: 55vw;
		min-height: 280px;
	}

	.his-text {
		font-size: 1.5rem;
	}

	.his-caption {
		bottom: 2.5rem;
	}

	.stock-quotes-grid,
	.projects-dual {
		grid-template-columns: 1fr;
	}

	.ticker-bar-inner {
		justify-content: center;
		gap: 0.5rem;
	}

	.cta-strip-inner {
		flex-direction: column;
		gap: 0.75rem;
	}

	.subscribe-strip-inner {
		flex-direction: column;
	}

	.subscribe-form input[type="email"] {
		min-width: 0;
		width: 100%;
	}
}
