:root {
	--dna-cream: #EDE5D9;
	--dna-cream-dark: #ebe4d6;
	--dna-brown: #8a735c;
	--dna-brown-soft: #d2c5b4;
	--dna-charcoal: #3B332D;
	--dna-charcoal-deep: #3B332D;
	--dna-peach: #D2A080;
	--dna-text-muted: #c8bfb4;
}

body {
	background-color: var(--dna-cream);
	color: var(--dna-charcoal);
}

.dna-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999;
	background: var(--dna-cream);
	padding: 18px 0;
	box-shadow: 0 1px 0 rgba(47, 42, 38, 0.06);
	transform: none;
}

/* Prevent legacy main.css .sticky_menu from breaking layout on scroll */
.dna-header.main_header.sticky_menu,
.dna-header.is-scrolled {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	transform: none;
	background: var(--dna-cream);
}

.dna-header.is-scrolled {
	box-shadow: 0 4px 20px rgba(47, 42, 38, 0.08);
}

.dna-header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

@media (min-width: 1200px) {
	.dna-header-bar {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		column-gap: 1.5rem;
	}

	.dna-header-left {
		justify-self: start;
	}

	.dna-header-brand {
		justify-self: center;
		text-align: center;
		white-space: nowrap;
	}

	.dna-header-right {
		justify-self: end;
	}
}

.dna-header-left {
	display: flex;
	align-items: center;
	min-width: 0;
}

.dna-header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.35rem;
	min-width: 0;
}

.dna-header-logo {
	display: inline-flex;
	text-decoration: none;
}

.dna-header-logo img {
	height: 42px;
	width: auto;
}

.dna-header-brand {
	font-family: "Instrument Serif", serif;
	font-size: clamp(1.75rem, 2.5vw, 2.75rem);
	font-weight: 500;
	color: var(--dna-charcoal);
	letter-spacing: 0.02em;
	text-decoration: none;
	line-height: 1.1;
}

.dna-header-nav {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.15rem;
	flex-shrink: 0;
}

.dna-header-actions {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.dna-nav-link {
	font-size: 1rem;
	font-weight: 500;
	color: var(--dna-charcoal);
	text-decoration: none;
	padding: 0.55rem 1.1rem;
	border-radius: 14px;
	transition: background 0.2s ease, color 0.2s ease;
}

.dna-nav-link:hover,
.dna-nav-link.active {
	background: var(--dna-brown-soft);
	color: var(--dna-charcoal);
}

.dna-btn-primary {
	background: var(--dna-charcoal-deep);
	border: 1px solid var(--dna-charcoal-deep);
	color: #fff !important;
	border-radius: 14px;
	padding: 0.7rem 1rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	align-items: center;
	justify-content: center;
}

.dna-btn-primary:hover {
	background: #3B332D;
	border-color: #3B332D;
	color: #fff !important;
}

.dna-mobile-toggle {
	border: 0;
	padding: 0;
}

.dna-mobile-toggle .navbar-toggler-icon {
	filter: invert(0.2);
}

.dna-mobile-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.dna-hero-wrap {
	padding: 0 1.25rem 2rem;
}

.dna-hero {
	position: relative;
	min-height: 520px;
	border-radius: 28px;
	overflow: hidden;
	background-size: cover;
	background-position: center right;
	display: flex;
	align-items: stretch;
}

.dna-hero-fallback {
	background: linear-gradient(120deg, #3d2f28 0%, #6e5648 45%, #c4a492 100%);
}

.dna-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(31, 27, 24, 0.92) 0%, rgba(31, 27, 24, 0.72) 42%, rgba(31, 27, 24, 0.15) 100%);
}

.dna-hero .container-fluid {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	/* min-height: 860px; */
	min-height: 100vh;
}

.dna-hero-content {
	max-width: 560px;
	color: #fff;
	padding: 3rem 0;
}

.dna-hero-pill {
	display: inline-block;
	background: #CEBBA7E0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #3B332D;
	border-radius: 8px;
	padding: 0.35rem 0.9rem;
	font-size: 1.43rem;
	margin-bottom: 1rem;
}

.dna-hero-content h1 {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.15;
	margin-bottom: 1rem;
	color: #fff;
	text-transform: capitalize;
}

.dna-hero-content p {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 1.75rem;
}

.dna-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.dna-btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.75);
	color: #fff !important;
	border-radius: 14px;
	padding: 0.7rem 1.35rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	background: transparent;
}

.dna-btn-outline:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
}

.dna-consultation {
	position: relative;
	width: 100%;
	min-height: 360px;
	background-color: #4a3f38;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.dna-consultation .container-fluid {
	position: relative;
	z-index: 2;
}

.dna-consultation-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(31, 27, 24, 0.88) 0%, rgba(31, 27, 24, 0.45) 55%, rgba(31, 27, 24, 0.2) 100%);
	pointer-events: none;
}

.dna-consultation-content {
	max-width: 620px;
	padding: 4rem 0;
	color: #fff;
}

.dna-consultation-content h2 {
	font-family: "Instrument Serif", serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	margin-bottom: 1rem;
	font-weight: 400;
}

.dna-consultation-content p {
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.dna-btn-consultation {
	font-family: "Manrope", sans-serif;
	background: var(--dna-peach);
	border: 1px solid var(--dna-peach);
	color: var(--dna-charcoal-deep) !important;
	border-radius: 14;
	padding: 0.8rem 1.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

.dna-btn-consultation:hover {
	filter: brightness(1.03);
	background-color: var(--dna-charcoal-deep);
	color: #FFF !important;
}

.dna-footer {
	background: var(--dna-charcoal-deep);
	color: var(--dna-text-muted);
	padding: 4rem 1.25rem 2rem;
}

.dna-footer-logo img {
	height: 56px;
	margin-bottom: 1.25rem;
}

.dna-footer-about {
	font-size: 0.92rem;
	line-height: 1.7;
	max-width: 360px;
	margin-bottom: 1.5rem;
	color: #fff;
}

.dna-footer-social {
	display: flex;
	gap: 0.75rem;
}

.dna-footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	border: 1px solid #FFFFFF33
}

.dna-footer-heading {
	color: var(--dna-text-muted);
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	font-weight: 700;
}

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

.dna-footer-links li,
.dna-footer-contact li {
	margin-bottom: 0.55rem;
	color: #fff;
	font-size: 0.9rem;
}

.dna-footer-links a,
.dna-footer-contact a {
	text-decoration: none;
	font-size: 0.9rem;
	color: #fff;
}

.dna-footer-links a:hover,
.dna-footer-contact a:hover {
	color: #fff;
}

.dna-footer-newsletter-text {
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	color: #fff;
}

.dna-newsletter-form {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	padding: 0.35rem 0.35rem 0.35rem 1rem;
	border-bottom: 1px solid #FFFFFF33
}

.dna-newsletter-form input {
	flex: 1;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 0.9rem;
	min-width: 0;
}

.dna-newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.dna-newsletter-form button {
	border: 0;
	background: transparent;
	color: #fff;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.dna-footer-bottom {
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	font-size: 0.82rem;
}

.dna-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.dna-footer-legal a {
	color: var(--dna-text-muted);
	text-decoration: none;
}

.dna-footer-legal a:hover {
	color: #fff;
}

@media (max-width: 991px) {
	.dna-hero,
	.dna-hero .container-fluid {
		min-height: 460px;
	}

	.dna-consultation-content {
		padding: 3rem 0;
	}
}

@media (max-width: 767px) {
	.dna-header.main_header.sticky_menu,
	.dna-header.is-scrolled {
		position: sticky;
	}
}

/* Home — trust bar, practitioner, philosophy */
.dna-practitioner-panel {
	/* background: #e6ddd2; */
	margin-top: 5rem;
}

.dna-section-pill {
	display: inline-block;
	background: #F2ECE4;
	color: #CD7135;
	border-radius: 6px;
	padding: 0.3rem 0.65rem;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.dna-section-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(1.9rem, 3vw, 4rem);
	line-height: 1.15;
	color: var(--dna-charcoal);
	margin-bottom: 1.25rem;
}

.dna-section-body {
	color: #76706C;
	line-height: 1.75;
	font-size: 1.12rem;
}

.dna-trust-bar {
	padding: 3rem 0 ;
	margin-bottom: 5rem;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
linear-gradient(0deg, rgba(227, 215, 200, 0.3), rgba(227, 215, 200, 0.3));

}

.dna-trust-bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.dna-trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 2.25rem;
}

.dna-trust-divider {
	width: 1px;
	height: 50px;
	background: #3B332D63;
	flex-shrink: 0;
}

.dna-trust-icon {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--dna-charcoal);
	font-size: 0.95rem;
}

.dna-trust-icon img {
	max-width: 20px;
	max-height: 20px;
	object-fit: contain;
}

.dna-trust-label {
	font-family: "Instrument Serif", serif;
	font-size: 1.12rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dna-charcoal);
	white-space: nowrap;
}

.dna-practitioner {
	padding: 0 0 4.5rem;
}

/* .dna-practitioner-photo-shell {
	padding: 14px;
	border-radius: 60px;
} */

.dna-practitioner-photo-frame {
	padding: 10px;
	border-radius: 60px;
	border: 1px solid #9E846999;
}

.dna-practitioner-photo {
	border-radius: 60px;
	overflow: hidden;
}

.dna-practitioner-photo img {
	width: 100%;
	/* display: block;
	object-fit: cover;
	aspect-ratio: 4 / 5;
	min-height: 380px; */
}

.dna-practitioner-pill {
	background: #F2ECE4;
	color:#CD7135;
	border-radius: 8px;
	padding: 0.4rem 0.75rem;
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 0.8rem;
}

.dna-practitioner-title {
	font-size: clamp(2rem, 3.2vw, 4rem);
	font-weight: 400;
	margin-bottom: 1.5rem;
	max-width: 520px;
}

.dna-practitioner-body {
	font-family: "Instrument Serif", serif;
	font-size: 1.05rem;
	line-height: 1.85;
	color: #4a423c;
	max-width: 560px;
}

.dna-practitioner-body p {
	margin-bottom: 1.25rem;
}

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

.dna-practitioner-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem 3rem;
	margin: 2.25rem 0 1.75rem;
	max-width: 520px;
}

.dna-practitioner-meta-item {
	padding-left: 1rem;
	border-left: 2px solid #c4a088;
}

.dna-meta-label {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.12rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #3B332D;
	margin-bottom: 0.45rem;
}

.dna-meta-value {
	font-family: "Instrument Serif", serif;
	font-size: 1.0rem;
	color: var(--dna-charcoal);
	line-height: 1.4;
	font-weight: 500;
}

.dna-text-link {
	font-family: "Instrument Serif", serif;
	font-size: 1.2rem;
	color: var(--dna-charcoal);
	text-decoration: none;
}

.dna-practitioner-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-style: italic;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 1px;
}

.dna-practitioner-link em {
	font-style: italic;
}

.dna-text-link:hover {
	color: var(--dna-brown);
}

.dna-philosophy {
	background: #faf8f5;
	padding: 4rem 0 5rem;
}

.dna-philosophy-image {
	margin-top: 2rem;
	border-radius: 20px;
	overflow: hidden;
}

.dna-philosophy-image img {
	width: 100%;
	display: block;
	object-fit: cover;
	min-height: 260px;
}

.dna-philosophy-features {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 2rem;
}

.dna-philosophy-feature {
	display: flex;
	gap: 1.25rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(59, 51, 45, 0.1);
}

.dna-philosophy-feature:last-child {
	border-bottom: 0;
}

.dna-philosophy-feature-icon {
	width:60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 8px 24px rgba(47, 42, 38, 0.06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--dna-brown);
}

.dna-philosophy-feature-icon img {
	width: 35px;
	height: 35px;
	object-fit: contain;
}

.dna-feature-title {
	font-family: "Newsreader", serif;
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 0.35rem;
	color: var(--dna-charcoal);
}

.dna-philosophy-feature p {
	font-family: "Manrope", sans-serif;
	margin: 0;
	font-size: 1.12rem;
	color: #76706C;
}

.dna-philosophy-cta {
	margin-top: 1.75rem;
	background: #F2ECE4;
	border-radius: 18px;
	padding: 1.5rem 1.5rem 1.5rem 1.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.dna-philosophy-cta-copy {
	flex: 1;
	min-width: 200px;
}

.dna-philosophy-cta h3 {
	font-family: "Instrument Serif", serif;
	font-size: 1.45rem;
	font-weight: 400;
	margin-bottom: 0.35rem;
	color: var(--dna-charcoal);
}

.dna-philosophy-cta p {
	font-family: "Manrope", sans-serif;
	font-size: 0.82rem;
	color: #6f655d;
	margin: 0;
	line-height: 1.55;
}

.dna-philosophy-cta-btn {
	background: #3b332d;
	border: 1px solid #3b332d;
	color: #fff !important;
	border-radius: 12px;
	padding: 0.85rem 1.35rem;
	font-family: "Manrope", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.dna-philosophy-cta-btn:hover {
	background: #2a241f;
	border-color: #2a241f;
	color: #fff !important;
}

/* Our Treatments */
.dna-treatments {
	background: #EDE5D9;
	padding: 4.5rem 0 5rem;
}

.dna-treatments-header {
	max-width: 720px;
	margin: 0 auto 2.5rem;
}

.dna-treatments-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 3.2vw, 4rem);
	color: var(--dna-charcoal);
	margin-bottom: 1rem;
	font-weight: 400;
}

.dna-treatments-lead {
	font-family: "Montserrat", sans-serif;
	font-size: 1.12rem;
	line-height: 1.75;
	color: #6f655d;
	margin: 0;
}

.dna-treatments-tabs-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 2.25rem;
}

.dna-treatments-tabs {
	display: inline-flex;
	align-items: stretch;
	justify-content: center;
	gap: 0;
	margin: 0;
	padding: 6px;
	border: 0;
	border-radius: 999px;
	background: #f2ece4;
	min-width: min(100%, 520px);
	width: 520px;
	max-width: 100%;
}

.dna-treatments-tabs .nav-item {
	flex: 1 1 50%;
}

.dna-treatments-tabs .nav-link {
	width: 100%;
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	color: #7a726b;
	border-radius: 999px;
	padding: 0.8rem 1.25rem;
	border: 0;
	background: transparent;
	transition: background 0.2s ease, color 0.2s ease, font-weight 0.2s ease;
	white-space: nowrap;
}

.dna-treatments-tabs .nav-link:hover {
	color: #5c534c;
}

.dna-treatments-tabs .nav-link.active {
	background: #3b332d;
	color: #fff;
	font-weight: 600;
}

.dna-treatment-empty {
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	color: #7a726b;
	padding: 2rem 1rem;
	margin: 0;
}

.dna-treatment-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 980px;
	margin: 0 auto;
}

.dna-treatment-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	background: #F2ECE4;
	border-radius: 30px;
	padding: 1.5rem 1.75rem;
	border: 1px solid #D3CEC9
}

.dna-treatment-name {
	font-family: "Newsreader", serif;
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	color: var(--dna-charcoal);
}

.dna-treatment-desc {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: #76706C;
	margin-bottom: 0.85rem;
	max-width: 560px;
}

.dna-treatment-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.dna-treatment-tags span {
	font-family: "Montserrat", sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #4A3427;
	background: #E5DCD0;
	border-radius: 6px;
	padding: 0.35rem 0.55rem;
}

.dna-treatment-price {
	text-align: right;
	flex-shrink: 0;
}

.dna-treatment-price-label {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	color: #4A3427;
	margin-bottom: 0.2rem;
}

.dna-treatment-price-value {
	font-family: "Newsreader", serif;
	font-size: 2.2rem;
	line-height: 1;
	color: var(--dna-charcoal);
	font-weight: 500;
}

/* Callout banner + booking */
.dna-callout-banner {
	background: #d2a686;
	padding: 4.5rem 0;
}

.dna-callout-banner-inner {
	max-width: 820px;
	margin: 0 auto;
}

.dna-callout-banner-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	font-weight: 400;
	color: #fff;
	margin: 0 0 1.25rem;
	line-height: 1.15;
}

.dna-callout-banner-rule {
	display: block;
	width: 48px;
	height: 1px;
	background: rgba(255, 255, 255, 0.85);
	margin: 0 auto 1.25rem;
}

.dna-callout-banner-lead {
	font-family: "Manrope", sans-serif;
	font-size: clamp(1.05rem, 1.8vw, 1.35rem);
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.5;
}

.dna-booking {
	background: #f2ebe1;
	padding: 4.5rem 0 5rem;
}

.dna-booking-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 3vw, 4rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin-bottom: 1.25rem;
	line-height: 1.15;
}

.dna-booking-lead {
	font-family: "Manrope", sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: #6f655d;
	margin-bottom: 2rem;
	max-width: 520px;
}

.dna-booking-contact li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: "Manrope", sans-serif;
	font-size: 0.95rem;
	color: #4a433d;
	margin-bottom: 0.85rem;
	font-weight: 600;
}

.dna-booking-contact a {
	color: inherit;
	text-decoration: none;
}

.dna-booking-contact a:hover {
	text-decoration: underline;
}

.dna-booking-contact-icon {
	color: #3B332D;
	font-size: 1rem;
	line-height: 1.4;
	min-width: 1.25rem;
	background-color: #E3D7C8;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

.dna-booking-card {
	background: #fff;
	border-radius: 20px;
	padding: 2rem 2rem 2.25rem;
	box-shadow: 0 18px 48px rgba(59, 51, 45, 0.08);
}

.dna-booking-form-title {
	font-family: "Newsreader", serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--dna-charcoal);
	margin-bottom: 1.75rem;
}

.dna-booking-field {
	margin-bottom: 1.35rem;
}

.dna-booking-field label {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #3B332D;
	margin-bottom: 0.45rem;
}

.dna-booking-input {
	width: 100%;
	font-family: "Montserrat", sans-serif;
	font-size: 0.95rem;
	color: var(--dna-charcoal);
	background: transparent;
	border: 0;
	border-bottom: 1px solid #c9bfb5;
	border-radius: 0;
	padding: 0.5rem 0 0.65rem;
	outline: none;
	appearance: none;
}

.dna-booking-input:focus {
	border-bottom-color: #3b332d;
}

.dna-booking-submit {
	width: 100%;
	margin-top: 0.5rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	background: #3b332d;
	border: 0;
	border-radius: 999px;
	padding: 1rem 1.5rem;
}

.dna-booking-submit:hover,
.dna-booking-submit:focus {
	background: #2a241f;
	color: #fff;
}

/* Services */
.dna-services-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center top;
	padding: 5rem 0;
}

/* .dna-services-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(45, 38, 34, 0.62) 0%, rgba(45, 38, 34, 0.5) 100%);
} */

.dna-services-hero-content {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	padding: 0 1rem;
}

.dna-services-hero-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	font-weight: 400;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.1;
}

.dna-services-hero-lead {
	font-family: "Montserrat", sans-serif;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
}

.dna-services-treatments {
	background: #ede5d9;
	padding: 4.5rem 0 5rem;
}

.dna-services-category-spaced {
	margin-top: 4rem;
	padding-top: 4rem;
}

.dna-filler-table-wrap {
	max-width: 980px;
	margin: 0 auto;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(59, 51, 45, 0.08);
}

.dna-filler-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.dna-filler-table thead th {
	font-family: "Newsreader", serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: capitalize;
	color: #fff;
	background: #3b332d;
	padding: 1rem 1.25rem;
	border: 0;
}

.dna-filler-table tbody td {
	font-family: "Montserrat", sans-serif;
	font-size: 0.95rem;
	color: var(--dna-charcoal);
	background: #f2ece4;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid #e0d6cc;
}

.dna-filler-table tbody tr:last-child td {
	border-bottom: 0;
}

.dna-filler-table tbody td:last-child {
	font-family: "Newsreader", serif;
	font-size: 1.1rem;
	font-weight: 500;
	text-align: right;
	white-space: nowrap;
}

.dna-services-before {
	background-color: #EDE5D9;
	padding: 4.5rem 0 5rem;
}

.dna-services-before-header {
	max-width: 960px;
	margin: 0 auto 2.75rem;
}

.dna-services-before-intro {
	margin-bottom: 0;
}

.dna-services-before-steps {
	max-width: 1100px;
	margin: 0 auto;
}

.dna-services-before-step {
	padding: 0 1rem;
	position: relative;
}

@media (min-width: 768px) {
	.dna-services-before-step:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 28px;
		right: 0;
		width: 1px;
		height: 120px;
		background: #ddd4c8;
	}
}

.dna-services-before-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid #d9cfc4;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	color: #8b7355;
	font-size: 1.25rem;
}

.dna-services-before-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.dna-services-before-step h3 {
	font-family: "Instrument Serif", serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--dna-charcoal);
	margin-bottom: 0.65rem;
}

.dna-services-before-step p {
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	line-height: 1.65;
	color: #76706c;
	margin: 0;
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
}

/* About Us */
.dna-about-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	padding: 5rem 0;
}

.dna-about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(45, 38, 34, 0.55) 0%, rgba(45, 38, 34, 0.45) 100%);
}

.dna-about-hero-content {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
	padding: 0 1rem;
}

.dna-about-hero-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	font-weight: 400;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.1;
}

.dna-about-hero-lead {
	font-family: "Montserrat", sans-serif;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
	line-height: 1.6;
}

.dna-about-wellness {
	background: #EDE5D9;
	padding: 4.5rem 0 5rem;
}

.dna-about-wellness-copy .dna-section-pill {
	display: inline-block;
	margin-bottom: 1.25rem;
}

.dna-about-section-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 3.2vw, 3.25rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin-bottom: 1.5rem;
	line-height: 1.15;
	max-width: 520px;
}

.dna-about-prose {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	line-height: 1.8;
	color: #3B332D;
	font-weight: 500;
}

.dna-about-prose p {
	margin-bottom: 1.1rem;
}

.dna-about-prose p:last-child {
	margin-bottom: 0;
}

.dna-about-feature-stack {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.dna-about-feature-card {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	background: #F4EEE6;
	border-radius: 16px;
	padding: 1.35rem 1.5rem;
	border: 1px solid #FFFFFF99
}

.dna-about-feature-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8b7355;
	font-size: 1.25rem;
	overflow: hidden;
}

.dna-about-feature-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.dna-about-feature-text h3 {
	font-family: "Newsreader", serif;
	font-size: 1.35rem;
	font-weight: 500;
	color: var(--dna-charcoal);
	margin: 0 0 0.35rem;
}

.dna-about-feature-text p {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: #76706C;
	margin: 0;
}

.dna-about-profile {
	background: #F2ECE4;
	padding: 4.5rem 0 5.5rem;
}

.dna-about-profile-name {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin-bottom: 0.5rem;
	line-height: 1.05;
}

.dna-about-profile-role {
	font-family: "Montserrat", sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color:#CD7135;
	margin-bottom: 1.5rem;
}

.dna-about-profile-copy .dna-about-prose {
	margin-bottom: 2rem;
}

.dna-about-profile-btn {
	display: inline-flex;
	align-items: center;
	font-family: "Montserrat", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: #3B332D;
	border-radius: 14px;
	padding: 1.25rem 1.75rem;
	border: 0;
}

.dna-about-profile-btn:hover {
	background: #2a241f;
	color: #fff;
}

.dna-about-profile-photo {
	border-radius: 28px;
	overflow: hidden;
	max-width: 520px;
	margin-left: auto;
}

.dna-about-profile-photo img {
	width: 100%;
	height: auto;
	display: block;
	min-height: 420px;
	object-fit: cover;
}

.dna-about-profile-photo-placeholder {
	min-height: 420px;
	background: linear-gradient(135deg, #e8dfd6 0%, #d9cfc4 100%);
}

/* About — care centre (dark) */
.dna-about-care {
	background: #3b332d;
	padding: 4.5rem 0 5rem;
	color: #f7f2eb;
}

.dna-about-care-photo {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.dna-about-care-photo img {
	width: 100%;
	display: block;
	min-height: 380px;
	object-fit: cover;
}

.dna-about-care-photo-placeholder {
	min-height: 380px;
	background: linear-gradient(145deg, #4a4038 0%, #2e2722 100%);
	border-radius: 24px;
}

.dna-about-care-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 3.2vw, 3.25rem);
	font-weight: 400;
	color: #fff;
	margin-bottom: 1.25rem;
	line-height: 1.15;
}

.dna-about-care-lead {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: #EDE5D9;
	margin-bottom: 2rem;
}

.dna-about-care-list-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dna-about-care-list-item:first-child {
	border-top: 0;
	padding-top: 0;
}

.dna-about-care-list-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d2a686;
	font-size: 1.15rem;
}

.dna-about-care-list-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.dna-about-care-list-body h3 {
	font-family: "Newsreader", serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #EDE5D9;
	margin: 0 0 0.35rem;
}

.dna-about-care-list-body p {
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	line-height: 1.65;
	color: rgba(247, 242, 235, 0.78);
	margin: 0;
}

/* About — clinical credentials */
.dna-about-clinical {
	background: #f7f2eb;
	padding: 4.5rem 0 5rem;
}

.dna-about-clinical-header {
	margin: 0 auto 2.75rem;
}

.dna-about-clinical-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 3.2vw, 3.25rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin-bottom: 1rem;
	line-height: 1.15;
}

.dna-about-clinical-lead {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: #6f655d;
	margin: 0;
}

.dna-about-clinical-card {
	background: #fff;
	border-radius: 20px;
	padding: 1.75rem 1.25rem 1.5rem;
	height: 100%;
	border: 1px solid #ebe4db;
	box-shadow: 0 8px 28px rgba(59, 51, 45, 0.04);
}

.dna-about-clinical-card-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dna-charcoal);
	font-size: 1.35rem;
}

.dna-about-clinical-card-icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.dna-about-clinical-card h3 {
	font-family: "Newsreader", serif;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--dna-charcoal);
	margin: 0 0 0.65rem;
	line-height: 1.3;
}

.dna-about-clinical-card p {
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	line-height: 1.65;
	color: #76706c;
	margin: 0;
}

@media (max-width: 991px) {
	.dna-trust-bar-inner {
		justify-content: flex-start;
	}

	.dna-trust-item {
		padding: 0.5rem 1rem;
	}

	.dna-trust-divider {
		display: none;
	}

	.dna-practitioner-meta {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.dna-practitioner-photo img {
		min-height: 320px;
	}

	.dna-philosophy-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.dna-philosophy-cta-btn {
		width: 100%;
		text-align: center;
	}

	.dna-treatment-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.dna-treatment-price {
		text-align: left;
	}

	.dna-treatments-tabs {
		width: 100%;
		min-width: 0;
	}

	.dna-treatments-tabs .nav-link {
		font-size: 0.78rem;
		padding: 0.7rem 0.75rem;
	}

	.dna-booking-card {
		margin-top: 0.5rem;
	}

	.dna-about-profile-photo {
		margin-left: 0;
		max-width: 100%;
	}

	.dna-about-hero {
		min-height: 320px;
	}
}

/* Contact */
.dna-contact-hero {
	position: relative;
}

.dna-contact-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(45, 38, 34, 0.55) 0%, rgba(45, 38, 34, 0.45) 100%);
	z-index: 0;
}

.dna-contact-hero .container-fluid {
	position: relative;
	z-index: 1;
}

.dna-contact-hero .dna-services-hero-title,
.dna-contact-hero .dna-services-hero-lead {
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.dna-contact-main {
	background: var(--dna-cream);
	padding: 4.5rem 0 4rem;
}

.dna-contact-info {
	max-width: 420px;
}

.dna-contact-brand {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 3vw, 2.75rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin-bottom: 0.35rem;
}

.dna-contact-region {
	font-family: "Montserrat", sans-serif;
	font-size: 1.3rem;
	color: #574336;
	margin-bottom: 2.25rem;
}

.dna-contact-details {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.dna-contact-details li {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.dna-contact-detail-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #CEBBA7;
	background: rgba(255, 255, 255, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3B332D;
	flex-shrink: 0;
}

.dna-contact-detail-label {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.0rem;
	font-weight: 100;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #76706C;
	margin-bottom: 0.25rem;
	font-weight: 700;
}

.dna-contact-details a,
.dna-contact-hours-line {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.1rem;
	color: #3B332D;
	text-decoration: none;
	line-height: 1.5;
	font-weight: 700;
}

.dna-contact-details a:hover {
	color: var(--dna-brown);
}

.dna-contact-quote {
	margin: 0;
	padding: 1.35rem 1.5rem;
	border-radius: 16px;
	font-family: "Newsreader", serif;
	font-size: 1.2rem;
	font-style: italic;
	line-height: 1.55;
	color: #5c534c;
	background: #CEBBA780;
	border: 1px solid #CEBBA733;
	font-weight: 500;
}

.dna-contact-quote-mark {
	font-family: "Instrument Serif", serif;
	font-size: 1.45rem;
	font-style: normal;
	color: #8a735c;
	font-weight: 400;
	line-height: 1;
}

.dna-contact-form-card {
	background: #faf8f5;
	border-radius: 24px;
	padding: 2.25rem 2rem 2.5rem;
	box-shadow: 0 12px 40px rgba(59, 51, 45, 0.06);
	border: 1px solid rgba(206, 187, 167, 0.45);
}

.dna-contact-form-title {
	font-family: "Instrument Serif", serif;
	font-size: 2rem;
	font-weight: 400;
	color: var(--dna-charcoal);
	margin-bottom: 0.5rem;
}

.dna-contact-form-lead {
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	color: #7a726c;
	margin-bottom: 1.75rem;
}

.dna-form-label {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.0rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #3B332D;
	margin-bottom: 0.45rem;
	
}

.dna-form-optional {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 500;
	color: #b0a69c;
}

.dna-form-control {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #c8bfb4;
	border-radius: 0;
	padding: 0.35rem 0 0.85rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.92rem;
	color: var(--dna-charcoal);
	background: transparent;
	box-shadow: none;
}

.dna-form-control::placeholder {
	color: #b5aca3;
	opacity: 1;
}

.dna-form-control:focus {
	outline: none;
	border-bottom-color: #8a735c;
	box-shadow: none;
	background: transparent;
}

.dna-contact-form .dna-form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a735c' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0 center;
	padding-right: 1.25rem;
	cursor: pointer;
}

.dna-contact-form .dna-form-select option[value=""] {
	color: #b5aca3;
}

.dna-contact-form .dna-form-textarea {
	min-height: 7rem;
	resize: vertical;
	padding-bottom: 1rem;
}

.dna-contact-submit {
	padding: 0.95rem 1.5rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.dna-contact-location {
	background: #e8dfd3;
	padding: 4.5rem 0 5rem;
}

.dna-contact-location-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(2rem, 3vw, 2.65rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin-bottom: 0.65rem;
}

.dna-contact-location-lead {
	font-family: "Montserrat", sans-serif;
	font-size: 0.95rem;
	color: #574336;
	margin-bottom: 2rem;
	max-width: 420px;
}

.dna-contact-location-block {
	margin-bottom: 2rem;
}

.dna-contact-location-label {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #CD7135;
	margin-bottom: 0.5rem;
}

.dna-contact-address {
	font-family: "Montserrat", sans-serif;
	font-size: 0.95rem;
	color: var(--dna-charcoal);
	margin-bottom: 0.75rem;
}

.dna-contact-directions {
	font-family: "Montserrat", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dna-charcoal);
	text-decoration: none;
}

.dna-contact-directions:hover {
	color: var(--dna-brown);
}

.dna-contact-availability {
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 320px;
}

.dna-contact-availability li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	color: var(--dna-charcoal);
	padding: 0.35rem 0;
	border-bottom: 1px solid rgba(59, 51, 45, 0.08);
	font-weight: 700;
}

.dna-contact-map {
	border-radius: 16px;
	overflow: hidden;
	min-height: 360px;
	background: #d4c9bc;
	box-shadow: 0 8px 32px rgba(59, 51, 45, 0.08);
}

.dna-contact-map iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

/* Book appointment page */
.dna-booking-page-wrap {
	background: var(--dna-cream);
}

.dna-booking-page-hero {
	position: relative;
	min-height: 380px;
	padding: 4.5rem 0 6.5rem;
}

.dna-booking-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(45, 38, 34, 0.5) 0%, rgba(45, 38, 34, 0.38) 55%, rgba(237, 229, 217, 0.15) 100%);
	z-index: 0;
}

.dna-booking-page-hero .container-fluid {
	position: relative;
	z-index: 1;
}

.dna-booking-page-hero-content {
	max-width: 720px;
}

.dna-booking-page-hero .dna-services-hero-title,
.dna-booking-page-hero .dna-services-hero-lead {
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.dna-booking-page-hero-lead {
	font-size: clamp(0.875rem, 2.8vw, 1rem);
	line-height: 1.75;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.dna-booking-page {
	background: transparent;
	padding: 0 0 5rem;
	margin-top: -4.5rem;
	position: relative;
	z-index: 2;
}

.dna-booking-page-card {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem 2.25rem 2.75rem;
	box-shadow: 0 20px 56px rgba(59, 51, 45, 0.12);
	border: 0;
	max-width: 1040px;
	margin: 0 auto;
}

.dna-booking-page-card-header {
	border-bottom: 1px solid #ebe4d9;
	padding-bottom: 1.75rem;
	margin-bottom: 2.25rem;
}

.dna-booking-page-card-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(1.85rem, 2.8vw, 2.5rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin: 0 0 0.65rem;
}

.dna-booking-page-card-lead {
	font-family: "Montserrat", sans-serif;
	font-size: 0.88rem;
	line-height: 1.6;
	color: #8a8078;
	margin: 0 auto;
	max-width: 520px;
}

.dna-booking-page-col-time {
	display: flex;
	flex-direction: column;
}

.dna-booking-page-col-time .dna-booking-summary {
	margin-top: auto;
}

.dna-booking-page-label {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #3b332d;
	margin-bottom: 0.65rem;
}

.dna-booking-page-field {
	margin-bottom: 1.75rem;
}

.dna-booking-page-select {
	width: 100%;
	border: 1px solid #d9cfc4;
	border-radius: 12px;
	padding: 0.85rem 1rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.92rem;
	color: var(--dna-charcoal);
	background: #fff;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a735c' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.dna-booking-calendar {
	background: #fff;
	border: 1px solid #e8dfd3;
	border-radius: 16px;
	padding: 1rem 1.1rem 1.25rem;
}

.dna-booking-calendar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.dna-booking-calendar-month {
	font-family: "Montserrat", sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--dna-charcoal);
}

.dna-booking-calendar-nav {
	border: 0;
	background: transparent;
	color: #8a735c;
	padding: 0.35rem 0.5rem;
	cursor: pointer;
	font-size: 1rem;
}

.dna-booking-calendar-weekdays,
.dna-booking-calendar-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.35rem;
	text-align: center;
}

.dna-booking-calendar-weekdays span {
	font-family: "Montserrat", sans-serif;
	font-size: 0.68rem;
	font-weight: 600;
	color: #9a9088;
	padding-bottom: 0.5rem;
}

.dna-booking-calendar-day {
	border: 0;
	background: transparent;
	font-family: "Montserrat", sans-serif;
	font-size: 0.85rem;
	color: var(--dna-charcoal);
	width: 2.25rem;
	height: 2.25rem;
	margin: 0 auto;
	padding: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.dna-booking-calendar-day.is-muted {
	color: #c5bcb3;
	cursor: default;
}

.dna-booking-calendar-day.is-disabled {
	color: #d0c8c0;
	cursor: not-allowed;
}

.dna-booking-calendar-day.is-selected {
	background: #3b332d;
	color: #fff;
}

.dna-booking-calendar-day:not(.is-muted):not(.is-disabled):not(.is-selected):hover {
	background: #ebe4d9;
}

.dna-booking-page-day-label {
	font-family: "Montserrat", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9a9088;
	margin: 0 0 1rem;
}

.dna-booking-slots {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.65rem;
	min-height: 120px;
}

.dna-booking-slot {
	border: 1px solid #d9cfc4;
	border-radius: 12px;
	background: #fff;
	padding: 0.75rem 0.5rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--dna-charcoal);
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.dna-booking-slot.is-selected {
	background: #3b332d;
	border-color: #3b332d;
	color: #fff;
}

.dna-booking-slot.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
	text-decoration: line-through;
}

.dna-booking-slots-empty {
	font-family: "Montserrat", sans-serif;
	font-size: 0.88rem;
	color: #7a726c;
	grid-column: 1 / -1;
}

.dna-booking-summary {
	border-top: 1px solid #e0d6cc;
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	margin-bottom: 1.25rem;
}

.dna-booking-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	color: var(--dna-charcoal);
	margin-bottom: 0.5rem;
}

.dna-booking-summary-row strong {
	font-family: "Newsreader", serif;
	font-size: 1.35rem;
	font-weight: 600;
}

.dna-booking-summary-note {
	font-family: "Montserrat", sans-serif;
	font-size: 0.78rem;
	line-height: 1.5;
	color: #8a8078;
	margin: 0;
}

.dna-booking-page-submit {
	background: #3b332d;
	border-color: #3b332d;
	color: #fff !important;
	border-radius: 14px;
	padding: 0.95rem 1.5rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.dna-booking-page-submit:hover {
	background: #2a241f;
	border-color: #2a241f;
	color: #fff !important;
}

.dna-booking-section-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(1.65rem, 5vw, 2.75rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin: 0 0 2.75rem;
}

.dna-booking-consultation {
	padding: 4.5rem 0 4rem;
	background: var(--dna-cream);
}

.dna-booking-consultation-steps {
	max-width: 1080px;
	margin: 0 auto;
}

.dna-booking-consultation-step {
	padding: 0 2rem 1rem;
}

@media (min-width: 992px) {
	.dna-booking-consultation-steps > .col-lg-4:not(:last-child) .dna-booking-consultation-step {
		border-right: 1px solid #ddd4c8;
	}
}

.dna-booking-consultation-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(3.25rem, 14vw, 4.375rem);
	height: clamp(3.25rem, 14vw, 4.375rem);
	border-radius: 50%;
	background: #fff;
	color: #DACCBB;
	font-family: "Newsreader", sans-serif;
	font-size: clamp(1.35rem, 4.5vw, 1.85rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 1.35rem;
}

.dna-booking-consultation-step-title {
	font-family: "Instrument Serif", serif;
	font-size: clamp(1.35rem, 4.2vw, 1.65rem);
	font-weight: 400;
	color: var(--dna-charcoal);
	margin: 0 0 0.85rem;
}

.dna-booking-consultation-step-text {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(0.875rem, 2.6vw, 1rem);
	line-height: 1.75;
	color: #574336;
	margin: 0 auto;
}

.dna-booking-faq {
	padding: 0 0 5rem;
	background: var(--dna-cream);
}

.dna-booking-faq-list {
	max-width: 920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.dna-booking-faq-item {
	background: #f7f2ea;
	border-radius: 16px;
	padding: 1.5rem 1.75rem 1.6rem;
}

.dna-booking-faq-question {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(0.875rem, 2.8vw, 0.95rem);
	font-weight: 700;
	color: #3b332d;
	margin: 0 0 0.65rem;
}

.dna-booking-faq-answer {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(0.8rem, 2.4vw, 0.82rem);
	line-height: 1.7;
	color: #8a8078;
	margin: 0;
}

@media (max-width: 767px) {
	.dna-services-hero {
		min-height: 300px;
		padding: 3rem 0;
	}

	.dna-services-hero-title {
		font-size: clamp(1.65rem, 6.5vw, 2.25rem);
		line-height: 1.15;
	}

	.dna-services-hero-lead {
		font-size: clamp(0.875rem, 3.2vw, 1rem);
		line-height: 1.65;
	}

	.dna-booking-page-hero {
		min-height: 280px;
		padding: 2.75rem 0 4.25rem;
	}

	.dna-booking-page {
		margin-top: -3rem;
		padding-bottom: 3rem;
	}

	.dna-booking-page-card {
		padding: 1.5rem 1.1rem 1.75rem;
		border-radius: 16px;
	}

	.dna-booking-page-card-header {
		padding-bottom: 1.25rem;
		margin-bottom: 1.5rem;
	}

	.dna-booking-page-card-title {
		font-size: clamp(1.45rem, 5.5vw, 1.75rem);
	}

	.dna-booking-page-card-lead {
		font-size: 0.8rem;
	}

	.dna-booking-page-select,
	.dna-booking-slot {
		font-size: 0.85rem;
	}

	.dna-booking-summary-row {
		font-size: 0.85rem;
	}

	.dna-booking-summary-row strong {
		font-size: clamp(1.1rem, 4vw, 1.25rem);
	}

	.dna-booking-summary-note {
		font-size: 0.75rem;
	}

	.dna-booking-page-submit {
		font-size: 0.72rem;
		padding: 0.85rem 1.25rem;
	}

	.dna-booking-slots {
		grid-template-columns: 1fr;
	}

	.dna-booking {
		padding: 3rem 0 3.5rem;
	}

	.dna-booking-title {
		font-size: clamp(1.65rem, 6vw, 2rem);
	}

	.dna-booking-lead {
		font-size: 0.9rem;
		margin-bottom: 1.5rem;
	}

	.dna-booking-contact li {
		font-size: 0.875rem;
	}

	.dna-booking-contact-icon {
		width: 48px;
		height: 48px;
		font-size: 0.9rem;
	}

	.dna-booking-card {
		padding: 1.35rem 1.15rem 1.5rem;
	}

	.dna-booking-form-title {
		font-size: clamp(1.25rem, 5vw, 1.65rem);
		margin-bottom: 1.25rem;
	}

	.dna-booking-field label {
		font-size: 0.8rem;
	}

	.dna-booking-input {
		font-size: 0.9rem;
	}

	.dna-booking-consultation {
		padding: 3rem 0 2.5rem;
	}

	.dna-booking-section-title {
		margin-bottom: 2rem;
	}

	.dna-booking-consultation-step {
		padding: 0 0 2rem;
		border-bottom: 1px solid #ddd4c8;
	}

	.dna-booking-consultation-steps > .col-lg-4:last-child .dna-booking-consultation-step {
		border-bottom: 0;
	}

	.dna-booking-faq {
		padding-bottom: 3.5rem;
	}

	.dna-booking-faq-item {
		padding: 1.15rem 1.15rem 1.25rem;
		border-radius: 12px;
	}
}

@media (max-width: 834px) {
	.dna-booking-page-label,
	.dna-booking-page-day-label {
		font-size: 0.65rem;
	}

	.dna-booking-calendar-month {
		font-size: 0.85rem;
	}

	.dna-booking-calendar-day {
		width: 2rem;
		height: 2rem;
		font-size: 0.78rem;
	}

	.dna-hero-pill {
		font-size: 1.0rem;
	}
	.dna-practitioner-pill, .dna-section-pill {
		font-size: 1.0rem;
	}
	.dna-meta-label, .dna-contact-detail-label, .dna-contact-details a,  .dna-contact-hours-line, .dna-contact-location-label {
		font-size: 1.0rem;
	}
	.dna-feature-title, .dna-treatment-name , .dna-treatment-price-value{
		font-size: 1.0rem;
	}
	.dna-form-label{
		font-size: 0.9rem;
	}
}
@media (max-width: 481px) {
	.dna-booking-page-label,
	.dna-booking-page-day-label {
		font-size: 0.65rem;
	}

	.dna-booking-calendar-month {
		font-size: 0.85rem;
	}

	.dna-booking-calendar-day {
		width: 2rem;
		height: 2rem;
		font-size: 0.78rem;
	}

	.dna-hero-pill {
		font-size: 0.9rem;
	}
	.dna-practitioner-pill, .dna-section-pill {
		font-size: 0.9rem;
	}
	.dna-meta-label, .dna-contact-detail-label, .dna-contact-details a,  .dna-contact-hours-line, .dna-contact-location-label {
		font-size: 0.9rem;
	}
	.dna-feature-title, .dna-treatment-name , .dna-treatment-price-value{
		font-size: 1.3rem;
	}
	.dna-form-label{
		font-size: 0.8rem;
	}
}
