/* ==========================================================================
   Edged Theme — Main Stylesheet
   Clean corporate look, white solid header, mobile drawer nav.
   ========================================================================== */

:root {
	--edged-navy: #1a2b4c;
	--edged-navy-dark: #101c33;
	--edged-gold: #c8a24a;
	--edged-text: #2c2f36;
	--edged-muted: #6b7280;
	--edged-border: #e5e7eb;
	--edged-bg: #ffffff;
	--edged-bg-alt: #f7f8fa;
	--edged-radius: 4px;
	--edged-max-width: 1240px;
	--edged-header-height: 84px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--edged-text);
	background: var(--edged-bg);
	line-height: 1.6;
}

/* Deliberately no overflow rule on .edged-site: setting overflow on any
   ancestor of a position:sticky element (even just overflow-x) silently
   breaks sticky positioning in every browser. If a full-bleed section ever
   causes horizontal scroll, constrain overflow on that section directly,
   not here. */

a {
	color: var(--edged-navy);
	transition: color 0.2s ease;
}
a:hover {
	color: var(--edged-gold);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--edged-navy);
	line-height: 1.25;
}

/* ==========================================================================
   Header — solid white, no transparency, no top utility bar
   ========================================================================== */

.edged-header {
	background: #ffffff;
	border-bottom: 1px solid var(--edged-border);
	position: sticky;
	top: 0;
	z-index: 999;
	width: 100%;
}

.edged-header-inner {
	max-width: var(--edged-max-width);
	margin: 0 auto;
	height: var(--edged-header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
}

@media (max-width: 600px) {
	.edged-header-inner {
		height: 68px;
		padding: 0 16px;
	}
	.edged-logo-area img,
	.edged-logo-image img {
		max-height: 36px;
	}
	.edged-logo-ring {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
	.edged-logo-line1 {
		font-size: 14px;
	}
}

.edged-logo-area {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.edged-logo-area img {
	max-height: 48px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.edged-logo-text {
	font-size: 24px;
	font-weight: 800;
	color: var(--edged-navy);
	letter-spacing: -0.02em;
}

/* Fallback "ring monogram + stacked wordmark" logo, used only when no
   Custom Logo / Header Logo Image is set. */
.edged-logo-mark {
	display: flex;
	align-items: center;
	gap: 12px;
}
.edged-logo-ring {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border: 1.5px solid var(--edged-navy);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--edged-navy);
}
.edged-logo-wordmark {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}
.edged-logo-line1 {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--edged-navy);
	text-transform: uppercase;
}
.edged-logo-line2 {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--edged-muted);
	text-transform: uppercase;
}
.edged-logo-image img {
	max-height: 46px;
	width: auto;
	display: block;
}

/* Header right-hand side: CTA button, language switcher, hamburger — all
   viewport sizes. There is no separate always-visible inline desktop menu;
   the hamburger is the single entry point to navigation, as on congrex.com. */
.edged-header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-shrink: 0;
}

.edged-lang-switch {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.edged-lang-switch a {
	color: var(--edged-muted);
}
.edged-lang-switch a.is-current {
	color: var(--edged-primary);
}

/* Hamburger — smooth 3-line icon inside a bordered square, always visible */

/* Inline desktop nav — visible by default, hidden below 900px */
.edged-desktop-nav {
	display: flex;
	flex: 1;
	justify-content: center;
}

.edged-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.edged-menu li {
	position: relative;
}

.edged-menu > li > a {
	display: block;
	padding: 12px 16px;
	color: var(--edged-text);
	font-weight: 600;
	font-size: 15px;
	border-radius: var(--edged-radius);
}

.edged-menu a:hover,
.edged-menu .current-menu-item > a {
	color: var(--edged-primary);
}

.edged-menu .sub-menu {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid var(--edged-border);
	border-radius: var(--edged-radius);
	min-width: 220px;
	padding: 8px 0;
	box-shadow: 0 12px 24px rgba(16, 28, 51, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all 0.2s ease;
	z-index: 50;
}
.edged-menu .sub-menu a {
	padding: 10px 16px;
}

.edged-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.edged-header--uppercase .edged-menu > li > a {
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.edged-header--mega .edged-menu li.menu-item-has-children {
	position: static;
}
.edged-header--mega .edged-menu li.menu-item-has-children > .sub-menu {
	left: 0;
	right: 0;
	width: 100%;
	max-width: var(--edged-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 8px;
	padding: 24px;
}

@media (max-width: 900px) {
	.edged-desktop-nav {
		display: none;
	}
	.edged-hamburger {
		display: inline-flex;
	}
}

.edged-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	min-width: 42px;
	background: transparent;
	border: 1.5px solid var(--edged-primary, #5d3fbe);
	border-radius: 4px;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
	transition: background 0.2s ease;
}
.edged-hamburger:hover {
	background: var(--edged-bg-alt);
}

.edged-hamburger-line {
	display: block !important;
	width: 26px;
	height: 2px;
	background: var(--edged-primary, #5d3fbe) !important;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.edged-hamburger.is-active .edged-hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.edged-hamburger.is-active .edged-hamburger-line:nth-child(2) {
	opacity: 0;
}
.edged-hamburger.is-active .edged-hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer overlay */

.edged-mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 1000;
	visibility: hidden;
	pointer-events: none;
}

.edged-mobile-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.edged-mobile-drawer-overlay {
	position: absolute;
	inset: 0;
	background: rgba(16, 28, 51, 0.55);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.edged-mobile-drawer.is-open .edged-mobile-drawer-overlay {
	opacity: 1;
}

.edged-mobile-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(320px, 85vw);
	background: #ffffff;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	padding: 24px;
	overflow-y: auto;
}

.edged-mobile-drawer.is-open .edged-mobile-drawer-panel {
	transform: translateX(0);
}

.edged-drawer-close {
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	color: var(--edged-navy);
	cursor: pointer;
	margin-bottom: 16px;
}

.edged-mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.edged-mobile-nav a {
	display: block;
	padding: 14px 4px;
	font-weight: 600;
	font-size: 16px;
	color: var(--edged-text);
	border-bottom: 1px solid var(--edged-border);
}

.edged-mobile-nav .menu-item-has-children > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.edged-mobile-nav .menu-item-has-children > a::after {
	content: "+";
	font-weight: 400;
	color: var(--edged-muted);
}

.edged-mobile-nav .sub-menu {
	list-style: none;
	position: static;
	margin: 0;
	padding-left: 16px;
	max-height: 0;
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: none;
	background: transparent;
	transition: max-height 0.3s ease;
}
.edged-mobile-nav .sub-menu.is-open {
	max-height: 600px;
}

.edged-mobile-drawer .edged-header-cta {
	display: inline-block;
	margin-top: 20px;
}

@media (min-width: 901px) {
	.edged-mobile-drawer-panel {
		width: min(380px, 40vw);
	}
}

/* ==========================================================================
   Page title bar & content
   ========================================================================== */

.edged-page-title-bar {
	background: var(--edged-bg-alt);
	border-bottom: 1px solid var(--edged-border);
	padding: 48px 24px;
	text-align: center;
}

.edged-page-title-inner {
	max-width: var(--edged-max-width);
	margin: 0 auto;
}

.edged-page-title {
	margin: 0 0 8px;
	font-size: 34px;
}

.edged-breadcrumbs {
	font-size: 14px;
	color: var(--edged-muted);
}

.edged-breadcrumbs a {
	color: var(--edged-muted);
}

.edged-page-content-wrap {
	max-width: var(--edged-max-width);
	margin: 0 auto;
	padding: 56px 24px;
}

.edged-page-content {
	max-width: 860px;
	margin: 0 auto;
}

/* ==========================================================================
   Blog
   ========================================================================== */

.edged-blog-wrap {
	max-width: var(--edged-max-width);
	margin: 0 auto;
	padding: 48px 24px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 48px;
}

@media (max-width: 780px) {
	.edged-blog-wrap {
		grid-template-columns: 1fr;
	}
}

.edged-post-card {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--edged-border);
}

.edged-post-thumb img {
	border-radius: var(--edged-radius);
	margin-bottom: 16px;
}

.edged-post-meta {
	color: var(--edged-muted);
	font-size: 13px;
	margin-bottom: 8px;
}

.edged-404-wrap {
	text-align: center;
	padding: 96px 24px;
}

.edged-btn {
	display: inline-block;
	margin-top: 16px;
	padding: 12px 28px;
	background: var(--edged-navy);
	color: #fff;
	border-radius: var(--edged-radius);
	font-weight: 600;
}
.edged-btn:hover {
	background: var(--edged-gold);
	color: #fff;
}

/* ==========================================================================
   Footer — light background, 4 columns (Brand+Social / Contact /
   Newsletter / Latest News), solid-color bottom bar. Mobile-first:
   stacks cleanly with visible dividers below 780px.
   ========================================================================== */

.edged-footer {
	background: var(--edged-bg);
	color: var(--edged-text);
	margin-top: 64px;
	border-top: 1px solid var(--edged-border);
	position: relative;
}

.edged-footer-widgets {
	max-width: var(--edged-max-width);
	margin: 0 auto;
	padding: 56px 24px 40px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media (max-width: 900px) {
	.edged-footer-widgets {
		grid-template-columns: 1fr 1fr;
		gap: 32px 28px;
	}
}
@media (max-width: 600px) {
	.edged-footer-widgets {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 40px 20px 8px;
	}
	.edged-footer-col {
		padding: 24px 0;
		border-bottom: 1px solid var(--edged-border);
	}
	.edged-footer-col:first-child {
		padding-top: 0;
	}
	.edged-footer-col:last-child {
		border-bottom: none;
	}
}

.edged-footer-widgets .widget-title {
	color: var(--edged-navy);
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 18px;
}

.edged-footer-col a {
	color: var(--edged-text);
}
.edged-footer-col a:hover {
	color: var(--edged-primary);
}

.edged-footer-about img {
	max-height: 42px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin-bottom: 18px;
}
.edged-footer-logo {
	display: inline-block;
	margin-bottom: 18px;
}
.edged-footer-logo img {
	max-height: 42px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin-bottom: 0;
	display: block;
}
.edged-footer-about .edged-logo-line1,
.edged-footer-about .edged-logo-ring {
	color: var(--edged-navy);
}

.edged-footer-about-text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--edged-muted);
	margin: 0 0 20px;
}

.edged-footer-social {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.edged-footer-social a {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--edged-primary);
	color: #fff;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	transition: background 0.2s ease, transform 0.2s ease;
}
.edged-footer-social a:hover {
	background: var(--edged-primary-dark);
	color: #fff;
	transform: translateY(-2px);
}

.edged-footer-contact-item {
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 16px;
	color: var(--edged-text);
}
.edged-footer-contact-item:last-child {
	margin-bottom: 0;
}
.edged-footer-contact-item strong {
	display: block;
	color: var(--edged-navy);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 4px;
	font-weight: 700;
}

.edged-footer-icon-line {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.edged-footer-icon {
	flex-shrink: 0;
	color: var(--edged-primary);
	margin-top: 2px;
}
.edged-footer-icon svg {
	display: block;
}

/* Newsletter column (inline in the grid) */
.edged-footer-newsletter-col .edged-newsletter-form {
	flex-direction: column;
	gap: 10px;
	max-width: 320px;
}
.edged-footer-newsletter-col .edged-newsletter-form input {
	width: 100%;
	min-width: 0;
	background: var(--edged-bg-alt);
	border: 1px solid var(--edged-border);
	border-radius: 4px;
	color: var(--edged-text);
}
.edged-footer-newsletter-col .edged-newsletter-form button {
	width: 100%;
	border-radius: 4px;
	background: var(--edged-primary);
}
.edged-footer-newsletter-col .edged-newsletter-form button:hover {
	background: var(--edged-primary-dark);
}

/* Latest News column (auto-pulled posts) */
.edged-footer-events-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.edged-footer-events-item {
	margin-bottom: 18px;
}
.edged-footer-events-item:last-child {
	margin-bottom: 0;
}
.edged-footer-events-item a {
	display: block;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4;
	color: var(--edged-navy);
	margin-bottom: 4px;
}
.edged-footer-events-item a:hover {
	color: var(--edged-primary);
}
.edged-footer-events-date {
	display: block;
	font-size: 13px;
	color: var(--edged-primary);
	font-weight: 600;
}

/* Back-to-top button */
.edged-back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border: 1px solid var(--edged-border);
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(16, 28, 51, 0.12);
	color: var(--edged-text);
	cursor: pointer;
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.25s ease;
}
.edged-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.edged-back-to-top:hover {
	background: var(--edged-primary);
	color: #fff;
	border-color: var(--edged-primary);
}
@media (max-width: 600px) {
	.edged-back-to-top {
		right: 14px;
		bottom: 14px;
		width: 40px;
		height: 40px;
	}
}

.edged-footer-bottom {
	background: var(--edged-primary);
}

.edged-footer-bottom-inner {
	max-width: var(--edged-max-width);
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 16px;
	font-size: 13px;
	color: #fff;
	text-align: center;
}

.edged-footer-bottom-inner a {
	color: #fff;
	opacity: 0.85;
}
.edged-footer-bottom-inner a:hover {
	opacity: 1;
	color: #fff;
}

@media (max-width: 480px) {
	.edged-footer-bottom-inner {
		font-size: 12px;
		padding: 16px 20px;
		gap: 6px 12px;
	}
}

/* ==========================================================================
   Elementor built pages — remove theme wrapper padding so full-width
   sections (e.g. sliders) can bleed edge-to-edge.
   ========================================================================== */

.edged-elementor-built .edged-content {
	padding: 0;
	max-width: none;
}

/* ==========================================================================
   Header — CTA button, static (non-sticky) variant, mega menu, uppercase
   ========================================================================== */

.edged-header--static {
	position: static;
}

/* Transparent header over the homepage hero/slider. #page needs
   position:relative so the absolutely-positioned header anchors to the
   page, not the viewport — it scrolls away naturally with the hero,
   then JS swaps in .is-scrolled below once the visitor scrolls past it,
   turning it into a normal fixed, solid, readable header. */
.edged-site {
	position: relative;
}

.edged-header--transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: rgba(255, 255, 255, var(--edged-header-alpha, 0.85));
	border-bottom: none;
	box-shadow: none;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	z-index: 200;
}

.edged-header--transparent.is-scrolled {
	position: fixed;
	background: #ffffff;
	box-shadow: 0 2px 12px rgba(16, 28, 51, 0.08);
}

.edged-header-cta {
	display: inline-block;
	flex-shrink: 0;
	margin-left: 20px;
	padding: 12px 26px;
	background: var(--edged-gold);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-radius: 999px;
	white-space: nowrap;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(200, 162, 74, 0.35);
}
.edged-header-cta:hover {
	background: var(--edged-navy);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(26, 43, 76, 0.3);
}

@media (max-width: 900px) {
	.edged-header-cta {
		display: none;
	}
}

/* ==========================================================================
   Homepage — hero, services, stats, values, portfolio, news, CTA band
   ========================================================================== */

.edged-hero {
	position: relative;
}

.edged-hero-slide {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
}

.edged-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(16, 28, 51, 0.82) 0%, rgba(16, 28, 51, 0.55) 55%, rgba(16, 28, 51, 0.25) 100%);
}

.edged-hero-content {
	position: relative;
	z-index: 2;
	max-width: var(--edged-max-width);
	margin: 0 auto;
	padding: 0 24px;
	color: #fff;
	max-width: 640px;
}

.edged-hero-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 13px;
	font-weight: 700;
	color: var(--edged-gold);
	margin-bottom: 12px;
}

.edged-hero-content h1 {
	color: #fff;
	font-size: 48px;
	line-height: 1.15;
	margin: 0 0 16px;
}

.edged-hero-tagline {
	font-size: 18px;
	color: #e4e8f1;
	margin-bottom: 28px;
}

@media (max-width: 640px) {
	.edged-hero-content h1 {
		font-size: 32px;
	}
	.edged-hero-slide {
		min-height: 480px;
	}
}

.edged-btn {
	display: inline-block;
	padding: 14px 32px;
	background: var(--edged-navy);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: all 0.2s ease;
}
.edged-btn:hover {
	background: var(--edged-navy-dark);
	color: #fff;
	transform: translateY(-1px);
}
.edged-btn-gold {
	background: var(--edged-gold);
	box-shadow: 0 4px 14px rgba(200, 162, 74, 0.35);
}
.edged-btn-gold:hover {
	background: #b28e3d;
}

.edged-section {
	padding: 80px 24px;
}

.edged-section-inner {
	max-width: var(--edged-max-width);
	margin: 0 auto;
}

.edged-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 13px;
	font-weight: 700;
	color: var(--edged-gold);
	margin: 0 0 10px;
}

.edged-section h2 {
	font-size: 32px;
	max-width: 760px;
	margin: 0 0 40px;
}

.edged-services-section {
	background: var(--edged-bg-alt);
}

.edged-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

@media (max-width: 860px) {
	.edged-services-grid {
		grid-template-columns: 1fr;
	}
}

.edged-service-card {
	background: #fff;
	border: 1px solid var(--edged-border);
	border-radius: 8px;
	padding: 32px 28px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.edged-service-card:hover {
	box-shadow: 0 16px 32px rgba(16, 28, 51, 0.1);
	transform: translateY(-4px);
}
.edged-service-card h3 {
	font-size: 20px;
	margin: 0 0 12px;
}
.edged-service-card p {
	color: var(--edged-muted);
	font-size: 15px;
	margin: 0 0 16px;
}

.edged-link-arrow {
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.edged-link-arrow::after {
	content: " \2192";
}

.edged-stats-band {
	background: var(--edged-navy);
	color: #fff;
	padding: 72px 24px;
}
.edged-stats-inner {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 48px;
	align-items: center;
}
@media (max-width: 700px) {
	.edged-stats-inner {
		grid-template-columns: 1fr;
	}
}
.edged-stats-figure {
	display: block;
	font-size: 64px;
	font-weight: 800;
	color: var(--edged-gold);
	line-height: 1;
}
.edged-stats-label {
	display: block;
	margin-top: 8px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #cfd6e4;
}
.edged-stats-copy h2 {
	color: #fff;
	max-width: none;
}
.edged-stats-copy p {
	color: #cfd6e4;
	margin-bottom: 24px;
}

.edged-values-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}
@media (max-width: 960px) {
	.edged-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.edged-values-grid {
		grid-template-columns: 1fr;
	}
}
.edged-value-card {
	padding: 20px 0;
	border-top: 3px solid var(--edged-gold);
}
.edged-value-num {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--edged-gold);
	margin-bottom: 8px;
}
.edged-value-card h4 {
	margin: 0 0 8px;
	font-size: 17px;
}
.edged-value-card p {
	color: var(--edged-muted);
	font-size: 14px;
	margin: 0;
}

.edged-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 960px) {
	.edged-portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.edged-portfolio-grid {
		grid-template-columns: 1fr;
	}
}
.edged-portfolio-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 14px;
}
.edged-portfolio-card h4 {
	margin: 0 0 6px;
	font-size: 16px;
}
.edged-portfolio-card p {
	color: var(--edged-muted);
	font-size: 13px;
	margin: 0;
}

.edged-section-cta {
	text-align: center;
	margin-top: 40px;
}

.edged-news-section {
	background: var(--edged-bg-alt);
}
.edged-news-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
@media (max-width: 700px) {
	.edged-news-grid {
		grid-template-columns: 1fr;
	}
}
.edged-news-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 14px;
}
.edged-news-meta {
	color: var(--edged-muted);
	font-size: 13px;
	margin-bottom: 6px;
}
.edged-news-card h4 {
	margin: 0;
	font-size: 19px;
}

.edged-cta-band {
	background: linear-gradient(120deg, var(--edged-navy) 0%, var(--edged-navy-dark) 100%);
	color: #fff;
	padding: 72px 24px;
	text-align: center;
}
.edged-cta-band-inner h2 {
	color: #fff;
	max-width: none;
	margin-bottom: 12px;
}
.edged-cta-band-inner p {
	color: #cfd6e4;
	margin-bottom: 28px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Newsletter form base (used inside the footer's Newsletter column)
   ========================================================================== */

.edged-newsletter-form {
	display: flex;
}
.edged-newsletter-form input {
	padding: 11px 14px;
	border-radius: 4px;
	border: 1px solid var(--edged-border);
	font-size: 14px;
}
.edged-newsletter-form button {
	padding: 12px 20px;
	border-radius: 4px;
	border: none;
	background: var(--edged-primary);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease;
}
.edged-newsletter-form button:hover {
	background: var(--edged-primary-dark);
}
