:root {
	--brand-blue-900: #0d4c88;
	--brand-blue-700: #1c5a96;
	--brand-blue-500: #2f73b3;
	--brand-lime-700: #b7d814;
	--brand-lime-500: #c9ea29;
	--navy-950: #0e2238;
	--navy-900: #16395d;
	--slate-700: #4a6480;
	--mist-200: #dfe8ef;
	--mist-100: #f3f8fb;
	--white: #ffffff;
	--shadow: 0 24px 70px rgba(14, 34, 56, 0.12);
	--radius-lg: 30px;
	--radius-md: 20px;
	--shell: min(1180px, calc(100vw - 40px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
	color: var(--navy-950);
	line-height: 1.7;
	overflow-x: hidden;
	background:
		radial-gradient(circle at top left, rgba(201, 234, 41, 0.18), transparent 24%),
		radial-gradient(circle at bottom right, rgba(28, 90, 150, 0.1), transparent 25%),
		linear-gradient(180deg, #fbfeff 0%, #edf5fa 100%);
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.shell {
	width: var(--shell);
	margin: 0 auto;
}

.section-kicker {
	margin: 0 0 10px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brand-blue-700);
}

h1,
h2,
h3,
.site-brand__name {
	font-family: "Cormorant Garamond", serif;
	line-height: 1.06;
	letter-spacing: -0.01em;
	margin: 0 0 16px;
}

h1 {
	font-size: clamp(2.9rem, 6.6vw, 5.5rem);
}

h2 {
	font-size: clamp(2.1rem, 4.6vw, 4rem);
}

h3 {
	font-size: 1.7rem;
}

p {
	margin: 0 0 18px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(12px);
	background: rgba(251, 254, 255, 0.9);
	border-bottom: 1px solid rgba(13, 76, 136, 0.1);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.site-brand__logo {
	width: 118px;
	height: 118px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(183, 216, 20, 0.18), rgba(28, 90, 150, 0.08));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.site-brand__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-brand__text {
	display: flex;
	align-items: flex-start;
}

.site-brand__name {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 0;
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1;
	justify-content: flex-end;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
	justify-content: flex-end;
}

.primary-menu a {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--slate-700);
	white-space: nowrap;
}

.primary-menu > .menu-item {
	position: relative;
}

.primary-menu .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.primary-menu .menu-item-has-children > a::after {
	content: "";
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: 0;
	min-width: 280px;
	padding: 18px;
	margin: 0;
	list-style: none;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(223, 232, 239, 0.94)),
		radial-gradient(circle at right top, rgba(183, 216, 20, 0.16), transparent 26%);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: 0 24px 60px rgba(14, 34, 56, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.primary-menu > .menu-item-has-children:hover > .sub-menu,
.primary-menu > .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu li + li {
	margin-top: 10px;
}

.primary-menu .sub-menu a {
	display: block;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.74);
	color: var(--navy-950);
	font-weight: 700;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu .current-menu-item > a {
	background: rgba(183, 216, 20, 0.16);
	color: var(--brand-blue-900);
}

.primary-menu .sub-menu .menu-item {
	position: relative;
}

.primary-menu .sub-menu .sub-menu {
	top: 0;
	left: calc(100% + 14px);
}

.primary-menu .sub-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .sub-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
	color: var(--brand-blue-700);
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover,
.button:hover {
	transform: translateY(-1px);
}

.header-cta,
.button--primary {
	background: linear-gradient(135deg, var(--brand-blue-700), var(--brand-lime-700));
	color: var(--white);
}

.header-cta {
	border: 0;
	cursor: pointer;
	min-width: 184px;
	padding: 0 24px;
	box-shadow: 0 18px 44px rgba(13, 76, 136, 0.22);
	white-space: nowrap;
	flex-shrink: 0;
}

.button--secondary,
.button--light {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.26);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	border: 0;
	background: transparent;
	padding: 4px;
}

.menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--navy-950);
}

.home-slider,
.intro-band,
.doctor-showcase,
.services-section,
.specialization-section,
.team-section,
.reviews-section,
.treatment-path,
.home-contact,
.page-content {
	padding: 86px 0;
}

.home-slider {
	padding-top: 24px;
	padding-bottom: 18px;
}

.home-slider__frame {
	position: relative;
	width: min(1360px, calc(100vw - 28px));
	margin: 0 auto;
	min-height: 800px;
	border-radius: 36px;
	overflow: hidden;
	box-shadow: 0 36px 90px rgba(14, 34, 56, 0.18);
}

.home-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.75s ease;
}

.home-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.service-hero .section-kicker {
	color: rgba(255, 255, 255, 0.9);
}

.home-slide__backdrop,
.home-slide__overlay {
	position: absolute;
	inset: 0;
}

.home-slide__backdrop::before,
.home-slide__backdrop::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(4px);
}

.home-slide__backdrop--one {
	background:
		radial-gradient(circle at 15% 20%, rgba(201, 234, 41, 0.22), transparent 18%),
		linear-gradient(130deg, #0e2238 0%, #194a7b 45%, #7eb50f 100%);
}

.home-slide__backdrop--one::before {
	width: 340px;
	height: 340px;
	right: 8%;
	top: 16%;
	background: rgba(255, 255, 255, 0.08);
}

.home-slide__backdrop--one::after {
	width: 560px;
	height: 560px;
	right: -8%;
	bottom: -20%;
	background: rgba(201, 234, 41, 0.22);
}

.home-slide__backdrop--two {
	background:
		radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.09), transparent 18%),
		linear-gradient(135deg, #1c5a96 0%, #16395d 42%, #0e2238 100%);
}

.home-slide__backdrop--two::before {
	width: 420px;
	height: 420px;
	left: -6%;
	bottom: -12%;
	background: rgba(255, 255, 255, 0.08);
}

.home-slide__backdrop--two::after {
	width: 280px;
	height: 280px;
	right: 12%;
	top: 18%;
	background: rgba(255, 255, 255, 0.12);
}

.home-slide__backdrop--three {
	background:
		radial-gradient(circle at 24% 24%, rgba(183, 216, 20, 0.22), transparent 16%),
		linear-gradient(145deg, #0f2a45 0%, #1d5c95 38%, #a9cf11 100%);
}

.home-slide__backdrop--three::before {
	width: 560px;
	height: 560px;
	right: -10%;
	top: -18%;
	background: rgba(255, 255, 255, 0.08);
}

.home-slide__backdrop--three::after {
	width: 280px;
	height: 280px;
	left: 10%;
	bottom: 12%;
	background: rgba(183, 216, 20, 0.18);
}

.home-slide__overlay {
	background: linear-gradient(90deg, rgba(9, 21, 35, 0.74) 0%, rgba(13, 36, 59, 0.56) 42%, rgba(9, 21, 35, 0.2) 100%);
	opacity: 0.98;
}

.home-slide__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	gap: 34px;
	align-items: center;
	min-height: 800px;
	padding: 90px 0 110px;
}

.home-slide__content {
	color: var(--white);
	padding-top: 8px;
}

.home-slide__media {
	position: relative;
	z-index: 1;
}

.home-slide__media img {
	width: 100%;
	height: 470px;
	object-fit: cover;
	object-position: center top;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 26px 80px rgba(6, 17, 30, 0.28);
}

.home-slide__subtitle {
	margin: 0 0 16px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.home-slide__content p {
	max-width: 58ch;
	font-size: 1.06rem;
	color: rgba(255, 255, 255, 0.88);
}

.home-slide__actions,
.contact-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 12px;
}

.home-slider__controls {
	display: flex;
	justify-content: center;
	margin-top: 18px;
}

.home-slider__dots {
	display: flex;
	gap: 10px;
}

.home-slider__dot {
	width: 12px;
	height: 12px;
	border: 0;
	border-radius: 50%;
	background: rgba(35, 35, 35, 0.18);
	cursor: pointer;
}

.home-slider__dot.is-active {
	background: var(--brand-blue-700);
	box-shadow: 0 0 0 6px rgba(183, 216, 20, 0.18);
}

.intro-band__grid,
.doctor-showcase__grid,
.home-contact__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	align-items: start;
}

.intro-band__content,
.doctor-inline-card,
.home-contact__form-card,
.service-card,
.path-card {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.intro-band__content,
.doctor-inline-card,
.home-contact__form-card {
	padding: 30px;
	border-radius: var(--radius-lg);
}

.feature-points {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}

.feature-points li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
}

.feature-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--brand-lime-700);
	box-shadow: 0 0 0 5px rgba(28, 90, 150, 0.12);
}

.section-heading {
	margin-bottom: 28px;
}

.services-grid,
.path-grid {
	display: grid;
	gap: 22px;
}

.services-grid,
.path-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.path-card {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border-radius: var(--radius-md);
}

.service-card__link {
	display: block;
	height: 100%;
}

.service-card::after,
.path-card::after {
	content: "";
	position: absolute;
	inset: auto -24px -44px auto;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(183, 216, 20, 0.18), transparent 68%);
}

.doctor-card__badge {
	display: inline-flex;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(183, 216, 20, 0.16);
	color: var(--brand-blue-700);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.doctor-card__meta {
	font-weight: 700;
	color: var(--slate-700);
}

.doctor-showcase__grid {
	align-items: center;
}

.doctor-showcase__visual {
	position: relative;
	min-height: 560px;
}

.doctor-showcase__content {
	display: grid;
	gap: 18px;
}

.shape-photo {
	position: absolute;
	overflow: hidden;
	margin: 0;
	box-shadow: 0 28px 80px rgba(14, 34, 56, 0.18);
	border: 8px solid rgba(255, 255, 255, 0.84);
	background: rgba(255, 255, 255, 0.9);
}

.shape-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shape-photo--arch {
	left: 0;
	top: 10px;
	width: min(360px, 80%);
	height: 440px;
	border-radius: 220px 220px 28px 28px;
}

.shape-photo--blob {
	right: 8%;
	bottom: 10px;
	width: min(260px, 58%);
	height: 300px;
	border-radius: 42% 58% 49% 51% / 45% 35% 65% 55%;
}

.services-section {
	background: linear-gradient(180deg, rgba(223, 232, 239, 0.75), rgba(255, 255, 255, 0));
}

.services-section--physio {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 232, 239, 0.7));
}

.service-card__image {
	width: calc(100% + 56px);
	height: 200px;
	margin: -28px -28px 22px;
	object-fit: cover;
}

.service-card__image--decision-clarity {
	object-position: center top;
}

.service-builder-section {
	padding: 26px 0 12px;
}

.service-builder-section__heading {
	margin-bottom: 22px;
}

.specialization-list {
	margin: 18px 0 0;
	padding-left: 24px;
	font-size: 1.04rem;
	line-height: 1.9;
	color: var(--slate-700);
}

.specialization-list--ordered {
	padding-left: 28px;
}

.specialization-grid,
.team-grid,
.reviews-grid {
	display: grid;
	gap: 22px;
}

.specialization-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-grid,
.reviews-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specialization-card,
.team-card,
.review-card {
	padding: 28px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.team-card {
	overflow: hidden;
}

.team-card__image {
	width: calc(100% + 56px);
	aspect-ratio: 4 / 5;
	height: auto;
	margin: -28px -28px 22px;
	object-fit: cover;
	object-position: center top;
}

.review-card p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--navy-950);
}

.review-card strong {
	display: inline-block;
	margin-top: 8px;
	color: var(--brand-blue-700);
}

.service-card h3,
.path-card h3 {
	margin-bottom: 10px;
}

.treatment-path {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 232, 239, 0.58));
}

.path-card span {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand-blue-900), var(--navy-950));
	color: var(--white);
	font-weight: 800;
	margin-bottom: 18px;
}

.button--secondary {
	background: transparent;
	color: var(--brand-blue-700);
	border: 1px solid rgba(13, 76, 136, 0.18);
}

.home-contact__content {
	padding: 6px 0;
}

.home-contact__form-card {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 232, 239, 0.84)),
		radial-gradient(circle at right top, rgba(183, 216, 20, 0.18), transparent 24%);
}

.contact-form {
	display: grid;
	gap: 16px;
}

.contact-form__field {
	display: grid;
	gap: 8px;
}

.contact-form__field label {
	font-weight: 700;
	color: var(--navy-950);
}

.field-required {
	color: #d33d3d;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
	width: 100%;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid rgba(13, 76, 136, 0.14);
	background: rgba(255, 255, 255, 0.92);
	font: inherit;
	color: var(--navy-950);
}

.contact-form__field textarea {
	resize: vertical;
}

.contact-form__notice {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 16px;
	font-weight: 700;
}

.contact-form__notice--success {
	background: rgba(183, 216, 20, 0.18);
	color: var(--brand-blue-900);
}

.contact-form__notice--error {
	background: rgba(28, 90, 150, 0.12);
	color: var(--brand-blue-900);
}

.service-hero,
.service-intro,
.service-benefits,
.service-explainer,
.service-layout-band,
.service-gallery,
.service-cta {
	padding: 86px 0;
}

.service-explainer {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 232, 239, 0.88)),
		radial-gradient(circle at right bottom, rgba(183, 216, 20, 0.18), transparent 26%);
}

.service-explainer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 28px;
	align-items: start;
}

.service-explainer__card,
.service-cta-band__inner {
	padding: 30px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.service-explainer__card--image-only {
	padding: 0;
	overflow: hidden;
	min-height: 100%;
}

.service-explainer__card--image-only img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.service-explainer--single {
	padding-top: 18px;
}

.service-explainer__card--single {
	max-width: 760px;
}

.service-cta-band {
	padding: 30px 0 0;
}

.service-cta-band--alt {
	padding-top: 0;
}

.service-cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background:
		linear-gradient(135deg, rgba(13, 76, 136, 0.96), rgba(28, 90, 150, 0.92)),
		radial-gradient(circle at right top, rgba(201, 234, 41, 0.24), transparent 28%);
	color: var(--white);
}

.service-cta-band--alt .service-cta-band__inner {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 232, 239, 0.9)),
		radial-gradient(circle at right top, rgba(183, 216, 20, 0.18), transparent 28%);
	color: var(--navy-950);
}

.service-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.service-cta-band .button--light {
	background: var(--white);
	color: var(--brand-blue-900);
	border: 1px solid rgba(255, 255, 255, 0.9);
}

.service-cta-band--end {
	padding: 40px 0 86px;
}

.site-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: 24px;
}

.site-modal[hidden] {
	display: none;
}

.site-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(14, 34, 56, 0.72);
}

.site-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(680px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 34px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 251, 0.96)),
		radial-gradient(circle at right top, rgba(183, 216, 20, 0.16), transparent 24%);
	box-shadow: 0 30px 90px rgba(14, 34, 56, 0.28);
}

.site-modal__close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(13, 76, 136, 0.08);
	color: var(--navy-950);
	font-size: 1.5rem;
	cursor: pointer;
}

body.modal-open {
	overflow: hidden;
}

.service-hero {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.service-hero__media,
.service-hero__overlay {
	position: absolute;
	inset: 0;
}

.service-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-hero__overlay {
	background: linear-gradient(90deg, rgba(9, 21, 35, 0.84) 0%, rgba(13, 36, 59, 0.76) 42%, rgba(9, 21, 35, 0.18) 100%);
}

.service-hero__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	color: var(--white);
	padding: 130px 0 100px;
}

.service-hero__lead {
	max-width: 56ch;
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.9);
}

.service-intro {
	background: linear-gradient(180deg, rgba(223, 232, 239, 0.46), rgba(255, 255, 255, 0));
}

.service-intro__grid,
.service-layout-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 28px;
	align-items: start;
}

.service-intro__card,
.service-layout-band__panel {
	padding: 30px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.service-intro__card--image {
	padding: 0;
	overflow: hidden;
}

.service-intro__card--image img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.about-page .service-intro__card--about-clinic {
	display: flex;
	align-items: stretch;
}

.about-page .service-intro__card--about-clinic img {
	min-height: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.about-page .about-expertise-carousel .simple-carousel__slide img {
	object-fit: contain;
	object-position: center center;
	background: rgba(255, 255, 255, 0.98);
}

.service-intro__card--fracture-expert img {
	min-height: 100%;
	height: 100%;
	max-height: 640px;
}

.arthroscopy-why-choose .service-intro__grid {
	align-items: stretch;
}

.arthroscopy-why-choose .service-intro__card--doctor-photo {
	display: flex;
	height: 100%;
}

.arthroscopy-why-choose .service-intro__card--doctor-photo img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: top center;
}

.womens-health-expert-care .service-intro__grid {
	align-items: stretch;
}

.womens-health-expert-care .service-intro__card--doctor-photo {
	display: flex;
	height: 100%;
}

.womens-health-expert-care .service-intro__card--doctor-photo img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center top;
}

.cardio-physio-intro .service-intro__grid,
.cardio-physio-benefit-band .service-layout-band__grid {
	align-items: stretch;
}

.cardio-physio-intro .service-intro__card--image,
.cardio-physio-benefit-band .service-layout-band__panel--image-fit {
	display: flex;
}

.cardio-physio-intro .service-intro__card--image img,
.cardio-physio-benefit-band .service-layout-band__panel--image-fit img {
	min-height: 100%;
	height: 100%;
	max-height: 560px;
	object-fit: contain;
	object-position: center center;
	background: rgba(255, 255, 255, 0.98);
	padding: 18px;
}

.service-intro__card--carousel {
	padding: 0;
	overflow: hidden;
}

.simple-carousel__frame {
	position: relative;
	min-height: 420px;
}

.simple-carousel__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.simple-carousel__slide.is-active {
	opacity: 1;
	position: relative;
}

.simple-carousel__slide img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.tpts-treatment-page .simple-carousel__slide img {
	object-fit: contain;
	object-position: center center;
	background: rgba(255, 255, 255, 0.98);
}

.tpts-treatment-page .service-hero__media img {
	object-position: center center;
}

.tpts-treatment-page .service-layout-band__panel--tpts-applications {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: rgba(255, 255, 255, 0.96);
}

.tpts-treatment-page .service-layout-band__panel--tpts-applications img {
	width: 100%;
	height: auto;
	min-height: 0;
	object-fit: contain;
	object-position: center top;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 24px;
}

.service-layout-band--single .service-layout-band__grid {
	grid-template-columns: minmax(0, 1fr);
}

.ortho-physio-conditions .service-layout-band__grid {
	align-items: stretch;
}

.ortho-physio-conditions__carousel {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ortho-physio-conditions__carousel .simple-carousel__frame {
	min-height: 100%;
}

.ortho-physio-conditions__carousel .simple-carousel__slide img {
	height: clamp(420px, 48vw, 640px);
	object-fit: contain;
	object-position: center center;
	background: rgba(255, 255, 255, 0.98);
}

.simple-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px 18px;
	background: rgba(255, 255, 255, 0.88);
}

.simple-carousel__arrow {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(13, 76, 136, 0.12);
	background: rgba(13, 76, 136, 0.08);
	color: var(--brand-blue-900);
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
}

.simple-carousel__dots {
	display: flex;
	align-items: center;
	gap: 10px;
}

.simple-carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(13, 76, 136, 0.2);
	cursor: pointer;
}

.simple-carousel__dot.is-active {
	background: var(--brand-lime-700);
	transform: scale(1.15);
}

.service-layout-band {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 232, 239, 0.5));
}

.service-layout-band__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-layout-band__panel--alt {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(223, 232, 239, 0.88)),
		radial-gradient(circle at right top, rgba(183, 216, 20, 0.18), transparent 28%);
}

.service-layout-band__panel--image {
	padding: 0;
	overflow: hidden;
}

.service-layout-band__panel--image img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.matrix-rhythm-page .service-hero__media img,
.matrix-rhythm-page .service-intro__card--image img,
.matrix-rhythm-page .service-layout-band__panel--image-fit img,
.matrix-rhythm-page .service-card__image {
	object-fit: contain;
	object-position: center center;
	background: rgba(255, 255, 255, 0.98);
	padding: 16px;
}

.matrix-rhythm-page .service-hero__media img {
	padding: 24px;
}

.matrix-rhythm-page .service-card__image {
	height: 240px;
}

.pemf-therapy-page .service-layout-band__panel--image,
.pemf-therapy-page .service-intro__card--image,
.pemf-therapy-page .service-explainer .service-intro__card--image {
	display: flex;
	padding: 18px;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.pemf-therapy-page .service-hero__media img,
.pemf-therapy-page .service-intro__card--image img,
.pemf-therapy-page .service-layout-band__panel--image img,
.pemf-therapy-page .service-explainer .service-intro__card--image img,
.pemf-therapy-page .service-card__image {
	object-fit: contain;
	object-position: center center;
	background: rgba(255, 255, 255, 0.98);
	padding: 16px;
}

.pemf-therapy-page .service-hero__media img {
	padding: 24px;
	max-width: 100%;
	max-height: none;
	width: 100%;
	height: 100%;
	object-position: center center;
}

.pemf-therapy-page .service-intro__card--image img,
.pemf-therapy-page .service-layout-band__panel--image img,
.pemf-therapy-page .service-explainer .service-intro__card--image img {
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	object-fit: contain !important;
	object-position: center top !important;
	align-self: flex-start;
}

.pemf-therapy-page .service-card__image {
	width: 100%;
	height: auto !important;
	max-height: none !important;
	margin: 0 0 18px;
	display: block;
	border-radius: 22px;
	object-fit: contain !important;
	object-position: center top !important;
	background: rgba(255, 255, 255, 0.98);
}

.shock-wave-applications .service-layout-band__grid {
	align-items: stretch;
}

.shock-wave-applications .service-layout-band__panel {
	height: 100%;
}

.shock-wave-applications .service-layout-band__panel--image-fit {
	display: flex;
}

.shock-wave-applications .service-layout-band__panel--image-fit img {
	min-height: 100%;
	height: 100%;
	max-height: 560px;
	object-fit: cover;
	object-position: center center;
}

.service-timeline {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 232, 239, 0.42));
	margin-top: 34px;
}

.service-timeline__track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.service-timeline__track::before {
	content: "";
	position: absolute;
	left: 12%;
	right: 12%;
	top: 36px;
	height: 2px;
	background: linear-gradient(90deg, rgba(13, 76, 136, 0.24), rgba(183, 216, 20, 0.48), rgba(13, 76, 136, 0.24));
}

.service-timeline__item {
	position: relative;
	padding: 86px 22px 24px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.service-timeline__step {
	position: absolute;
	top: 0;
	left: 22px;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--brand-blue-900), var(--brand-blue-700));
	color: var(--white);
	font-size: 1.05rem;
	font-weight: 800;
	box-shadow: 0 14px 34px rgba(13, 76, 136, 0.22);
}

.service-gallery {
	background: linear-gradient(180deg, rgba(223, 232, 239, 0.45), rgba(255, 255, 255, 0));
}

.service-gallery__intro {
	max-width: 78ch;
	margin-bottom: 26px;
}

.service-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.service-gallery__grid--single {
	grid-template-columns: minmax(0, 1fr);
}

.service-gallery__item {
	margin: 0;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(13, 76, 136, 0.08);
	background: rgba(255, 255, 255, 0.86);
}

.service-gallery__item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.service-gallery__item--single img {
	height: clamp(320px, 42vw, 520px);
}

.service-gallery__item--contain {
	background: rgba(255, 255, 255, 0.96);
}

.service-gallery__item--contain img {
	object-fit: contain;
	object-position: center top;
	background: rgba(255, 255, 255, 0.96);
}

.service-card--back-cause .service-card__image {
	object-fit: cover;
	object-position: center center;
}

.back-pain-visuals .service-gallery__item--single {
	background: rgba(255, 255, 255, 0.98);
}

.back-pain-visuals .service-gallery__item--single img {
	height: clamp(340px, 44vw, 540px);
	object-fit: contain;
	object-position: center top;
	background: rgba(255, 255, 255, 0.98);
}

.service-benefits--visual {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 232, 239, 0.55));
}

.home-video-showcase {
	padding: 86px 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 232, 239, 0.48));
}

.home-video-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.home-video-card {
	padding: 22px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.home-video-card__media {
	width: 100%;
	display: block;
	border-radius: 24px;
	margin-bottom: 18px;
	background: #0b1930;
}

.contact-page,
.appointments-section,
.contact-clinic-showcase {
	padding: 86px 0;
}

.contact-page {
	background: linear-gradient(180deg, rgba(223, 232, 239, 0.46), rgba(255, 255, 255, 0));
}

.contact-details-intro .service-intro__grid {
	grid-template-columns: minmax(0, 1fr);
}

.contact-details-intro .service-intro__copy {
	max-width: 920px;
}

.contact-details-intro__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 26px;
}

.contact-detail-card {
	padding: 22px 24px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.contact-detail-card h3 {
	font-size: 1.45rem;
	margin-bottom: 8px;
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 28px;
	align-items: start;
}

.contact-page__info {
	display: grid;
	gap: 28px;
}

.contact-page__support-card {
	display: grid;
	gap: 18px;
	align-content: start;
}

.contact-page__support-image {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 22px;
	display: block;
}

.contact-page__support-card {
	display: grid;
	gap: 18px;
}

.contact-page__support-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 22px;
}

.contact-page__map {
	overflow: hidden;
	border-radius: 22px;
	border: 1px solid rgba(13, 76, 136, 0.08);
}

.contact-page__map iframe {
	width: 100%;
	height: 460px;
	border: 0;
	display: block;
}

.contact-clinic-showcase {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 232, 239, 0.48));
}

.contact-clinic-showcase__card {
	max-width: 760px;
	margin: 0 auto;
	padding: 28px;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.contact-clinic-showcase__image {
	width: 100%;
	height: clamp(260px, 36vw, 380px);
	object-fit: cover;
	object-position: center top;
	border-radius: 26px;
	margin-bottom: 22px;
}

.contact-clinic-showcase__content {
	display: grid;
	gap: 12px;
}

.appointments-section {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 232, 239, 0.55));
}

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

.appointment-card {
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(13, 76, 136, 0.08);
	box-shadow: var(--shadow);
}

.appointment-card__image {
	width: 100%;
	aspect-ratio: 4 / 5;
	height: auto;
	object-fit: cover;
	object-position: center top;
}

.appointment-card__body {
	padding: 26px;
}

.appointment-card__body .button {
	margin-top: 8px;
}

.page-hero {
	padding: 72px 0 20px;
}

.page-content__prose {
	max-width: 860px;
}

.page-content__prose h2 {
	margin-top: 36px;
}

.page-content__prose a {
	color: var(--brand-blue-700);
}

.reveal-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.08s;
}

.reveal-delay-2 {
	transition-delay: 0.16s;
}

.site-footer {
	padding: 0;
	background:
		radial-gradient(circle at left top, rgba(183, 216, 20, 0.08), transparent 22%),
		linear-gradient(135deg, #112944 0%, #0d2137 48%, #081725 100%);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
	gap: 56px;
	padding: 72px 0 46px;
}

.site-footer__intro {
	max-width: 420px;
}

.site-footer__brand-card {
	width: 214px;
	padding: 18px 22px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 20px 44px rgba(3, 10, 20, 0.24);
	margin-bottom: 24px;
}

.site-footer__brand-logo {
	display: block;
}

.site-footer__brand-logo img {
	width: 100%;
	height: 78px;
	object-fit: contain;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 36px 54px;
}

.footer-title {
	margin: 0 0 18px;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--white);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.footer-title::after {
	content: "";
	display: block;
	width: 52px;
	height: 3px;
	margin-top: 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, #ffcc70, var(--brand-lime-500));
}

.footer-title--brand {
	text-transform: none;
	letter-spacing: 0;
	font-size: 1.4rem;
	margin-bottom: 12px;
}

.footer-title--brand::after {
	display: none;
}

.footer-copy {
	margin: 0 0 14px;
	font-size: 1.02rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.8);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li + li {
	margin-top: 14px;
}

.footer-links a,
.footer-copy a {
	color: rgba(255, 255, 255, 0.84);
	transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-copy a:hover {
	color: var(--brand-lime-500);
}

.site-footer__bottom {
	padding: 24px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.92rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
	.intro-band__grid,
	.doctor-showcase__grid,
	.home-contact__grid,
	.service-intro__grid,
	.service-explainer__grid,
	.service-layout-band__grid,
	.site-footer__top,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.services-grid,
	.path-grid,
	.team-grid,
	.reviews-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-timeline__track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-timeline__track::before {
		display: none;
	}

	.service-gallery__grid {
		grid-template-columns: 1fr;
	}

	.home-video-showcase__grid {
		grid-template-columns: 1fr;
	}

	.service-cta-band__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.specialization-grid {
		grid-template-columns: 1fr;
	}

	.contact-page__grid,
	.appointments-grid,
	.contact-details-intro__cards {
		grid-template-columns: 1fr;
	}

	.home-slider__frame,
	.home-slide__grid {
		min-height: 640px;
	}

	.home-slide__grid {
		grid-template-columns: 1fr;
	}

	.home-slide__media img {
		height: 360px;
		object-position: center top;
	}

	.doctor-showcase__visual {
		min-height: 520px;
	}
}

@media (max-width: 720px) {
	.site-header__inner {
		padding: 12px 0;
		gap: 14px;
	}

	.site-brand__name {
		font-size: 1.08rem;
		line-height: 1.18;
	}

	.site-brand__logo {
		width: 96px;
		height: 96px;
	}

	.site-brand {
		max-width: calc(100% - 62px);
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 0 20px 20px;
		background: rgba(251, 254, 255, 0.98);
		border-bottom: 1px solid rgba(13, 76, 136, 0.08);
		display: none;
		flex-direction: column;
		align-items: stretch;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}

	.site-navigation.is-open {
		display: flex;
	}

	.primary-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 16px 0 10px;
	}

	.primary-menu > li,
	.primary-menu > li > a,
	.primary-menu .sub-menu a {
		width: 100%;
	}

	.primary-menu .sub-menu {
		position: static;
		min-width: 100%;
		padding: 10px 0 0 14px;
		border: 0;
		box-shadow: none;
		background: transparent;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-menu .menu-item-has-children.is-open > .sub-menu {
		display: block;
	}

	.primary-menu > .menu-item-has-children:not(.is-open) > .sub-menu {
		display: none !important;
	}

	.primary-menu .sub-menu a {
		padding: 10px 0;
		background: transparent;
	}

	.header-cta,
	.button {
		width: 100%;
	}

	h1 {
		font-size: clamp(2.35rem, 9vw, 3.7rem);
		line-height: 1.08;
	}

	h2 {
		font-size: clamp(1.9rem, 7vw, 3rem);
		line-height: 1.1;
	}

	.home-slider,
	.intro-band,
	.doctor-showcase,
	.services-section,
	.specialization-section,
	.team-section,
	.reviews-section,
	.treatment-path,
	.home-contact,
	.service-hero,
	.service-intro,
	.service-benefits,
	.service-explainer,
	.service-layout-band,
	.service-gallery,
	.service-cta,
	.page-content {
		padding: 64px 0;
	}

	.service-hero {
		min-height: 520px;
	}

	.service-hero__content {
		padding: 100px 0 72px;
	}

	.service-hero__lead,
	.home-slide__content p,
	.service-intro__copy p,
	.service-layout-band__panel p {
		font-size: 1rem;
	}

	.home-slider {
		padding-top: 14px;
		padding-bottom: 10px;
	}

	.home-slider__frame,
	.home-slide__grid {
		min-height: auto;
	}

	.home-slide {
		position: relative;
		display: none;
		inset: auto;
	}

	.home-slide.is-active {
		display: block;
	}

	.home-slide__grid {
		padding: 28px 0 38px;
		gap: 20px;
		align-content: start;
	}

	.home-slide__overlay {
		background: linear-gradient(180deg, rgba(9, 21, 35, 0.84) 0%, rgba(13, 36, 59, 0.62) 50%, rgba(9, 21, 35, 0.48) 100%);
	}

	.home-slide__media {
		order: -1;
	}

	.home-slide__media img {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
		object-fit: contain;
		object-position: center center;
		background: rgba(255, 255, 255, 0.08);
	}

	.home-slide__actions {
		flex-direction: column;
	}

	.home-slide__actions .button,
	.contact-cta__actions .button,
	.service-cta-band__actions .button {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.services-grid,
	.path-grid,
	.team-grid,
	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.service-timeline__track {
		grid-template-columns: 1fr;
	}

	.service-gallery__item img {
		height: auto;
		object-fit: contain;
		object-position: center top;
		background: rgba(255, 255, 255, 0.98);
	}

	.simple-carousel__slide img {
		height: auto;
		min-height: 0;
		object-fit: contain;
		object-position: center top;
		background: rgba(255, 255, 255, 0.98);
	}

	.site-modal__dialog {
		padding: 26px 18px;
	}

	.service-card,
	.path-card,
	.review-card,
	.team-member,
	.service-intro__card,
	.service-layout-band__panel {
		padding-left: 22px;
		padding-right: 22px;
	}

	.service-card__image {
		width: calc(100% + 44px);
		height: auto;
		aspect-ratio: 4 / 3;
		margin: -22px -22px 18px;
		object-position: center top;
	}

	.service-intro__card--image img,
	.service-layout-band__panel--image img,
	.contact-clinic-showcase__image,
	.team-card__image,
	.appointment-card__image,
	.shape-photo img {
		object-position: center top;
	}

	.service-layout-band__panel--image img {
		min-height: 280px;
	}

	.home-video-card {
		padding: 18px;
	}

	.doctor-showcase__visual {
		min-height: 460px;
	}

	.shape-photo--arch {
		width: min(280px, 82%);
		height: 340px;
	}

	.shape-photo--blob {
		width: min(210px, 56%);
		height: 230px;
	}
}

@media (max-width: 560px) {
	:root {
		--shell: min(1180px, calc(100vw - 28px));
	}

	.site-brand__name {
		font-size: 0.98rem;
	}

	.site-brand__logo {
		width: 84px;
		height: 84px;
		border-radius: 20px;
	}

	.home-slider__frame {
		width: min(1360px, calc(100vw - 16px));
		border-radius: 24px;
	}

	h1 {
		font-size: clamp(2.05rem, 10vw, 3.05rem);
		line-height: 1.1;
	}

	h2 {
		font-size: clamp(1.65rem, 8vw, 2.45rem);
		line-height: 1.12;
	}

	.service-hero {
		min-height: 480px;
	}

	.service-hero__content {
		padding-top: 86px;
		padding-bottom: 60px;
	}

	.service-timeline__item,
	.service-card,
	.path-card,
	.review-card,
	.team-member,
	.service-intro__card,
	.service-layout-band__panel,
	.site-modal__dialog {
		border-radius: 22px;
	}

	.primary-menu .sub-menu {
		padding-left: 12px;
	}
}
