/* =============================================================
   Edmonton Standalone Page
   All rules scoped under html body for header/footer elements
   and html body #wrapper_div for page content.
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------------------------------------------------------------
   TOP TAGLINE BAR
--------------------------------------------------------------- */
html body .edm-top-bar {
	background-color: #1b3a28;
	color: #c8a84c;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-align: right;
	padding: 7px 40px;
}

/* ---------------------------------------------------------------
   MAIN HEADER
--------------------------------------------------------------- */
html body .edm-header {
	background-color: #ffffff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
	position: sticky;
	top: 0;
	z-index: 9999;
}

html body .edm-header-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
}

html body .edm-logo a { display: block; line-height: 0; }
html body .edm-logo img { max-height: 80px; width: auto; }
html body .edm-logo-text {
	font-size: 20px;
	font-weight: 700;
	color: #1b3a28;
	text-decoration: none;
}

/* ---------------------------------------------------------------
   DESKTOP NAVIGATION
--------------------------------------------------------------- */
html body .edm-nav { display: flex; align-items: center; margin-left: auto; }
html body .edm-nav ul { list-style: none; display: flex; align-items: center;    margin: 0;  }
html body .edm-nav > ul > li { position: relative; }

html body .edm-nav > ul > li > a {
	display: block;
	padding: 10px 18px;
	color: #2c2c2c;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s;
}
html body .edm-nav > ul > li > a:hover,
html body .edm-nav > ul > li.current > a { color: #c8a84c; }
html body .edm-nav > ul > li.current > a { border-bottom: 2px solid #c8a84c; }

/* Grande Prairie site-switcher link */
html body .edm-nav > ul > li.edm-nav-gp > a {
	background: #f0f5f0;
	color: #1b3a28 !important;
	border: 1.5px solid #c8a84c;
	border-radius: 20px;
	padding: 5px 14px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em;
	margin-left: 6px;
	transition: background 0.2s, color 0.2s;
}
html body .edm-nav > ul > li.edm-nav-gp > a:hover {
	background: #c8a84c !important;
	color: #1b3a28 !important;
	border-color: #c8a84c;
}
html body .edm-mobile-nav ul li.edm-nav-gp a {
	color: #c8a84c !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: 4px;
	padding-top: 12px !important;
}

html body .edm-nav > ul > li.has-dropdown > a::after {
	content: ' ▾';
	font-size: 10px;
	vertical-align: middle;
}

/* Dropdown */
html body .edm-nav .edm-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff;
	border-top: 3px solid #c8a84c;
	box-shadow: 0 8px 24px rgba(0,0,0,0.13);
	min-width: 290px;
	z-index: 999;
}
html body .edm-nav > ul > li:hover .edm-dropdown { display: block; }

html body .edm-dropdown li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	color: #2c2c2c;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	border-bottom: 1px solid #f0ede6;
	transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
html body .edm-dropdown li a::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #c8a84c;
	flex-shrink: 0;
}
html body .edm-dropdown li a:hover {
	background: #f8f5ee;
	color: #1b3a28;
	padding-left: 24px;
}
html body .edm-dropdown li:last-child a { border-bottom: none; }

/* Header CTA Button */
html body .edm-cta-btn {
	display: inline-block;
	background-color: #c8a84c;
	color: #ffffff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 14px 22px;
	border-radius: 10px;
	white-space: nowrap;
	transition: background 0.2s;
	margin-left: 20px;
}
html body .edm-cta-btn:hover { background-color: #b8943c; }

/* ---------------------------------------------------------------
   MOBILE NAVIGATION
--------------------------------------------------------------- */
html body .edm-mobile-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: #f0f5f0;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
	transition: background 0.2s;
}
html body .edm-mobile-toggle:hover { background: #dceadc; }

html body .edm-mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #1b3a28;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.2s ease;
	transform-origin: center;
}

/* Hamburger → X animation */
html body .edm-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
html body .edm-mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
html body .edm-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide-down mobile nav */
html body .edm-mobile-nav {
	overflow: hidden;
	max-height: 0;
	background: #1b3a28;
	transition: max-height 0.35s ease;
}
html body .edm-mobile-nav.open { max-height: 700px; }
html body .edm-mobile-nav ul { list-style: none; padding: 8px 0 0; }

html body .edm-mobile-nav ul li a {
	display: block;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 13px 24px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
html body .edm-mobile-nav ul li a:hover {
	background: rgba(255,255,255,0.07);
	color: #c8a84c;
	padding-left: 30px;
}

html body .edm-mobile-nav .edm-mobile-cta {
	display: block;
	background: #c8a84c;
	color: #1b3a28;
	text-align: center;
	padding: 15px 20px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	text-decoration: none;
	margin: 18px 20px 20px;
	border-radius: 10px;
	transition: background 0.2s;
}
html body .edm-mobile-nav .edm-mobile-cta:hover { background: #b8943c; }

/* ---------------------------------------------------------------
   HEADER RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 1024px) {
	html body .edm-nav,
	html body .edm-cta-btn { display: none; }
	html body .edm-mobile-toggle { display: flex; }
	html body .edm-header-inner { height: 68px; padding: 0 20px; }
	html body .edm-top-bar { font-size: 11px; padding: 6px 20px; text-align: center; letter-spacing: 0.02em; }
	html body .edm-logo img { max-height: 58px; }
}

/* ---------------------------------------------------------------
   HERO BANNER
--------------------------------------------------------------- */
html body #wrapper_div .edm-hero {
	position: relative;
	min-height: 420px;
	background-size: cover;
	background-position: center right;
	background-color: #1b3a28;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Dark green gradient: solid left → fades right so image shows through */
html body #wrapper_div .edm-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		#1b3a28 0%,
		#1b3a28 42%,
		rgba(27,58,40,0.88) 55%,
		rgba(27,58,40,0.35) 72%,
		transparent 100%
	);
	z-index: 1;
}

html body #wrapper_div .edm-hero-container::after {
	content: '';
	position: absolute;
	right: 5%;
	bottom: 0;
	width: 45%;
	height: 100%;
	background-image: url('http://mfg.life/wp-content/uploads/2026/05/TopBannerPic.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right bottom;
	z-index: 1;
}

html body #wrapper_div .edm-hero-container {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

html body #wrapper_div .edm-hero-content {
	max-width: 580px;
	padding: 60px 0;
}

html body #wrapper_div .edm-hero .edm-hero-breadcrumb {
	font-size: 12px;
	color: rgba(255,255,255,0.60);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	    display: none;
}
html body #wrapper_div .edm-hero .edm-hero-breadcrumb a {
	color: rgba(255,255,255,0.60);
	text-decoration: none;
	transition: color 0.2s;
}
html body #wrapper_div .edm-hero .edm-hero-breadcrumb a:hover { color: #c8a84c; }
html body #wrapper_div .edm-hero .edm-hero-breadcrumb span { color: #c8a84c; font-size: 14px; }

html body #wrapper_div .edm-hero .edm-hero-title {
	font-size: 44px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

html body #wrapper_div .edm-hero .edm-hero-subtitle {
	font-size: 22px;
	font-weight: 400;
	font-style: italic;
	color: #c8a84c;
	margin-bottom: 20px;
	letter-spacing: 0.01em;
}

html body #wrapper_div .edm-hero .edm-hero-desc {
	font-size: 15px;
	color: #ffffff;
	line-height: 1.8;
	max-width: 440px;
	margin-bottom: 30px;
}
html body #wrapper_div .edm-hero .edm-hero-desc strong {
	font-size: 20px;
	font-weight: 800;
	color: #c8a84c;
	display: block;
	margin-bottom: 6px;
	line-height: 1.2;
	letter-spacing: -0.2px;
}

html body #wrapper_div .edm-hero .edm-hero-line {
	display: block;
	width: 48px;
	height: 3px;
	background: #c8a84c;
	margin-bottom: 32px;
	border-radius: 1px;
}

html body #wrapper_div .edm-hero .edm-hero-cta {
	display: inline-block;
	background: #ffffff;
	color: #1b3a28;
	border: 2px solid #ffffff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 13px 28px;
	border-radius: 10px;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
html body #wrapper_div .edm-hero .edm-hero-cta:hover {
	background: #c8a84c;
	border-color: #c8a84c;
	color: #ffffff;
}

@media (max-width: 1024px) {
	html body #wrapper_div .edm-hero::after { width: 42%; right: 2%; }
	html body #wrapper_div .edm-hero-content { max-width: 520px; }
	html body #wrapper_div .edm-hero .edm-hero-title { font-size: 36px; }
}
@media (max-width: 768px) {

html body #wrapper_div .edm-hero::after{
		content: '';
	position: absolute;
	right: 5%;
	bottom: 0;
	width: 45%;
	height: 100%;
	background-image: url('http://mfg.life/wp-content/uploads/2026/05/TopBannerPic.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right bottom;
	z-index: 1;
}
html body #wrapper_div .edm-hero-container::after {
	opacity:0;
	display:none
}


	html body #wrapper_div .edm-hero {
		min-height: 460px;
		background-position: center center;
	}
	/* Solid green left side — fades right so image shows through */
	html body #wrapper_div .edm-hero::before {
		background: linear-gradient(
			to right,
			#1b3a28 0%,
			#1b3a28 38%,
			rgba(27,58,40,0.92) 52%,
			rgba(27,58,40,0.45) 75%,
			rgba(27,58,40,0.15) 100%
		);
	}
	/* Girl image: right side, bottom-aligned, visible on mobile */
	html body #wrapper_div .edm-hero::after {
		display: block;
		width: 55%;
		right: 0;
		bottom: 0;
		height: 92%;
		background-position: right bottom;
		background-size: contain;
	}
	html body #wrapper_div .edm-hero-container { padding: 0 20px; }
	/* Text constrained to left 58% so image shows on right */
	html body #wrapper_div .edm-hero-content { padding: 44px 0; max-width: 58%; }
	html body #wrapper_div .edm-hero .edm-hero-title { font-size: 24px; line-height: 1.3; }
	html body #wrapper_div .edm-hero .edm-hero-subtitle { font-size: 15px; }
	html body #wrapper_div .edm-hero .edm-hero-desc { display: none; }
	html body #wrapper_div .edm-hero .edm-hero-line { margin-bottom: 22px; }
}
@media (max-width: 480px) {
	html body #wrapper_div .edm-hero { min-height: 400px; }
	html body #wrapper_div .edm-hero::after { width: 52%; height: 85%; }
	html body #wrapper_div .edm-hero-content { max-width: 60%; padding: 36px 0; }
	html body #wrapper_div .edm-hero .edm-hero-title { font-size: 21px; }
	html body #wrapper_div .edm-hero .edm-hero-subtitle { font-size: 14px; }
	html body #wrapper_div .edm-hero .edm-hero-cta { font-size: 12px; padding: 11px 18px; }
}

/* ---------------------------------------------------------------
   ADVISOR INTRO SECTION — two-column (text left, portrait right)
--------------------------------------------------------------- */
html body #wrapper_div .edm-advisor {
	background-color: #1b3a28;
	overflow: hidden;
}

html body #wrapper_div .edm-advisor-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	gap: 80px;
	min-height: 500px;
}

html body #wrapper_div .edm-advisor-content {
	flex: 1 1 0;
	padding: 80px 0;
	min-width: 0;
}

html body #wrapper_div .edm-advisor-label {
	font-size: 15px;
	font-weight: 400;
	font-style: italic;
	letter-spacing: 0;
	text-transform: none;
	color: rgba(255,255,255,0.55);
	margin-bottom: 16px;
}

html body #wrapper_div .edm-advisor-title {
	font-size: 46px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.15;
	margin-top: 0;
	margin-bottom: 22px;
	letter-spacing: -0.5px;
}

html body #wrapper_div .edm-advisor-line {
	display: block;
	width: 48px;
	height: 3px;
	background: #c8a84c;
	margin-bottom: 28px;
	border-radius: 1px;
}

html body #wrapper_div .edm-advisor-desc {
	font-size: 15px;
	color: rgba(255,255,255,0.72);
	line-height: 1.85;
	max-width: 500px;
	margin-bottom: 28px;
}
html body #wrapper_div .edm-advisor-desc p {
	margin-bottom: 18px;
}
html body #wrapper_div .edm-advisor-desc p:last-child {
	margin-bottom: 0;
}


html body #wrapper_div .edm-advisor-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

html body #wrapper_div .edm-advisor-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 13px 28px;
	border-radius: 10px;
	border: 2px solid transparent;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* White fill — primary */
html body #wrapper_div .edm-advisor-btn--primary {
	background: #ffffff;
	color: #1b3a28;
	border-color: #ffffff;
}
html body #wrapper_div .edm-advisor-btn--primary:hover {
	background: #c8a84c;
	border-color: #c8a84c;
	color: #ffffff;
}

/* Dark fill — secondary */
html body #wrapper_div .edm-advisor-btn--outline {
	background: #0d1f14;
	color: #ffffff;
	border-color: #0d1f14;
}
html body #wrapper_div .edm-advisor-btn--outline:hover {
	background: #c8a84c;
	border-color: #c8a84c;
	color: #ffffff;
}

html body #wrapper_div .edm-advisor-portrait-wrap {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 50px 0;
}

html body #wrapper_div .edm-advisor-portrait {
	width: 370px;
	height: 550px;
	border-radius: 18px;
	flex-shrink: 0;
	overflow: hidden;
	border: 3px solid rgba(200,168,76,0.30);
	box-shadow: 0 24px 64px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,255,255,0.06);
}

html body #wrapper_div .edm-advisor-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

@media (max-width: 1024px) {
	html body #wrapper_div .edm-advisor-container { gap: 50px; padding: 0 30px; }
	html body #wrapper_div .edm-advisor-title { font-size: 38px; }
	html body #wrapper_div .edm-advisor-portrait { width: 280px; height: 360px; }
}
@media (max-width: 768px) {
	html body #wrapper_div .edm-advisor-container {
		flex-direction: column;
		gap: 0;
		padding: 0;
	}
	/* Portrait comes first on mobile */
	html body #wrapper_div .edm-advisor-portrait-wrap {
		order: -1;
		padding: 0;
		justify-content: center;
		width: 100%;
	}
	html body #wrapper_div .edm-advisor-portrait {
		width: 100%;
		max-width: 100%;
		height: 340px;
		border-radius: 0;
		border: none;
		box-shadow: none;
	}
	html body #wrapper_div .edm-advisor-portrait img {
		object-position: top center;
	}
	html body #wrapper_div .edm-advisor-content { padding: 36px 24px 44px; }
	html body #wrapper_div .edm-advisor-title { font-size: 28px; }
	html body #wrapper_div .edm-advisor-desc { font-size: 14px; max-width: 100%; }
}
@media (max-width: 480px) {
	html body #wrapper_div .edm-advisor-portrait { height: 280px; }
	html body #wrapper_div .edm-advisor-content { padding: 30px 20px 40px; }
	html body #wrapper_div .edm-advisor-title { font-size: 24px; }
	html body #wrapper_div .edm-advisor-actions { flex-direction: column; align-items: stretch; }
	html body #wrapper_div .edm-advisor-btn { width: 100%; text-align: center; }
}

/* ---------------------------------------------------------------
   SERVICES SECTION — icon card grid
--------------------------------------------------------------- */
html body #wrapper_div .edm-services {
	background: #eef1ee;
	padding: 90px 0 100px;
}

html body #wrapper_div .edm-services-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 30px;
}

html body #wrapper_div .edm-services-header {
	text-align: center;
	margin-bottom: 60px;
}

html body #wrapper_div .edm-services-label {
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
	letter-spacing: 0;
	text-transform: none;
	color: #c8a84c;
	margin-bottom: 14px;
}

html body #wrapper_div .edm-services-title {
	font-size: 46px;
	font-weight: 700;
	font-style: normal;
	color: #1b3a28;
	line-height: 1.15;
	margin: 0 auto 20px;
	max-width: 700px;
	letter-spacing: -0.5px;
}

html body #wrapper_div .edm-services-line {
	display: block;
	width: 56px;
	height: 3px;
	background: #1b3a28;
	margin: 0 auto 26px;
	border-radius: 1px;
}

html body #wrapper_div .edm-services-desc {
	font-size: 15px;
	color: #5a6e5b;
	line-height: 1.85;
	max-width: 620px;
	margin: 0 auto;
}

/* 3-column card grid */
html body #wrapper_div .edm-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

/* Center the last card when it's alone on the bottom row (7 items → 3+3+1) */
html body #wrapper_div .edm-service-card:last-child:nth-child(3n+1) {
	grid-column: 2 / 3;
}

html body #wrapper_div .edm-service-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 44px 32px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	text-align: center;
	gap: 0;
	box-shadow: 0 2px 12px rgba(27,58,40,0.07);
	border: 1px solid rgba(27,58,40,0.07);
	position: relative;
	overflow: hidden;
	transition: transform 0.25s, box-shadow 0.25s;
}

/* Gold shimmer line at top — slides in on hover */
html body #wrapper_div .edm-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(to right, #c8a84c, #e8c870, #c8a84c);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
html body #wrapper_div .edm-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(27,58,40,0.14);
}
html body #wrapper_div .edm-service-card:hover::before {
	transform: scaleX(1);
}

/* Icon wrapper */
html body #wrapper_div .edm-service-icon {
	width: 80px;
	height: 80px;
	background: #f0f5f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: background 0.25s;
}
html body #wrapper_div .edm-service-card:hover .edm-service-icon {
	background: #1b3a28;
}
html body #wrapper_div .edm-service-card:hover .edm-service-icon svg path,
html body #wrapper_div .edm-service-card:hover .edm-service-icon svg circle,
html body #wrapper_div .edm-service-card:hover .edm-service-icon svg rect {
	stroke: #c8a84c;
}

html body #wrapper_div .edm-service-name {
	font-size: 17px;
	font-weight: 700;
	color: #1b3a28;
	line-height: 1.35;
	margin-bottom: 14px;
	transition: color 0.2s;
}
html body #wrapper_div .edm-service-card:hover .edm-service-name {
	color: #1b3a28;
}

html body #wrapper_div .edm-service-desc {
	font-size: 13.5px;
	color: #7a8f7b;
	line-height: 1.8;
	margin: 0;
}

@media (max-width: 1024px) {
	html body #wrapper_div .edm-services-grid { gap: 20px; }
	html body #wrapper_div .edm-service-card { padding: 36px 24px 30px; }
}
@media (max-width: 900px) {
	html body #wrapper_div .edm-services-grid { grid-template-columns: repeat(2, 1fr); }
	html body #wrapper_div .edm-services-title { font-size: 32px; }
	/* Reset last-card centering — not needed in 2-col layout */
	html body #wrapper_div .edm-service-card:last-child:nth-child(3n+1) { grid-column: auto; }
}
@media (max-width: 560px) {
	html body #wrapper_div .edm-services { padding: 60px 0 70px; }
	html body #wrapper_div .edm-services-grid { grid-template-columns: 1fr; gap: 14px; }
	html body #wrapper_div .edm-services-container { padding: 0 18px; }
	html body #wrapper_div .edm-services-header { margin-bottom: 40px; }
	html body #wrapper_div .edm-services-title { font-size: 26px; }
	html body #wrapper_div .edm-service-card { padding: 28px 22px 24px; }
	html body #wrapper_div .edm-service-icon { width: 64px; height: 64px; }
}

/* ---------------------------------------------------------------
   TESTIMONIALS SECTION
--------------------------------------------------------------- */
html body #wrapper_div .edm-testimonials {
	background-color: #f4f6f4;
	padding: 90px 0 100px;
}

html body #wrapper_div .edm-testimonials-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 30px;
}

html body #wrapper_div .edm-testimonials-header {
	text-align: center;
	margin-bottom: 60px;
}

html body #wrapper_div .edm-testimonials-label {
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0;
	color: #c8a84c;
	margin-bottom: 14px;
}

html body #wrapper_div .edm-testimonials-title {
	font-size: 38px;
	font-weight: 700;
	color: #1b3a28;
	line-height: 1.2;
	margin: 0 auto 20px;
	max-width: 640px;
}

html body #wrapper_div .edm-testimonials-line {
	display: block;
	width: 48px;
	height: 3px;
	background: #c8a84c;
	margin: 0 auto;
	border-radius: 1px;
}

/* Desktop: 3-column grid */
@media (min-width: 641px) {
	html body #wrapper_div .edm-testimonials-slider {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
		align-items: stretch;
	}
}

html body #wrapper_div .edm-testimonial-card {
	background: #ffffff;
	border: 1px solid #e8ebe8;
	border-radius: 12px;
	padding: 36px 30px 28px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Large decorative quote mark */
html body #wrapper_div .edm-testimonial-quote-mark {
	position: absolute;
	top: 16px;
	right: 22px;
	font-size: 80px;
	line-height: 1;
	color: #e8f0e8;
	font-family: Georgia, serif;
	font-style: normal;
	pointer-events: none;
	user-select: none;
}

html body #wrapper_div .edm-testimonial-text {
	font-size: 14px;
	font-style: italic;
	color: #555f55;
	line-height: 1.85;
	flex: 1;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

html body #wrapper_div .edm-testimonial-divider {
	height: 1px;
	background: #e8ebe8;
	margin-bottom: 18px;
}

html body #wrapper_div .edm-testimonial-name {
	font-size: 16px;
	font-weight: 700;
	color: #1b3a28;
	margin-bottom: 6px;
}

html body #wrapper_div .edm-testimonial-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 6px;
}
html body #wrapper_div .edm-testimonial-stars span {
	color: #c8a84c;
	font-size: 16px;
}

html body #wrapper_div .edm-testimonial-role {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8a9a8b;
}

@media (max-width: 1024px) {
	html body #wrapper_div .edm-testimonials-slider { gap: 20px; }
	html body #wrapper_div .edm-testimonials-title { font-size: 30px; }
}

/* Mobile: Slick centerMode slider */
@media (max-width: 640px) {
	html body #wrapper_div .edm-testimonials { padding: 60px 0 70px; }
	html body #wrapper_div .edm-testimonials-container { padding: 0; }
	html body #wrapper_div .edm-testimonials-header { padding: 0 20px; margin-bottom: 36px; }
	html body #wrapper_div .edm-testimonials-title { font-size: 24px; }

	/* Slick wrapper sits flush edge-to-edge */
	html body #wrapper_div .edm-testimonials-slider { display: block; }

	/* Card inside each Slick slide */
	html body #wrapper_div .edm-testimonials-slider .edm-testimonial-card {
		padding: 28px 20px 22px;
		height: auto;
		box-shadow: 0 4px 20px rgba(27,58,40,0.10);
		margin: 4px 0 8px;
	}

	/* Slick dots — fully custom gold/green theme */
	html body #wrapper_div .edm-testimonials-slider .slick-dots {
		position: static;
		display: flex !important;
		justify-content: center;
		align-items: center;
		gap: 8px;
		list-style: none;
		padding: 24px 0 0;
		margin: 0;
	}
	html body #wrapper_div .edm-testimonials-slider .slick-dots li {
		display: flex;
		align-items: center;
		justify-content: center;
		width: auto;
		height: auto;
		margin: 0;
	}
	html body #wrapper_div .edm-testimonials-slider .slick-dots li button {
		display: block;
		width: 8px;
		height: 8px;
		padding: 0;
		font-size: 0;
		line-height: 0;
		background: #1b3a28;
		opacity: 0.25;
		border: none;
		border-radius: 50%;
		cursor: pointer;
		transition: width 0.25s ease, border-radius 0.25s ease, opacity 0.25s ease, background 0.25s ease;
	}
	html body #wrapper_div .edm-testimonials-slider .slick-dots li button:before {
		display: none;
	}
	html body #wrapper_div .edm-testimonials-slider .slick-dots li.slick-active button {
		width: 24px;
		border-radius: 4px;
		background: #c8a84c;
		opacity: 1;
	}

	/* Extra bottom padding for dots */
	html body #wrapper_div .edm-testimonials { padding-bottom: 80px; }
}

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
html body .edm-footer {
	background-color: #0e2218;
	color: rgba(255,255,255,0.75);
	font-size: 14.5px;
	line-height: 1.8;
}

html body .edm-footer-main {
	max-width: 1320px;
	margin: 0 auto;
	padding: 70px 40px 60px;
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* Brand column */
html body .edm-footer-brand-name {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
	font-style: italic;
	letter-spacing: -0.3px;
}

html body .edm-footer-brand-desc {
	font-size: 14px;
	color: rgba(255,255,255,0.60);
	line-height: 1.85;
	max-width: 340px;
}

/* Column headings */
html body .edm-footer h4 {
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 0;
}

/* Contact column */
html body .edm-footer-contact p {
	color: rgba(255,255,255,0.65);
	font-size: 14px;
	margin-bottom: 12px;
	line-height: 1.5;
}
html body .edm-footer-contact a {
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	transition: color 0.2s;
}
html body .edm-footer-contact a:hover { color: #c8a84c; }

/* Office Hours column */
html body .edm-footer-hours p {
	color: rgba(255,255,255,0.65);
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 1.5;
}

/* Divider */
html body .edm-footer-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,0.08);
	max-width: 1320px;
	margin: 0 auto;
}

/* Copyright bar */
html body .edm-footer-copyright {
	max-width: 1320px;
	margin: 0 auto;
	padding: 18px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}
html body .edm-footer-copyright p,
html body .edm-footer-copyright a {
	color: rgba(255,255,255,0.35);
	font-size: 12px;
	text-decoration: none;
	transition: color 0.2s;
}
html body .edm-footer-copyright a:hover { color: #c8a84c; }
html body .edm-footer-copyright .edm-footer-legal { display: flex; gap: 20px; }
html body .edm-footer-copyright .edm-footer-legal span { color: rgba(255,255,255,0.2); }

@media (max-width: 900px) {
	html body .edm-footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
	html body .edm-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
	html body .edm-footer-main { grid-template-columns: 1fr; padding: 40px 24px 30px; gap: 32px; }
	html body .edm-footer-copyright { padding: 16px 24px; flex-direction: column; text-align: center; }
	html body .edm-footer-copyright .edm-footer-legal { justify-content: center; }
}

/* =============================================================
   SERVICE PAGE — template-edmonton-service.php
   ============================================================= */

/* ── HERO ───────────────────────────────────────────────────── */
html body #wrapper_div .edm-svc-hero {
	background: linear-gradient( 135deg, #0e2218 0%, #1b3a28 60%, #2a5040 100% );
	padding: 70px 0 80px;
}
html body #wrapper_div .edm-svc-hero-inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 40px;
}
html body #wrapper_div .edm-svc-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.45);
	margin-bottom: 24px;
}
html body #wrapper_div .edm-svc-breadcrumb a {
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	transition: color 0.2s;
}
html body #wrapper_div .edm-svc-breadcrumb a:hover { color: #c8a84c; }
html body #wrapper_div .edm-svc-breadcrumb-sep { color: rgba(255,255,255,0.25); }

html body #wrapper_div .edm-svc-hero-title {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 18px;
	letter-spacing: -0.5px;
}
html body #wrapper_div .edm-svc-hero-subtitle {
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	color: #c8a84c;
	margin: 0 0 28px;
}
html body #wrapper_div .edm-svc-hero-desc {
	font-size: 16px;
	color: rgba(255,255,255,0.85);
	line-height: 1.8;
	margin: 0 0 28px;
	max-width: 620px;
}
html body #wrapper_div .edm-svc-hero-desc strong {
	display: block;
	font-size: 24px;
	font-weight: 800;
	color: #c8a84c;
	line-height: 1.2;
	margin-bottom: 8px;
	letter-spacing: -0.2px;
}
html body #wrapper_div .edm-svc-hero-line {
	display: block;
	width: 52px;
	height: 3px;
	background: #c8a84c;
	border-radius: 2px;
}

/* ── BODY CONTENT ───────────────────────────────────────────── */
html body #wrapper_div .edm-svc-body {
	background: #ffffff;
	padding: 80px 0 90px;
}
html body #wrapper_div .edm-svc-body-container {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Intro paragraphs */
html body #wrapper_div .edm-svc-body-container p {
	font-size: 16px;
	color: #3a4a3b;
	line-height: 1.9;
	margin-bottom: 22px;
}
html body #wrapper_div .edm-svc-body-container p:last-child { margin-bottom: 0; }

/* "I help clients better understand" block */
html body #wrapper_div .edm-svc-body-container .edm-svc-help {
	background: #f0f5f0;
	border-left: 4px solid #c8a84c;
	border-radius: 12px;
	padding: 40px 44px;
	margin: 44px 0;
}
html body #wrapper_div .edm-svc-body-container .edm-svc-help h3 {
	font-size: 28px;
	font-weight: 800;
	color: #1b3a28;
	letter-spacing: -0.3px;
	margin: 0 0 24px;
	line-height: 1.3;
}
html body #wrapper_div .edm-svc-body-container .edm-svc-help ul {
	list-style: none;
	padding: 0;
	margin: 0;
	columns: 2;
	column-gap: 32px;
}
html body #wrapper_div .edm-svc-body-container .edm-svc-help ul li {
	font-size: 15px;
	color: #3a4a3b;
	line-height: 1.6;
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
	break-inside: avoid;
}
html body #wrapper_div .edm-svc-body-container .edm-svc-help ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	background: #c8a84c;
	border-radius: 50%;
}

/* Sub-section headings inside content */
html body #wrapper_div .edm-svc-body-container h3:not(.edm-svc-help h3) {
	font-size: 22px;
	font-weight: 700;
	color: #1b3a28;
	margin: 40px 0 16px;
	padding-top: 8px;
	border-top: 2px solid #eef1ee;
}
html body #wrapper_div .edm-svc-body-container h4 {
	font-size: 17px;
	font-weight: 700;
	color: #1b3a28;
	margin: 24px 0 10px;
}

/* Insurance type list (2-item styled list) */
html body #wrapper_div .edm-svc-body-container .edm-svc-types {
	margin: 24px 0;
	padding: 0;
	list-style: none;
}
html body #wrapper_div .edm-svc-body-container .edm-svc-types li {
	background: #f8faf8;
	border: 1px solid #e2e8e2;
	border-radius: 10px;
	padding: 18px 22px;
	margin-bottom: 12px;
	font-size: 15px;
	color: #3a4a3b;
	line-height: 1.65;
}
html body #wrapper_div .edm-svc-body-container .edm-svc-types li strong {
	color: #1b3a28;
}

/* ── CTA STRIP ──────────────────────────────────────────────── */
html body #wrapper_div .edm-svc-cta {
	background: #1b3a28;
	padding: 70px 40px;
	text-align: center;
}
html body #wrapper_div .edm-svc-cta-inner {
	max-width: 680px;
	margin: 0 auto;
}
html body #wrapper_div .edm-svc-cta-title {
	font-size: 34px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 16px;
	line-height: 1.2;
}
html body #wrapper_div .edm-svc-cta-desc {
	font-size: 16px;
	color: rgba(255,255,255,0.70);
	line-height: 1.75;
	margin: 0 0 32px;
}
html body #wrapper_div .edm-svc-cta-btn {
	display: inline-block;
	background: #c8a84c;
	color: #1b3a28;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 15px 36px;
	border-radius: 10px;
	transition: background 0.2s, color 0.2s;
}
html body #wrapper_div .edm-svc-cta-btn:hover {
	background: #b8943c;
	color: #ffffff;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
	html body #wrapper_div .edm-svc-hero { padding: 50px 0 60px; }
	html body #wrapper_div .edm-svc-hero-inner { padding: 0 22px; }
	html body #wrapper_div .edm-svc-hero-title { font-size: 32px; }
	html body #wrapper_div .edm-svc-hero-subtitle { font-size: 17px; }
	html body #wrapper_div .edm-svc-body { padding: 50px 0 60px; }
	html body #wrapper_div .edm-svc-body-container { padding: 0 22px; }
	html body #wrapper_div .edm-svc-body-container .edm-svc-help { padding: 28px 24px; }
	html body #wrapper_div .edm-svc-body-container .edm-svc-help ul { columns: 1; }
	html body #wrapper_div .edm-svc-cta { padding: 50px 22px; }
	html body #wrapper_div .edm-svc-cta-title { font-size: 26px; }
}
@media (max-width: 480px) {
	html body #wrapper_div .edm-svc-hero-title { font-size: 26px; }
	html body #wrapper_div .edm-svc-cta-btn { width: 100%; text-align: center; }
}

/* =============================================================
   ABOUT PAGE — Edmonton
   ============================================================= */

/* ── HERO ───────────────────────────────────────────────────── */
html body #wrapper_div .edm-about-hero {
	background: linear-gradient( 135deg, #0e2218 0%, #1b3a28 60%, #2a5040 100% );
	padding: 80px 0 90px;
	text-align: center;
}
html body #wrapper_div .edm-about-hero-inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 40px;
}
html body #wrapper_div .edm-about-hero-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c8a84c;
	margin: 0 0 18px;
}
html body #wrapper_div .edm-about-hero-title {
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	margin: 0 0 14px;
	letter-spacing: -1px;
}
html body #wrapper_div .edm-about-hero-subtitle {
	font-size: 20px;
	font-weight: 400;
	color: rgba(255,255,255,0.70);
	margin: 0 0 32px;
}
html body #wrapper_div .edm-about-hero-line {
	display: block;
	width: 52px;
	height: 3px;
	background: #c8a84c;
	border-radius: 2px;
	margin: 0 auto;
}

/* ── BIO SECTION ─────────────────────────────────────────────── */
html body #wrapper_div .edm-about-bio {
	background: #ffffff;
	padding: 90px 0 100px;
}
html body #wrapper_div .edm-about-bio-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: flex-start;
	gap: 72px;
}
html body #wrapper_div .edm-about-bio-photo-wrap {
	flex-shrink: 0;
}
html body #wrapper_div .edm-about-bio-photo {
	width: 340px;
	height: 460px;
	object-fit: cover;
	object-position: top center;
	border-radius: 18px;
	display: block;
	box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}
html body #wrapper_div .edm-about-bio-content {
	flex: 1 1 0;
	padding-top: 10px;
}
html body #wrapper_div .edm-about-bio-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c8a84c;
	margin: 0 0 16px;
}
html body #wrapper_div .edm-about-bio-title {
	font-size: 36px;
	font-weight: 700;
	color: #1b3a28;
	line-height: 1.2;
	margin: 0 0 22px;
}
html body #wrapper_div .edm-about-bio-line {
	display: block;
	width: 44px;
	height: 3px;
	background: #c8a84c;
	border-radius: 2px;
	margin: 0 0 30px;
}
html body #wrapper_div .edm-about-bio-content p {
	font-size: 16px;
	color: #3a4a3b;
	line-height: 1.85;
	margin: 0 0 18px;
}

/* Stats row */
html body #wrapper_div .edm-about-bio-stats {
	display: flex;
	gap: 32px;
	margin-top: 40px;
	padding-top: 36px;
	border-top: 2px solid #eef1ee;
	flex-wrap: wrap;
}
html body #wrapper_div .edm-about-stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
html body #wrapper_div .edm-about-stat-number {
	font-size: 38px;
	font-weight: 700;
	color: #1b3a28;
	line-height: 1;
}
html body #wrapper_div .edm-about-stat-label {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #6a7a6b;
	text-transform: uppercase;
	max-width: 120px;
	line-height: 1.4;
}

/* ── MISSION / PILLARS ───────────────────────────────────────── */
html body #wrapper_div .edm-about-mission {
	background: #f0f5f0;
	padding: 90px 0 100px;
}
html body #wrapper_div .edm-about-mission-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	text-align: center;
}
html body #wrapper_div .edm-about-mission-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c8a84c;
	margin: 0 0 16px;
}
html body #wrapper_div .edm-about-mission-title {
	font-size: 36px;
	font-weight: 700;
	color: #1b3a28;
	line-height: 1.2;
	margin: 0 0 22px;
}
html body #wrapper_div .edm-about-mission-line {
	display: block;
	width: 44px;
	height: 3px;
	background: #c8a84c;
	border-radius: 2px;
	margin: 0 auto 56px;
}
html body #wrapper_div .edm-about-mission-pillars {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	text-align: left;
}
html body #wrapper_div .edm-about-pillar {
	background: #ffffff;
	border-radius: 14px;
	padding: 34px 28px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
html body #wrapper_div .edm-about-pillar-icon {
	margin-bottom: 20px;
}
html body #wrapper_div .edm-about-pillar-title {
	font-size: 17px;
	font-weight: 700;
	color: #1b3a28;
	margin: 0 0 12px;
}
html body #wrapper_div .edm-about-pillar-desc {
	font-size: 14px;
	color: #5a6b5b;
	line-height: 1.75;
	margin: 0;
}

/* ── WHO TANYA SERVES ────────────────────────────────────────── */
html body #wrapper_div .edm-about-serves {
	background: #ffffff;
	padding: 90px 0 100px;
}
html body #wrapper_div .edm-about-serves-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	text-align: center;
}
html body #wrapper_div .edm-about-serves-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c8a84c;
	margin: 0 0 16px;
}
html body #wrapper_div .edm-about-serves-title {
	font-size: 36px;
	font-weight: 700;
	color: #1b3a28;
	line-height: 1.2;
	margin: 0 0 22px;
}
html body #wrapper_div .edm-about-serves-line {
	display: block;
	width: 44px;
	height: 3px;
	background: #c8a84c;
	border-radius: 2px;
	margin: 0 auto 56px;
}
html body #wrapper_div .edm-about-serves-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: left;
}
html body #wrapper_div .edm-about-serves-card {
	background: #f0f5f0;
	border-radius: 14px;
	padding: 32px 26px;
	border-top: 4px solid #c8a84c;
}
html body #wrapper_div .edm-about-serves-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: #1b3a28;
	margin: 0 0 12px;
}
html body #wrapper_div .edm-about-serves-card p {
	font-size: 14px;
	color: #5a6b5b;
	line-height: 1.75;
	margin: 0;
}

/* ── CTA ─────────────────────────────────────────────────────── */
html body #wrapper_div .edm-about-cta {
	background: #1b3a28;
	padding: 90px 40px;
	text-align: center;
}
html body #wrapper_div .edm-about-cta-inner {
	max-width: 640px;
	margin: 0 auto;
}
html body #wrapper_div .edm-about-cta-title {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 16px;
}
html body #wrapper_div .edm-about-cta-desc {
	font-size: 16px;
	color: rgba(255,255,255,0.70);
	line-height: 1.75;
	margin: 0 0 36px;
}
html body #wrapper_div .edm-about-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
html body #wrapper_div .edm-about-cta-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 15px 36px;
	border-radius: 10px;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
html body #wrapper_div .edm-about-cta-btn--primary {
	background: #c8a84c;
	color: #1b3a28;
}
html body #wrapper_div .edm-about-cta-btn--primary:hover {
	background: #b8943c;
	color: #ffffff;
}
html body #wrapper_div .edm-about-cta-btn--outline {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255,255,255,0.40);
}
html body #wrapper_div .edm-about-cta-btn--outline:hover {
	border-color: #c8a84c;
	color: #c8a84c;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
	html body #wrapper_div .edm-about-mission-pillars { grid-template-columns: repeat(2, 1fr); }
	html body #wrapper_div .edm-about-serves-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	html body #wrapper_div .edm-about-bio-inner { flex-direction: column; gap: 0; }
	html body #wrapper_div .edm-about-bio-photo-wrap { width: 100%; }
	html body #wrapper_div .edm-about-bio-photo { width: 100%; height: 340px; border-radius: 0; box-shadow: none; }
	html body #wrapper_div .edm-about-bio-content { padding-top: 40px; }
}
@media (max-width: 768px) {
	html body #wrapper_div .edm-about-hero { padding: 60px 0 70px; }
	html body #wrapper_div .edm-about-hero-inner { padding: 0 24px; }
	html body #wrapper_div .edm-about-hero-title { font-size: 38px; letter-spacing: -0.5px; }
	html body #wrapper_div .edm-about-hero-subtitle { font-size: 16px; }
	html body #wrapper_div .edm-about-bio { padding: 0 0 70px; }
	html body #wrapper_div .edm-about-bio-inner { padding: 0; }
	html body #wrapper_div .edm-about-bio-content { padding: 40px 24px 0; }
	html body #wrapper_div .edm-about-bio-title { font-size: 28px; }
	html body #wrapper_div .edm-about-bio-stats { gap: 24px; }
	html body #wrapper_div .edm-about-stat-number { font-size: 30px; }
	html body #wrapper_div .edm-about-mission { padding: 60px 0 70px; }
	html body #wrapper_div .edm-about-mission-inner { padding: 0 24px; }
	html body #wrapper_div .edm-about-mission-title { font-size: 26px; }
	html body #wrapper_div .edm-about-mission-pillars { grid-template-columns: 1fr; gap: 16px; }
	html body #wrapper_div .edm-about-serves { padding: 60px 0 70px; }
	html body #wrapper_div .edm-about-serves-inner { padding: 0 24px; }
	html body #wrapper_div .edm-about-serves-title { font-size: 26px; }
	html body #wrapper_div .edm-about-serves-grid { grid-template-columns: 1fr; gap: 16px; }
	html body #wrapper_div .edm-about-cta { padding: 60px 24px; }
	html body #wrapper_div .edm-about-cta-title { font-size: 26px; }
	html body #wrapper_div .edm-about-cta-btn { width: 100%; text-align: center; }
}

/* =============================================================
   CONTACT PAGE — Edmonton
   ============================================================= */

html body #wrapper_div .edm-contact-hero { text-align: center; }
html body #wrapper_div .edm-contact-hero .edm-svc-hero-line { margin: 0 auto; }
html body #wrapper_div .edm-contact-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c8a84c;
	margin: 0 0 16px;
}

/* ── CARDS GRID ──────────────────────────────────────────────── */
html body #wrapper_div .edm-contact-body {
	background: #f0f5f0;
	padding: 80px 40px 100px;
}
html body #wrapper_div .edm-contact-grid {
	max-width: 960px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
html body #wrapper_div .edm-contact-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 44px 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	box-shadow: 0 4px 20px rgba(0,0,0,0.07);
	border-top: 4px solid #c8a84c;
	transition: box-shadow 0.2s, transform 0.2s;
}
html body #wrapper_div .edm-contact-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	transform: translateY(-3px);
}
html body #wrapper_div .edm-contact-card-icon {
	width: 60px;
	height: 60px;
	background: #f0f5f0;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}
html body #wrapper_div .edm-contact-card-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c8a84c;
	margin: 0 0 10px;
}
html body #wrapper_div .edm-contact-card-value {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #1b3a28;
	text-decoration: none;
	line-height: 1.3;
	margin-bottom: 10px;
}
html body #wrapper_div .edm-contact-card-value:hover { color: #c8a84c; }
html body #wrapper_div .edm-contact-card-note {
	font-size: 14px;
	color: #6a7a6b;
	line-height: 1.6;
	margin: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 720px) {
	html body #wrapper_div .edm-contact-body { padding: 56px 24px 72px; }
	html body #wrapper_div .edm-contact-grid { grid-template-columns: 1fr; gap: 20px; }
	html body #wrapper_div .edm-contact-card { padding: 32px 28px; }
	html body #wrapper_div .edm-contact-card-value { font-size: 17px; }
}
