
.masw-section,
.masw-section * {
	box-sizing: border-box;
}

.masw-section {
	--masw-navy: #0e2e47;
	--masw-gold: #d3a044;
	--masw-muted: #637686;
	background: #ffffff;
	overflow: hidden;
}

.masw-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 95px 24px;
}

.masw-main-grid {
	--masw-gap: 68px;
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: var(--masw-gap);
}

.masw-image-right .masw-visual-wrap {
	order: 2;
}

.masw-image-right .masw-content {
	order: 1;
}

.masw-visual-wrap {
	position: relative;
	min-width: 0;
	padding-bottom: 58px;
}

.masw-visual {
	position: relative;
	min-height: 650px;
	overflow: hidden;
	border: 1px solid #e2e8ec;
	border-radius: 16px;
	background: var(--masw-navy);
	box-shadow: 0 22px 55px rgba(14,46,71,.11);
}

.masw-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(14,46,71,.10);
	pointer-events: none;
}

.masw-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.masw-visual-badge {
	position: absolute;
	top: 22px;
	left: 22px;
	z-index: 3;
	max-width: calc(100% - 44px);
	padding: 10px 13px;
	border-radius: 999px;
	background: var(--masw-gold);
	color: #fff;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.masw-no-image-copy {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 50px;
	text-align: center;
	color: #fff;
}

.masw-no-image-monogram {
	width: 100px;
	height: 100px;
	display: grid;
	place-items: center;
	margin-bottom: 24px;
	border: 1px solid rgba(255,255,255,.26);
	border-radius: 28px 28px 28px 6px;
	color: var(--masw-gold);
	font-family: Georgia, serif;
	font-size: 64px;
	line-height: 1;
	background: rgba(255,255,255,.05);
}

.masw-no-image-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 34px;
	line-height: 1.12;
}

.masw-no-image-subtitle {
	margin-top: 9px;
	color: rgba(255,255,255,.68);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
}

.masw-quote-card {
	position: absolute;
	right: -22px;
	bottom: 0;
	z-index: 5;
	width: 330px;
	padding: 24px;
	border: 1px solid #edf0f2;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(14,46,71,.14);
}

.masw-quote-mark {
	height: 26px;
	color: var(--masw-gold);
	font-family: Georgia, serif;
	font-size: 52px;
	line-height: .8;
}

.masw-quote-card p {
	margin: 8px 0 0;
	color: var(--masw-navy);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 16px;
	font-style: italic;
	line-height: 1.55;
}

.masw-content {
	min-width: 0;
}

.masw-eyebrow {
	margin-bottom: 13px;
	color: var(--masw-gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.masw-heading {
	margin: 0 0 20px;
	color: var(--masw-navy);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 50px;
	line-height: 1.08;
	letter-spacing: -.8px;
}

.masw-heading span {
	color: var(--masw-gold);
}

.masw-intro {
	margin: 0 0 18px;
	color: #27455d;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.7;
}

.masw-body {
	color: var(--masw-muted);
	font-size: 14px;
	line-height: 1.8;
}

.masw-body p {
	margin: 0 0 15px;
}

.masw-body p:last-child {
	margin-bottom: 0;
}

.masw-values {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 30px;
}

.masw-value-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	border: 1px solid #e8edef;
	border-radius: 10px;
	background: #f7f9fa;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.masw-value-item:hover {
	transform: translateY(-2px);
	border-color: rgba(211,160,68,.55);
	box-shadow: 0 12px 28px rgba(14,46,71,.07);
}

.masw-value-icon {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #f4ead8;
	color: var(--masw-gold);
	font-size: 20px;
}

.masw-value-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.masw-value-item h3 {
	margin: 0 0 5px;
	color: var(--masw-navy);
	font-size: 15px;
	line-height: 1.3;
}

.masw-value-item p {
	margin: 0;
	color: #738391;
	font-size: 12px;
	line-height: 1.55;
}

.masw-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	margin-top: 26px;
	padding: 26px 24px;
	border-radius: 12px;
	background: var(--masw-navy);
}

.masw-stat {
	padding: 0 18px;
	border-right: 1px solid rgba(255,255,255,.12);
}

.masw-stat:first-child {
	padding-left: 0;
}

.masw-stat:last-child {
	padding-right: 0;
	border-right: 0;
}

.masw-stat-number {
	margin-bottom: 5px;
	color: var(--masw-gold);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.masw-stat-label {
	color: #d9e4eb;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.45;
	text-transform: uppercase;
	letter-spacing: .65px;
}

.masw-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.masw-btn {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .35px;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.masw-btn:hover {
	transform: translateY(-2px);
}

.masw-btn-primary {
	background: var(--masw-gold);
	color: #fff;
}

.masw-btn-primary:hover {
	background: #b98731;
	color: #fff;
}

.masw-btn-secondary {
	border-color: #cbd5dc;
	background: transparent;
	color: var(--masw-navy);
}

.masw-btn-secondary:hover {
	border-color: var(--masw-navy);
	background: var(--masw-navy);
	color: #fff;
}

@media (max-width: 1024px) {
	.masw-main-grid {
		grid-template-columns: 1fr 1fr;
		gap: 42px;
	}

	.masw-visual {
		min-height: 560px;
	}

	.masw-heading {
		font-size: 43px;
	}

	.masw-quote-card {
		right: -10px;
		width: 290px;
	}
}

@media (max-width: 767px) {
	.masw-container {
		padding: 64px 16px;
	}

	.masw-main-grid {
		grid-template-columns: 1fr !important;
		gap: 36px;
	}

	.masw-image-right .masw-visual-wrap,
	.masw-image-right .masw-content {
		order: initial;
	}

	.masw-mobile-image_first .masw-visual-wrap {
		order: 1;
	}

	.masw-mobile-image_first .masw-content {
		order: 2;
	}

	.masw-mobile-content_first .masw-content {
		order: 1;
	}

	.masw-mobile-content_first .masw-visual-wrap {
		order: 2;
	}

	.masw-visual-wrap {
		padding-bottom: 50px;
	}

	.masw-visual {
		min-height: 430px;
	}

	.masw-visual-badge {
		top: 14px;
		left: 14px;
		max-width: calc(100% - 28px);
		padding: 8px 10px;
		font-size: 9px;
	}

	.masw-quote-card {
		right: 14px;
		left: 14px;
		width: auto !important;
		padding: 19px;
	}

	.masw-quote-card p {
		font-size: 14px;
	}

	.masw-heading {
		font-size: 36px;
		line-height: 1.08;
	}

	.masw-intro {
		font-size: 15px;
	}

	.masw-body {
		font-size: 13.5px;
	}

	.masw-values {
		grid-template-columns: 1fr !important;
		gap: 11px;
	}

	.masw-value-item {
		padding: 15px;
	}

	.masw-stats {
		grid-template-columns: 1fr !important;
		padding: 20px;
	}

	.masw-stat,
	.masw-stat:first-child,
	.masw-stat:last-child {
		padding: 13px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,.12);
	}

	.masw-stat:first-child {
		padding-top: 0;
	}

	.masw-stat:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.masw-buttons {
		flex-direction: column;
	}

	.masw-mobile-buttons-full-yes .masw-btn {
		width: 100%;
	}
}
