:root {
	color-scheme: light;
	--color-deep: #1e293b;
	--color-accent: #475569;
	--color-mid: #94a3b8;
	--color-soft: #e2e8f0;
	--color-bg: #e8edf3;
	--color-surface: #fff;
	--color-surface-alt: #d5dde7;
	--color-block: var(--color-deep);
	--color-block-text: var(--color-soft);
	--color-text: var(--color-deep);
	--color-text-muted: #3d4b5c;
	--color-border: color-mix(in srgb, var(--color-deep) 16%, transparent);
	--color-focus: var(--color-deep);
	--color-cta: var(--color-deep);
	--color-cta-text: #fff;
	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Jost', system-ui, sans-serif;
	--step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
	--step-0: clamp(1.0625rem, 1.03rem + 0.2vw, 1.125rem);
	--step-1: clamp(1.2rem, 1.13rem + 0.35vw, 1.375rem);
	--step-2: clamp(1.45rem, 1.3rem + 0.7vw, 1.75rem);
	--step-3: clamp(1.8rem, 1.55rem + 1.2vw, 2.5rem);
	--step-4: clamp(2.2rem, 1.7rem + 2.4vw, 3.5rem);
	--step-5: clamp(2.6rem, 1.8rem + 4vw, 4.5rem);
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 1rem;
	--space-4: 1.5rem;
	--space-5: 2.5rem;
	--space-6: 4rem;
	--space-7: 6rem;
	--space-section: clamp(4.5rem, 9vw, 8rem);
	--container: 72rem;
	--measure: 62ch;
	--gutter: max(1rem, calc((100vw - var(--container)) / 2));
	--radius-sm: 0;
	--radius-md: 0;
	--radius-lg: 0;
	--shadow-sm: 0 1px 2px color-mix(in srgb, var(--color-deep) 10%, transparent);
	--shadow-md: 0 8px 24px color-mix(in srgb, var(--color-deep) 14%, transparent);
	--shadow-lg: 0 22px 50px color-mix(in srgb, var(--color-deep) 20%, transparent);
}
*,
:before,
:after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	:before,
	:after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
body {
	font-family: var(--font-body);
	font-size: var(--step-0);
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	margin: 0;
	font-weight: 400;
	line-height: 1.65;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--color-focus);
	outline-offset: 3px;
}
h1,
h2,
h3 {
	font-family: var(--font-display);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-wrap: balance;
	margin: 0;
	font-weight: 600;
	line-height: 1.05;
}
p {
	margin: 0;
}
.skip-link {
	z-index: 100;
	background: var(--color-surface);
	color: var(--color-text);
	box-shadow: var(--shadow-md);
	padding: 0.625rem 1rem;
	text-decoration: none;
	position: absolute;
	top: -100%;
	left: 1rem;
}
.skip-link:focus {
	top: 1rem;
}
.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}
.site-header {
	z-index: 40;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
}
.site-header__inner {
	align-items: center;
	gap: var(--space-4);
	min-height: 4.25rem;
	display: flex;
}
.site-header__brand {
	font-family: var(--font-display);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	align-items: center;
	gap: 0.6rem;
	margin-right: auto;
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
}
.site-header__icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
}
.site-nav {
	gap: var(--space-4);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: 500;
	display: none;
}
.site-nav a {
	color: var(--color-text-muted);
	border-bottom: 1px solid #0000;
	padding-block: 0.35rem;
	text-decoration: none;
	transition:
		color 0.15s,
		border-color 0.15s;
}
.site-nav a:hover {
	color: var(--color-text);
	border-color: var(--color-deep);
}
.site-header__inner .site-header__cta {
	min-height: 2.5rem;
	padding: 0.45rem 1.1rem;
	font-size: 0.75rem;
	display: none;
}
@media (width>=900px) {
	.site-nav,
	.site-header__inner .site-header__cta {
		display: inline-flex;
	}
}
.btn {
	min-height: 3rem;
	font-family: var(--font-body);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: var(--radius-sm);
	cursor: pointer;
	border: 1px solid #0000;
	justify-content: center;
	align-items: center;
	padding: 0.8125rem 1.75rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition:
		background-color 0.18s,
		color 0.18s,
		border-color 0.18s,
		box-shadow 0.18s;
	display: inline-flex;
}
.btn--primary {
	background: var(--color-cta);
	color: var(--color-cta-text);
	box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
	box-shadow: var(--shadow-md);
	background: #0f172a;
}
.btn--ghost {
	color: var(--color-text);
	border-color: color-mix(in srgb, var(--color-deep) 45%, transparent);
	background: 0 0;
}
.btn--ghost:hover {
	border-color: var(--color-deep);
	background: var(--color-surface);
}
.hero {
	isolation: isolate;
	align-items: flex-end;
	min-height: min(88vh, 46rem);
	display: flex;
	position: relative;
	overflow: hidden;
}
.hero__bg {
	z-index: -2;
	position: absolute;
	inset: 0;
}
.hero__bg img {
	object-fit: cover;
	object-position: 62% 50%;
	width: 100%;
	height: 100%;
}
.hero:after {
	content: '';
	z-index: -1;
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--color-bg) 55%, transparent) 0%,
		color-mix(in srgb, var(--color-bg) 88%, transparent) 52%,
		color-mix(in srgb, var(--color-bg) 96%, transparent) 100%
	);
	position: absolute;
	inset: 0;
}
.hero__inner {
	align-items: flex-start;
	gap: var(--space-4);
	width: 100%;
	padding: var(--space-7) var(--gutter) var(--space-6);
	flex-direction: column;
	display: flex;
}
.hero__eyebrow,
.section__label {
	margin: 0 0 var(--space-2);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-accent);
	font-size: 0.6875rem;
	font-weight: 500;
}
.hero__title {
	font-size: var(--step-5);
	max-width: 14ch;
	color: var(--color-deep);
}
.hero__tagline {
	font-family: var(--font-display);
	font-size: var(--step-1);
	text-transform: none;
	letter-spacing: 0;
	max-width: 28ch;
	color: var(--color-text);
	font-style: italic;
	font-weight: 500;
}
.hero__lead {
	max-width: 42ch;
	color: var(--color-text-muted);
}
.hero__actions {
	align-items: stretch;
	gap: var(--space-3);
	margin-top: var(--space-1);
	flex-direction: column;
	width: min(100%, 22rem);
	display: flex;
}
.hero__actions .btn {
	width: 100%;
}
.hero__nap {
	gap: var(--space-2);
	margin: var(--space-3) 0 0;
	font-size: var(--step--1);
	letter-spacing: 0.04em;
	color: var(--color-text-muted);
	flex-direction: column;
	padding: 0;
	list-style: none;
	display: flex;
}
.hero__nap li {
	align-items: center;
	gap: 0.55rem;
	display: flex;
}
.hero__nap svg {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
}
.hero__nap a {
	border-bottom: 1px solid #0000;
	text-decoration: none;
	transition: border-color 0.15s;
}
.hero__nap a:hover {
	border-color: var(--color-deep);
}
@media (width>=700px) {
	.hero__actions {
		flex-direction: row;
		align-items: center;
		width: auto;
	}
	.hero__actions .btn {
		width: auto;
	}
}
@media (width>=900px) {
	.hero {
		align-items: flex-end;
	}
	.hero:after {
		background: linear-gradient(
			100deg,
			color-mix(in srgb, var(--color-bg) 94%, transparent) 0%,
			color-mix(in srgb, var(--color-bg) 78%, transparent) 38%,
			color-mix(in srgb, var(--color-bg) 18%, transparent) 72%,
			transparent 100%
		);
	}
	.hero__inner {
		padding-block: var(--space-7) var(--space-6);
	}
	.hero__nap {
		gap: var(--space-4);
		flex-flow: wrap;
	}
}
.section {
	padding-block: var(--space-section);
}
.section--surface {
	background: var(--color-surface);
}
.section--tinted {
	background: var(--color-surface-alt);
}
.section__title {
	font-size: var(--step-3);
	max-width: 18ch;
}
.section-head {
	gap: var(--space-4);
	margin-bottom: var(--space-6);
	display: grid;
}
.section-head__lead {
	max-width: var(--measure);
	color: var(--color-text-muted);
}
@media (width>=900px) {
	.section-head {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		align-items: end;
	}
}
.soin-grid {
	border-top: 1px solid var(--color-border);
	border-left: 1px solid var(--color-border);
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
}
.soin {
	gap: var(--space-3);
	padding: var(--space-5);
	border-right: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	background: var(--color-surface);
	flex-direction: column;
	transition: background-color 0.18s;
	display: flex;
}
.soin:hover {
	background: color-mix(in srgb, var(--color-soft) 55%, white);
}
.soin__head {
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space-3);
	display: flex;
}
.soin__title {
	font-size: var(--step-1);
}
.soin__price {
	letter-spacing: 0.04em;
	white-space: nowrap;
	color: var(--color-deep);
	font-size: 0.9375rem;
	font-weight: 600;
}
.soin__description {
	color: var(--color-text-muted);
	max-width: 36ch;
}
.soin-note {
	margin-top: var(--space-5);
	font-size: var(--step--1);
	letter-spacing: 0.03em;
	color: var(--color-text-muted);
}
@media (width>=700px) {
	.soin-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.soin:last-child {
		grid-column: 1/-1;
	}
}
@media (width>=960px) {
	.soin-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.soin:last-child {
		grid-column: span 2;
	}
}
.about {
	gap: var(--space-6);
	padding-block: var(--space-section);
	background: var(--color-bg);
	display: grid;
}
.about__media {
	margin-inline: var(--gutter);
	position: relative;
}
.about__photo,
.about__inset {
	margin: 0;
	overflow: hidden;
}
.about__photo img,
.about__inset img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.about__photo img {
	min-height: 20rem;
}
.about__inset {
	border: 4px solid var(--color-bg);
	width: min(42%, 13rem);
	box-shadow: var(--shadow-lg);
	position: absolute;
	bottom: -1.25rem;
	right: 0;
}
.about__inset img {
	aspect-ratio: 1;
	min-height: 0;
}
.about__copy {
	padding-inline: var(--gutter);
	flex-direction: column;
	display: flex;
}
.about__text {
	margin-top: var(--space-4);
	color: var(--color-text-muted);
	max-width: var(--measure);
}
.diff-list {
	margin: var(--space-5) 0 0;
	gap: var(--space-3);
	flex-direction: column;
	padding: 0;
	list-style: none;
	display: flex;
}
.diff-list li {
	gap: var(--space-3);
	grid-template-columns: auto 1fr;
	align-items: baseline;
	font-size: 1.0625rem;
	line-height: 1.4;
	display: grid;
}
.diff-list li:before {
	content: '';
	background: var(--color-deep);
	width: 1.25rem;
	height: 1px;
	transform: translateY(-0.4em);
}
@media (width>=960px) {
	.about {
		align-items: center;
		gap: var(--space-7);
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
	}
	.about__media {
		margin-right: 0;
	}
	.about__copy {
		padding-right: var(--gutter);
		padding-left: 0;
	}
	.about__photo img {
		min-height: min(68vh, 36rem);
	}
	.about__inset {
		width: min(46%, 15rem);
		bottom: -1.5rem;
		right: -1rem;
	}
}
.gallery {
	margin-top: var(--space-6);
	gap: 0.5rem;
	display: grid;
}
.gallery figure {
	margin: 0;
	overflow: hidden;
}
.gallery img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	min-height: 14rem;
}
@media (width>=800px) {
	.gallery {
		grid-template-rows: 14rem 16rem;
		grid-template-columns: 1.05fr 0.95fr 0.95fr;
	}
	.gallery__feature {
		grid-row: 1/-1;
	}
	.gallery__wide {
		grid-column: 2/-1;
	}
	.gallery img,
	.gallery__feature img {
		min-height: 100%;
	}
}
.quotes {
	gap: var(--space-4);
	margin-top: var(--space-6);
	display: grid;
}
.quote {
	padding: var(--space-5);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	margin: 0;
}
.quote__stars {
	margin: 0 0 var(--space-3);
	letter-spacing: 0.18em;
	color: var(--color-deep);
	font-size: 0.75rem;
}
.quote blockquote {
	font-size: var(--step-0);
	max-width: 40ch;
	color: var(--color-text);
	margin: 0;
	line-height: 1.6;
}
.quote figcaption {
	margin-top: var(--space-4);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.8125rem;
	font-weight: 600;
}
.quote cite {
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--color-text-muted);
	margin-top: 0.25rem;
	font-style: normal;
	font-weight: 400;
	display: block;
}
@media (width>=800px) {
	.quotes {
		gap: var(--space-5);
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.split-heading {
	gap: var(--space-5);
	display: grid;
}
@media (width>=900px) {
	.split-heading {
		gap: var(--space-6);
		grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
		align-items: start;
	}
}
.faq-list {
	flex-direction: column;
	display: flex;
}
.faq-list details {
	border-top: 1px solid var(--color-border);
	padding-block: var(--space-3);
}
.faq-list details:last-child {
	border-bottom: 1px solid var(--color-border);
}
.faq-list summary {
	font-family: var(--font-display);
	font-size: var(--step-1);
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
	align-items: center;
	min-height: 44px;
	font-weight: 600;
	display: flex;
}
.faq-list details p {
	margin-top: var(--space-2);
	color: var(--color-text-muted);
	max-width: 60ch;
}
.booking {
	gap: var(--space-6);
	display: grid;
}
.booking__panel {
	gap: var(--space-4);
	padding: var(--space-5);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	flex-direction: column;
	display: flex;
}
.booking__phone {
	font-family: var(--font-display);
	font-size: var(--step-3);
	letter-spacing: 0.04em;
	text-transform: none;
	color: var(--color-deep);
	border-bottom: 1px solid var(--color-mid);
	align-self: start;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.18s;
}
.booking__phone:hover {
	border-color: var(--color-deep);
}
.booking__actions {
	gap: var(--space-3);
	flex-direction: column;
	display: flex;
}
.booking__actions .btn {
	width: 100%;
}
.contact-list {
	gap: var(--space-4);
	flex-direction: column;
	margin: 0;
	display: flex;
}
.contact-list div {
	gap: var(--space-1);
	display: grid;
}
.contact-list dt {
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-accent);
	align-items: center;
	gap: 0.75rem;
	font-size: 0.6875rem;
	font-weight: 500;
	display: flex;
}
.contact-list__icon {
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	width: 2.25rem;
	height: 2.25rem;
	color: var(--color-deep);
	justify-content: center;
	align-items: center;
	display: inline-flex;
}
.contact-list__icon svg {
	width: 1.05rem;
	height: 1.05rem;
}
.contact-list dd {
	overflow-wrap: anywhere;
	margin: 0 0 0 3rem;
	font-size: 1.0625rem;
}
.contact-list a {
	border-bottom: 1px solid #0000;
	text-decoration: none;
	transition: border-color 0.15s;
}
.contact-list a:hover {
	border-color: var(--color-deep);
}
.hours-box {
	margin-top: var(--space-5);
	padding: var(--space-4);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
}
.hours-box__title {
	margin: 0 0 var(--space-3);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.6875rem;
	font-weight: 600;
}
.hours-box ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.hours-box li {
	border-top: 1px solid var(--color-border);
	padding-block: 0.7rem;
	font-size: 0.975rem;
}
.hours-box li:first-child {
	border-top: 0;
	padding-top: 0;
}
@media (width>=700px) {
	.booking__actions {
		flex-flow: wrap;
	}
	.booking__actions .btn {
		width: auto;
	}
}
@media (width>=900px) {
	.booking {
		gap: var(--space-7);
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
	}
}
.site-footer {
	background: var(--color-block);
	color: var(--color-block-text);
	padding-block: var(--space-6);
	font-size: 0.9375rem;
}
.site-footer__grid {
	gap: var(--space-5);
	margin-bottom: var(--space-6);
	display: grid;
}
.site-footer__brand {
	font-family: var(--font-display);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.25rem;
	font-weight: 700;
	display: inline-flex;
}
.site-footer__brand svg {
	width: 1.2rem;
	height: 1.2rem;
}
.site-footer__address {
	margin-top: var(--space-2);
	color: var(--color-mid);
}
.site-footer__pages {
	gap: var(--space-3) var(--space-4);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	flex-wrap: wrap;
	font-size: 0.75rem;
	display: flex;
}
.site-footer__pages a {
	color: var(--color-soft);
	border-bottom: 1px solid #0000;
	text-decoration: none;
	transition: border-color 0.15s;
}
.site-footer__pages a:hover {
	border-color: #fff;
}
.site-footer__legal-title {
	margin-bottom: var(--space-2);
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 600;
}
.site-footer__legal {
	max-width: 70ch;
	color: var(--color-mid);
}
.site-footer__meta {
	margin-top: var(--space-5);
	padding-top: var(--space-4);
	color: var(--color-mid);
	border-top: 1px solid #ffffff29;
	font-size: 0.875rem;
}
@media (width>=900px) {
	.site-footer__grid {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: start;
	}
	.site-footer__pages {
		justify-content: flex-end;
	}
}
.mobile-call-bar {
	z-index: 50;
	padding: var(--space-2);
	background: color-mix(in srgb, var(--color-surface) 95%, transparent);
	backdrop-filter: blur(8px);
	border-top: 1px solid var(--color-border);
	box-shadow: 0 -4px 20px color-mix(in srgb, var(--color-deep) 12%, transparent);
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}
.mobile-call-bar .btn {
	width: 100%;
}
@media (width>=900px) {
	.mobile-call-bar {
		display: none;
	}
}
body.has-mobile-call-bar {
	padding-bottom: 4.75rem;
}
@media (width>=900px) {
	body.has-mobile-call-bar {
		padding-bottom: 0;
	}
}
.page-404 {
	justify-content: center;
	align-items: flex-start;
	gap: var(--space-4);
	min-height: 70vh;
	padding-block: var(--space-section);
	flex-direction: column;
	display: flex;
}
.page-404 h1 {
	font-size: var(--step-4);
}
.page-more {
	margin-top: var(--space-4);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-deep);
	text-underline-offset: 0.2em;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: underline;
	display: inline-block;
}
.section-more {
	margin: var(--space-4) 0 0;
}
.page-main {
	background: var(--color-surface);
}
.page-article {
	gap: var(--space-4);
	max-width: 48rem;
	display: grid;
}
.page-breadcrumb {
	gap: var(--space-2);
	font-size: var(--step--1);
	color: var(--color-text-muted);
	flex-wrap: wrap;
	display: flex;
}
.page-breadcrumb a {
	border-bottom: 1px solid #0000;
	text-decoration: none;
}
.page-breadcrumb a:hover {
	border-color: var(--color-deep);
}
.page-title {
	font-size: var(--step-4);
	max-width: 18ch;
}
.page-lead {
	font-size: var(--step-1);
	max-width: var(--measure);
	color: var(--color-text-muted);
}
.page-split {
	gap: var(--space-5);
	align-items: start;
	display: grid;
}
@media (width>=900px) {
	.page-split {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	}
}
.page-split img {
	width: 100%;
	height: auto;
}
