/* ==========================================================================
   THE SKIN MATRIX — SHARED COMPONENTS
   Everything the prototype reuses across two or more pages. Page-specific
   styling ships with its own widget; nothing here is page-specific.
   Scoped under .sm- prefixes so Elementor's own rules are never touched.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Page shell & layout primitives
   -------------------------------------------------------------------------- */

.sm-page {
	font-family: var(--sm-font-body);
	color: var(--sm-text);
}

.sm-page *,
.sm-section *,
.sm-hero *,
.sm-trust * {
	box-sizing: border-box;
}

.sm-container {
	max-width: var(--sm-container);
	margin: 0 auto;
	padding: 0 var(--sm-gutter);
}

.sm-container--narrow {
	max-width: 860px;
}

.sm-section {
	padding: var(--sm-section-y) 0;
	background: var(--sm-ivory);
}

.sm-section--alt {
	background: #fff;
}

.sm-center {
	text-align: center;
}

.sm-grid {
	display: grid;
	gap: 26px;
}

.sm-grid--c2 { grid-template-columns: repeat(2, 1fr); }
.sm-grid--c3 { grid-template-columns: repeat(3, 1fr); }
.sm-grid--c4 { grid-template-columns: repeat(4, 1fr); }

.sm-grid--split {
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
	align-items: center;
}

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */

.sm-eyebrow {
	display: inline-block;
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--sm-gold);
	margin-bottom: 10px;
}

.sm-heading {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.12;
	color: var(--sm-charcoal);
	margin: 0 0 14px;
	text-wrap: balance;
}

.sm-heading--sm {
	font-size: clamp(24px, 3vw, 32px);
}

.sm-heading--light {
	color: #fff;
}

.sm-sub {
	font-size: 15px;
	color: var(--sm-text-quiet);
	line-height: 1.7;
	max-width: 640px;
	margin: 0 0 8px;
}

.sm-sub--center {
	margin-left: auto;
	margin-right: auto;
}

.sm-gold-text {
	color: var(--sm-gold);
}

/* Section heading block. */
.sm-shead {
	max-width: 720px;
	margin: 0 auto 44px;
	text-align: center;
}

.sm-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 0 auto 40px;
	max-width: 280px;
	color: var(--sm-gold);
}

.sm-divider span {
	height: 1px;
	flex: 1;
	background: linear-gradient(90deg, transparent, var(--sm-gold), transparent);
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.sm-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	cursor: pointer;
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .4px;
	padding: 14px 28px;
	border-radius: 42px;
	border: 1.6px solid transparent;
	position: relative;
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.sm-btn--sm {
	padding: 10px 20px;
	font-size: 12.5px;
}

.sm-btn--fill {
	background: var(--sm-burgundy);
	color: #fff;
	box-shadow: 0 10px 26px rgba(90, 47, 51, .26);
}

.sm-btn--fill:hover,
.sm-btn--fill:focus-visible {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(90, 47, 51, .4);
}

.sm-btn--gold {
	background: linear-gradient(135deg, var(--sm-gold), var(--sm-gold-dark));
	color: #fff;
	box-shadow: 0 10px 26px rgba(201, 161, 91, .3);
}

.sm-btn--gold:hover,
.sm-btn--gold:focus-visible {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(201, 161, 91, .45);
}

.sm-btn--outline {
	background: transparent;
	color: var(--sm-charcoal);
	border-color: rgba(27, 27, 27, .25);
}

.sm-btn--outline:hover,
.sm-btn--outline:focus-visible {
	background: var(--sm-gold);
	border-color: var(--sm-gold);
	color: #fff;
	transform: translateY(-2px);
}

.sm-btn--outline-light {
	color: #fff;
	border-color: rgba(255, 255, 255, .5);
}

.sm-btn--outline-light:hover,
.sm-btn--outline-light:focus-visible {
	background: var(--sm-gold);
	border-color: var(--sm-gold);
	color: #fff;
}

/* Sheen sweep. */
.sm-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
	transform: skewX(-20deg);
	transition: left .6s ease;
	pointer-events: none;
}

.sm-btn:hover::before,
.sm-btn:focus-visible::before {
	left: 150%;
}

.sm-btn:focus-visible {
	outline: 2px solid var(--sm-gold);
	outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   4. Scroll reveal
   The prototype parks elements at opacity 0. We start them visible and let
   JS opt in, so the page is readable if JS fails or is still parsing.
   -------------------------------------------------------------------------- */

.sm-js .sm-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .8s ease, transform .8s ease;
}

.sm-js .sm-reveal.is-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.sm-js .sm-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* --------------------------------------------------------------------------
   5. Inner-page hero
   -------------------------------------------------------------------------- */

.sm-pagehero {
	position: relative;
	min-height: 52vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(120deg, var(--sm-burgundy), var(--sm-burgundy-deep));
}

.sm-pagehero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: .28;
}

.sm-pagehero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(90, 47, 51, .92), rgba(60, 30, 33, .7));
}

.sm-pagehero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--sm-container);
	margin: 0 auto;
	padding: 70px var(--sm-gutter);
	width: 100%;
}

.sm-pagehero h1 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: clamp(38px, 5.5vw, 64px);
	color: #fff;
	line-height: 1.05;
	margin: 0 0 14px;
	text-wrap: balance;
}

.sm-pagehero h1 span {
	color: var(--sm-gold);
}

.sm-pagehero__lead {
	font-size: 16px;
	color: #ece2d6;
	max-width: 560px;
	margin: 14px 0 0;
	line-height: 1.7;
}

.sm-crumb {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13.5px;
	color: #e4d8cc;
	flex-wrap: wrap;
}

.sm-crumb a {
	color: var(--sm-gold);
	text-decoration: none;
}

.sm-crumb a:hover {
	text-decoration: underline;
}

.sm-crumb i {
	font-size: 9px;
	opacity: .7;
}

/* --------------------------------------------------------------------------
   6. Cards
   -------------------------------------------------------------------------- */

.sm-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.sm-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--sm-gold-16);
	box-shadow: var(--sm-shadow-card);
	transition: transform .45s ease, box-shadow .45s ease;
	display: flex;
	flex-direction: column;
}

.sm-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--sm-shadow-card-hover);
}

.sm-card--row {
	flex-direction: row;
}

.sm-card__img {
	height: 200px;
	background-size: cover;
	background-position: center;
	transition: transform .6s ease;
}

.sm-card--row .sm-card__img {
	width: 40%;
	height: auto;
	min-height: 300px;
	flex: 0 0 40%;
}

.sm-card:hover .sm-card__img {
	transform: scale(1.07);
}

.sm-card__body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.sm-card__ico {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	margin-bottom: 14px;
	background: linear-gradient(135deg, var(--sm-gold), var(--sm-gold-dark));
	color: #fff;
	font-size: 21px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 22px var(--sm-gold-40);
}

.sm-card h3 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: 24px;
	margin: 0 0 10px;
}

.sm-card__role {
	color: var(--sm-gold);
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 14px;
}

.sm-card p {
	font-size: 14px;
	color: var(--sm-text-muted);
	line-height: 1.65;
	margin: 0 0 16px;
}

.sm-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
}

.sm-card li {
	font-size: 14px;
	color: var(--sm-text-soft);
	padding: 5px 0;
	display: flex;
	align-items: center;
	gap: 9px;
}

.sm-card li i {
	color: var(--sm-gold);
	font-size: 12px;
	flex: 0 0 auto;
}

.sm-card__link {
	margin-top: auto;
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 13px;
	color: var(--sm-burgundy);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: gap .3s ease, color .3s ease;
}

.sm-card__link:hover {
	gap: 12px;
	color: var(--sm-gold);
}

/* --------------------------------------------------------------------------
   7. Value / icon tile
   -------------------------------------------------------------------------- */

.sm-value {
	text-align: center;
	padding: 26px 14px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--sm-gold-14);
	transition: transform .4s ease, box-shadow .4s ease;
}

.sm-value:hover {
	transform: translateY(-8px);
	box-shadow: var(--sm-shadow-raised);
}

.sm-value__ico {
	display: inline-flex;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--sm-gold-12);
	color: var(--sm-gold);
	font-size: 24px;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.sm-value h4 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 7px;
}

.sm-value p {
	font-size: 13.5px;
	color: var(--sm-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* --------------------------------------------------------------------------
   8. Tick list
   -------------------------------------------------------------------------- */

.sm-ticklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sm-ticklist li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14.5px;
	color: var(--sm-text-soft);
	line-height: 1.6;
	padding: 7px 0;
	border-bottom: 1px solid var(--sm-gold-12);
}

.sm-ticklist li:last-child {
	border-bottom: 0;
}

.sm-ticklist li i {
	color: var(--sm-gold);
	font-size: 14px;
	margin-top: 3px;
	flex: 0 0 auto;
}

.sm-ticklist--c2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 40px;
}

/* --------------------------------------------------------------------------
   9. Process steps
   -------------------------------------------------------------------------- */

.sm-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
}

.sm-step {
	text-align: center;
	padding: 28px 18px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--sm-gold-14);
	position: relative;
	transition: transform .4s ease, box-shadow .4s ease;
}

.sm-step:hover {
	transform: translateY(-8px);
	box-shadow: var(--sm-shadow-raised);
}

.sm-step__n {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: 40px;
	color: var(--sm-gold);
	opacity: .85;
	display: block;
	margin-bottom: 8px;
	font-variant-numeric: tabular-nums;
}

.sm-step h4 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 6px;
}

.sm-step p {
	font-size: 13.5px;
	color: var(--sm-text-quiet);
	line-height: 1.55;
	margin: 0;
}

/* --------------------------------------------------------------------------
   10. FAQ accordion
   -------------------------------------------------------------------------- */

.sm-faq__item {
	background: #fff;
	border: 1px solid var(--sm-gold-16);
	border-radius: 14px;
	margin-bottom: 12px;
	overflow: hidden;
}

.sm-faq__q {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 18px 22px;
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 15px;
	color: var(--sm-charcoal);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.sm-faq__q i {
	color: var(--sm-gold);
	transition: transform .3s ease;
	flex: 0 0 auto;
}

.sm-faq__item.is-open .sm-faq__q i {
	transform: rotate(45deg);
}

.sm-faq__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .35s var(--sm-ease);
}

.sm-faq__item.is-open .sm-faq__a {
	grid-template-rows: 1fr;
}

.sm-faq__a > div {
	overflow: hidden;
}

.sm-faq__a p {
	padding: 0 22px 18px;
	font-size: 14px;
	color: var(--sm-text-muted);
	line-height: 1.7;
	margin: 0;
}

/* --------------------------------------------------------------------------
   11. CTA strip
   -------------------------------------------------------------------------- */

.sm-ctastrip {
	background: linear-gradient(120deg, var(--sm-burgundy), var(--sm-burgundy-deep));
	padding: 60px 0;
	text-align: center;
}

.sm-ctastrip h2 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: clamp(28px, 3.6vw, 42px);
	color: #fff;
	margin: 0 0 12px;
	text-wrap: balance;
}

.sm-ctastrip p {
	font-size: 15px;
	color: #e7ded2;
	max-width: 560px;
	margin: 0 auto 26px;
	line-height: 1.7;
}

.sm-ctastrip .sm-btn {
	margin: 6px;
}

/* --------------------------------------------------------------------------
   12. Appointment form (native + Forminator skin)
   -------------------------------------------------------------------------- */

.sm-form-wrap {
	background: #fff;
	border-radius: 20px;
	padding: 38px;
	border: 1px solid var(--sm-gold-20);
	box-shadow: var(--sm-shadow-raised);
}

.sm-form-wrap h3 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: 28px;
	margin: 0 0 6px;
}

.sm-form-wrap__sub {
	font-size: 13.5px;
	color: var(--sm-text-quiet);
	margin: 0 0 24px;
}

.sm-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.sm-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sm-field--full {
	grid-column: 1 / -1;
}

.sm-field label {
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .4px;
	color: var(--sm-charcoal);
}

.sm-field input,
.sm-field select,
.sm-field textarea {
	font-family: var(--sm-font-body);
	font-size: 14px;
	color: var(--sm-charcoal);
	padding: 13px 16px;
	border: 1.5px solid rgba(27, 27, 27, .14);
	border-radius: 12px;
	background: var(--sm-ivory);
	transition: border-color .3s ease, box-shadow .3s ease;
	width: 100%;
}

.sm-field input:focus,
.sm-field select:focus,
.sm-field textarea:focus {
	outline: none;
	border-color: var(--sm-gold);
	box-shadow: 0 0 0 3px var(--sm-gold-20);
}

.sm-field textarea {
	resize: vertical;
	min-height: 110px;
}

.sm-field[data-invalid="true"] input,
.sm-field[data-invalid="true"] select,
.sm-field[data-invalid="true"] textarea {
	border-color: #b3261e;
}

.sm-field__error {
	font-size: 12px;
	color: #b3261e;
}

.sm-form-wrap .sm-btn {
	width: 100%;
	justify-content: center;
	margin-top: 6px;
}

/* Honeypot — off-screen rather than display:none, which some bots detect. */
.sm-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.sm-form-status {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.6;
}

.sm-form-status[data-state="success"] {
	background: rgba(56, 102, 79, .1);
	color: #2c5540;
	border: 1px solid rgba(56, 102, 79, .25);
}

.sm-form-status[data-state="error"] {
	background: rgba(179, 38, 30, .08);
	color: #8c1d18;
	border: 1px solid rgba(179, 38, 30, .22);
}

/* Forminator skin — the one place !important is unavoidable, because
   Forminator ships its own inline-priority design styles. */
.sm-forminator .forminator-field input,
.sm-forminator .forminator-field textarea,
.sm-forminator .forminator-field select {
	border: 1.5px solid rgba(27, 27, 27, .14) !important;
	border-radius: 12px !important;
	background: var(--sm-ivory) !important;
	font-family: var(--sm-font-body) !important;
	padding: 13px 16px !important;
}

.sm-forminator .forminator-field input:focus,
.sm-forminator .forminator-field textarea:focus,
.sm-forminator .forminator-field select:focus {
	border-color: var(--sm-gold) !important;
	box-shadow: 0 0 0 3px var(--sm-gold-20) !important;
}

.sm-forminator .forminator-label {
	font-family: var(--sm-font-btn) !important;
	font-weight: 600 !important;
	font-size: 12px !important;
	letter-spacing: .4px !important;
	color: var(--sm-charcoal) !important;
}

.sm-forminator button.forminator-button-submit {
	background: var(--sm-burgundy) !important;
	font-family: var(--sm-font-btn) !important;
	font-weight: 600 !important;
	border-radius: 42px !important;
	padding: 14px 30px !important;
	letter-spacing: .4px !important;
	border: 0 !important;
	box-shadow: 0 10px 26px rgba(90, 47, 51, .26) !important;
	transition: transform .3s ease !important;
}

.sm-forminator button.forminator-button-submit:hover {
	transform: translateY(-2px) !important;
}

/* --------------------------------------------------------------------------
   13. Contact cards & locations
   -------------------------------------------------------------------------- */

.sm-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-bottom: 40px;
}

.sm-contact-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px 24px;
	text-align: center;
	border: 1px solid var(--sm-gold-16);
	transition: transform .4s ease, box-shadow .4s ease;
}

.sm-contact-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(27, 27, 27, .1);
}

.sm-contact-card__ico {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin: 0 auto 14px;
	background: var(--sm-gold-12);
	color: var(--sm-gold);
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sm-contact-card h4 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: 21px;
	margin: 0 0 8px;
}

.sm-contact-card p,
.sm-contact-card a {
	font-size: 14px;
	color: var(--sm-text-muted);
	line-height: 1.6;
	text-decoration: none;
	display: block;
	margin: 0;
}

.sm-contact-card a:hover {
	color: var(--sm-gold);
}

.sm-loc {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 18px;
	background: #fff;
	padding: 16px 18px;
	border-radius: 14px;
	border: 1px solid var(--sm-gold-16);
}

.sm-loc__ico {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex: 0 0 auto;
	background: var(--sm-gold-12);
	color: var(--sm-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.sm-loc strong {
	font-family: var(--sm-font-head);
	font-size: 19px;
	color: var(--sm-burgundy);
	display: block;
	margin-bottom: 2px;
}

.sm-loc p {
	font-size: 13.5px;
	color: var(--sm-text-muted);
	line-height: 1.5;
	margin: 0;
}

.sm-map {
	margin-top: 20px;
	border-radius: 16px;
	overflow: hidden;
	height: 240px;
	border: 1px solid var(--sm-gold-20);
}

.sm-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* --------------------------------------------------------------------------
   14. Doctor profile
   -------------------------------------------------------------------------- */

.sm-docprofile {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 44px;
	align-items: center;
}

.sm-docprofile--flip .sm-docprofile__img {
	order: 2;
}

.sm-docprofile__img {
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(27, 27, 27, .16);
	position: relative;
}

.sm-docprofile__img img {
	width: 100%;
	display: block;
}

.sm-docprofile__badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 14px;
	padding: 14px 18px;
	border: 1px solid var(--sm-gold-30);
}

.sm-docprofile__badge strong {
	font-family: var(--sm-font-head);
	font-size: 20px;
	color: var(--sm-burgundy);
	display: block;
}

.sm-docprofile__badge span {
	font-size: 12px;
	color: var(--sm-text-soft);
}

.sm-docprofile h2 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: clamp(30px, 3.6vw, 42px);
	color: var(--sm-burgundy);
	margin: 0 0 6px;
}

.sm-docprofile__role {
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 14px;
	color: var(--sm-gold);
	letter-spacing: .5px;
	margin-bottom: 18px;
	display: block;
}

.sm-docprofile p {
	font-size: 14.5px;
	color: var(--sm-text-soft);
	line-height: 1.75;
	margin: 0 0 16px;
}

.sm-taglist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.sm-taglist span {
	font-size: 12.5px;
	background: var(--sm-gold-12);
	color: var(--sm-burgundy);
	padding: 7px 15px;
	border-radius: 24px;
	border: 1px solid var(--sm-gold-30);
}

/* --------------------------------------------------------------------------
   15. Counter stat
   -------------------------------------------------------------------------- */

.sm-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.sm-stat strong {
	display: block;
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: clamp(38px, 4vw, 54px);
	color: var(--sm-gold);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.sm-stat p {
	font-size: 14px;
	color: var(--sm-text-quiet);
	margin: 6px 0 0;
}

/* --------------------------------------------------------------------------
   16. Blog card
   Shared by the archive template and the Post Grid widget, so the two can
   never drift apart.
   -------------------------------------------------------------------------- */

.sm-blog-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--sm-gold-14);
	box-shadow: var(--sm-shadow-card);
	transition: transform .45s ease, box-shadow .45s ease;
	display: flex;
	flex-direction: column;
}

.sm-blog-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--sm-shadow-card-hover);
}

.sm-blog-card__img {
	display: block;
	height: 190px;
	background-size: cover;
	background-position: center;
	background-color: var(--sm-gold-08);
	position: relative;
}

.sm-blog-card__cat {
	position: absolute;
	bottom: 12px;
	left: 12px;
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 10.5px;
	letter-spacing: .5px;
	background: var(--sm-gold);
	color: #1b1b1b;
	padding: 4px 12px;
	border-radius: 20px;
}

.sm-blog-card__body {
	padding: 20px 20px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.sm-blog-card__date {
	font-size: 12px;
	color: #9a9a9a;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.sm-blog-card__body h3 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.25;
	margin: 0 0 9px;
}

.sm-blog-card__body h3 a {
	color: var(--sm-charcoal);
	text-decoration: none;
	transition: color .3s ease;
}

.sm-blog-card__body h3 a:hover {
	color: var(--sm-gold);
}

.sm-blog-card__body p {
	font-size: 13.5px;
	color: var(--sm-text-quiet);
	line-height: 1.6;
	margin: 0 0 14px;
}

.sm-blog-card__more {
	margin-top: auto;
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 12.5px;
	color: var(--sm-burgundy);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: gap .3s ease, color .3s ease;
}

.sm-blog-card__more:hover {
	gap: 12px;
	color: var(--sm-gold);
}

/* --------------------------------------------------------------------------
   17. Pagination
   -------------------------------------------------------------------------- */

.sm-pagination {
	margin-top: 44px;
}

.sm-pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.sm-pagination .page-numbers {
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 1px solid var(--sm-gold-30);
	font-family: var(--sm-font-btn);
	font-weight: 600;
	font-size: 13px;
	color: var(--sm-burgundy);
	text-decoration: none;
	transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.sm-pagination .page-numbers:hover,
.sm-pagination .page-numbers.current {
	background: var(--sm-burgundy);
	border-color: var(--sm-burgundy);
	color: #fff;
}

/* --------------------------------------------------------------------------
   18. Responsive — breakpoints taken from the prototype
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.sm-grid--c4,
	.sm-grid--c3,
	.sm-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sm-contact-grid { grid-template-columns: 1fr; }
	.sm-docprofile {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.sm-docprofile--flip .sm-docprofile__img { order: 0; }
}

@media (max-width: 1100px) {
	.sm-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
	.sm-section { padding: var(--sm-section-y-sm) 0; }
	.sm-container { padding: 0 var(--sm-gutter-sm); }
	.sm-steps { grid-template-columns: 1fr; }
	.sm-ticklist--c2 { grid-template-columns: 1fr; }
	.sm-pagehero__inner { padding: 54px var(--sm-gutter-sm); }
	.sm-grid--c2,
	.sm-grid--c3,
	.sm-grid--c4,
	.sm-grid--split,
	.sm-cards { grid-template-columns: 1fr; }
	.sm-form-row { grid-template-columns: 1fr; }
	.sm-form-wrap { padding: 26px; }
	.sm-card--row { flex-direction: column; }
	.sm-card--row .sm-card__img {
		width: 100%;
		flex-basis: auto;
		min-height: 220px;
	}
}

/* --------------------------------------------------------------------------
   17. Elementor editor safety
   The prototype's fixed header sits above Elementor's canvas. Inside the
   editor we release it so panels and handles stay reachable.
   -------------------------------------------------------------------------- */

.elementor-editor-active .sm-header,
.elementor-editor-preview .sm-header {
	position: relative;
}

.elementor-editor-active .sm-whatsapp,
.elementor-editor-preview .sm-whatsapp {
	display: none;
}


/* --------------------------------------------------------------------------
   Icon normalisation

   Icons reach the page two ways: as an <i> element we print ourselves, and as
   an inline <svg> when Elementor's icon control converts a known Font Awesome
   name into its own SVG. The two size and colour completely differently — an
   <svg> ignores font-size and needs an explicit fill — which is why some icons
   rendered invisible or plain black while their neighbours were gold.

   These rules make both forms behave identically wherever an icon appears:
   size from the container's font-size, colour from currentColor.
   -------------------------------------------------------------------------- */

.sm-trust__ico svg,
.sm-spec__ico svg,
.sm-tile__ico svg,
.sm-contact-card__ico svg,
.sm-loc__ico svg,
.sm-step__num svg,
.sm-stat__ico svg,
.sm-ticklist svg,
.sm-btn svg,
.sm-spec__link svg,
.sm-mega__more svg,
.sm-card__link svg,
.sm-doc__link svg,
.sm-play svg,
.sm-faq__q svg,
.sm-cta__btn svg,
.sm-header__cta svg,
.sm-mobile__cta svg,
.sm-whatsapp svg,
.sm-actionbar__item svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	vertical-align: -.125em;
	flex-shrink: 0;
}

/* Font Awesome's own <i> already inherits colour; this keeps any icon that
   Elementor renders as SVG from falling back to black. */
.e-font-icon-svg {
	fill: currentColor;
}

/* Outline buttons are charcoal text on a light ground, which made their arrow
   read as a stray black mark. The icon carries the accent instead. */
.sm-btn--outline i,
.sm-btn--outline svg {
	color: var(--sm-gold);
	fill: var(--sm-gold);
}

.sm-btn--outline:hover i,
.sm-btn--outline:hover svg,
.sm-btn--outline:focus-visible i,
.sm-btn--outline:focus-visible svg {
	color: inherit;
	fill: currentColor;
}