:root {
	--ivory: #F8F4F0;
	--plum: #4A214F;
	--lavender: #EDE6EF;
	--charcoal: #2B282B;
	--champagne: #C7AA78;
	--white: #FFFDFC;
	--ink: #2B282B;
	--ink-brighter: #4A214F;
	--muted: #5E545C;
	--line: #E4D6DC;
	--paper: #F8F4F0;
	--paper-deep: #4A214F;
	--card: #FFFDFC;
	--card-raised: #EDE6EF;
	--accent: #4A214F;
	--accent-bright: #6A3A70;
	--accent-deep: #4A214F;
	--blush: #C7AA78;
	--display: "Cormorant Garamond", Georgia, serif;
	--body: "Manrope", "Jost", ui-sans-serif, system-ui, sans-serif;
	--shadow-soft: 0 18px 40px -28px rgba(74, 33, 79, .28);
}

* {
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 5.5rem;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font: 400 16px/1.625 var(--body);
}

body:has(.booking-landing) {
	background: linear-gradient(112deg, oklch(15% .06 315 / .88), oklch(20% .06 340 / .62)), url('/assets/images/hero.jpg') center / cover fixed;
}

.booking-page-header {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 50%;
	width: min(1160px, calc(100% - 3rem));
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateX(-50%);
}

.booking-landing-brand img {
	display: block;
	width: 195px;
	height: auto;
}

.booking-page-call {
	display: inline-flex;
	align-items: center;
	min-height: 2.7rem;
	padding: .65rem 1rem;
	border: 1px solid var(--accent);
	border-radius: 999px;
	color: var(--paper-deep);
	background: var(--accent);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s, transform .2s;
}

.booking-page-call span {
	margin-left: .5rem;
	color: inherit;
}

.booking-page-call:hover {
	background: var(--accent-bright);
	transform: translateY(-2px);
}

.booking-landing {
	margin-top: 0;
	background: transparent;
}

.booking-landing-hero {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
	height: 100vh;
	display: grid;
	align-items: center;
	padding: 8rem max(1.5rem, calc((100% - 1160px) / 2)) 5rem;
	overflow: hidden;
	background: linear-gradient(112deg, oklch(15% .06 315 / .76) 0%, oklch(18% .07 338 / .58) 44%, oklch(15% .05 315 / .2) 74%);
}

.booking-landing-hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(125deg, transparent 26%, oklch(76% .1 80 / .16) 48%, transparent 72%);
	background-size: 180% 180%;
	animation: booking-hero-shimmer 14s ease-in-out infinite alternate;
}

.booking-landing-intro {
	position: relative;
	z-index: 1;
	max-width: 31rem;
	padding: clamp(1.25rem, 3vw, 2.25rem);
	border: 1px solid oklch(96% .012 320 / .16);
	background: oklch(15% .05 315 / .32);
	box-shadow: 0 22px 70px oklch(10% .06 315 / .4);
	backdrop-filter: blur(12px);
}

.booking-landing-intro h1 {
	margin: 1rem 0 1.25rem;
	font: 400 clamp(3.25rem, 5.6vw, 5.1rem)/.96 var(--display);
}

.booking-landing-lead {
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.booking-landing-cta {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	margin-top: 2rem;
	padding: .9rem 1.35rem;
	border: 1px solid var(--accent);
	border-radius: 999px;
	color: var(--paper-deep);
	background: var(--accent);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s, transform .2s;
}

.booking-landing-cta:hover {
	background: var(--accent-bright);
	transform: translateY(-2px);
}

.booking-landing-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 2.25rem 0;
}

.booking-landing-points div {
	padding-right: .8rem;
	border-right: 1px solid oklch(84% .09 88/.3);
}

.booking-landing-points div:last-child {
	border-right: 0;
}

.booking-landing-points dt {
	color: var(--accent);
	font: 500 1.35rem/1 var(--display);
}

.booking-landing-points dd {
	margin: .35rem 0 0;
	color: var(--muted);
	font-size: .72rem;
	line-height: 1.3;
}

.booking-landing-note {
	color: var(--accent-bright);
	font-size: .875rem;
}

.booking-hero-detail {
	position: absolute;
	right: max(1.5rem, calc((100% - 1160px) / 2));
	bottom: 3rem;
	width: min(22vw, 16rem);
	margin: 0;
	padding: .55rem;
	border: 1px solid oklch(96% .012 320 / .2);
	background: oklch(15% .05 315 / .58);
	box-shadow: var(--shadow-soft);
	animation: booking-detail-enter .9s .25s cubic-bezier(.2, .75, .25, 1) both;
}

.booking-hero-detail img {
	display: block;
	width: 100%;
	aspect-ratio: .82;
	object-fit: cover;
}

.booking-hero-detail figcaption {
	padding: .6rem .25rem .1rem;
	color: var(--accent-bright);
	font: 400 1rem/1.1 var(--display);
}

.booking-landing-form {
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	background: var(--card);
	box-shadow: var(--shadow-soft);
}

.booking-landing-booking {
	width: min(1160px, calc(100% - 3rem));
	display: grid;
	grid-template-columns: minmax(0, .75fr) minmax(470px, 1.25fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
	margin: -30vh auto 0;
	padding: 0 0 6rem;
	border-bottom: 1px solid oklch(96% .012 320 / .18);
}

.booking-landing-booking-copy h2 {
	margin: 1rem 0;
	font: 400 clamp(2.5rem, 4vw, 3.75rem)/.98 var(--display);
}

.booking-landing-booking-copy>p:not(.eyebrow) {
	margin: 0;
	color: var(--muted);
}

.booking-landing-booking-copy {
	padding: 2rem;
	border: 1px solid oklch(96% .012 320 / .14);
	background: oklch(15% .05 315 / .48);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(12px);
}

.booking-landing-services {
	width: min(1160px, calc(100% - 3rem));
	margin: auto;
	padding: 6rem 0;
	border-bottom: 1px solid oklch(96% .012 320 / .18);
}

.booking-landing-services>div:first-child {
	max-width: 37rem;
}

.booking-landing-services h2 {
	margin-top: 1rem;
	font: 400 clamp(2.4rem, 4vw, 3.5rem)/1 var(--display);
}

.booking-service-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.booking-service-list article {
	border-top: 1px solid var(--line);
	padding-top: 1rem;
}

.booking-service-list img {
	width: 100%;
	aspect-ratio: 1.2;
	object-fit: cover;
}

.booking-service-list h3 {
	margin: 1rem 0 .35rem;
	font: 400 1.65rem/1 var(--display);
}

.booking-service-list p {
	margin: 0;
	color: var(--muted);
	font-size: .9rem;
}

.booking-landing-newsletter {
	width: min(1160px, calc(100% - 3rem));
	margin: 0 auto;
	padding: 0 0 6rem;
}

.booking-page-footer {
	position: relative;
	isolation: isolate;
	border-top: 1px solid var(--line);
	background: var(--paper-deep);
	color: var(--ink);
	font-size: .8rem;
}

.booking-page-footer.scroll-reveal,
.booking-page-footer .scroll-reveal {
	opacity: 1;
	transform: none;
}

.booking-footer-inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr .8fr;
	gap: 2.5rem;
	width: min(1160px, calc(100% - 3rem));
	margin: auto;
	padding: 3.5rem 0 2rem;
}

.booking-footer-brand img {
	display: block;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
}

.booking-footer-brand p {
	max-width: 15rem;
	margin: 0;
	color: var(--muted);
}

.booking-footer-details,
.booking-footer-links {
	display: grid;
	align-content: start;
	gap: .65rem;
}

.booking-footer-details a {
	color: var(--accent-bright);
	font: 400 1.45rem/1 var(--display);
	text-decoration: none;
}

.booking-footer-details span {
	color: var(--muted);
}

.booking-footer-links nav {
	display: grid;
	gap: .5rem;
}

.booking-footer-links nav a {
	color: var(--muted);
	text-decoration: none;
}

.booking-footer-links nav a:hover {
	color: var(--ink);
}

.booking-footer-book {
	width: fit-content;
	color: var(--accent-bright) !important;
	font: 400 1.35rem/1 var(--display);
	text-decoration: none;
}

.booking-footer-copy {
	margin: 0;
	padding: 1.25rem max(1.5rem, calc((100% - 1160px) / 2));
	border-top: 1px solid oklch(96% .012 320 / .1);
	color: var(--muted);
	font-size: .72rem;
	text-align: center;
}

@keyframes booking-hero-shimmer {
	from {
		background-position: 8% 50%;
	}

	to {
		background-position: 92% 50%;
	}
}

@keyframes booking-detail-enter {
	from {
		opacity: 0;
		transform: translateY(24px) rotate(2deg);
	}

	to {
		opacity: 1;
		transform: translateY(0) rotate(2deg);
	}
}

.scroll-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .62s ease, transform .62s cubic-bezier(.2, .75, .25, 1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

.scroll-reveal.scroll-reveal-image {
	transform: translateY(24px) scale(.97);
	transition-delay: calc(var(--reveal-delay, 0ms) + 40ms);
}

.scroll-reveal.is-revealed {
	opacity: 1;
	transform: translateY(0) scale(1);
	will-change: auto;
}

main>section,
main>section>*,
footer,
footer>* {
	position: relative;
}

a {
	color: inherit;
	text-underline-offset: 3px;
}

.container {
	width: min(1120px, calc(100% - 3rem));
	margin: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	border-bottom: 1px solid oklch(84% .09 88/.15);
	/* background: oklch(0.22 0.08 334.22 / 0.72); */
	backdrop-filter: blur(24px);
	box-shadow: 0 8px 32px oklch(10% .06 315/.18), inset 0 1px 0 oklch(84% .09 88/.25);
	animation: chrome-enter .7s cubic-bezier(.2, .75, .25, 1) both;
}

.header-inner {
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	line-height: 1;
}

.site-header .brand {
	animation: chrome-enter .62s .12s cubic-bezier(.2, .75, .25, 1) both;
}

.brand strong {
	font: 500 20px/1 var(--display);
	letter-spacing: .18em;
}

.brand span,
.eyebrow {
	color: var(--accent);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
}

/* .brand span { padding-top:8px; } */
nav {
	display: flex;
	gap: 30px;
	align-items: center;
	animation: chrome-enter .62s .22s cubic-bezier(.2, .75, .25, 1) both;
}

nav a {
	color: var(--muted);
	font-size: 14px;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .2s;
}

nav a:hover {
	color: var(--accent);
}

nav .phone-link {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--accent);
	border-radius: 999px;
	color: var(--accent-bright);
	padding: 11px 17px;
	letter-spacing: .04em;
	text-transform: none;
}

.menu-button {
	display: none;
	border: 0;
	background: transparent;
	padding: 8px 0 8px 10px;
}

.menu-button span {
	display: block;
	width: 27px;
	height: 2px;
	margin: 6px 5px;
	background: var(--accent-bright);
	transform-origin: center;
	transition: transform .28s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.hero {
	min-height: 90svh;
	display: grid;
	align-items: center;
	position: relative;
	isolation: isolate;
	background: linear-gradient(to right, oklch(15% .05 315/.96) 0%, oklch(15% .05 315/.82) 45%, oklch(15% .05 315/.1) 100%), url('/assets/images/hero.jpg') center/cover;
}

.hero:after {
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 28%, oklch(62% .12 345/.24), transparent 28%),
		radial-gradient(circle at 78% 72%, oklch(62% .1 82/.16), transparent 30%),
		linear-gradient(115deg, oklch(15% .05 315/.48), transparent 65%);
	background-size: 145% 145%, 135% 135%, 100% 100%;
	animation: hero-ambient 20s ease-in-out infinite alternate;
}

@keyframes hero-ambient {
	from {
		background-position: 8% 12%, 92% 88%, center;
	}

	to {
		background-position: 78% 30%, 14% 14%, center;
	}
}

.hero-content {
	position: relative;
	z-index: 1;
	padding-block: 110px;
}

.hero-content>* {
	animation: hero-content-enter .72s cubic-bezier(.2, .75, .25, 1) both;
}

.hero-content> :nth-child(1) {
	animation-delay: .2s;
}

.hero-content> :nth-child(2) {
	animation-delay: .3s;
}

.hero-content> :nth-child(3) {
	animation-delay: .42s;
}

.hero-content> :nth-child(4) {
	animation-delay: .54s;
}

@keyframes chrome-enter {
	from {
		opacity: 0;
		transform: translateY(-14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-content-enter {
	from {
		opacity: 0;
		transform: translateY(26px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

main>section {
	scroll-snap-align: start;
	scroll-snap-stop: normal;
}

.hero {
	overflow: hidden;
	background: var(--paper-deep);
}

.hero::after {
	display: none;
}

.hero-slides,
.hero-slide {
	min-height: inherit;
}

.hero-slides {
	position: relative;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	background: linear-gradient(90deg, oklch(15% .05 315/.96) 0%, oklch(15% .05 315/.78) 48%, oklch(15% .05 315/.18) 100%), var(--hero-image) center/cover;
	opacity: 0;
	pointer-events: none;
	transform: scale(1.025);
	transition: opacity .8s ease, transform 5.8s ease;
}

.hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 18% 28%, oklch(62% .12 345/.2), transparent 28%), linear-gradient(115deg, oklch(15% .05 315/.38), transparent 65%);
}

.hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
}

.hero-content {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .6s .18s ease, transform .6s .18s cubic-bezier(.2, .75, .25, 1);
}

.hero-content>* {
	animation: none;
}

.hero-slide.is-active .hero-content {
	opacity: 1;
	transform: translateY(0);
}

.hero-content h1,
.hero-content h2 {
	max-width: 650px;
	margin-top: 17px;
	font: 400 clamp(48px, 7vw, 72px)/1.05 var(--display);
	letter-spacing: -.025em;
}

.hero-controls {
	position: absolute;
	left: 50%;
	bottom: clamp(1.5rem, 4vh, 2.75rem);
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 16px;
	transform: translateX(-50%);
}

.hero-pagination {
	display: flex;
	gap: 9px;
}

.hero-pagination button,
.hero-arrow {
	border: 0;
	padding: 0;
	color: var(--ink);
	background: transparent;
	cursor: pointer;
}

.hero-pagination button {
	width: 34px;
	height: 3px;
	background: oklch(96% .012 320/.38);
	transition: background .25s, transform .25s;
}

.hero-pagination button[aria-current="true"] {
	background: var(--accent);
	transform: scaleX(1.2);
}

.hero-arrow {
	width: 36px;
	height: 36px;
	border: 1px solid oklch(96% .012 320/.45);
	border-radius: 50%;
	font-size: 19px;
	line-height: 1;
	transition: border-color .2s, background .2s;
}

.hero-arrow:hover,
.hero-arrow:focus-visible,
.hero-pagination button:focus-visible {
	border-color: var(--accent);
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

h1,
h2,
h3 {
	margin: 0;
	font-weight: 400;
	line-height: 1.04;
}

h1 {
	max-width: 650px;
	margin-top: 17px;
	font: 400 clamp(48px, 7vw, 72px)/1.05 var(--display);
	letter-spacing: -.025em;
}

.hero-copy {
	max-width: 475px;
	margin: 25px 0 0;
	color: var(--muted);
	font-size: 16px;
}

.action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 38px;
}

.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid var(--accent);
	border-radius: 999px;
	cursor: pointer;
	font: 500 14px/1 var(--body);
	letter-spacing: .16em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s, color .2s, transform .2s;
}

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

.button-primary {
	background: var(--accent);
	color: var(--paper-deep);
}

.button-primary:hover {
	background: var(--accent-bright);
}

.button.is-loading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
}

.button-spinner {
	width: 1em;
	height: 1em;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: button-spinner-rotate 0.7s linear infinite;
}

.form-thank-you {
	max-width: 42rem;
	padding: 1.5rem 0;
}

.form-thank-you h2 {
	margin: 0.25rem 0 0.75rem;
}

.form-thank-you p:last-child {
	margin-bottom: 0;
}

@keyframes button-spinner-rotate {
	to {
		transform: rotate(360deg);
	}
}

.button-quiet {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.button-quiet:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.section {
	min-height: 90svh;
	padding-block: 72px;
	align-content: center;
}

.section-intro {
	max-width: 640px;
}

.section-intro h2,
.split-section h2,
.visit h2 {
	margin-top: 14px;
	font: 400 clamp(36px, 5vw, 48px)/1 var(--display);
	letter-spacing: -.02em;
}

.section-intro>p:last-child,
.split-section>div>p:not(.eyebrow),
.visit p {
	color: var(--muted);
	margin-top: 16px;
}

.trish-note {
	margin: 24px 0 0;
	border-left: 2px solid var(--accent);
	padding-left: 20px;
	color: var(--accent-bright);
	font: 400 clamp(24px, 2.3vw, 31px)/1.2 var(--display);
}

.trish-note p {
	margin: 0;
}

.trish-note cite {
	display: block;
	margin-top: 12px;
	color: var(--accent);
	font: 500 11px/1 var(--body);
	letter-spacing: .14em;
	text-transform: uppercase;
}

.explore-note {
	color: var(--blush) !important;
	font-size: 14px;
}

.card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 25px;
}

.card-title {
	margin-top: 10px;
	font: 400 30px/1 var(--display);
}

.card-copy {
	margin: 12px 0 16px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
}

.expand-label {
	margin-top: auto;
	color: var(--accent-bright);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.expand-label b {
	display: inline-block;
	margin-left: 8px;
	font-size: 20px;
	font-weight: 400;
	vertical-align: -1px;
}

.detail-book {
	color: var(--accent-bright);
	font-size: 14px;
	font-weight: 600;
	text-underline-offset: 5px;
}

.inspiration-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 14px;
}

.inspiration-gallery img {
	width: 100%;
	height: 120px;
	object-fit: cover;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 25px;
	/* margin-top: 53px; */
}

.service-card {
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--card);
	border-radius: 12px;
	transition: border-color .2s, transform .2s;
}

.service-card:hover,
.service-card.is-open {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.card-toggle {
	display: block;
	width: 100%;
	border: 0;
	padding: 0;
	color: inherit;
	text-align: left;
	background: transparent;
	cursor: pointer;
}

.card-toggle:focus-visible {
	outline: 3px solid var(--accent-bright);
	outline-offset: -3px;
}

.service-card img,
.service-art {
	display: block;
	width: 100%;
	height: 235px;
	object-fit: cover;
}

.service-art {
	background: radial-gradient(circle at 68% 30%, #e8bedb 0 6%, transparent 6.5%), radial-gradient(ellipse at 45% 65%, #7c4480 0 15%, #b97db0 16% 29%, #30113d 30% 38%, #dfb8d7 39% 62%, #7a326c 63% 100%);
}

.card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 30px;
}

.card-title {
	margin-top: 13px;
	font: 400 34px/1 var(--display);
}

.card-copy {
	margin: 17px 0 26px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}

.expand-label {
	margin-top: auto;
	color: var(--accent-bright);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.expand-label b {
	display: inline-block;
	margin-left: 8px;
	font-size: 20px;
	font-weight: 400;
	vertical-align: -1px;
}

.is-open .expand-label b {
	transform: rotate(45deg);
}

.service-details {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 26px;
	border-top: 1px solid var(--line);
	padding: 28px 30px 32px;
	background: var(--card-raised);
}

.service-details ul {
	padding: 0;
	margin: 15px 0 24px;
	list-style: none;
}

.service-details li {
	border-bottom: 1px solid rgba(216, 201, 225, .22);
	padding: 8px 0;
	color: var(--muted);
	font-size: 16px;
}

.authority-section {
	padding-block: clamp(80px, 11vw, 150px);
	background:
		radial-gradient(circle at 82% 18%, oklch(60% .13 345/.3), transparent 30%),
		radial-gradient(circle at 12% 82%, oklch(55% .11 82/.2), transparent 34%),
		linear-gradient(125deg, oklch(17% .055 325), oklch(25% .08 338) 52%, oklch(18% .06 320));
	background-size: 135% 135%, 145% 145%, 100% 100%;
	animation: authority-ambient 18s ease-in-out infinite alternate;
	overflow: hidden;
}

@keyframes authority-ambient {
	from {
		background-position: 4% 8%, 92% 88%, center;
	}

	to {
		background-position: 88% 22%, 8% 12%, center;
	}
}

.authority-grid {
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
	gap: clamp(42px, 8vw, 110px);
	align-items: center;
}

.authority-copy h2 {
	margin-top: 14px;
	max-width: 560px;
	font: 400 clamp(42px, 5vw, 62px)/1 var(--display);
	letter-spacing: -.02em;
}

.authority-copy>p:not(.eyebrow) {
	max-width: 520px;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 17px;
}

.authority-copy .button {
	margin-top: 32px;
}

.authority-points {
	display: grid;
	gap: 18px;
	margin: 32px 0 0;
}

.authority-points div {
	display: grid;
	grid-template-columns: 116px 1fr;
	gap: 18px;
	border-top: 1px solid oklch(84% .09 88/.26);
	padding-top: 15px;
}

.authority-points dt {
	color: var(--accent);
	font: 400 25px/1 var(--display);
}

.authority-points dd {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.authority-gallery {
	position: relative;
	display: grid;
	grid-template-columns: 1.12fr .88fr;
	grid-template-rows: 240px 220px;
	gap: 16px;
	min-height: 476px;
}

.authority-image {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid oklch(84% .09 88/.38);
	border-radius: 8px;
	background: var(--card);
}

.authority-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.authority-image figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 16px 15px;
	background: linear-gradient(transparent, oklch(15% .05 315/.88));
	color: var(--ink);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.authority-image-main {
	grid-row: span 2;
}

.authority-mark {
	position: absolute;
	right: -26px;
	top: 50%;
	z-index: 1;
	width: 150px;
	margin: 0;
	border: 1px solid var(--accent);
	border-radius: 50%;
	padding: 31px 15px;
	background: oklch(20% .07 332/.92);
	color: var(--accent-bright);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .08em;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(-50%);
}

.authority-mark span {
	display: block;
	margin-bottom: 5px;
	color: var(--accent);
	font: 400 46px/.8 var(--display);
}

.detail-book {
	color: var(--accent-bright);
	font-size: 14px;
	font-weight: 600;
	text-underline-offset: 5px;
}

.inspiration-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 14px;
}

.inspiration-gallery img {
	width: 100%;
	height: 120px;
	object-fit: cover;
}

.split-section {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 100px;
	align-items: start;
}

.small-note {
	font-size: 16px;
	margin-top: 26px !important;
}

.small-note a {
	color: var(--accent-bright);
}

#book,
#contact {
	width: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-blend-mode: multiply;
	padding-block: 72px;
	min-height: 90svh;
	display: flex;
	align-items: center;
}

#book {
	background-image: linear-gradient(135deg, oklch(17% .055 315/.72) 0%, oklch(15% .05 315/.15) 100%), url('/assets/images/sectionbg-lashmodel.jpg');
}

#contact {
	background-image: linear-gradient(135deg, oklch(17% .055 315/.92) 0%, oklch(15% .05 315/.15) 100%), url('/assets/images/bg-trish.jpg');
}

#book .container,
#contact .container {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 100px;
	align-items: start;
}

.form-card {
	border: 1px solid var(--line);
	background: var(--card);
	box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
	padding: 42px;
	border-radius: 12px;
}

.booking-container {
	border: 1px solid var(--line);
	background: var(--card);
	box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
	border-radius: 12px;
	overflow: hidden;
}

.booking-container .salon-booking {
	padding: 42px;
}

form {
	display: grid;
	gap: 21px;
}

label {
	display: grid;
	gap: 8px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
}

label span {
	color: var(--accent);
	font-weight: 400;
}

input,
select,
textarea {
	width: 100%;
	appearance: none;
	border: 1px solid #826b95;
	border-radius: 8px;
	background: #1b0c2d;
	color: var(--ink);
	padding: 15px;
	font: 400 17px/1.2 var(--body);
	letter-spacing: 0;
	text-transform: none;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--accent-bright);
	outline: 3px solid rgba(230, 181, 216, .25);
}

textarea {
	min-height: 125px;
	resize: vertical;
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.form-status {
	display: none;
	margin: 0;
	color: var(--accent-bright);
	font-size: 16px;
}

.form-status.show {
	display: block;
}

.visit {
	border-block: 1px solid var(--line);
	background: var(--paper-deep);
}

.visit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 78px;
	padding-block: 110px;
}

.visit-grid>div>p:not(.eyebrow) {
	max-width: 510px;
}

.visit dl {
	display: grid;
	gap: 25px;
	margin: 40px 0 0;
}

.visit dt {
	color: var(--accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.visit dd {
	margin: 6px 0 0;
	font-size: 17px;
}

.visit dd a {
	color: var(--accent-bright);
}

iframe {
	min-height: 460px;
	width: 100%;
	border: 1px solid var(--line);
	filter: grayscale(.7) sepia(.3) hue-rotate(225deg);
}

footer {
	padding-top: 35px;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-top: 1px solid oklch(34% .06 315/.4);
	background: url('/assets/images/hero.jpg') center 58%/cover;
}

footer::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: oklch(20% .05 331/.76);
	backdrop-filter: blur(22px);
	box-shadow: inset 0 1px 0 oklch(84% .09 88/.22);
}

.footer-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	padding-block: 52px;
}

.footer-inner>div {
	display: flex;
	flex-direction: column;
}

.footer-inner .brand {
	margin-bottom: 16px;
}

.footer-legacy {
	color: var(--accent);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .04em;
	margin: 0;
}

.footer-newsletter {
	margin-top: 22px;
}

.footer-newsletter .nl-signup {
	width: 100%;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: start;
	margin: 0;
	padding: 16px;
	border: 1px solid oklch(84% .09 88 / .22);
	border-radius: 8px;
	background: oklch(10% .04 315 / .52);
	box-shadow: none;
}

.footer-newsletter .nl-signup-copy h2 {
	margin-bottom: 6px;
	font-size: 24px;
}

.footer-newsletter .nl-signup-copy p {
	font-size: 12px;
	line-height: 1.45;
}

.footer-newsletter .nl-form {
	gap: 9px;
}

.footer-newsletter .nl-fields {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.footer-newsletter .nl-form input {
	padding: 10px 11px;
	font-size: 14px;
}

.footer-newsletter .nl-button {
	align-self: stretch;
	justify-content: center;
	min-height: 42px;
	margin-top: 22px;
	padding-block: 10px;
}

@media (max-width: 620px) {

	.footer-newsletter .nl-signup,
	.footer-newsletter .nl-fields {
		grid-template-columns: 1fr;
	}
}

.footer-highlight {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 21px;
	border-left: 2px solid var(--accent);
	padding-left: 17px;
	font-style: italic;
}

.footer-highlight p {
	margin: 0;
}

.footer-highlight cite {
	display: block;
	margin-top: 6px;
	color: var(--accent);
	font-size: 11px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.footer-inner>div:last-child {
	color: var(--muted);
	font-size: 14px;
	text-align: left;
}

.footer-inner p {
	margin: 0 0 6px;
}

.copyright {
	margin-top: 17px !important;
	font-size: 12px;
}

.footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin: 16px 0 0;
	padding: 0;
	animation: none;
}

.footer-legal a {
	color: var(--accent-bright);
	font-size: 12px;
	letter-spacing: .1em;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-legal a:hover {
	color: var(--accent);
}

.policy-page {
	padding-bottom: 0;
}

.policy-hero {
	padding: 72px 0 36px;
	border-bottom: 1px solid oklch(34% .06 315 / .35);
	background:
		linear-gradient(180deg, oklch(18% .06 331 / .55), var(--paper)),
		url('/assets/images/hero.jpg') center 42% / cover;
}

.policy-hero h1 {
	margin: 12px 0 16px;
	max-width: 16ch;
	font: 400 clamp(42px, 6vw, 68px)/.95 var(--display);
	letter-spacing: -.03em;
}

.policy-lead {
	max-width: 42rem;
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.policy-subnav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
	padding: 0;
	animation: none;
}

.policy-subnav a {
	display: inline-flex;
	align-items: center;
	min-height: 2.4rem;
	padding: .45rem .9rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--muted);
	font-size: 12px;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
}

.policy-subnav a:hover,
.policy-subnav a[aria-current="page"] {
	border-color: var(--accent);
	color: var(--paper-deep);
	background: var(--accent);
}

.policy-section {
	min-height: 0;
	align-content: start;
	padding-block: 56px 88px;
}

.policy-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.policy-toc {
	position: sticky;
	top: 108px;
	display: grid;
	gap: 10px;
}

.policy-toc a {
	color: var(--muted);
	font-size: 13px;
	letter-spacing: .04em;
	text-decoration: none;
}

.policy-toc a:hover {
	color: var(--accent);
}

.policy-content {
	display: grid;
	gap: 22px;
}

.policy-card {
	padding: 28px 30px;
	border: 1px solid var(--line);
	background: var(--card);
	box-shadow: var(--shadow-soft);
}

.policy-card h2 {
	margin: 0 0 14px;
	font: 400 clamp(28px, 3vw, 36px)/1.1 var(--display);
}

.policy-card p,
.policy-card li {
	color: var(--muted);
}

.policy-card p:last-child,
.policy-card ul:last-child,
.policy-card ol:last-child {
	margin-bottom: 0;
}

.policy-card a {
	color: var(--accent-bright);
}

.policy-card-alert {
	border-color: var(--accent);
	background: linear-gradient(135deg, oklch(27% .08 338 / .94), oklch(18% .06 331 / .92));
	box-shadow: 0 28px 80px -30px oklch(84% .09 88 / .42);
}

.policy-card-alert h2,
.policy-card-alert h3 {
	color: var(--ink-brighter);
}

.policy-card-alert h3 {
	margin: 20px 0 8px;
	font-size: 15px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.policy-toc a.is-highlighted {
	color: var(--accent-bright);
	font-weight: 600;
}

.policy-card ul,
.policy-card ol {
	margin: 0 0 16px;
	padding-left: 1.2rem;
}

.policy-card li+li {
	margin-top: 8px;
}

.policy-table-wrap {
	overflow-x: auto;
	margin: 0 0 16px;
}

.policy-card table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.policy-card th,
.policy-card td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.policy-card th {
	color: var(--accent);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.policy-card td:first-child {
	color: var(--ink);
	font-weight: 500;
	white-space: nowrap;
}

.conduct-checklist .policy-card {
	display: grid;
	gap: 12px;
}

.conduct-checklist .policy-card p {
	margin: 0 0 6px;
}

.conduct-checklist label {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
	padding: 12px 0;
	border-top: 1px solid oklch(76% .03 320 / .18);
	color: var(--muted);
}

.conduct-checklist input[type="checkbox"] {
	width: 1.05rem;
	height: 1.05rem;
	margin-top: .25rem;
	padding: 0;
	border-radius: 3px;
	appearance: auto;
	background: Canvas;
	accent-color: var(--accent);
}

.conduct-checklist input[type="checkbox"]:checked+.i18n,
.conduct-checklist label:has(input[type="checkbox"]:checked) {
	color: var(--accent-bright);
}

.language-select {
	max-width: 22rem;
	margin-top: 28px;
}

.conduct-page[data-language="en"] .i18n:not(.i18n-en),
.conduct-page[data-language="vi"] .i18n:not(.i18n-vi),
.conduct-page[data-language="km"] .i18n:not(.i18n-km) {
	display: none;
}

.conduct-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 8px;
}

.signature-pad {
	display: grid;
	gap: 12px;
	margin-top: 8px;
}

.signature-pad-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.signature-pad canvas {
	display: block;
	width: 100%;
	height: 220px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: oklch(10% .04 315 / .72);
	touch-action: none;
}

.conduct-checklist .form-status.success {
	color: var(--accent-bright);
}

.conduct-record {
	display: grid;
	gap: 24px;
	margin-top: 34px;
	padding-top: 34px;
	border-top: 1px solid var(--line);
}

.conduct-record-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
	gap: 24px;
}

.conduct-record-list {
	list-style: decimal;
	padding-left: 1.2rem;
}

.conduct-record-list li {
	display: list-item;
}

.conduct-signature-image {
	display: block;
	width: 100%;
	max-width: 420px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: oklch(10% .04 315 / .72);
}

.conduct-document-copy summary {
	cursor: pointer;
	color: var(--accent);
	font-weight: 600;
}

.conduct-document-copy pre {
	max-height: 420px;
	overflow: auto;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: oklch(10% .04 315 / .72);
	color: var(--muted);
	white-space: pre-wrap;
}

.signature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 14px;
}

.signature-grid span {
	min-height: 3.5rem;
	padding-top: 2rem;
	border-bottom: 1px solid var(--accent);
	color: var(--accent-bright);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.service-modal {
	width: min(900px, calc(100% - 2rem));
	max-height: min(820px, calc(100vh - 2rem));
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius, .25rem);
	background: var(--card);
	color: var(--ink);
	box-shadow: var(--shadow-soft);
}

.service-modal[open] {
	animation: modal-appear .28s cubic-bezier(.16, 1, .3, 1) both;
}

.service-modal::backdrop {
	background: oklch(10% .06 315/.78);
	backdrop-filter: blur(5px);
	animation: backdrop-appear .24s ease both;
}

.modal-shell {
	position: relative;
	padding: 50px;
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 46px;
	height: 46px;
	border: 1px solid var(--accent);
	border-radius: 50%;
	background: transparent;
	color: var(--accent);
	cursor: pointer;
	font: 400 34px/1 var(--display);
	transition: background .2s, color .2s;
}

.modal-close:hover,
.modal-close:focus-visible {
	background: var(--accent);
	color: var(--paper-deep);
	outline: none;
}

.modal-shell h2 {
	max-width: 720px;
	margin-top: 12px;
	font: 400 clamp(42px, 6vw, 60px)/1 var(--display);
}

.modal-copy {
	max-width: 760px;
	margin: 22px 0 32px;
	color: var(--muted);
	font-size: 16px;
}

.modal-details {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 42px;
	border-top: 1px solid var(--line);
	padding-top: 30px;
}

.modal-details ul {
	padding: 0;
	margin: 15px 0 25px;
	list-style: none;
}

.modal-details li {
	border-bottom: 1px solid oklch(76% .03 320/.2);
	padding: 9px 0;
	color: var(--muted);
	font-size: 16px;
}

.modal-details .inspiration-gallery img {
	height: 175px;
}

.service-faqs {
	margin-top: 34px;
	border-top: 1px solid var(--line);
	padding-top: 28px;
}

.service-faq {
	border-bottom: 1px solid oklch(76% .03 320/.2);
}

.service-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	padding: 16px 0;
	color: var(--ink-brighter);
	font-size: 16px;
	font-weight: 500;
	list-style: none;
}

.service-faq summary::-webkit-details-marker {
	display: none;
}

.service-faq summary::after {
	content: '+';
	color: var(--accent);
	font: 400 25px/1 var(--display);
}

.service-faq[open] summary::after {
	content: '-';
}

.service-faq p {
	margin: 0 0 17px;
	max-width: 720px;
	color: var(--muted);
	font-size: 15px;
	padding-left: 50px;
	text-indent: 25px;
}

/* Team Section */
.team-grid {
	display: flex;
	gap: 32px;
	margin-top: 52px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 8px 0;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--accent-bright) transparent;
}

.team-grid::-webkit-scrollbar {
	height: 6px;
}

.team-grid::-webkit-scrollbar-track {
	background: transparent;
}

.team-grid::-webkit-scrollbar-thumb {
	background: var(--accent-bright);
	border-radius: 3px;
}

.team-grid::-webkit-scrollbar-thumb:hover {
	background: var(--accent);
}

.team-card {
	flex: 0 0 280px;
	scroll-snap-align: start;
	border: 1px solid var(--line);
	background: var(--card);
	border-radius: 12px;
	padding: 28px 24px;
	text-align: center;
	transition: transform .2s, border-color .2s;
}

.team-card:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
}

.team-photo-placeholder {
	width: 170px;

	height: 170px;
	margin: 0 auto 24px;
	border-radius: 12px;
	background: oklch(30% .04 331);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: var(--accent);
	border-radius: 100%;
}

.team-photo-placeholder img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.08) saturate(1.04);
}

.team-photo-placeholder svg {
	width: 100%;
	height: 100%;
	opacity: .6;
}

.team-card h3 {
	margin: 0;
	font: 400 28px/1.1 var(--display);
	color: var(--accent);
	letter-spacing: -.01em;
}

.team-title {
	margin: 8px 0 14px;
	color: var(--accent-bright);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.team-bio {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
}

.team-pagination {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 32px;
}

.team-pagination-btn {
	min-width: 44px;
	min-height: 44px;
	border: 1px solid var(--accent);
	border-radius: 50%;
	background: transparent;
	color: var(--accent-bright);
	font: 600 18px/1 var(--body);
	cursor: pointer;
	transition: background .2s, color .2s, border-color .2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-pagination-btn:hover {
	background: var(--accent);
	color: var(--paper-deep);
	border-color: var(--accent);
}

.team-pagination-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.team-pagination-btn:disabled:hover {
	background: transparent;
	color: var(--accent-bright);
	border-color: var(--accent);
}

@media (max-width:800px) {
	.container {
		width: min(100% - 2.25rem, 1120px);
	}

	.header-inner {
		min-height: 78px;
	}

	.menu-button {
		display: block;
	}

	.menu-button span {
		background: var(--accent-bright);
	}

	#site-nav {
		display: none;
		position: absolute;
		top: 78px;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 16px 18px 22px;
		border-bottom: 1px solid var(--line);
		background: var(--paper);
	}

	#site-nav.open {
		display: flex;
		animation: menu-reveal .28s ease both;
	}

	#site-nav a {
		padding: 13px 0;
	}

	.hero {
		min-height: 640px;
		background-position: 60% center;
	}

	.hero-slide {
		background-position: 60% center;
	}

	.hero-content {
		padding-block: 90px;
	}

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

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

	.authority-copy {
		max-width: 620px;
	}

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

	.split-section,
	.visit-grid {
		grid-template-columns: 1fr;
		gap: 47px;
	}

	#book .container,
	#contact .container {
		grid-template-columns: 1fr;
		gap: 47px;
	}

	.section {
		padding-block: 85px;
	}

	.visit-grid {
		padding-block: 85px;
	}

	iframe {
		min-height: 340px;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.policy-hero {
		padding-top: 48px;
	}

	.policy-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.policy-toc {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.policy-card {
		padding: 22px 20px;
	}

	.policy-card td:first-child {
		white-space: normal;
	}

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

	.conduct-form-grid,
	.conduct-record-grid {
		grid-template-columns: 1fr;
	}

	.thankyou-shell {
		grid-template-columns: 1fr;
	}

	.thankyou-recommend {
		/* grid-template-columns: 1fr; */
	}

	.modal-shell {
		padding: 42px 28px 30px;
	}

	.modal-details {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	#book,
	#contact {
		background-attachment: scroll;
	}

	.traffic-heading,
	.traffic-detail-grid {
		grid-template-columns: 1fr;
	}

	.traffic-heading {
		display: grid;
		align-items: start;
	}

	.traffic-metrics {
		grid-template-columns: repeat(2, 1fr);
	}

	.traffic-months {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px 0;
	}

	.traffic-months>div:nth-child(4) {
		border-left: 0;
		padding-left: 0;
	}

	.traffic-metrics>div:nth-child(3) {
		border-left: 0;
	}
}

@keyframes menu-reveal {
	from {
		opacity: 0;
		transform: translateY(-12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes modal-appear {
	from {
		opacity: 0;
		transform: translateY(18px) scale(.96);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes backdrop-appear {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (max-width:530px) {
	body {
		font-size: 17px;
	}

	.brand strong {
		font-size: 20px;
	}

	.brand span {
		font-size: 10px;
	}

	h1 {
		font-size: 56px;
	}

	.authority-points div {
		grid-template-columns: 95px 1fr;
		gap: 12px;
	}

	.authority-gallery {
		grid-template-rows: 190px 170px;
		min-height: 376px;
	}

	.authority-mark {
		right: -18px;
		width: 126px;
		padding: 25px 10px;
		font-size: 9px;
	}

	.authority-mark span {
		font-size: 39px;
	}

	.service-grid,
	.field-row {
		grid-template-columns: 1fr;
	}

	.rating-options span,
	.recommend-options span {
		min-height: 58px;
	}

	.service-card img,
	.service-art {
		height: 220px;
	}

	.form-card {
		padding: 28px;
	}

	.traffic-chart {
		gap: 4px;
		height: 160px;
	}

	.traffic-bar small {
		display: none;
	}

	.section-intro h2,
	.split-section h2,
	.visit h2 {
		font-size: 45px;
	}

	.service-details {
		padding: 25px;
	}
}

@media (prefers-reduced-motion:reduce) {

	.authority-section,
	.hero::after,
	.site-header,
	.site-header .brand,
	nav,
	.hero-content>* {
		animation: none;
	}

	.scroll-reveal,
	.scroll-reveal.scroll-reveal-image {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.hero-slide,
	.hero-content {
		transition: none;
	}

	*,
	html {
		scroll-behavior: auto;
		transition: none !important;
	}
}

/* Customer survey and protected studio dashboard. */
.survey-page,
.admin-page {
	display: grid;
	min-height: 100svh;
	place-items: center;
	padding: 48px 1.5rem;
	background: radial-gradient(circle at 90% 10%, oklch(30% .09 330/.55), transparent 38%), var(--paper-deep);
}

.survey-page {
	background-color: var(--paper-deep);
	/*background-image: linear-gradient(135deg, oklch(20% .08 332/.9), oklch(26% .07 325/.78)), url('/assets/images/page-bg-floral.jpg');*/
	background-image: linear-gradient(135deg, oklch(0.45 0.15 358.1 / 0.49), oklch(1 0 0 / 0.78)), url(/assets/images/page-bg-floral.jpg);
	background-position: center, top left;
	background-repeat: no-repeat, repeat;
	background-size: cover, 420px;
}

.survey-panel,
.admin-panel {
	width: min(820px, 100%);
	border: 1px solid var(--line);
	background: var(--card);
	box-shadow: var(--shadow-soft);
	padding: clamp(28px, 6vw, 58px);
}

.survey-panel>.brand {
	margin-bottom: 52px;
}

.survey-panel>.brand img {
	display: block;
	width: min(250px, 100%);
	height: auto;
	filter: drop-shadow(0 5px 12px oklch(8% .04 320/.65));
}

.survey-panel {
	box-shadow: 0 20px 60px oklch(8% .05 320/.7), 0 4px 18px oklch(8% .04 320/.45);
}

.survey-panel h1,
.admin-panel h1 {
	margin-top: 13px;
	font: 400 clamp(42px, 6vw, 64px)/1 var(--display);
}

.survey-intro {
	max-width: 650px;
	color: var(--muted);
	font-size: 18px;
}

.survey-form,
.admin-form {
	margin-top: 34px;
}

.survey-panel>.brand+.survey-form {
	margin-top: 0;
}

.survey-form fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.survey-form legend {
	margin-bottom: 12px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 500;
}

.rating-options,
.recommend-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.rating-options label,
.recommend-options label {
	display: inline-block;
	position: relative;
	cursor: pointer;
	letter-spacing: 0;
	text-transform: none;
}

.rating-options input,
.recommend-options input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.rating-options span,
.recommend-options span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	border: 1px solid var(--line);
	padding: 10px 13px;
	color: var(--muted);
	font-size: 14px;
	transition: background .2s, border-color .2s, color .2s;
}

.rating-options span,
.recommend-options span {
	display: grid;
	border-radius: 5px;
	min-height: 78px;
	place-items: center;
	border-color: oklch(84% .09 88/.52);
	background: oklch(96% .012 320/.06);
	color: var(--ink);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.15;
	text-align: center;
}

.rating-options input:checked+span,
.recommend-options input:checked+span {
	border-color: var(--accent);
	background: oklch(84% .09 88/.13);
	color: var(--ink);
}

.rating-options input:checked+span,
.recommend-options input:checked+span {
	border-color: var(--accent-bright);
	background: var(--accent);
	box-shadow: 0 0 0 3px oklch(84% .09 88/.25), 0 8px 18px oklch(8% .04 320/.28);
	color: var(--paper-deep);
}

.rating-options label:hover span,
.recommend-options label:hover span {
	border-color: var(--accent-bright);
	background: oklch(84% .09 88/.18);
	color: var(--ink);
}

.rating-options input:focus-visible+span,
.recommend-options input:focus-visible+span {
	outline: 3px solid oklch(84% .09 88/.3);
}

.survey-result {
	border-top: 1px solid var(--line);
	margin-top: 20px;
	padding-top: 30px;
	outline: none;
}

.survey-result h2 {
	margin-top: 12px;
	font: 400 clamp(36px, 5vw, 52px)/1 var(--display);
}

.survey-result p:not(.eyebrow) {
	color: var(--muted);
	font-size: 17px;
}

.share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 25px;
}

.thankyou-page {
	place-items: start center;
	padding: clamp(18px, 5vw, 54px) 1rem;
	background:
		linear-gradient(135deg, oklch(13% .05 318 / .86), oklch(22% .07 342 / .7)),
		url('/assets/images/hero.jpg') center / cover fixed;
}

.thankyou-panel {
	position: relative;
	width: min(720px, 100%);
	padding: clamp(18px, 4vw, 34px);
	border-color: oklch(84% .09 88 / .28);
	background:
		radial-gradient(circle at 50% 0%, oklch(0.43 0.19 350.36 / 0.22), transparent 44%), oklch(14% .05 322 / .84);
	box-shadow: 0 34px 90px -42px oklch(5% .04 320 / .95), inset 0 1px 0 oklch(96% .012 320 / .16);
	backdrop-filter: blur(18px);
}

.thankyou-panel::before {
	content: "";
	position: absolute;
	top: -18%;
	left: 50%;
	transform: translateX(-50%);
	width: min(80%, 520px);
	height: 180px;
	background: radial-gradient(circle at 50% 0%, oklch(0.43 0.19 350.36 / 0.22), transparent 44%), oklch(14% .05 322 / .84);
	filter: blur(18px);
	pointer-events: none;
	opacity: .9;
}

.thankyou-brand {
	position: relative;
	z-index: 1;
	align-items: center;
	margin-bottom: clamp(24px, 4vw, 42px);
}

.thankyou-brand img {
	filter: brightness(0) invert(1) drop-shadow(0 8px 18px oklch(5% .04 320 / .55));
}

.thankyou-shell {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.thankyou-form {
	margin-top: 0;
	padding: clamp(22px, 4vw, 36px);
	border: 1px solid oklch(96% .012 320 / .14);
	background: oklch(10% .04 315 / .64);
}

.thankyou-form .survey-heading {
	padding-top: 0;
	border-top: 0;
}

.thankyou-form .survey-heading h1 {
	margin: 14px 0 18px;
	font: 400 clamp(42px, 8vw, 62px)/.96 var(--display);
	letter-spacing: 0;
}

.survey-heading h2 {
	margin: 10px 0 10px;
	font: 400 clamp(31px, 4vw, 44px)/1 var(--display);
}

.survey-heading p:not(.eyebrow) {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 17px;
}

.survey-heading p:last-child {
	margin-bottom: 0;
	color: var(--accent-bright);
}

.thankyou-rating {
	padding: 24px 0 8px !important;
	border-top: 1px solid oklch(84% .09 88 / .22) !important;
}

.thankyou-page .star-rating {
	gap: 12px;
}

.thankyou-page .star-rating label {
	width: clamp(48px, 5vw, 62px);
	height: clamp(48px, 5vw, 62px);
	border-radius: 50%;
	background: oklch(0.53 0.28 314.4 / 0.23);
	font-size: clamp(25px, 3vw, 32px);
	color: oklch(18% .02 320 / .42);
	opacity: .38;
}

.thankyou-page .star-rating .is-filled {
	color: oklch(82% .2 88);
	opacity: 1;
	text-shadow: 0 0 20px oklch(82% .2 88 / .5);
}

.thankyou-page .star-rating .is-empty {
	color: oklch(18% .02 320 / .42);
	opacity: .38;
}

.thankyou-recommend {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.thankyou-recommend span {
	min-height: 62px;
	border-radius: 999px;
}

.aftercare-reminder {
	margin: clamp(24px, 4vw, 38px) 0 0;
	padding: 18px 20px;
	border: 1px solid oklch(84% .09 88 / .32);
	background: oklch(96% .012 320 / .08);
	color: var(--muted);
	font-size: 15px;
	text-align: center;
}

.aftercare-reminder a {
	color: var(--accent-bright);
	font-weight: 600;
}

@media (max-width: 900px) {
	.thankyou-page {
		padding: 16px;
		background-attachment: scroll;
	}

	.thankyou-panel {
		width: 100%;
		padding: 18px;
	}

	.thankyou-form {
		padding: 22px;
	}

	.thankyou-recommend {
		/* grid-template-columns: 1fr; */
	}
}

@media (max-width: 530px) {
	.thankyou-page {
		padding: 0;
	}

	.thankyou-panel {
		min-height: 100svh;
		border-width: 0;
		padding: 16px 14px 22px;
	}

	.thankyou-brand {
		margin-bottom: 18px;
	}

	.thankyou-brand img {
		width: min(190px, 72vw);
	}

	.thankyou-form {
		padding: 18px 16px;
	}

	.thankyou-form .survey-heading h1 {
		font-size: clamp(38px, 13vw, 48px);
		line-height: .98;
	}

	.survey-heading h2 {
		font-size: clamp(30px, 10vw, 38px);
	}

	.survey-heading p:not(.eyebrow) {
		font-size: 16px;
	}

	.thankyou-page .field-row {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.thankyou-page input,
	.thankyou-page select,
	.thankyou-page textarea {
		font-size: 16px;
		padding: 13px 12px;
	}

	.thankyou-page .star-rating {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 8px;
		width: 100%;
	}

	.thankyou-page .star-rating label {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		font-size: clamp(22px, 8vw, 30px);
	}

	.thankyou-recommend span {
		min-height: 54px;
		padding: 10px 12px;
	}

	.aftercare-reminder {
		padding: 16px 14px;
		font-size: 14px;
	}
}

.feedback-form {
	border-top: 1px solid var(--line);
	margin-top: 20px;
	padding-top: 30px;
}

.feedback-form h2 {
	margin-top: 12px;
	font: 400 clamp(36px, 5vw, 52px)/1 var(--display);
}

.feedback-form>p:not(.eyebrow) {
	color: var(--muted);
	font-size: 17px;
	margin: 16px 0 0;
}

.admin-page {
	align-items: start;
}

.admin-panel {
	margin-block: 5svh;
}

.admin-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.admin-heading .button {
	min-height: 42px;
	padding: 10px 15px;
}

.visit-stat {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin: 32px 0;
	border-block: 1px solid var(--line);
	padding: 22px 0;
	color: var(--muted);
}

.visit-stat strong {
	color: var(--accent);
	font: 400 52px/1 var(--display);
}

.traffic-dashboard {
	border-top: 1px solid var(--line);
	margin-top: 42px;
	padding-top: 36px;
}

.traffic-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.traffic-heading h2 {
	margin-top: 8px;
	font: 400 clamp(30px, 4vw, 42px)/1 var(--display);
}

.traffic-heading>p {
	max-width: 260px;
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.traffic-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 30px;
	border-block: 1px solid var(--line);
}

.traffic-metrics>div {
	display: grid;
	gap: 6px;
	min-width: 0;
	padding: 20px 18px;
	border-left: 1px solid var(--line);
}

.traffic-metrics>div:first-child {
	border-left: 0;
}

.traffic-metrics span,
.traffic-metrics small {
	color: var(--muted);
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.traffic-metrics strong {
	color: var(--accent);
	font: 400 clamp(30px, 4vw, 42px)/1 var(--display);
}

.traffic-metrics small {
	font-size: 10px;
	letter-spacing: .04em;
	text-transform: none;
}

.traffic-chart {
	display: grid;
	grid-template-columns: repeat(14, minmax(0, 1fr));
	align-items: end;
	gap: 7px;
	height: 190px;
	margin-top: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.traffic-bar {
	display: grid;
	align-items: end;
	height: 100%;
	min-width: 0;
}

.traffic-bar span {
	min-height: 5px;
	background: var(--accent);
	box-shadow: inset 0 0 0 1px oklch(96% .012 320/.15);
}

.traffic-bar small {
	position: absolute;
	transform: translateY(20px) rotate(-48deg);
	transform-origin: left top;
	color: var(--muted);
	font-size: 9px;
	white-space: nowrap;
}

.traffic-months {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin-top: 30px;
	border-bottom: 1px solid var(--line);
}

.traffic-months>div {
	display: grid;
	gap: 4px;
	padding: 0 12px 20px;
	border-left: 1px solid var(--line);
}

.traffic-months>div:first-child {
	border-left: 0;
	padding-left: 0;
}

.traffic-months span,
.traffic-months small {
	color: var(--muted);
	font-size: 10px;
}

.traffic-months strong {
	color: var(--accent);
	font: 400 26px/1 var(--display);
}

.traffic-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px;
	margin-top: 34px;
}

.traffic-detail-grid h3 {
	font: 500 20px/1 var(--display);
}

.traffic-list {
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.traffic-list li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--line);
	padding: 9px 0;
	color: var(--muted);
	font-size: 13px;
}

.traffic-list code {
	color: var(--ink);
	font: inherit;
}

.traffic-list strong {
	color: var(--accent);
	font-weight: 500;
}

.traffic-empty {
	margin: 15px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.admin-form {
	display: grid;
	gap: 19px;
}

.admin-form>p {
	color: var(--muted);
	margin: 0;
}

.admin-message {
	border: 1px solid var(--line);
	margin: 24px 0 0;
	padding: 13px 15px;
}

.admin-message.success {
	border-color: var(--accent);
	color: var(--accent-bright);
}

.admin-message.error {
	border-color: var(--accent-deep);
	color: var(--blush);
}

/* Viewport-led storytelling and horizontal specialty browsing. */
.split-section {
	align-items: center;
}

#services {
	min-height: auto;
	padding-block: 72px;
}

#services>.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#services .service-grid {
	grid-template-columns: repeat(3, 1fr);
	flex: 1 1 auto;
}

.visit {
	min-height: 90svh;
	display: grid;
	align-items: center;
}

.visit-grid {
	min-height: 90svh;
	align-items: center;
	padding-block: 64px;
}

.section-jump {
	position: fixed;
	right: clamp(1rem, 2.8vw, 2.5rem);
	bottom: clamp(1rem, 3.5vh, 2.5rem);
	z-index: 9;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 52px;
	padding: 8px 9px 8px 19px;
	border: 1px solid oklch(84% .09 88/.68);
	border-radius: 999px;
	background: oklch(22% .06 313/.92);
	box-shadow: var(--shadow-soft);
	color: var(--ink);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .11em;
	text-decoration: none;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.section-jump:hover,
.section-jump:focus-visible {
	border-color: var(--accent);
	background: var(--card-raised);
	outline: none;
	transform: translateY(-3px);
}

.section-jump-icon {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--accent);
	color: var(--paper-deep);
	font-size: 20px;
	line-height: 1;
	transition: transform .2s ease;
}

.section-jump:hover .section-jump-icon {
	transform: translateY(2px);
}

.section-jump.is-top-link .section-jump-icon {
	transform: rotate(180deg);
}

.section-jump.is-top-link:hover .section-jump-icon {
	transform: rotate(180deg) translateY(2px);
}

@media (max-width:800px) {
	#services {
		height: auto;
		min-height: 90svh;
		overflow: visible;
	}

	.service-grid {
		grid-template-columns: none !important;
		grid-auto-columns: minmax(280px, 82vw);
		margin-inline: calc((100vw - (100% + 2.25rem)) / -2);
		padding-inline: 1.125rem;
	}

	.service-card {
		height: 480px;
	}

	.visit-grid {
		min-height: 90svh;
		padding-block: 64px;
	}

	.section-jump-label {
		display: none;
	}

	.section-jump {
		right: 1rem;
		bottom: 1rem;
		min-height: 0;
		padding: 7px;
	}

	.section-jump-icon {
		width: 42px;
		height: 42px;
	}
}

/* 404 Not Found Page */
.not-found-page {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 48px 1.5rem;
	background: linear-gradient(135deg, oklch(17% .055 315/.95) 0%, oklch(15% .05 315/.85) 100%);
	position: relative;
	overflow: hidden;
}

.not-found-page::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 80%, oklch(84% .09 88/.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, oklch(78% .09 355/.06) 0%, transparent 50%);
	z-index: 0;
}

.not-found-content {
	position: relative;
	z-index: 1;
}

.not-found-card {
	max-width: 600px;
	text-align: center;
	border: 1px solid var(--line);
	background: var(--card);
	padding: clamp(42px, 8vw, 72px);
	border-radius: 16px;
	box-shadow: var(--shadow-soft);
	animation: not-found-emerge .6s cubic-bezier(.16, 1, .3, 1) both;
}

.not-found-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 32px;
}

.not-found-emoji {
	display: inline-block;
	font-size: 48px;
	animation: sparkle 2s ease-in-out infinite;
}

.not-found-emoji:nth-child(2) {
	animation-delay: 0.2s;
}

.not-found-emoji:nth-child(3) {
	animation-delay: 0.4s;
}

.not-found-title {
	font: 400 clamp(72px, 12vw, 120px)/1 var(--display);
	margin: 0;
	color: var(--accent);
	letter-spacing: -.02em;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fade-in-up .6s ease-out .1s both;
}

.not-found-card h2 {
	font: 400 clamp(32px, 6vw, 48px)/1.1 var(--display);
	margin: 24px 0 16px;
	color: var(--ink);
	animation: fade-in-up .6s ease-out .2s both;
}

.not-found-copy {
	max-width: 480px;
	margin: 0 auto 14px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.6;
	animation: fade-in-up .6s ease-out .3s both;
}

.not-found-subcopy {
	max-width: 480px;
	margin: 0 auto 32px;
	color: var(--accent-bright);
	font-size: 16px;
	font-style: italic;
	animation: fade-in-up .6s ease-out .4s both;
}

.not-found-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin: 36px 0;
	animation: fade-in-up .6s ease-out .5s both;
}

.not-found-actions .button {
	min-height: 48px;
	padding: 12px 24px;
}

.not-found-accent {
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	animation: fade-in-up .6s ease-out .6s both;
}

.not-found-accent p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.not-found-accent a {
	color: var(--accent-bright);
	font-weight: 500;
	text-decoration: none;
	transition: color .2s;
}

.not-found-accent a:hover {
	color: var(--accent);
	text-decoration: underline;
}

@keyframes sparkle {

	0%,
	100% {
		opacity: .6;
		transform: scale(1) translateY(0);
	}

	50% {
		opacity: 1;
		transform: scale(1.15) translateY(-8px);
	}
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes not-found-emerge {
	from {
		opacity: 0;
		transform: scale(.95) translateY(30px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@media (max-width: 600px) {
	.not-found-page {
		padding: 32px 1rem;
	}

	.not-found-card {
		padding: 36px 24px;
	}

	.not-found-title {
		font-size: 64px;
	}

	.not-found-actions {
		flex-direction: column;
		gap: 12px;
	}

	.not-found-actions .button {
		width: 100%;
	}

	.not-found-emoji {
		font-size: 36px;
	}
}

.survey-heading {
	padding-top: 25px;
	border-top: 1px solid rgba(100, 100, 100, .5);
}

.choice-icon {
	font-weight: 100;
}

main {
	margin-top: -10px;
}

@media (max-width: 800px) {
	.booking-page-header {
		top: max(1rem, env(safe-area-inset-top));
		width: calc(100% - 2rem);
		min-height: 70px;
	}

	.booking-page-call span {
		display: none;
	}

	.booking-landing-hero {
		min-height: 100svh;
		height: auto;
		padding: 7rem 1.5rem 4rem;
	}

	.booking-landing-intro {
		max-width: 38rem;
	}

	.booking-landing-intro h1 {
		font-size: clamp(2.5rem, 12vw, 3.75rem);
	}

	.booking-hero-detail {
		display: none;
	}

	.booking-landing-points,
	.booking-service-list {
		grid-template-columns: 1fr;
	}

	.booking-landing-points div {
		padding: 0 0 1rem;
		border-right: 0;
		border-bottom: 1px solid oklch(84% .09 88/.3);
	}

	.booking-landing-points div:last-child {
		border-bottom: 0;
	}

	.booking-landing-booking {
		width: calc(100% - 2rem);
		grid-template-columns: 1fr;
		gap: 2.5rem;
		margin-top: 0;
		padding: 4rem 0;
	}

	.booking-landing-booking-copy {
		display: none;
	}

	.booking-landing-form {
		margin-top: 0;
	}

	.booking-landing-services {
		width: calc(100% - 2rem);
		padding: 4rem 0;
	}

	.booking-landing-newsletter {
		width: calc(100% - 2rem);
		padding: 0 0 4rem;
	}

	.booking-footer-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		width: calc(100% - 2rem);
		padding: 3rem 0 1.5rem;
		text-align: center;
		justify-items: center;
	}

	.booking-footer-brand p {
		max-width: none;
	}

	.booking-footer-details,
	.booking-footer-links {
		justify-items: center;
	}
}

@media (prefers-reduced-motion: reduce) {

	.booking-landing-hero::before,
	.booking-hero-detail {
		animation: none;
	}
}

/* ---------------------------------------------------------------------------
   Admin sections navigation, surveys, messaging & survey star rating
   --------------------------------------------------------------------------- */

.admin-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 38px;
	border-bottom: 1px solid var(--line);
	padding-bottom: 22px;
}

.admin-nav-brand {
	text-decoration: none;
}

.admin-nav-brand img {
	display: block;
	width: 164px;
	height: auto;
	filter: drop-shadow(0 3px 8px oklch(8% .04 320/.5));
}

.admin-nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.admin-nav-links a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 16px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color .2s, color .2s, background .2s;
}

.admin-nav-links a:hover {
	border-color: var(--accent);
	color: var(--accent-bright);
}

.admin-nav-links a.is-active {
	border-color: var(--accent);
	background: var(--accent);
	color: var(--paper-deep);
}

.nav-badge {
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	margin-left: 7px;
	border-radius: 999px;
	padding: 0 5px;
	background: var(--accent-deep);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}

.admin-panel-wide {
	width: min(1440px, 100%);
}

.admin-subcopy {
	max-width: 620px;
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 15px;
}

.admin-subcopy code {
	color: var(--accent-bright);
	font-size: 13px;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin: 30px 0;
}

.stat-grid>div {
	display: grid;
	gap: 6px;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 18px;
	background: oklch(96% .012 320/.05);
}

.stat-grid span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.stat-grid strong {
	color: var(--accent-bright);
	font: 400 34px/1 var(--display);
}

.admin-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: 12px;
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.admin-table th {
	border-bottom: 1px solid var(--line);
	padding: 13px 15px;
	color: var(--accent);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-align: left;
	text-transform: uppercase;
	white-space: nowrap;
}

.admin-table td {
	border-bottom: 1px solid oklch(84% .09 88/.12);
	padding: 13px 15px;
	vertical-align: top;
}

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

.admin-table tbody tr {
	transition: background .15s;
}

.admin-table tbody tr:hover {
	background: oklch(96% .012 320/.05);
}

.admin-table small {
	color: var(--muted);
}

.cell-nowrap {
	white-space: nowrap;
}

.cell-comment {
	max-width: 260px;
}

.row-unread td {
	background: oklch(84% .09 88/.06);
}

.stars {
	color: oklch(96% .012 320/.3);
	font-size: 16px;
	letter-spacing: .1em;
}

.stars b {
	color: var(--accent);
	font-weight: 400;
}

.pill {
	display: inline-block;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 4px 11px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pill-good {
	border-color: oklch(72% .13 155/.6);
	color: oklch(85% .12 155);
}

.pill-bad {
	border-color: oklch(64% .14 25/.6);
	color: oklch(78% .12 40);
}

.admin-empty {
	margin: 0;
	padding: 34px 20px;
	color: var(--muted);
	text-align: center;
}

.muted-note {
	color: var(--muted);
}

.button-small {
	min-height: 34px;
	padding: 7px 14px;
	font-size: 11px;
}

.conversation-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin: 28px 0;
}

.conversation-summary>div {
	display: grid;
	gap: 5px;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 14px 16px;
	background: oklch(96% .012 320/.05);
}

.conversation-summary span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.conversation-summary strong {
	font-size: 14px;
	font-weight: 500;
	overflow-wrap: anywhere;
}

.conversation-original {
	margin: 0 0 8px;
	border-left: 3px solid var(--accent);
	border-radius: 0 12px 12px 0;
	padding: 18px 22px;
	background: oklch(96% .012 320/.05);
}

.conversation-original p:last-child {
	margin-bottom: 0;
	color: var(--ink);
}

.message-thread {
	display: grid;
	gap: 14px;
	margin: 28px 0;
}

.message-bubble {
	max-width: min(560px, 88%);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 14px 18px;
	background: oklch(96% .012 320/.06);
}

.message-bubble.from-admin {
	justify-self: end;
	border-color: oklch(84% .09 88/.55);
	background: oklch(84% .09 88/.1);
}

.message-bubble.from-client {
	justify-self: start;
}

.message-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	margin-bottom: 7px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.message-body {
	margin: 0;
	font-size: 15px;
	white-space: pre-wrap;
}

.reply-form textarea {
	min-height: 110px;
}

/* Star rating — large tap targets, mobile first */
.star-field legend {
	margin-bottom: 6px;
}

.star-rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 10px;
}

.star-rating input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.star-rating label {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: oklch(32% .02 320/.18);
	opacity: .34;
	cursor: pointer;
	font-size: clamp(36px, 7vw, 52px);
	line-height: 1;
	transition: color .15s ease, opacity .15s ease, transform .15s ease, text-shadow .15s ease;
}

.star-rating label:hover {
	transform: translateY(-1px) scale(1.04);
}

.star-rating .is-filled {
	color: oklch(82% .2 88);
	opacity: 1;
	text-shadow: 0 0 18px oklch(82% .2 88 / .45);
}

.star-rating .is-empty {
	color: oklch(32% .02 320/.18);
	opacity: .34;
}

.star-rating input:focus-visible+label {
	outline: 2px solid oklch(84% .09 88/.25);
	outline-offset: 4px;
	border-radius: 8px;
}

.star-rating-label {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 530px) {
	.star-rating {
		gap: 7px;
	}

	.star-rating label {
		width: 50px;
		height: 50px;
		font-size: 26px;
	}

	.admin-nav {
		flex-direction: column;
		align-items: stretch;
	}

	.admin-nav-links a {
		flex: 1 1 auto;
		justify-content: center;
	}

	.message-bubble {
		max-width: 100%;
	}
}

/* ==========================================================================
   Light redesign theme — used on /new and SEO service pages.
   Compatible with existing public-page class names so files can later swap.
   ========================================================================== */

.theme-new {
	--ink: #2B282B;
	--ink-brighter: #4A214F;
	--muted: #5E545C;
	--line: #E4D6DC;
	--paper: #F8F4F0;
	--paper-deep: #4A214F;
	--card: #FFFDFC;
	--card-raised: #EDE6EF;
	--accent: #4A214F;
	--accent-bright: #6A3A70;
	--accent-deep: #4A214F;
	--blush: #C7AA78;
	--shadow-soft: 0 18px 40px -28px rgba(74, 33, 79, .28);
}

.theme-new {
	background: var(--ivory, #F8F4F0);
	color: var(--charcoal, #2B282B);
	overflow-x: hidden;
}

html:has(.theme-new) {
	overflow-x: hidden;
}

.theme-new main {
	margin-top: 0;
}

.theme-new .site-header {
	background: rgba(248, 244, 240, .92);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 8px 24px rgba(74, 33, 79, .06);
	backdrop-filter: blur(18px);
}

.theme-new .header-inner {
	position: relative;
	gap: 12px;
	min-width: 0;
}

.theme-new .site-header .brand {
	min-width: 0;
	flex: 1 1 auto;
}

.theme-new .site-header .brand img {
	display: block;
	width: auto;
	max-width: min(195px, 46vw);
	height: auto;
	max-height: 44px;
}

.theme-new .header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.theme-new .header-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 12px;
	border-radius: 999px;
	color: var(--plum, #4A214F);
	text-decoration: none;
	font-weight: 600;
}

.theme-new .header-book {
	display: none;
}

.theme-new #site-nav a {
	color: var(--charcoal, #2B282B);
	letter-spacing: .08em;
}

.theme-new #site-nav .nav-book {
	color: #fff;
	padding: 12px 20px;
}

.theme-new .button-primary {
	background: var(--plum, #4A214F);
	border-color: var(--plum, #4A214F);
	color: #fff;
}

.theme-new .button-primary:hover {
	background: #6A3A70;
	color: #fff;
}

.theme-new .button-quiet {
	background: transparent;
	color: var(--plum, #4A214F);
	border-color: var(--plum, #4A214F);
}

.theme-new .hero {
	min-height: min(88svh, 820px);
	display: grid;
	align-items: end;
	background: #1c101d;
	color: #fff;
}

.theme-new .hero-media {
	position: absolute;
	inset: 0;
}

.theme-new .hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.02);
}

.theme-new .hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(28, 16, 29, .78) 0%, rgba(28, 16, 29, .42) 48%, rgba(28, 16, 29, .12) 100%);
}

.theme-new .hero-content {
	opacity: 1;
	transform: none;
	padding-block: 120px 72px;
	color: #fff;
}

.theme-new .hero-content h1 {
	color: #fff;
	max-width: 14ch;
}

.theme-new .hero-copy,
.theme-new .hero-tagline {
	color: rgba(255, 255, 255, .86);
}

.theme-new .hero-tagline {
	margin: 14px 0 0;
	font: 400 1.25rem/1.3 var(--display);
	color: var(--champagne, #C7AA78);
}

.theme-new .hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 253, 252, .9);
	font-size: 14px;
}

.theme-new .hero-trust li+li {
	border-left: 1px solid rgba(199, 170, 120, .45);
	padding-left: 22px;
}

.theme-new .hero .button-quiet {
	color: #fff;
	border-color: rgba(255, 255, 255, .62);
}

.theme-new .hero .eyebrow {
	color: #C7AA78;
}

.theme-new .trust-strip {
	background: var(--lavender, #EDE6EF);
	padding: 22px 0;
}

.theme-new .trust-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.theme-new .trust-strip p {
	margin: 0;
	color: var(--plum, #4A214F);
	font-size: 14px;
	font-weight: 600;
}

.theme-new .section {
	min-height: 0;
	padding-block: 72px;
	background: var(--ivory, #F8F4F0);
}

.theme-new .section-intro h2,
.theme-new .split-section h2,
.theme-new .visit h2 {
	color: var(--plum, #4A214F);
}

.theme-new .service-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-new .service-card {
	height: auto;
	display: flex;
	flex-direction: column;
	background: var(--white, #FFFDFC);
	box-shadow: var(--shadow-soft);
}

.theme-new .service-meta {
	display: grid;
	gap: 8px;
	margin: 0 0 18px;
}

.theme-new .service-meta div {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 8px;
	font-size: 14px;
}

.theme-new .service-meta dt {
	color: var(--plum, #4A214F);
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-size: 11px;
}

.theme-new .service-meta dd {
	margin: 0;
	color: var(--muted);
}

.theme-new .card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: auto;
}

.theme-new .price-note,
.theme-new .range-note {
	margin-top: 22px;
	color: var(--muted);
	font-size: 15px;
}

.theme-new .lash-finder,
.theme-new .results-section,
.theme-new .pmu-cta,
.theme-new .beauty-list {
	background: #fffdfc;
}

.theme-new .style-grid,
.theme-new .results-grid,
.theme-new .review-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.theme-new .style-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.theme-new .style-card,
.theme-new .result-card,
.theme-new .review-card {
	margin: 0;
	background: var(--white, #FFFDFC);
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
}

.theme-new .style-card img,
.theme-new .result-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.theme-new .style-card h3,
.theme-new .style-card p,
.theme-new .result-card figcaption {
	padding: 0 14px;
}

.theme-new .style-card h3 {
	margin: 12px 0 4px;
	font: 400 1.35rem/1.1 var(--display);
	color: var(--plum, #4A214F);
}

.theme-new .style-card p,
.theme-new .result-card figcaption {
	padding-bottom: 16px;
	color: var(--muted);
	font-size: 14px;
}

.theme-new .result-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.theme-new .result-filters button {
	min-height: 44px;
	padding: 8px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	color: var(--plum, #4A214F);
	cursor: pointer;
	font: 600 13px/1 var(--body);
}

.theme-new .result-filters button.is-active,
.theme-new .result-filters button:hover {
	background: var(--plum, #4A214F);
	border-color: var(--plum, #4A214F);
	color: #fff;
}

.theme-new .result-card.is-hidden {
	display: none;
}

.theme-new .authority-section {
	background: var(--lavender, #EDE6EF);
	animation: none;
}

.theme-new .authority-points div {
	grid-template-columns: 1fr;
	gap: 6px;
}

.theme-new .authority-stat {
	margin-top: 28px;
	color: var(--plum, #4A214F);
	font: 400 1.8rem/1 var(--display);
}

.theme-new .authority-stat span {
	display: block;
	font-size: 3rem;
}

.theme-new .authority-image {
	border: 0;
	border-radius: 16px;
	min-height: 420px;
}

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

.theme-new .review-card {
	padding: 24px;
}

.theme-new .review-card p {
	margin: 0 0 16px;
	font: 400 1.35rem/1.35 var(--display);
	color: var(--plum, #4A214F);
}

.theme-new .review-card cite {
	color: var(--muted);
	font-style: normal;
	font-size: 14px;
}

.theme-new .team-grid-core,
.theme-new .team-grid-hair {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	overflow: visible;
	scroll-snap-type: none;
}

.theme-new .team-card {
	flex: none;
	text-align: left;
}

.theme-new .team-actions,
.theme-new .team-card .button {
	width: 100%;
	margin-top: 12px;
}

.theme-new .team-specialties {
	color: var(--plum, #4A214F);
	font-size: 13px;
	font-weight: 600;
}

.theme-new .hair-artists {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--line);
}

.theme-new .team-grid-hair {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-new .pmu-cta {
	background: var(--plum, #4A214F);
	color: #fff;
}

.theme-new .pmu-cta h2,
.theme-new .pmu-cta .eyebrow,
.theme-new .pmu-cta p {
	color: #fff;
}

.theme-new .pmu-cta .button-primary {
	background: #fff;
	border-color: #fff;
	color: var(--plum, #4A214F);
}

.theme-new .pmu-cta .button-primary:hover {
	background: var(--lavender, #EDE6EF);
	color: var(--plum, #4A214F);
}

.theme-new .pmu-cta .button-quiet {
	color: #fff;
	border-color: rgba(255, 255, 255, .45);
}

.theme-new .beauty-list .nl-signup {
	width: 100%;
	margin: 0;
	background: #fff;
	border: 1px solid var(--line);
	color: var(--charcoal, #2B282B);
}

.theme-new #book,
.theme-new #contact {
	background-image: none;
	background: var(--ivory, #F8F4F0);
	min-height: 0;
}

.theme-new .booking-steps {
	margin: 22px 0;
	padding-left: 1.1rem;
	color: var(--muted);
}

.theme-new .visit {
	background: #fffdfc;
	min-height: 0;
}

.theme-new .visit-grid {
	min-height: 0;
	padding-block: 72px;
}

.theme-new iframe {
	filter: none;
	border-radius: 12px;
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 280px;
}

.theme-new img {
	max-width: 100%;
}

.theme-new .booking-container,
.theme-new .booking-container .salon-booking {
	max-width: 100%;
}

.theme-new .booking-container .salon-booking {
	width: 100%;
	padding: 22px 16px;
	box-sizing: border-box;
}

.theme-new input,
.theme-new select,
.theme-new textarea {
	background: #fff;
	border-color: #d7bfd8;
	color: var(--charcoal, #2B282B);
	color-scheme: light;
}

.theme-new footer {
	background: var(--plum, #4A214F);
	color: #f6eef4;
	padding-top: 0;
}

.theme-new footer::before {
	display: none;
}

.theme-new .footer-inner {
	grid-template-columns: .8fr 1.4fr;
	color: #f6eef4;
}

.theme-new .footer-columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.theme-new .footer-col {
	display: grid;
	gap: 8px;
	align-content: start;
	animation: none;
}

.theme-new .footer-col a {
	color: rgba(255, 255, 255, .82);
	text-transform: none;
	letter-spacing: 0;
	font-size: 14px;
}

.theme-new footer .eyebrow,
.theme-new .footer-legacy {
	color: var(--champagne, #C7AA78);
}

.theme-new .copyright {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0 1.5rem 28px;
	text-align: center;
	color: rgba(255, 255, 255, .7);
}

.theme-new .service-landing .service-hero {
	padding: 72px 0 36px;
	background: linear-gradient(180deg, #ede6ef, #f8f4f0);
}

.theme-new .service-hero-grid,
.theme-new .service-detail-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 40px;
	align-items: center;
}

.theme-new .service-hero img,
.theme-new .service-landing .result-card img {
	width: 100%;
	border-radius: 16px;
	object-fit: cover;
}

.theme-new .service-menu {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.theme-new .service-menu li {
	border-bottom: 1px solid var(--line);
	padding: 8px 0;
}

.theme-new .service-faq summary {
	color: var(--plum, #4A214F);
}

@media (max-width: 1024px) {

	.theme-new .trust-strip-grid,
	.theme-new .style-grid,
	.theme-new .results-grid,
	.theme-new .team-grid-core {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.theme-new .header-book {
		display: inline-flex;
		min-height: 44px;
		padding: 0 14px;
		font-size: 12px;
	}

	.theme-new .header-call {
		padding: 0;
		min-width: 44px;
	}

	.theme-new .menu-button {
		min-width: 44px;
		min-height: 44px;
		padding: 8px;
	}

	.theme-new .header-call-label,
	.theme-new #site-nav .nav-book {
		display: none;
	}

	.theme-new #site-nav {
		background: #fffdfc;
		left: 0;
		right: 0;
		width: 100%;
		padding: 12px 1.25rem 22px;
		box-sizing: border-box;
		z-index: 12;
	}

	.theme-new #site-nav a {
		padding: 14px 4px;
		overflow: visible;
	}

	.theme-new .hero-content {
		padding-block: 96px 48px;
	}

	.theme-new .hero-content h1 {
		font-size: clamp(36px, 11vw, 52px);
	}

	.theme-new .service-grid,
	.theme-new .style-grid,
	.theme-new .results-grid,
	.theme-new .review-grid,
	.theme-new .team-grid-core,
	.theme-new .team-grid-hair,
	.theme-new .footer-columns,
	.theme-new .service-hero-grid,
	.theme-new .service-detail-grid {
		grid-template-columns: 1fr !important;
		grid-auto-columns: unset;
	}

	.theme-new .service-grid {
		margin-inline: 0;
		padding-inline: 0;
	}

	.theme-new .trust-strip-grid {
		grid-template-columns: 1fr !important;
	}

	.theme-new .service-card {
		height: auto;
	}

	.theme-new .hero-trust {
		flex-direction: column;
		gap: 8px;
	}

	.theme-new .hero-trust li+li {
		border-left: 0;
		padding-left: 0;
	}

	.theme-new .action-row {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.theme-new .action-row .button {
		width: 100%;
		justify-content: center;
	}

	.theme-new .team-actions .button,
	.theme-new .team-card .button {
		width: 100%;
		box-sizing: border-box;
	}

	.theme-new .form-card,
	.theme-new .booking-container .salon-booking {
		padding: 22px 16px;
	}

	.theme-new .nl-signup {
		width: 100%;
		margin: 0;
		padding: 22px 16px;
	}

	.theme-new .footer-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.theme-new .footer-columns {
		gap: 22px;
	}

	.theme-new footer .brand img {
		max-width: 168px;
		height: auto;
	}
}

@media (max-width: 375px) {
	.theme-new .container {
		width: min(100% - 1.5rem, 1120px);
	}

	.theme-new .site-header .brand img {
		max-height: 38px;
		max-width: min(168px, 44vw);
	}
}

@media (max-width: 320px) {
	.theme-new .container {
		width: min(100% - 1.25rem, 1120px);
	}

	.theme-new .header-book {
		padding: 0 10px;
		font-size: 11px;
	}
}