/**
 * Ecrowd Affluence — Modern Design System v2.0
 * Enhanced with contemporary UI/UX patterns
 */

:root {
	/* Core palette */
	--ea-navy: #0a1f3c;
	--ea-navy-light: #1a3a5c;
	--ea-navy-mid: #132a4a;
	--ea-navy-deep: #061224;
	--ea-gold: #d4af37;
	--ea-gold-mid: #c9a227;
	--ea-gold-deep: #a88620;
	--ea-gold-light: #e4c76a;
	--ea-white: #ffffff;
	--ea-gray-light: #f8f9fa;
	--ea-gray-lighter: #f0f3f7;
	--ea-gray-dark: #6c757d;
	--ea-gray-darker: #495057;

	/* Semantic */
	--ea-primary: var(--ea-navy);
	--ea-primary-light: var(--ea-navy-mid);
	--ea-accent: var(--ea-gold);
	--ea-accent-hover: var(--ea-gold-light);
	--ea-body: var(--ea-navy);
	--ea-muted: rgba(10, 31, 60, 0.65);
	--ea-bg-soft: #f8f9fa;
	--ea-border-color: rgba(10, 31, 60, 0.12);

	--ea-rgb-navy: 10, 31, 60;
	--ea-rgb-gold: 212, 175, 55;

	/* Typography */
	--ea-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	--ea-font-heading: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

	/* Spacing */
	--ea-spacing-xs: 0.5rem;
	--ea-spacing-sm: 1rem;
	--ea-spacing-md: 1.5rem;
	--ea-spacing-lg: 2rem;
	--ea-spacing-xl: 3rem;
	--ea-spacing-2xl: 4rem;

	/* Shadows */
	--ea-shadow-sm: 0 2px 8px rgba(10, 31, 60, 0.08);
	--ea-shadow-md: 0 4px 16px rgba(10, 31, 60, 0.1);
	--ea-shadow-lg: 0 8px 32px rgba(10, 31, 60, 0.12);
	--ea-shadow-xl: 0 12px 48px rgba(10, 31, 60, 0.15);

	/* Border radius */
	--ea-radius-sm: 0.5rem;
	--ea-radius-md: 0.75rem;
	--ea-radius-lg: 1rem;
	--ea-radius-xl: 1.5rem;

	/* Transitions */
	--ea-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	/* Bootstrap 5 */
	--bs-primary: var(--ea-navy);
	--bs-primary-rgb: var(--ea-rgb-navy);
	--bs-link-color: var(--ea-gold-mid);
	--bs-link-hover-color: var(--ea-gold-deep);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--ea-font);
	color: var(--ea-body);
	background-color: var(--ea-white);
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--ea-font-heading);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.015em;
	margin-bottom: 1.2rem;
	color: var(--ea-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; font-weight: 700; }

p {
	margin-bottom: 1rem;
	color: var(--ea-muted);
	line-height: 1.8;
}

a {
	transition: var(--ea-transition);
	color: var(--ea-accent);
	text-decoration: none;
}

a:hover {
	color: var(--ea-gold-mid);
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Utilities */
.text-primary-dark { color: var(--ea-primary) !important; }
.bg-primary-dark { background-color: var(--ea-primary) !important; }
.text-accent { color: var(--ea-accent) !important; }
.bg-light { background-color: var(--ea-bg-soft) !important; }
.text-muted { color: var(--ea-muted) !important; }
.letter-spacing { letter-spacing: 0.08em; }

/* Buttons */
.btn {
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: var(--ea-radius-md);
	padding: 0.75rem 1.75rem;
	font-size: 0.95rem;
	transition: var(--ea-transition);
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: none;
}

.btn-lg {
	padding: 1rem 2.25rem;
	font-size: 1rem;
}

.btn-accent {
	background: linear-gradient(135deg, var(--ea-gold) 0%, var(--ea-gold-deep) 100%);
	color: var(--ea-white) !important;
	box-shadow: var(--ea-shadow-md);
}

.btn-accent:hover {
	background: linear-gradient(135deg, var(--ea-gold-light) 0%, var(--ea-gold) 100%);
	color: var(--ea-white) !important;
	transform: translateY(-3px);
	box-shadow: var(--ea-shadow-lg);
}

.btn-outline-primary {
	color: var(--ea-navy) !important;
	border: 2px solid var(--ea-navy) !important;
	background-color: transparent;
}

.btn-outline-primary:hover {
	background-color: var(--ea-navy) !important;
	color: var(--ea-white) !important;
	transform: translateY(-2px);
}

.btn-outline-light {
	border: 2px solid var(--ea-white) !important;
	color: var(--ea-white) !important;
}

.btn-outline-light:hover {
	background-color: var(--ea-white) !important;
	color: var(--ea-navy) !important;
	border-color: var(--ea-white) !important;
}

/* Header */
.top-bar {
	background: linear-gradient(90deg, var(--ea-navy-deep) 0%, var(--ea-navy) 50%, var(--ea-navy-mid) 100%);
	padding: 0.75rem 0;
	font-size: 0.9rem;
}

.site-header {
	background: linear-gradient(90deg, var(--ea-navy-deep) 0%, var(--ea-navy) 50%, var(--ea-navy-mid) 100%);
	border-bottom: 1px solid rgba(var(--ea-rgb-navy), 0.18);
	box-shadow: var(--ea-shadow-sm);
	transition: var(--ea-transition);
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header.scrolled {
	box-shadow: var(--ea-shadow-md);
}

.site-header .navbar {
	padding: 0.85rem 0;
}

.site-header .navbar-brand {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ea-white) !important;
	letter-spacing: -0.02em;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.site-header .navbar-brand img {
	max-height: 56px;
	width: auto;
	height: auto;
	transition: var(--ea-transition);
	filter: none;
}

.site-header:hover .navbar-brand img {
	filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.site-header .custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0;
}

.navbar .nav-link {
	font-weight: 600;
	color: var(--ea-white) !important;
	padding: 0.5rem 1rem !important;
	font-size: 0.95rem;
	position: relative;
	transition: var(--ea-transition);
}

/* Underline only on plain links — do not override Bootstrap .dropdown-toggle ::after (caret) */
.navbar .nav-item:not(.dropdown) .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 1rem;
	right: 1rem;
	height: 2px;
	background: var(--ea-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
	color: var(--ea-accent-hover) !important;
}

.navbar .nav-item:not(.dropdown) .nav-link:hover::after,
.navbar .nav-item:not(.dropdown) .nav-link:focus::after {
	transform: scaleX(1);
}

.site-header .navbar-collapse {
	overflow: visible;
}

.navbar .dropdown-menu {
	border-radius: var(--ea-radius-md);
	margin-top: 0.5rem;
	border: 1px solid var(--ea-border-color);
	box-shadow: var(--ea-shadow-lg);
	animation: slideDown 0.2s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.navbar .dropdown-item {
	color: var(--ea-primary);
	padding: 0.75rem 1.25rem;
	border-bottom: 1px solid var(--ea-border-color);
	transition: var(--ea-transition);
}

.navbar .dropdown-item:last-child {
	border-bottom: none;
}

.navbar .dropdown-item:hover {
	background-color: var(--ea-bg-soft);
	color: var(--ea-accent);
	padding-left: 1.5rem;
}

/* Hero Section */
.hero-section {
	position: relative;
	overflow: hidden;
	min-height: 500px;
	background: linear-gradient(
		118deg,
		#050608 0%,
		#0a1528 22%,
		#0f1f38 42%,
		#1c2430 55%,
		#2a2318 68%,
		#4a3812 82%,
		#6b4a0a 92%,
		#8a6214 100%
	);
	display: flex;
	align-items: center;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse 85% 120% at 96% 48%, rgba(var(--ea-rgb-gold), 0.42) 0%, transparent 50%),
		radial-gradient(ellipse 50% 80% at 78% 52%, rgba(255, 200, 120, 0.12) 0%, transparent 45%),
		radial-gradient(ellipse 60% 50% at 12% 78%, rgba(10, 31, 60, 0.5) 0%, transparent 55%);
	pointer-events: none;
}

.hero-deco {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	width: min(200px, 30vw);
	height: min(200px, 30vw);
	border-radius: 50%;
	border: 2px solid rgba(var(--ea-rgb-gold), 0.38);
	background: radial-gradient(circle at 32% 30%, rgba(255, 230, 180, 0.22) 0%, transparent 52%);
	box-shadow: 0 0 0 1px rgba(var(--ea-rgb-gold), 0.12), 0 0 80px rgba(var(--ea-rgb-gold), 0.18);
	z-index: 1;
	pointer-events: none;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(-50%); }
	50% { transform: translateY(-45%); }
}

.hero-deco::before {
	content: "";
	position: absolute;
	inset: -18%;
	border-radius: 50%;
	border: 1px solid rgba(var(--ea-rgb-gold), 0.15);
	opacity: 0.85;
}

.hero-deco::after {
	content: "$";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.75rem, 9vw, 4.25rem);
	font-weight: 700;
	color: rgba(var(--ea-rgb-gold), 0.42);
	font-family: var(--ea-font-heading);
	line-height: 1;
}

.hero-owl {
	z-index: 2;
	min-height: 500px;
}

.hero-owl .owl-dots {
	position: absolute;
	bottom: 1.25rem;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 3;
}

.hero-owl .owl-dot span {
	background: rgba(255, 255, 255, 0.4) !important;
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
	transition: var(--ea-transition);
}

.hero-owl .owl-dot.active span {
	background: var(--ea-accent) !important;
	transform: scale(1.2);
}

.hero-slide {
	min-height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	padding: 0;
	position: relative;
}

.hero-slide--media {
	min-height: 500px;
}

.hero-slide__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.hero-slide__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		105deg,
		rgba(6, 18, 36, 0.92) 0%,
		rgba(6, 18, 36, 0.7) 42%,
		rgba(10, 31, 60, 0.35) 100%
	);
}

.hero-slide__inner {
	z-index: 2;
	width: 100%;
	padding: 5rem 0;
}

.hero-headline {
	color: var(--ea-gold-light);
	font-family: var(--ea-font);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	line-height: 1.4;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	margin-bottom: 1.5rem;
}

.hero-kicker {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	margin-bottom: 1rem;
	opacity: 0.95;
}

@media (min-width: 992px) {
	.hero-slide:not(.hero-slide--media),
	.hero-slide--media {
		min-height: 580px;
	}

	.hero-slide__inner {
		padding: 6rem 0;
	}
}

/* Section Title */
.section-title {
	font-family: var(--ea-font-heading);
	color: var(--ea-primary);
	font-weight: 700;
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--ea-gold) 0%, transparent 100%);
	border-radius: 2px;
}

/* Values Cards */
.values-card {
	border: 1px solid var(--ea-border-color);
	border-radius: var(--ea-radius-lg);
	padding: 2.5rem 2rem;
	transition: var(--ea-transition);
	height: 100%;
	background: var(--ea-white);
	position: relative;
	overflow: hidden;
}

.values-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--ea-gold), var(--ea-gold-deep));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.values-card:hover {
	box-shadow: var(--ea-shadow-lg);
	border-color: var(--ea-gold);
	transform: translateY(-4px);
}

.values-card:hover::before {
	transform: scaleX(1);
}

.values-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(var(--ea-rgb-gold), 0.15) 0%, rgba(var(--ea-rgb-navy), 0.08) 100%);
	color: var(--ea-accent);
	font-size: 1.75rem;
	line-height: 1;
	transition: var(--ea-transition);
}

.values-card:hover .values-card__icon {
	background: linear-gradient(135deg, rgba(var(--ea-rgb-gold), 0.25) 0%, rgba(var(--ea-rgb-navy), 0.12) 100%);
	transform: scale(1.1) rotate(5deg);
}

.values-card h3 {
	margin-bottom: 1rem;
	font-size: 1.35rem;
}

.values-card p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Service Cards */
.service-card {
	border-radius: var(--ea-radius-lg);
	border: 1px solid var(--ea-border-color);
	background: var(--ea-white);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--ea-shadow-sm);
	position: relative;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ea-shadow-lg);
	border-color: var(--ea-accent);
}

.service-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--ea-bg-soft);
	flex-shrink: 0;
}

.service-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s ease;
}

.service-card:hover .service-card__img {
	transform: scale(1.06);
}

.service-card__icon-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--ea-white);
	box-shadow: var(--ea-shadow-md);
	color: var(--ea-accent);
	font-size: 1.35rem;
	line-height: 1;
	transition: var(--ea-transition);
}

.service-card:hover .service-card__icon-badge {
	transform: scale(1.15);
	background: var(--ea-accent);
	color: var(--ea-white);
	box-shadow: var(--ea-shadow-lg);
}

.service-card__value-overlay {
	position: absolute;
	left: 14px;
	top: 12px;
	z-index: 3;
	padding: 0;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1;
	font-family: var(--ea-font-heading);
	color: var(--ea-white);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

.service-card__title-strip {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 1rem 1.1rem;
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ea-white);
	background: linear-gradient(to top, rgba(6, 18, 36, 0.82) 0%, rgba(6, 18, 36, 0.42) 48%, transparent 100%);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card__content {
	position: absolute;
	inset: 0;
	z-index: 4;
	padding: 1.4rem 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.9rem;
	color: var(--ea-white);
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	background: linear-gradient(165deg, rgba(6, 18, 36, 0.68) 0%, rgba(6, 18, 36, 0.78) 100%);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card__content::before,
.service-card__content::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 50%;
	z-index: 1;
	background: linear-gradient(135deg, rgba(6, 18, 36, 0.94) 0%, rgba(10, 31, 60, 0.88) 100%);
	transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card__content::before {
	top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card__content::after {
	bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card__content > * {
	position: relative;
	z-index: 2;
}

.service-card__content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.95rem;
	line-height: 1.7;
}

.service-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--ea-accent-hover);
}

.service-card:hover .service-card__title-strip,
.service-card:focus-within .service-card__title-strip {
	opacity: 0;
	transform: translateY(8px);
}

.service-card:hover .service-card__content,
.service-card:focus-within .service-card__content {
	opacity: 1;
	transform: translateY(0);
}

.service-card:hover .service-card__content::before,
.service-card:focus-within .service-card__content::before {
	transform: translateY(-104%);
}

.service-card:hover .service-card__content::after,
.service-card:focus-within .service-card__content::after {
	transform: translateY(104%);
}

.service-card__body {
	padding: 2rem 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card__body h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.service-card__body p {
	font-size: 0.95rem;
	margin-bottom: 0;
	flex: 1;
}

.service-num {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: var(--ea-border-color);
	font-family: var(--ea-font-heading);
	margin-bottom: 0.5rem;
}

/* Team Section */
.team-section__bar {
	display: inline-block;
	width: 4px;
	height: 1.2rem;
	background: var(--ea-primary);
	border-radius: 2px;
	flex-shrink: 0;
	animation: slideUp 0.5s ease;
}

@keyframes slideUp {
	from { height: 0; }
	to { height: 1.2rem; }
}

.team-section__kicker {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	font-weight: 700;
}

.team-section__title {
	font-weight: 700;
}

.team-card-v2 {
	background: var(--ea-white);
	border: 1px solid var(--ea-border-color);
	box-shadow: var(--ea-shadow-sm);
	transition: var(--ea-transition);
	overflow: hidden;
	border-radius: var(--ea-radius-lg);
	display: flex;
	flex-direction: column;
}

.team-card-v2:hover {
	box-shadow: var(--ea-shadow-lg);
	border-color: var(--ea-accent);
	transform: translateY(-6px);
}

.team-card-v2__visual {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--ea-bg-soft);
}

.team-card-v2__media {
	width: 100%;
	height: 100%;
}

.team-card-v2__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--ea-transition);
}

.team-card-v2:hover .team-card-v2__img {
	transform: scale(1.08);
	filter: brightness(0.85);
}

.team-card-v2__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(10, 31, 60, 0.9);
	color: var(--ea-white);
	opacity: 0;
	visibility: hidden;
	transition: var(--ea-transition);
	backdrop-filter: blur(2px);
}

.team-card-v2:hover .team-card-v2__overlay,
.team-card-v2:focus-within .team-card-v2__overlay {
	opacity: 1;
	visibility: visible;
}

.team-card-v2__overlay-inner {
	position: relative;
	max-width: 100%;
	max-height: 100%;
	overflow: auto;
	text-align: center;
	padding-right: 0.75rem;
}

.team-card-v2__overlay-name {
	font-family: var(--ea-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ea-white);
	margin: 0 0 0.85rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--ea-gold);
	display: inline-block;
}

.team-card-v2__overlay-bio {
	font-size: 0.85rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	text-align: center;
}

.team-card-v2__footer {
	padding: 1.35rem 1.25rem;
	background: var(--ea-white);
	border-top: 1px solid var(--ea-border-color);
	transition: var(--ea-transition);
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.team-card-v2:hover .team-card-v2__footer,
.team-card-v2:focus-within .team-card-v2__footer {
	background: var(--ea-bg-soft);
	border-top-color: var(--ea-accent);
}

.team-card-v2__footer-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ea-primary);
	margin-bottom: 0.3rem;
	transition: var(--ea-transition);
}

.team-card-v2__footer-role {
	font-size: 0.85rem;
	color: var(--ea-muted);
	transition: var(--ea-transition);
	font-weight: 500;
}

/* Homepage team (split header + carousel) */
.team-section--home .team-section__kicker--bullet::before {
	content: '•\00a0';
	font-weight: 700;
}

.team-section--home .team-section__title--home {
	color: #111827;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.team-section__lead {
	font-size: 1rem;
	line-height: 1.65;
	max-width: 38rem;
}

.btn-team-home-cta {
	background: var(--ea-primary) !important;
	border: none !important;
	color: var(--ea-white) !important;
	font-weight: 600;
	box-shadow: var(--ea-shadow-sm);
	transition: var(--ea-transition);
}

.btn-team-home-cta:hover {
	background: var(--ea-navy-mid) !important;
	color: var(--ea-white) !important;
	transform: translateY(-2px);
	box-shadow: var(--ea-shadow-md);
}

.btn-team-home-cta__arrow {
	display: inline-block;
	margin-left: 0.35rem;
	transition: transform 0.2s ease;
}

.btn-team-home-cta:hover .btn-team-home-cta__arrow {
	transform: translateX(4px);
}

/* Team profile cards (reference: circular portrait, brand chip, email, social strip) */
.team-profile-card {
	position: relative;
	width: 100%;
}

.team-profile-card__shell {
	background: var(--ea-white);
	border-radius: 30px;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
	overflow: hidden;
	transition: box-shadow 0.35s ease, transform 0.35s ease;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.team-profile-card:hover .team-profile-card__shell,
.team-profile-card:focus-within .team-profile-card__shell {
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
	transform: translateY(-4px);
}

.team-profile-card__main {
	position: relative;
	padding: 2.75rem 1.75rem 1.5rem;
}

.team-profile-card__brand {
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--ea-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(10, 31, 60, 0.2);
	z-index: 2;
}

.team-profile-card__brand-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.2rem;
}

.team-profile-card__avatar-wrap {
	position: relative;
	width: 148px;
	height: 148px;
	margin-bottom: 1.35rem;
	flex-shrink: 0;
	border-radius: 50%;
	padding: 4px;
	background: conic-gradient(
		from -90deg,
		var(--ea-gold) 0deg,
		var(--ea-gold) 270deg,
		rgba(212, 175, 55, 0.15) 270deg,
		rgba(212, 175, 55, 0.15) 360deg
	);
	box-sizing: border-box;
}

.team-profile-card__avatar-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
}

.team-profile-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.team-profile-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #e2e8f0 0%, #f8fafc 100%);
}

.team-profile-card__placeholder-icon {
	font-size: 3rem;
	color: rgba(10, 31, 60, 0.25);
}

.team-profile-card__name {
	font-family: var(--ea-font-heading);
	font-size: clamp(1.2rem, 2.5vw, 1.45rem);
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0 0 0.4rem;
}

.team-profile-card__role {
	font-size: 0.9rem;
	font-weight: 500;
	color: #64748b;
	margin: 0 0 0.85rem;
	line-height: 1.45;
}

.team-profile-card__bio {
	font-size: 0.875rem;
	line-height: 1.65;
	color: #64748b;
	margin: 0 0 1.15rem;
	flex-grow: 0;
}

.team-profile-card__email {
	display: inline-block;
	max-width: 100%;
	padding: 0.55rem 1.35rem;
	margin: 0 auto;
	background: var(--ea-navy);
	color: var(--ea-white) !important;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	border-radius: 999px;
	text-decoration: none !important;
	transition: background 0.2s ease, transform 0.2s ease;
	word-break: break-all;
}

.team-profile-card__email:hover,
.team-profile-card__email:focus-visible {
	background: var(--ea-navy-mid);
	color: var(--ea-white) !important;
	transform: translateY(-1px);
}

.team-profile-card__social {
	margin-top: auto !important;
}

.team-profile-card__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: #475569 !important;
	font-size: 1.15rem;
	border-radius: 50%;
	transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.team-profile-card__social-link:hover,
.team-profile-card__social-link:focus-visible {
	color: var(--ea-navy) !important;
	background: rgba(10, 31, 60, 0.06);
	transform: translateY(-2px);
}

.team-profile-card__accent-strip {
	height: 10px;
	background: var(--ea-navy);
	flex-shrink: 0;
}

.team-owl.owl-carousel .owl-item {
	display: flex;
	align-items: stretch;
}

.team-owl .item {
	padding: 0.35rem 0.5rem;
	display: flex;
	width: 100%;
}

.team-owl.owl-carousel .owl-stage-outer {
	padding-bottom: 0.25rem;
}

.team-owl .owl-dots {
	margin-top: 1.75rem !important;
	text-align: center;
}

.team-owl .owl-dots .owl-dot span {
	width: 2rem;
	height: 4px;
	margin: 0 4px !important;
	border-radius: 2px;
	background: #d1d5db !important;
	transition: background 0.2s ease, width 0.2s ease;
}

.team-owl .owl-dots .owl-dot.active span,
.team-owl .owl-dots .owl-dot:hover span {
	background: var(--ea-primary) !important;
}

.team-owl .owl-dots .owl-dot.active span {
	width: 2.5rem;
}

/* Team archive (/team/) — professional layout */
.team-archive-page {
	background: var(--ea-bg-soft);
}

.team-archive-hero--pro {
	position: relative;
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	overflow: hidden;
}

.team-archive-hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--ea-navy-deep) 0%,
		var(--ea-navy) 42%,
		var(--ea-navy-mid) 100%
	);
}

.team-archive-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(var(--ea-rgb-gold), 0.12) 0%, transparent 55%);
	pointer-events: none;
}

.team-archive-hero--pro .team-archive-hero__crumb {
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.18em;
	font-size: 0.72rem;
}

.team-archive-hero--pro .team-archive-hero__title {
	letter-spacing: -0.03em;
	line-height: 1.15;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.team-archive-hero--pro .team-archive-hero__kicker {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
}

.team-archive-hero__subtitle-text {
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1.15rem, 2.2vw, 1.45rem);
	letter-spacing: -0.01em;
}

.team-archive-hero__intro-card {
	border-radius: var(--ea-radius-lg);
	background: var(--ea-white) !important;
}

.team-archive-hero__lead {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--ea-body);
	margin-bottom: 0;
}

.team-archive-hero__lead--muted {
	color: var(--ea-muted);
	font-size: 0.95rem;
}

.team-archive-nav--pills .team-archive-nav__pill {
	display: inline-block;
	padding: 0.5rem 1.1rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 2rem;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.team-archive-nav--pills .team-archive-nav__pill:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(var(--ea-rgb-gold), 0.5);
	color: var(--ea-white);
	transform: translateY(-1px);
}

.team-archive-body--pro {
	background: linear-gradient(180deg, var(--ea-bg-soft) 0%, var(--ea-white) 18%);
}

.team-archive-body--pad {
	padding-bottom: clamp(3rem, 6vw, 5rem) !important;
}

.team-archive-divider--pro {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.team-archive-divider--pro .team-archive-divider__line {
	flex: 1;
	min-width: 3rem;
	max-width: 8rem;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--ea-border-color), transparent);
}

.team-archive-divider--pro .team-archive-divider__text {
	font-family: var(--ea-font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	font-style: italic;
	color: var(--ea-accent);
	letter-spacing: 0.1em;
	padding: 0 0.5rem;
}

.team-archive-section__head {
	margin-bottom: 1.75rem;
}

.team-archive-section__accent {
	display: block;
	width: 4px;
	min-height: 2.25rem;
	border-radius: 2px;
	background: linear-gradient(180deg, var(--ea-accent) 0%, rgba(var(--ea-rgb-gold), 0.45) 100%);
	flex-shrink: 0;
}

.team-archive-section__title {
	font-family: var(--ea-font-heading);
	letter-spacing: -0.02em;
}

/* Team archive grid uses .team-profile-card (same as homepage carousel). */

/* Testimonials */
.testimonial-owl .owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 1rem;
	z-index: 2;
}

.testimonial-owl .owl-nav button {
	pointer-events: auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ea-white) !important;
	box-shadow: var(--ea-shadow-md);
	color: var(--ea-primary) !important;
	font-size: 1.35rem;
	line-height: 1;
	border: none;
	transition: var(--ea-transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-owl .owl-nav button:hover {
	background: var(--ea-accent) !important;
	color: var(--ea-white) !important;
	transform: scale(1.1);
	box-shadow: var(--ea-shadow-lg);
}

.testimonial-card {
	background: var(--ea-bg-soft);
	border-radius: var(--ea-radius-lg);
	padding: 2.25rem;
	border: 1px solid var(--ea-border-color);
	transition: var(--ea-transition);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 15px;
	font-size: 4rem;
	color: rgba(212, 175, 55, 0.1);
	font-family: Georgia, serif;
}

.testimonial-card:hover {
	box-shadow: var(--ea-shadow-md);
	border-color: var(--ea-accent);
	transform: translateY(-3px);
}

.testimonial-card .text-muted {
	color: var(--ea-muted) !important;
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-card .text-primary-dark {
	font-weight: 600;
	font-size: 0.95rem;
	margin: 0;
}

/* CTA Section */
.cta-strip {
	background: linear-gradient(135deg, var(--ea-navy-mid) 0%, var(--ea-navy) 45%, var(--ea-navy-deep) 100%);
	position: relative;
	overflow: hidden;
}

.cta-strip::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.cta-strip h2 {
	color: var(--ea-white);
	position: relative;
	z-index: 1;
}

.cta-strip p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
	position: relative;
	z-index: 1;
}

/* Services Carousel */
.services-section__head {
	position: relative;
	margin-bottom: 1.75rem !important;
}

.services-section__view-all {
	min-width: 9.5rem;
	justify-content: center;
}

.services-section__actions {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
}

.services-section__nav {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
}

.services-section__nav .owl-nav {
	position: static;
	display: inline-flex;
	gap: 0.75rem;
	margin: 0;
}

.services-section__carousel {
	padding-top: 0.75rem;
}

.services-section__carousel .owl-stage-outer {
	padding: 0.35rem 0 0.9rem;
}

.services-owl .owl-nav {
	position: absolute;
	top: -58px;
	right: 0;
	display: flex;
	gap: 0.75rem;
	pointer-events: all;
}

.services-owl .owl-nav button,
.services-section__nav .owl-nav button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ea-white) !important;
	border: 2px solid var(--ea-border-color) !important;
	color: var(--ea-primary) !important;
	font-size: 1rem;
	transition: var(--ea-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--ea-shadow-sm);
}

.services-owl .owl-nav button:hover,
.services-section__nav .owl-nav button:hover {
	background: var(--ea-accent) !important;
	color: var(--ea-white) !important;
	border-color: var(--ea-accent) !important;
	box-shadow: var(--ea-shadow-md);
	transform: translateY(-2px);
}

/* Footer */
.footer-menu a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	display: flex;
	align-items: center;
	padding: 0.5rem 0;
	transition: var(--ea-transition);
	position: relative;
}

.footer-menu a::before {
	content: '→';
	position: absolute;
	left: -1.5rem;
	opacity: 0;
	transition: var(--ea-transition);
}

.footer-menu a:hover {
	color: var(--ea-accent);
	padding-left: 1.5rem;
}

.footer-menu a:hover::before {
	opacity: 1;
	left: 0;
}

.site-footer {
	background: var(--ea-primary);
	color: rgba(255, 255, 255, 0.8);
}

.site-footer .widget-title {
	color: var(--ea-white);
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--ea-accent);
}

.site-footer .textwidget,
.site-footer p {
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
}

.footer-logo .custom-logo-link img {
	filter: none;
	max-height: 52px;
	width: auto;
	transition: var(--ea-transition);
}

.footer-logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.8rem;
	border-radius: 0.8rem;
	/* background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.4); */
	transition: var(--ea-transition);
}

.footer-logo .custom-logo-link:hover img {
	filter: drop-shadow(0 4px 10px rgba(10, 31, 60, 0.2));
}

.footer-logo .custom-logo-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

/* -------------------------------------------------------------------------
   Blog index, archives (/blog/), hero + cards
   ------------------------------------------------------------------------- */
.blog-hero {
	background: linear-gradient(135deg, var(--ea-navy-deep) 0%, var(--ea-navy) 50%, var(--ea-navy-mid) 100%);
	color: var(--ea-white);
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	position: relative;
	overflow: hidden;
}

.blog-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 50% at 85% 15%, rgba(212, 175, 55, 0.1) 0%, transparent 55%);
	pointer-events: none;
}

.blog-hero__inner {
	position: relative;
	z-index: 1;
	/* max-width: 48rem; */
}

.blog-hero__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ea-gold-light);
	margin-bottom: 0.75rem;
}

.blog-hero__title {
	color: var(--ea-white);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
	line-height: 1.15;
	font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.blog-hero__description {
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
	max-width: 40rem;
}

.blog-hero__description p {
	margin-bottom: 0.5rem;
	color: inherit;
}

.blog-hero__description p:last-child {
	margin-bottom: 0;
}

.blog-index {
	background: var(--ea-bg-soft);
}

.blog-posts-list {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.blog-posts-grid {
	margin-top: 0;
}

.blog-sidebar {
	position: sticky;
	top: 110px;
	font-size: 0.92rem;
}

.blog-sidebar .widget {
	background: #f2f4f7;
	border: 1px solid rgba(var(--ea-rgb-navy), 0.08);
	border-radius: 0.75rem;
	padding: 1rem;
	box-shadow: none;
	margin-bottom: 1rem;
}

.blog-sidebar .widget-title {
	font-size: 0.88rem;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0.01em;
	color: var(--ea-primary);
	margin: 0;
	padding: 0;
	border-bottom: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.blog-sidebar .widget-title::after {
	content: "+";
	font-size: 1.05rem;
	line-height: 1;
	font-weight: 400;
	color: rgba(var(--ea-rgb-navy), 0.45);
}

.blog-sidebar .widget_calendar .widget-title::after {
	content: "−";
}

.blog-sidebar .search-form .input-group {
	border: 1px solid rgba(var(--ea-rgb-navy), 0.14);
	border-radius: 0.55rem;
	overflow: hidden;
	background: var(--ea-white);
}

.blog-sidebar .search-form .form-control {
	border: 0;
	min-height: 2.8rem;
	box-shadow: none;
	font-size: 0.88rem;
}

.blog-sidebar .search-form .btn {
	border-radius: 0;
	padding: 0.65rem 0.95rem;
	font-size: 0.85rem;
}

.blog-sidebar .widget ul {
	list-style: none;
	padding-left: 0;
	margin: 0.9rem 0 0;
}

.blog-sidebar .widget li {
	padding: 0.45rem 0;
	border-bottom: 1px solid rgba(var(--ea-rgb-navy), 0.08);
	font-size: 0.9rem;
}

.blog-sidebar .widget li:last-child {
	border-bottom: 0;
}

.blog-sidebar .widget a {
	color: var(--ea-primary);
	text-decoration: none;
	font-size: 0.9rem;
}

.blog-sidebar .widget a:hover {
	color: var(--ea-accent);
}

.blog-card {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	width: 100%;
}

.blog-card__inner {
	display: flex;
	flex-direction: column;
	background: var(--ea-white);
	border: 1px solid var(--ea-border-color);
	border-radius: 0.8rem;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(var(--ea-rgb-navy), 0.08);
	transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
	height: 100%;
}

.blog-card:hover .blog-card__inner,
.blog-card:focus-within .blog-card__inner {
	box-shadow: var(--ea-shadow-lg);
	border-color: rgba(212, 175, 55, 0.35);
	transform: translateY(-4px);
}

.blog-card__media-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.blog-card__media {
	position: relative;
	aspect-ratio: 16 / 7.5;
	overflow: hidden;
	background: linear-gradient(145deg, #e8edf3 0%, #f8fafc 100%);
}

.blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
	transform: scale(1.04);
}

.blog-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(10, 31, 60, 0.2);
	font-size: 3rem;
}

.blog-card__body {
	padding: 1rem 1rem 0.95rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-card__meta-top {
	margin-bottom: 0.55rem;
}

.blog-card__meta-top .posted-on {
	font-size: 0.78rem;
	font-weight: 500;
	color: rgba(var(--ea-rgb-navy), 0.72) !important;
}

.blog-card__title {
	font-family: var(--ea-font-heading);
	font-size: clamp(1.05rem, 1.5vw, 1.32rem);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.02em;
	margin: 0 0 0.45rem;
}

.blog-card__title a {
	color: var(--ea-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-card__title a:hover {
	color: var(--ea-navy-mid);
}

.blog-card__excerpt {
	font-size: 0.8rem;
	line-height: 1.55;
	color: var(--ea-muted);
	margin-bottom: 0.8rem;
	flex-grow: 1;
}

.blog-card__excerpt p {
	margin-bottom: 0;
}

.blog-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	padding-top: 0.55rem;
	border-top: 1px solid var(--ea-border-color);
	margin-top: auto;
}

.blog-card__read {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ea-accent) !important;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	transition: color 0.2s ease, gap 0.2s ease;
}

.blog-card__read:hover {
	color: var(--ea-gold-deep) !important;
}

.blog-card__read:hover .blog-card__read-arrow {
	transform: translateX(4px);
}

.blog-card__read-arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}

@media (max-width: 1199px) {
	.blog-sidebar {
		position: static;
	}
}

@media (max-width: 991px) {
	.blog-card__media {
		aspect-ratio: 16 / 8.5;
	}
}

.blog-pagination-wrap .navigation {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.blog-pagination-wrap .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}

.blog-pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0 0.65rem;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--ea-radius-md);
	border: 1px solid var(--ea-border-color);
	background: var(--ea-white);
	color: var(--ea-primary);
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-pagination-wrap .page-numbers.current {
	background: var(--ea-navy);
	border-color: var(--ea-navy);
	color: var(--ea-white);
}

.blog-pagination-wrap .page-numbers:hover:not(.current) {
	border-color: var(--ea-accent);
	color: var(--ea-accent);
}

.blog-pagination-wrap .page-numbers.dots {
	border: none;
	background: transparent;
	min-width: auto;
}

/* Newsletter cards (archive + shortcode) */
.newsletter-card {
	background: var(--ea-white);
	border: 1px solid rgba(var(--ea-rgb-navy), 0.1);
	border-radius: 0.9rem;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(var(--ea-rgb-navy), 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(var(--ea-rgb-navy), 0.12);
}

.newsletter-card__media {
	display: block;
	aspect-ratio: 16 / 8;
	overflow: hidden;
	background: linear-gradient(145deg, #e8edf3 0%, #f8fafc 100%);
}

.newsletter-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.newsletter-card:hover .newsletter-card__img {
	transform: scale(1.03);
}

.newsletter-card__body {
	padding: 1rem;
}

.newsletter-card__date {
	font-size: 0.82rem;
	font-weight: 500;
	color: rgba(var(--ea-rgb-navy), 0.7);
}

.newsletter-card__title {
	font-size: 1.1rem;
	line-height: 1.35;
	margin: 0;
}

.newsletter-card__title a {
	color: var(--ea-primary);
	text-decoration: none;
}

.newsletter-card__title a:hover {
	color: var(--ea-navy-mid);
}

.newsletter-card__excerpt {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--ea-muted);
}

.newsletter-subscribe {
	background: var(--ea-white);
	border: 1px solid rgba(var(--ea-rgb-navy), 0.1);
	border-radius: 0.9rem;
	padding: 1rem;
	box-shadow: 0 10px 28px rgba(var(--ea-rgb-navy), 0.08);
}

.newsletter-subscribe__title {
	margin: 0 0 0.35rem;
	font-size: 1.1rem;
	color: var(--ea-primary);
}

.newsletter-subscribe__desc {
	margin: 0 0 0.75rem;
	font-size: 0.92rem;
	color: var(--ea-muted);
}

.newsletter-subscribe__msg {
	font-size: 0.88rem;
	padding: 0.5rem 0.65rem;
	border-radius: 0.45rem;
	margin: 0 0 0.75rem;
}

.newsletter-subscribe__msg.is-success {
	background: rgba(25, 135, 84, 0.12);
	color: #146c43;
}

.newsletter-subscribe__msg.is-error {
	background: rgba(220, 53, 69, 0.1);
	color: #842029;
}

.newsletter-subscribe__msg.is-info {
	background: rgba(var(--ea-rgb-navy), 0.08);
	color: var(--ea-primary);
}

.newsletter-subscribe__row {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.newsletter-subscribe__input {
	flex: 1 1 220px;
	min-height: 2.7rem;
	border: 1px solid rgba(var(--ea-rgb-navy), 0.16);
	border-radius: 0.5rem;
	padding: 0.55rem 0.75rem;
	font-size: 0.92rem;
}

.newsletter-subscribe__btn {
	white-space: nowrap;
}

/* Post Cards */
.post-card {
	border: 1px solid var(--ea-border-color);
	border-radius: var(--ea-radius-lg);
	overflow: hidden;
	transition: var(--ea-transition);
	background: var(--ea-white);
	box-shadow: var(--ea-shadow-sm);
}

.post-card:hover {
	box-shadow: var(--ea-shadow-lg);
	border-color: var(--ea-accent);
	transform: translateY(-4px);
}

.post-card .card-img-top {
	height: 200px;
	object-fit: cover;
	transition: var(--ea-transition);
}

.post-card:hover .card-img-top {
	transform: scale(1.05);
	filter: brightness(0.9);
}

.post-card .card-body {
	padding: 1.75rem;
}

.post-card .card-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.post-card .card-text {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

/* Entry content */
.entry-content {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--ea-muted);
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--ea-radius-lg);
	margin: 1.5rem 0;
}

.entry-content p {
	margin-bottom: 1.25rem;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.page-layout {
	background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 100%);
}

.page-content-card {
	background: var(--ea-white);
	border: 1px solid rgba(var(--ea-rgb-navy), 0.08);
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(var(--ea-rgb-navy), 0.08);
}

.page-content-card__media {
	position: relative;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	background: linear-gradient(145deg, #e8edf3 0%, #f7f9fc 100%);
}

.page-content-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.page-content-card__body {
	padding: clamp(1.35rem, 3vw, 2.25rem);
}

.page-article {
	font-size: 1rem;
}

.page-sidebar {
	position: sticky;
	top: 110px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.page-sidebar > .widget-area,
.page-sidebar > .blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.page-sidebar__card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 250, 0.98) 100%);
	border: 1px solid rgba(var(--ea-rgb-navy), 0.08);
	border-radius: 1rem;
	padding: 1.2rem 1.15rem;
	box-shadow: 0 14px 36px rgba(var(--ea-rgb-navy), 0.08);
}

.page-sidebar__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ea-accent);
}

.page-sidebar__title {
	color: var(--ea-primary);
	font-weight: 700;
	line-height: 1.3;
}

.page-sidebar__text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--ea-muted);
}

.page-sidebar__nav {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.page-sidebar__nav-item {
	margin: 0;
}

.page-sidebar__nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 0.85rem;
	background: rgba(var(--ea-rgb-navy), 0.03);
	border: 1px solid rgba(var(--ea-rgb-navy), 0.06);
	color: var(--ea-primary);
	text-decoration: none;
	font-weight: 600;
	transition: var(--ea-transition);
}

.page-sidebar__nav-link:hover {
	background: rgba(var(--ea-rgb-gold), 0.12);
	border-color: rgba(var(--ea-rgb-gold), 0.3);
	color: var(--ea-primary);
	transform: translateX(3px);
}

.page-sidebar__nav-item.is-active .page-sidebar__nav-link {
	background: linear-gradient(135deg, rgba(var(--ea-rgb-navy), 0.92) 0%, rgba(19, 42, 74, 0.96) 100%);
	border-color: rgba(var(--ea-rgb-navy), 0.9);
	color: var(--ea-white);
	box-shadow: 0 12px 28px rgba(var(--ea-rgb-navy), 0.2);
}

.page-sidebar__nav-arrow {
	font-size: 1rem;
	transition: transform 0.2s ease;
}

.page-sidebar__nav-link:hover .page-sidebar__nav-arrow {
	transform: translateX(4px);
}

@media (max-width: 991px) {
	.page-sidebar {
		position: static;
	}

	.page-content-card__media {
		aspect-ratio: 16 / 9;
	}
}

.entry-meta {
	font-size: 0.85rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.entry-meta a {
	color: var(--ea-accent);
}

/* Pagination */
.pagination {
	justify-content: center;
	margin-top: 3rem;
	gap: 0.5rem;
}

.page-link {
	color: var(--ea-primary);
	border-color: var(--ea-border-color);
	border-radius: var(--ea-radius-md);
	margin: 0 0.25rem;
	transition: var(--ea-transition);
	font-weight: 500;
}

.page-item.active .page-link {
	background-color: var(--ea-accent);
	border-color: var(--ea-accent);
	color: var(--ea-white);
	box-shadow: var(--ea-shadow-md);
}

.page-link:hover {
	color: var(--ea-accent);
	border-color: var(--ea-accent);
	transform: translateY(-2px);
}

/* Comments */
.comment-list .comment {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--ea-border-color);
}

.comment-list .comment:last-child {
	border-bottom: none;
}

.comment-list .children {
	list-style: none;
	margin-top: 1.5rem;
	margin-left: 2rem;
	padding-left: 1.5rem;
	border-left: 3px solid var(--ea-accent);
}

/* Service Detail Page */
.svc-hero {
	position: relative;
	min-height: 28rem;
	display: flex;
	align-items: flex-end;
	padding: 4rem 0 4.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, var(--ea-navy-deep) 0%, var(--ea-navy) 45%, var(--ea-navy-mid) 100%);
}

.svc-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.svc-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(105deg, rgba(var(--ea-rgb-navy), 0.88) 0%, rgba(var(--ea-rgb-navy), 0.55) 45%, rgba(var(--ea-rgb-navy), 0.35) 100%);
}

.svc-hero--has-image .svc-hero__overlay {
	background: linear-gradient(105deg, rgba(var(--ea-rgb-navy), 0.92) 0%, rgba(var(--ea-rgb-navy), 0.5) 50%, rgba(var(--ea-rgb-navy), 0.25) 100%);
}

.svc-hero__inner {
	z-index: 2;
	width: 100%;
}

.svc-hero__title {
	font-family: var(--ea-font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--ea-white);
	line-height: 1.15;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	margin-bottom: 1rem;
}

.svc-hero__kicker {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1rem;
	display: block;
}

.svc-hero__rule {
	width: 4rem;
	height: 4px;
	background: var(--ea-accent);
	border-radius: 2px;
	display: inline-block;
}

.svc-detail-body {
	background: var(--ea-white);
	padding: 3rem 0;
}

.svc-sidebar {
	background: var(--ea-white);
	border: 1px solid var(--ea-border-color);
	border-radius: var(--ea-radius-lg);
	padding: 1.75rem;
	box-shadow: var(--ea-shadow-sm);
	transition: var(--ea-transition);
	position: sticky;
	top: 100px;
}

.svc-sidebar:hover {
	box-shadow: var(--ea-shadow-md);
}

.svc-sidebar__title {
	color: var(--ea-primary);
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.5rem;
}

.svc-sidebar__item {
	border-bottom: 1px solid var(--ea-border-color);
}

.svc-sidebar__item:last-child {
	border-bottom: none;
}

.svc-sidebar__link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 0.5rem;
	margin: 0;
	color: var(--ea-muted);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: var(--ea-transition);
	border-radius: var(--ea-radius-sm);
	border-left: 3px solid transparent;
	position: relative;
}

.svc-sidebar__link:hover {
	color: var(--ea-accent);
	background: var(--ea-bg-soft);
	padding-left: 1rem;
}

.svc-sidebar__chev {
	font-size: 0.65rem;
	opacity: 0.65;
	flex-shrink: 0;
	transition: var(--ea-transition);
}

.svc-sidebar__link:hover .svc-sidebar__chev {
	transform: translateX(2px);
	opacity: 1;
}

.svc-sidebar__item.is-active .svc-sidebar__link {
	color: var(--ea-accent);
	font-weight: 700;
	background: rgba(212, 175, 55, 0.08);
	border-left-color: var(--ea-accent);
	padding-left: 1rem;
}

/* Tabs */
.svc-offerings__tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.75rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-behavior: smooth;
}

.svc-offerings__tab-item {
	flex-shrink: 0;
}

.svc-offerings__tab {
	display: inline-block;
	padding: 0.75rem 1.35rem;
	border: none;
	border-radius: 2rem;
	background: var(--ea-bg-soft);
	color: var(--ea-primary);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	transition: var(--ea-transition);
	white-space: nowrap;
	max-width: min(100vw - 6rem, 22rem);
	text-align: center;
	box-shadow: var(--ea-shadow-sm);
}

.svc-offerings__tab:hover {
	background: rgba(10, 31, 60, 0.08);
	transform: translateY(-2px);
	box-shadow: var(--ea-shadow-md);
}

.svc-offerings__tab.is-active {
	background: var(--ea-accent);
	color: var(--ea-white);
	box-shadow: var(--ea-shadow-lg);
}

.svc-offerings__items {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.svc-offerings__row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--ea-body);
	animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-10px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.svc-offerings__tri {
	flex-shrink: 0;
	width: 0;
	height: 0;
	margin-top: 0.5rem;
	border-style: solid;
	border-width: 0.4rem 0 0.4rem 0.6rem;
	border-color: transparent transparent transparent var(--ea-accent);
	opacity: 0.8;
}

.svc-offerings__text {
	flex: 1;
	min-width: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-section {
		min-height: 400px;
	}
	
	.hero-owl {
		min-height: 400px;
	}
	
	.hero-slide {
		min-height: 400px;
	}

	.hero-deco {
		display: none;
	}

	.section-title::after {
		width: 40px;
	}

	.services-owl .owl-nav {
		top: -52px;
	}

	.services-section__head {
		margin-bottom: 1.25rem !important;
	}

	.services-section__view-all {
		min-width: 8.5rem;
		padding: 0.6rem 1rem;
	}

	.services-section__actions {
		width: 100%;
		justify-content: flex-end;
	}

	.svc-sidebar {
		position: static;
		margin-bottom: 2rem;
	}

	.testimonial-owl .owl-nav {
		padding: 0;
	}

	.testimonial-owl .owl-nav button {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.values-card {
		padding: 2rem 1.5rem;
	}

	.service-card__body {
		padding: 1.5rem;
	}

	.team-card-v2 {
		border-radius: var(--ea-radius-md);
	}
}

@media (max-width: 576px) {
	.hero-headline {
		font-size: 1.5rem;
	}

	.hero-kicker {
		font-size: 0.75rem;
		letter-spacing: 0.15em;
	}

	.btn {
		padding: 0.65rem 1.25rem;
		font-size: 0.9rem;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.section-title::after {
		width: 35px;
	}

	.navbar {
		padding: 0.75rem 0;
	}

	.navbar .nav-link {
		padding: 0.4rem 0.75rem !important;
		font-size: 0.9rem;
	}

	.cta-strip {
		padding: 2rem 0;
		text-align: center;
	}

	.cta-strip .row {
		flex-direction: column;
	}

	.cta-strip h2 {
		font-size: 1.5rem;
	}

	.services-owl .owl-nav {
		display: none;
	}

	.services-section__head {
		align-items: flex-start !important;
	}

	.services-section__view-all {
		margin-top: 0.25rem;
	}

	.services-section__actions {
		justify-content: flex-start;
	}

	.services-section__nav {
		display: none;
	}

	.svc-offerings__tabs {
		gap: 0.5rem;
	}

	.svc-offerings__tab {
		padding: 0.65rem 1rem;
		font-size: 0.85rem;
	}
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: 2px solid var(--ea-accent);
	outline-offset: 2px;
}

button:focus {
	outline-offset: -2px;
}

/* Contact Form */
.contact-form .form-label {
	font-weight: 600;
	color: var(--ea-primary);
}

.contact-form .form-control,
.contact-form .form-select {
	border: 1px solid var(--ea-border-color);
	border-radius: var(--ea-radius-md);
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	transition: var(--ea-transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
	border-color: var(--ea-accent);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form .form-check-input {
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.3rem;
	border: 2px solid var(--ea-border-color);
	cursor: pointer;
}

.contact-form .form-check-input:checked {
	background-color: var(--ea-accent);
	border-color: var(--ea-accent);
}

.contact-form .invalid-feedback {
	font-size: 0.85rem;
	color: #dc3545;
	margin-top: 0.25rem;
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
	border-color: #dc3545;
}

/* Service Cards */
.service-card {
	overflow: hidden;
	border-radius: var(--ea-radius-lg);
	transition: var(--ea-transition);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--ea-shadow-lg) !important;
}

.service-card .card-img-top {
	height: 200px;
	object-fit: cover;
	transition: var(--ea-transition);
}

.service-card:hover .card-img-top {
	transform: scale(1.05);
}

.service-card .card-body {
	padding: 1.5rem;
}

/* Team Cards */
.team-card {
	border-radius: var(--ea-radius-lg);
	overflow: hidden;
	transition: var(--ea-transition);
}

.team-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ea-shadow-lg) !important;
}

.team-card .ratio {
	background: var(--ea-gray-light);
}

.hover-overlay {
	background: rgba(10, 31, 60, 0.8);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-card:hover .hover-overlay {
	opacity: 1;
}

/* Background alternates */
.bg-light-alt {
	background-color: var(--ea-bg-soft);
}

/* Statistics Grid */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1.5rem;
}

.stat-item {
	background: var(--ea-white);
	border: 1px solid var(--ea-border-color) !important;
	border-radius: var(--ea-radius-lg);
	transition: var(--ea-transition);
}

.stat-item:hover {
	border-color: var(--ea-accent) !important;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.stat-number {
	color: var(--ea-accent);
	font-weight: 700;
}

.stat-label {
	font-size: 0.9rem;
	font-weight: 500;
}

/* Contact item styling */
.contact-item {
	transition: var(--ea-transition);
}

.contact-item:hover {
	transform: translateX(8px);
}

.icon-box {
	flex-shrink: 0;
}

.icon-box i {
	font-size: 1.5rem;
}

/* Hover lift animation */
.hover-lift {
	transition: var(--ea-transition);
}

.hover-lift:hover {
	transform: translateY(-6px);
	box-shadow: var(--ea-shadow-lg) !important;
}

/* -------------------------------------------------------------------------
   About Us page (Affluence-style)
   ------------------------------------------------------------------------- */
.about-page__hero {
	background: linear-gradient(135deg, var(--ea-navy-deep) 0%, var(--ea-navy) 45%, var(--ea-navy-mid) 100%);
	color: var(--ea-white);
	padding: clamp(3rem, 8vw, 5rem) 0;
	position: relative;
	overflow: hidden;
}

.about-page__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 55%);
	pointer-events: none;
}

.about-page__hero-inner {
	position: relative;
	z-index: 1;
	/* max-width: 52rem; */
}

.about-page__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ea-gold-light);
	margin-bottom: 0.75rem;
	opacity: 0.95;
}

.about-page__kicker {
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0.5rem;
	letter-spacing: 0.04em;
}

.about-page__title {
	color: var(--ea-white);
	margin-bottom: 0.75rem;
	font-weight: 700;
}

.about-page__brand {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 600;
	color: var(--ea-gold-light);
	margin-bottom: 1.25rem;
	line-height: 1.3;
}

.about-page__lead {
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 0;
	max-width: 42rem;
}

.about-page__content {
	font-size: 1.0625rem;
}

.about-page__content p {
	color: var(--ea-muted);
}

.about-page__intro .about-page__content > :first-child {
	margin-top: 0;
}

.about-page__section-title {
	color: var(--ea-primary);
	font-weight: 700;
}

.about-page__mv-card {
	background: var(--ea-white);
	border: 1px solid var(--ea-border-color);
	border-radius: var(--ea-radius-lg);
	padding: var(--ea-spacing-lg);
	box-shadow: var(--ea-shadow-sm);
	transition: var(--ea-transition);
}

.about-page__mv-card:hover {
	border-color: rgba(212, 175, 55, 0.35);
	box-shadow: var(--ea-shadow-md);
}

.about-page__mv-title {
	font-size: 1.35rem;
	margin-bottom: 1rem;
	color: var(--ea-primary);
}

.about-page__mv-text {
	font-size: 0.98rem;
}

.about-page__mv-text p {
	margin-bottom: 0.75rem;
	color: var(--ea-muted);
}

.about-page__mv-text p:last-child {
	margin-bottom: 0;
}

.about-page__value-card {
	background: var(--ea-white);
	border: 1px solid var(--ea-border-color);
	border-radius: var(--ea-radius-lg);
	padding: var(--ea-spacing-lg);
	transition: var(--ea-transition);
}

.about-page__value-card:hover {
	border-color: rgba(212, 175, 55, 0.3);
	box-shadow: var(--ea-shadow-md);
	transform: translateY(-2px);
}

.about-page__value-title {
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
	color: var(--ea-primary);
}

.about-page__value-text {
	font-size: 0.95rem;
}

.about-page__value-text p {
	margin-bottom: 0.65rem;
	color: var(--ea-muted);
	line-height: 1.65;
}

.about-page__value-text p:last-child {
	margin-bottom: 0;
}

.about-page__strengths {
	background: linear-gradient(160deg, var(--ea-navy-deep) 0%, var(--ea-navy) 100%);
	color: var(--ea-white);
}

.about-page__strengths-title {
	color: var(--ea-white);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.about-page__strengths-list {
	display: grid;
	gap: 0.85rem 1.5rem;
}

@media (min-width: 768px) {
	.about-page__strengths-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.about-page__strengths-item {
	position: relative;
	padding-left: 1.75rem;
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.about-page__strengths-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--ea-gold);
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35);
}

/* Print styles */
@media print {
	.top-bar,
	.site-header,
	.site-footer,
	.navbar-toggler {
		display: none !important;
	}
	
	body {
		background: white;
	}
}
