:root {
	--color-ink: #111111;
	--color-muted: #8f7a66;
	--color-bg: #f5f1eb;
	--color-panel: #ffffff;
	--color-soft: #ebe4db;
	--color-accent: #b79672;
	--color-accent-dark: #111111;
	--color-warm: #b79672;
	--color-border: #d8cbbb;
	--shadow: 0 18px 45px rgba(17, 17, 17, 0.09);
	--shadow-soft: 0 12px 30px rgba(17, 17, 17, 0.07);
	--shadow-hover: 0 22px 48px rgba(17, 17, 17, 0.13);
	--motion-soft: cubic-bezier(0.22, 1, 0.36, 1);
	--motion-pop: cubic-bezier(0.2, 0.8, 0.2, 1);
	--radius: 8px;
	--container: 1120px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-ink);
	font-family: Aptos, Calibri, Avenir, "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-ink);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--color-accent);
}

h1,
h2,
h3 {
	margin: 0 0 0.65rem;
	color: var(--color-ink);
	line-height: 1.16;
	font-weight: 720;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.15rem, 8vw, 4.65rem);
	max-width: 18ch;
}

h2 {
	font-size: clamp(1.55rem, 5vw, 2.45rem);
}

h3 {
	font-size: 1.18rem;
}

p {
	margin: 0 0 1rem;
}

ul {
	padding-left: 1.25rem;
}

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.narrow {
	max-width: 760px;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--color-ink);
	color: #fff;
	clip: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(245, 241, 235, 0.94);
	border-bottom: 1px solid rgba(216, 203, 187, 0.85);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	gap: 1rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	max-width: min(58vw, 245px);
	text-decoration: none;
}

.brand-logo {
	display: block;
	width: min(58vw, 245px);
	height: auto;
	border-radius: 4px;
	background: transparent;
}

.custom-logo {
	display: block;
	width: min(58vw, 245px);
	height: auto;
}

.brand-name {
	color: var(--color-ink);
	font-size: 1.08rem;
	font-weight: 760;
}

.brand-tagline {
	color: var(--color-muted);
	font-size: 0.82rem;
}

.menu-toggle {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-panel);
	color: var(--color-ink);
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-line::before {
	transform: translateY(-7px);
}

.menu-toggle-line::after {
	transform: translateY(5px);
}

.menu-open .menu-toggle-line {
	background: transparent;
}

.menu-open .menu-toggle-line::before {
	background: var(--color-ink);
	transform: translateY(1px) rotate(45deg);
}

.menu-open .menu-toggle-line::after {
	background: var(--color-ink);
	transform: translateY(-1px) rotate(-45deg);
}

.primary-nav {
	position: absolute;
	inset: 72px 1rem auto;
	display: none;
	padding: 0.75rem;
	background: var(--color-panel);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.menu-open .primary-nav {
	display: block;
}

.menu {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	display: block;
	min-height: 44px;
	padding: 0.7rem 0.85rem;
	border-radius: 6px;
	color: var(--color-ink);
	text-decoration: none;
	font-weight: 650;
	transition: background-color 220ms var(--motion-soft), color 220ms var(--motion-soft), transform 220ms var(--motion-pop);
}

.menu a:hover,
.menu a:focus {
	background: var(--color-soft);
	color: var(--color-ink);
	transform: translateX(3px);
}

.hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: 590px;
	padding: clamp(3.5rem, 12vw, 6rem) 0;
	overflow: hidden;
	background: var(--color-bg);
}

.split,
.cta-box,
.footer-grid {
	display: grid;
	gap: 2rem;
}

.footer-grid > * {
	min-width: 0;
}

.site-footer p,
.footer-contact,
.footer-menu a,
.footer-local-links a,
.footer-bottom {
	overflow-wrap: break-word;
	word-break: normal;
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(245, 241, 235, 0.98) 0%, rgba(245, 241, 235, 0.95) 36%, rgba(245, 241, 235, 0.62) 60%, rgba(245, 241, 235, 0.18) 100%),
		linear-gradient(180deg, rgba(245, 241, 235, 0.7) 0%, rgba(245, 241, 235, 0.1) 100%);
	content: "";
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 2;
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.hero-copy {
	max-width: min(100%, 640px);
	padding: 1rem 0;
}

.hero h1 {
	max-width: 24ch;
	font-size: clamp(1.9rem, 6.4vw, 3.75rem);
}

.hero-lead {
	max-width: 35rem;
	color: #2b2926;
	font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-note {
	max-width: 34rem;
	color: var(--color-muted);
	font-size: 0.98rem;
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	min-height: 100%;
	overflow: hidden;
	border-radius: 0;
	box-shadow: none;
}

.hero-media img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: 64% center;
}

.intro-video-module {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 80;
	width: min(420px, calc(100vw - 2rem));
	overflow: hidden;
	border: 1px solid rgba(183, 150, 114, 0.5);
	border-radius: var(--radius);
	background: #111111;
	box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22);
}

.intro-video-module[hidden] {
	display: none;
}

.intro-video-topbar,
.intro-video-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 42px;
	padding: 0.55rem 0.75rem;
	background: #111111;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.intro-video-close,
.intro-video-toggle {
	display: inline-grid;
	place-items: center;
	min-width: 36px;
	min-height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
	font: inherit;
}

.intro-video-close {
	font-size: 1.3rem;
	line-height: 1;
}

.intro-video-toggle {
	padding: 0 0.7rem;
}

.intro-video-close:hover,
.intro-video-close:focus,
.intro-video-toggle:hover,
.intro-video-toggle:focus {
	border-color: var(--color-accent);
	background: rgba(183, 150, 114, 0.18);
}

.intro-video-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #f5f1eb;
}

.intro-scene {
	position: absolute;
	inset: 0;
	overflow: hidden;
	display: grid;
	align-items: end;
	padding: 1rem;
	opacity: 0;
	transform: scale(1.015);
	animation-duration: 24s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.intro-scene p,
.intro-scene strong {
	position: relative;
	z-index: 5;
	margin: 0;
	max-width: 88%;
	color: #fff;
	font-size: clamp(1.05rem, 4vw, 1.45rem);
	font-weight: 760;
	line-height: 1.16;
	text-shadow: 0 2px 18px rgba(17, 17, 17, 0.36);
}

.intro-scene p {
	padding: 0.85rem;
	border-left: 3px solid var(--color-accent);
	background: rgba(17, 17, 17, 0.68);
	backdrop-filter: blur(8px);
}

.intro-scene-question {
	background:
		radial-gradient(circle at 76% 22%, rgba(183, 150, 114, 0.46), transparent 28%),
		linear-gradient(135deg, #111111 0%, #2f2924 54%, #f5f1eb 55% 100%);
	animation-name: introSceneQuestion;
}

.intro-scene-retirement {
	background:
		linear-gradient(180deg, #f5f1eb 0 45%, rgba(183, 150, 114, 0.32) 46% 58%, #8f7a66 59% 100%);
	animation-name: introSceneRetirement;
}

.intro-scene-studies {
	background:
		radial-gradient(circle at 73% 22%, rgba(183, 150, 114, 0.24), transparent 22%),
		linear-gradient(140deg, #f5f1eb 0 49%, #111111 50% 100%);
	animation-name: introSceneStudies;
}

.intro-scene-family {
	background:
		radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.84), transparent 9%),
		linear-gradient(145deg, #f5f1eb 0%, #d8cbbb 50%, #8f7a66 100%);
	animation-name: introSceneFamily;
}

.intro-scene-freedom {
	background:
		linear-gradient(130deg, #111111 0 46%, #f5f1eb 47% 100%);
	animation-name: introSceneFreedom;
}

.intro-scene-final {
	place-items: center;
	align-content: center;
	gap: 0.7rem;
	padding: 1rem;
	background:
		radial-gradient(circle at 50% 12%, rgba(183, 150, 114, 0.2), transparent 34%),
		#f5f1eb;
	text-align: center;
	animation-name: introSceneFinal;
}

.intro-scene-final p {
	max-width: none;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111111;
	font-size: clamp(1.15rem, 4vw, 1.55rem);
	text-shadow: none;
}

.intro-scene-final img {
	position: relative;
	z-index: 5;
	width: min(78%, 290px);
	height: auto;
	border-radius: 4px;
	box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
}

.intro-scene-final strong {
	max-width: 92%;
	color: var(--color-muted);
	font-size: 0.82rem;
	text-shadow: none;
}

.intro-glow,
.intro-sun,
.intro-bench,
.intro-line-art,
.intro-path,
.intro-window,
.intro-diploma,
.intro-person {
	position: absolute;
	display: block;
}

.intro-glow {
	top: 18%;
	right: 16%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: rgba(183, 150, 114, 0.34);
	filter: blur(12px);
}

.intro-line-art-path {
	right: 10%;
	bottom: 12%;
	width: 48%;
	height: 54%;
	border: 2px solid rgba(183, 150, 114, 0.54);
	border-left: 0;
	border-bottom: 0;
	transform: skewX(-16deg);
}

.intro-sun {
	top: 14%;
	right: 17%;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 0 34px rgba(255, 255, 255, 0.8);
}

.intro-bench {
	right: 18%;
	bottom: 28%;
	width: 116px;
	height: 10px;
	border-radius: 999px;
	background: #111111;
	box-shadow: 20px 19px 0 -7px #111111, -20px 19px 0 -7px #111111;
}

.intro-person {
	z-index: 3;
	width: 18px;
	height: 54px;
	border-radius: 999px 999px 7px 7px;
	background: var(--intro-outfit, #111111);
	box-shadow: -5px 38px 0 -5px var(--intro-outfit, #111111), 5px 38px 0 -5px var(--intro-outfit, #111111);
	transform: scale(var(--intro-scale, 1));
	transform-origin: bottom center;
}

.intro-person::before {
	position: absolute;
	top: -16px;
	left: 50%;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #f0cfb6;
	content: "";
	transform: translateX(-50%);
}

.intro-person::after {
	position: absolute;
	top: 10px;
	left: 50%;
	width: 36px;
	height: 3px;
	border-radius: 999px;
	background: var(--intro-outfit, #111111);
	content: "";
	transform: translateX(-50%) rotate(var(--intro-arm, -8deg));
}

.intro-person-one {
	right: 34%;
	bottom: 33%;
	--intro-outfit: #111111;
}

.intro-person-two {
	right: 25%;
	bottom: 32%;
	--intro-outfit: #8f7a66;
	--intro-scale: 0.92;
	--intro-arm: 10deg;
}

.intro-person-parent {
	left: 23%;
	bottom: 25%;
	--intro-outfit: #8f7a66;
	--intro-arm: -14deg;
}

.intro-person-graduate {
	left: 48%;
	bottom: 25%;
	--intro-outfit: #111111;
	--intro-scale: 0.92;
	--intro-arm: 14deg;
}

.intro-diploma {
	z-index: 4;
	left: 56%;
	bottom: 52%;
	width: 42px;
	height: 28px;
	border: 2px solid #111111;
	background: #f5f1eb;
	transform: rotate(-7deg);
}

.intro-diploma::after {
	position: absolute;
	right: 5px;
	bottom: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-accent);
	content: "";
}

.intro-path {
	right: 16%;
	bottom: 0;
	width: 40%;
	height: 62%;
	background: rgba(245, 241, 235, 0.68);
	clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
}

.intro-family-a {
	left: 27%;
	bottom: 27%;
	--intro-outfit: #111111;
}

.intro-family-b {
	left: 37%;
	bottom: 26%;
	--intro-outfit: #8f7a66;
	--intro-scale: 0.92;
}

.intro-family-c {
	left: 48%;
	bottom: 24%;
	--intro-outfit: #b79672;
	--intro-scale: 0.72;
}

.intro-family-d {
	left: 56%;
	bottom: 24%;
	--intro-outfit: #f5f1eb;
	--intro-scale: 0.68;
}

.intro-window {
	top: 15%;
	right: 13%;
	width: 38%;
	height: 54%;
	border: 2px solid rgba(183, 150, 114, 0.55);
	border-radius: 999px 999px 0 0;
}

.intro-person-free {
	right: 28%;
	bottom: 27%;
	--intro-outfit: #111111;
	--intro-arm: 18deg;
}

.intro-video-module::after {
	position: absolute;
	right: 0.75rem;
	bottom: 47px;
	left: 0.75rem;
	z-index: 6;
	height: 3px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.16);
	content: "";
}

.intro-video-module::before {
	position: absolute;
	right: 0.75rem;
	bottom: 47px;
	left: 0.75rem;
	z-index: 7;
	height: 3px;
	background: var(--color-accent);
	content: "";
	transform-origin: left center;
	animation: introProgress 24s linear infinite;
}

.intro-video-module.is-paused *,
.intro-video-module.is-paused::before {
	animation-play-state: paused !important;
}

@keyframes introSceneQuestion {
	0%, 14% {
		opacity: 1;
		transform: scale(1);
	}
	18%, 100% {
		opacity: 0;
		transform: scale(1.015);
	}
}

@keyframes introSceneRetirement {
	0%, 15% {
		opacity: 0;
		transform: translateX(2%) scale(1.015);
	}
	19%, 30% {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
	34%, 100% {
		opacity: 0;
		transform: translateX(-2%) scale(1.015);
	}
}

@keyframes introSceneStudies {
	0%, 31% {
		opacity: 0;
		transform: scale(1.015);
	}
	35%, 46% {
		opacity: 1;
		transform: scale(1);
	}
	50%, 100% {
		opacity: 0;
		transform: scale(1.015);
	}
}

@keyframes introSceneFamily {
	0%, 47% {
		opacity: 0;
		transform: translateX(2%) scale(1.015);
	}
	51%, 62% {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
	66%, 100% {
		opacity: 0;
		transform: translateX(-2%) scale(1.015);
	}
}

@keyframes introSceneFreedom {
	0%, 63% {
		opacity: 0;
		transform: scale(1.015);
	}
	67%, 78% {
		opacity: 1;
		transform: scale(1);
	}
	82%, 100% {
		opacity: 0;
		transform: scale(1.015);
	}
}

@keyframes introSceneFinal {
	0%, 79% {
		opacity: 0;
		transform: scale(1.015);
	}
	84%, 100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes introProgress {
	0% {
		transform: scaleX(0);
	}
	100% {
		transform: scaleX(1);
	}
}

.heritage-film {
	position: relative;
	order: -1;
	overflow: hidden;
	min-height: 360px;
	border: 1px solid rgba(183, 150, 114, 0.42);
	border-radius: var(--radius);
	background: #111111;
	box-shadow: var(--shadow);
}

.film-screen {
	position: relative;
	overflow: hidden;
	min-height: 310px;
	aspect-ratio: 4 / 3.25;
	background: #111111;
}

.film-scene {
	position: absolute;
	inset: 0;
	overflow: hidden;
	padding: 1.1rem;
	opacity: 0;
	transform: scale(1.03);
	animation-duration: 18s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.film-scene-family {
	background:
		radial-gradient(circle at 74% 22%, rgba(255, 246, 228, 0.92) 0 7%, transparent 8%),
		linear-gradient(155deg, #f5f1eb 0%, #d8cbbb 48%, #8f7a66 100%);
	animation-name: filmSceneOne;
}

.film-scene-retirement {
	background:
		linear-gradient(180deg, rgba(245, 241, 235, 0.98) 0 46%, rgba(183, 150, 114, 0.5) 47% 57%, #8f7a66 58% 100%);
	animation-name: filmSceneTwo;
}

.film-scene-graduation {
	background:
		radial-gradient(circle at 72% 26%, rgba(183, 150, 114, 0.28) 0 18%, transparent 19%),
		linear-gradient(140deg, #111111 0%, #332b24 54%, #f5f1eb 55% 100%);
	animation-name: filmSceneThree;
}

.film-caption {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	left: 1rem;
	z-index: 4;
	max-width: 28rem;
	padding: 1rem;
	border-left: 4px solid var(--color-accent);
	background: rgba(17, 17, 17, 0.78);
	color: #fff;
	backdrop-filter: blur(10px);
}

.film-caption span {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--color-accent);
	font-size: 0.78rem;
	font-weight: 760;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.film-caption strong {
	display: block;
	font-size: clamp(1.05rem, 4vw, 1.45rem);
	line-height: 1.2;
}

.film-footer {
	display: grid;
	gap: 0.7rem;
	padding: 0.85rem 1rem 1rem;
	background: #111111;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
}

.film-progress {
	position: relative;
	display: block;
	height: 3px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.18);
}

.film-progress::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 100%;
	background: var(--color-accent);
	content: "";
	transform-origin: left center;
	animation: filmProgress 18s linear infinite;
}

.film-sun,
.film-horizon,
.film-path,
.film-opening,
.film-sea,
.film-bench,
.film-arch,
.film-diploma,
.film-confetti,
.film-person {
	position: absolute;
	display: block;
}

.film-sun {
	top: 14%;
	right: 18%;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 0 48px rgba(255, 255, 255, 0.8);
}

.film-horizon {
	right: 0;
	bottom: 30%;
	left: 0;
	height: 38%;
	background: linear-gradient(170deg, transparent 0 32%, rgba(255, 255, 255, 0.45) 33% 52%, transparent 53%);
}

.film-path {
	right: 18%;
	bottom: 0;
	width: 34%;
	height: 58%;
	background: linear-gradient(172deg, transparent 0 20%, rgba(245, 241, 235, 0.72) 21% 100%);
	clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
}

.film-opening {
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 50%;
	background: rgba(17, 17, 17, 0.72);
	animation: filmOpening 18s ease-in-out infinite;
}

.film-opening-left {
	left: 0;
	transform-origin: left center;
}

.film-opening-right {
	right: 0;
	transform-origin: right center;
}

.film-person {
	z-index: 3;
	width: 24px;
	height: 76px;
	border-radius: 12px 12px 8px 8px;
	background: var(--person-outfit, #111111);
	box-shadow: -7px 54px 0 -6px var(--person-outfit, #111111), 7px 54px 0 -6px var(--person-outfit, #111111);
	transform: scale(var(--person-scale, 1));
	transform-origin: bottom center;
}

.film-person::before {
	position: absolute;
	top: -22px;
	left: 50%;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: #f1cfb6;
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05);
	content: "";
	transform: translateX(-50%);
}

.film-person::after {
	position: absolute;
	top: 12px;
	left: 50%;
	width: 46px;
	height: 4px;
	border-radius: 999px;
	background: var(--person-outfit, #111111);
	content: "";
	transform: translateX(-50%) rotate(var(--person-arm, -8deg));
}

.film-person-a {
	bottom: 26%;
	left: 28%;
	--person-outfit: #111111;
	--person-scale: 0.96;
	--person-arm: 8deg;
}

.film-person-b {
	bottom: 24%;
	left: 38%;
	--person-outfit: #8f7a66;
	--person-scale: 0.9;
}

.film-person-c {
	bottom: 22%;
	left: 49%;
	--person-outfit: #b79672;
	--person-scale: 0.72;
}

.film-person-d {
	bottom: 23%;
	left: 57%;
	--person-outfit: #f5f1eb;
	--person-scale: 0.66;
}

.film-sea {
	right: 0;
	bottom: 30%;
	left: 0;
	height: 15%;
	background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px 13px);
}

.film-bench {
	right: 18%;
	bottom: 28%;
	width: 130px;
	height: 12px;
	border-radius: 999px;
	background: #111111;
	box-shadow: 22px 22px 0 -7px #111111, -22px 22px 0 -7px #111111;
}

.film-person-retiree {
	right: 28%;
	bottom: 33%;
	--person-outfit: #111111;
	--person-scale: 0.82;
	--person-arm: 16deg;
}

.film-arch {
	top: 13%;
	right: 9%;
	width: 42%;
	height: 62%;
	border: 2px solid rgba(183, 150, 114, 0.45);
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
}

.film-person-parent {
	bottom: 27%;
	left: 24%;
	--person-outfit: #f5f1eb;
	--person-scale: 0.96;
	--person-arm: -18deg;
}

.film-person-graduate {
	bottom: 26%;
	left: 47%;
	--person-outfit: #111111;
	--person-scale: 0.9;
	--person-arm: 18deg;
}

.film-diploma {
	z-index: 4;
	left: 53%;
	bottom: 55%;
	width: 48px;
	height: 32px;
	border: 2px solid #111111;
	background: #f5f1eb;
	transform: rotate(-8deg);
}

.film-diploma::after {
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-accent);
	content: "";
}

.film-confetti {
	z-index: 3;
	width: 8px;
	height: 28px;
	background: var(--color-accent);
	opacity: 0.9;
	animation: filmConfetti 18s ease-in-out infinite;
}

.film-confetti-a {
	top: 24%;
	left: 62%;
	transform: rotate(18deg);
}

.film-confetti-b {
	top: 18%;
	left: 72%;
	background: #f5f1eb;
	transform: rotate(-26deg);
}

.film-confetti-c {
	top: 32%;
	left: 79%;
	background: #8f7a66;
	transform: rotate(42deg);
}

@keyframes filmSceneOne {
	0%, 28% {
		opacity: 1;
		transform: scale(1);
	}
	33%, 100% {
		opacity: 0;
		transform: scale(1.03);
	}
}

@keyframes filmSceneTwo {
	0%, 30% {
		opacity: 0;
		transform: translateX(2%) scale(1.02);
	}
	36%, 61% {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
	66%, 100% {
		opacity: 0;
		transform: translateX(-2%) scale(1.02);
	}
}

@keyframes filmSceneThree {
	0%, 63% {
		opacity: 0;
		transform: scale(1.03);
	}
	69%, 94% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.02);
	}
}

@keyframes filmOpening {
	0%, 5% {
		transform: scaleX(1);
	}
	18%, 100% {
		transform: scaleX(0.08);
	}
}

@keyframes filmProgress {
	0% {
		transform: scaleX(0);
	}
	100% {
		transform: scaleX(1);
	}
}

@keyframes filmConfetti {
	0%, 63% {
		opacity: 0;
		transform: translateY(-12px) rotate(0deg);
	}
	74%, 92% {
		opacity: 0.9;
		transform: translateY(12px) rotate(48deg);
	}
	100% {
		opacity: 0;
		transform: translateY(26px) rotate(96deg);
	}
}

.eyebrow {
	margin-bottom: 0.75rem;
	color: #76583b;
	font-size: 0.8rem;
	font-weight: 760;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.4rem;
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.78rem 1.08rem;
	overflow: hidden;
	border: 1px solid var(--color-ink);
	border-radius: var(--radius);
	background: var(--color-ink);
	color: #fff;
	font-weight: 720;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
	will-change: transform;
}

.button::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: translateX(-40%);
	transition: opacity 240ms var(--motion-soft), transform 420ms var(--motion-soft);
}

.button:hover,
.button:focus {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-ink);
}

.button:hover::after,
.button:focus::after {
	opacity: 1;
	transform: translateX(40%);
}

.button-secondary,
.button-light {
	background: transparent;
	color: var(--color-ink);
	border-color: var(--color-accent);
	box-shadow: none;
}

.button-light {
	border-color: var(--color-accent);
	color: #fff;
}

.booking-cta {
	display: grid;
	gap: 0.65rem;
	margin-top: 1rem;
}

.booking-cta p {
	max-width: 62rem;
	margin: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.section {
	padding: 3.2rem 0;
}

.intro-band,
.soft-section {
	background: var(--color-soft);
}

.three-points,
.cards {
	display: grid;
	gap: 1rem;
}

.three-points h2 {
	font-size: 1.12rem;
}

.split {
	align-items: center;
}

.rounded-media,
.service-card,
.content-card,
.notice,
.cta-box {
	border-radius: var(--radius);
}

.rounded-media {
	box-shadow: var(--shadow);
}

.portrait-card {
	margin: 0;
}

.portrait-card img {
	width: 100%;
	object-fit: cover;
	border-radius: var(--radius);
	background: var(--color-soft);
	box-shadow: var(--shadow);
}

.portrait-card-home img,
.portrait-card-main img {
	aspect-ratio: 4 / 5;
}

.portrait-card figcaption {
	margin-top: 0.85rem;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.about-portrait-block {
	display: grid;
	gap: 1.6rem;
	align-items: center;
	margin-bottom: 2rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	font-weight: 720;
	transition: color 220ms var(--motion-soft), transform 220ms var(--motion-soft), text-decoration-color 220ms var(--motion-soft);
}

.text-link:hover,
.text-link:focus {
	transform: translateX(4px);
}

.local-area-section {
	background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%);
}

.local-links {
	display: grid;
	gap: 0.65rem;
	align-self: center;
}

.local-links a {
	position: relative;
	display: block;
	padding: 0.82rem 0.95rem;
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--color-accent);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.72);
	color: var(--color-ink);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(17, 17, 17, 0.035);
}

.local-links a:hover,
.local-links a:focus {
	border-color: var(--color-accent);
	background: #fff;
	transform: translate3d(6px, -2px, 0);
	box-shadow: var(--shadow-soft);
}

.section-heading {
	max-width: 680px;
	margin-bottom: 1.5rem;
}

.service-card {
	padding: 1.25rem;
	background: var(--color-panel);
	border: 1px solid var(--color-border);
	box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
}

.trust-list {
	display: grid;
	gap: 0.65rem;
	align-self: center;
	padding: 1.15rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
}

.trust-list p {
	margin: 0;
	color: var(--color-muted);
}

.trust-list strong {
	color: var(--color-ink);
}

.faq-list {
	display: grid;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

details {
	background: var(--color-panel);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

summary {
	min-height: 52px;
	padding: 0.85rem 1rem;
	cursor: pointer;
	font-weight: 720;
}

details p {
	padding: 0 1rem 1rem;
	color: var(--color-muted);
}

.cta-section {
	padding-top: 1rem;
}

.cta-box {
	align-items: center;
	padding: 1.5rem;
	background: var(--color-ink);
	color: #fff;
}

.cta-box h2,
.cta-box .eyebrow {
	color: #fff;
}

.cta-box p {
	color: rgba(255, 255, 255, 0.86);
}

.page-hero {
	padding: 3rem 0 2rem;
	background: var(--color-soft);
}

.page-hero h1 {
	max-width: 38ch;
	font-size: clamp(1.9rem, 6.2vw, 3.45rem);
}

.page-content h2 {
	margin-top: 2rem;
}

.page-content h2:first-child {
	margin-top: 0;
}

.check-list {
	display: grid;
	gap: 0.6rem;
	padding-left: 1.1rem;
}

.numbered-list {
	display: grid;
	gap: 0.65rem;
	padding-left: 1.25rem;
}

.process-list {
	display: grid;
	gap: 1rem;
}

.process-list article {
	padding: 1.2rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.72);
}

.process-list span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	margin-bottom: 0.75rem;
	border: 1px solid var(--color-accent);
	border-radius: 999px;
	color: var(--color-ink);
	font-weight: 760;
}

.local-page-mesh {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 1rem 0 1.5rem;
}

.local-page-mesh a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.75);
	color: var(--color-ink);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(17, 17, 17, 0.035);
	transition: transform 240ms var(--motion-pop), box-shadow 240ms var(--motion-soft), border-color 240ms var(--motion-soft), background-color 240ms var(--motion-soft);
}

.local-page-mesh a:hover,
.local-page-mesh a:focus {
	border-color: var(--color-accent);
	background: #fff;
	box-shadow: var(--shadow-soft);
	transform: translate3d(0, -3px, 0) scale(1.015);
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.9rem;
	margin: 0 0 1.25rem;
	color: var(--color-muted);
	font-size: 0.95rem;
}

.advice-grid {
	display: grid;
	gap: 1rem;
	margin: 1.5rem 0 2rem;
}

.advice-card {
	display: grid;
	gap: 0.55rem;
	padding: 1.2rem;
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--color-accent);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
}

.advice-card h2,
.advice-card h3 {
	margin: 0;
	font-size: 1.15rem;
}

.advice-card p {
	margin: 0;
	color: var(--color-muted);
}

.advice-card a {
	font-weight: 760;
}

.article-disclaimer,
.article-cta,
.related-links {
	margin: 1.8rem 0;
	padding: 1.15rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
}

.article-disclaimer {
	border-left: 4px solid var(--color-accent);
	color: var(--color-muted);
}

.article-cta {
	background: var(--color-ink);
	color: #fff;
}

.article-cta p {
	color: rgba(255, 255, 255, 0.86);
}

.article-cta .button-secondary {
	color: #fff;
}

.related-links ul {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 0;
	padding-left: 1.1rem;
}

.comparison-table-wrap {
	overflow-x: auto;
	margin: 1.4rem 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
}

.comparison-table {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
	padding: 0.9rem;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
}

.comparison-table th {
	background: var(--color-soft);
	color: var(--color-ink);
}

.contact-grid {
	display: grid;
	gap: 1.2rem;
	margin: 1.5rem 0 2rem;
}

.contact-portrait {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
}

.contact-portrait img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border: 2px solid rgba(183, 150, 114, 0.55);
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
}

.contact-portrait p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.45;
}

.contact-social-block {
	margin: 1rem 0;
}

.contact-social-block p {
	margin-bottom: 0.5rem;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0.8rem 0 0;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0.4rem 0.75rem;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	color: var(--color-ink);
	font-weight: 760;
	text-decoration: none;
}

.social-links a:hover,
.social-links a:focus {
	border-color: var(--color-accent);
	color: var(--color-ink);
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.form-grid {
	display: grid;
	gap: 1rem;
}

.contact-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	pointer-events: none !important;
}

.contact-honeypot input {
	width: 1px;
	min-height: 0;
	padding: 0;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

.contact-form p {
	margin: 0;
}

.contact-form label {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--color-ink);
	font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
	color: var(--color-ink);
	font: inherit;
}

.contact-form textarea {
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: 3px solid rgba(183, 150, 114, 0.32);
	border-color: var(--color-accent);
}

.form-note {
	color: var(--color-muted);
	font-size: 0.94rem;
}

.form-status {
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	font-weight: 700;
}

.form-status.success {
	background: #edf7ee;
	color: #225b2b;
}

.form-status.error {
	background: #fff0ec;
	color: #8a2b17;
}

.stacked-services {
	display: grid;
	gap: 1rem;
	margin: 1.5rem 0;
}

.stacked-services section,
.notice,
.content-card {
	padding: 1.25rem;
	background: var(--color-panel);
	border: 1px solid var(--color-border);
}

.notice {
	border-left: 4px solid var(--color-accent);
}

.motion-ready .reveal-item {
	opacity: 0;
	filter: blur(4px);
	transform: translate3d(0, 14px, 0) scale(0.985);
	transition:
		opacity 720ms var(--motion-soft),
		transform 760ms var(--motion-soft),
		filter 760ms var(--motion-soft),
		box-shadow 260ms var(--motion-soft),
		border-color 260ms var(--motion-soft),
		background-color 260ms var(--motion-soft);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform, filter;
}

.motion-ready .reveal-item.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0) scale(1);
}

.service-card,
.process-list article,
.content-card,
.notice,
.trust-list,
.portrait-card,
.local-links a,
.cta-box,
.button,
.button-secondary,
.button-light {
	transition:
		transform 260ms var(--motion-pop),
		box-shadow 260ms var(--motion-soft),
		border-color 260ms var(--motion-soft),
		background-color 260ms var(--motion-soft),
		color 260ms var(--motion-soft);
}

.service-card:hover,
.service-card:focus-within,
.process-list article:hover,
.process-list article:focus-within,
.content-card:hover,
.content-card:focus-within,
.trust-list:hover,
.portrait-card:hover,
.portrait-card:focus-within {
	border-color: rgba(183, 150, 114, 0.65);
	box-shadow: var(--shadow-hover);
	transform: translate3d(0, -6px, 0) scale(1.01);
}

.button:hover,
.button:focus,
.button-secondary:hover,
.button-secondary:focus,
.button-light:hover,
.button-light:focus {
	box-shadow: var(--shadow-hover);
	transform: translate3d(0, -3px, 0) scale(1.015);
}

.button:active,
.button-secondary:active,
.button-light:active,
.local-links a:active,
.service-card:active,
.content-card:active {
	transform: translate3d(0, -1px, 0) scale(0.995);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.motion-ready .reveal-item {
		opacity: 1;
		filter: none;
		transform: none;
	}
}

.google-reviews {
	background: var(--color-bg);
}

.review-grid {
	display: grid;
	gap: 1rem;
}

.review-showcase {
	position: relative;
	padding: clamp(1rem, 3vw, 1.4rem);
	background: linear-gradient(135deg, #fff 0%, rgba(245, 241, 235, 0.86) 100%);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.review-showcase::before {
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--color-accent), rgba(183, 150, 114, 0.18));
	content: "";
}

.review-toolbar {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.review-score {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	color: var(--color-muted);
	font-weight: 760;
}

.review-controls {
	display: flex;
	gap: 0.5rem;
}

.review-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: #fff;
	color: var(--color-ink);
	font: inherit;
	font-size: 1.55rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
	transition: transform 240ms var(--motion-pop), box-shadow 240ms var(--motion-soft), border-color 240ms var(--motion-soft), background-color 240ms var(--motion-soft);
}

.review-nav:hover,
.review-nav:focus {
	border-color: var(--color-accent);
	background: var(--color-soft);
	box-shadow: var(--shadow-soft);
	transform: translate3d(0, -3px, 0) scale(1.06);
}

.review-nav:active {
	transform: translate3d(0, -1px, 0) scale(0.98);
}

.review-track {
	display: grid;
	grid-auto-columns: minmax(260px, 1fr);
	grid-auto-flow: column;
	gap: 1rem;
	padding: 0.15rem 0.15rem 0.8rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.review-track:focus {
	outline: 3px solid rgba(183, 150, 114, 0.32);
	outline-offset: 4px;
}

.review-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 100%;
	padding: 1.25rem;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	scroll-snap-align: start;
	transition: transform 260ms var(--motion-pop), box-shadow 260ms var(--motion-soft), border-color 260ms var(--motion-soft);
}

.review-card.is-active,
.review-card:hover,
.review-card:focus-within {
	border-color: rgba(183, 150, 114, 0.72);
	box-shadow: var(--shadow-hover);
	transform: translate3d(0, -6px, 0) scale(1.01);
}

.review-card blockquote {
	margin: 0;
	color: var(--color-ink);
	font-size: 1.02rem;
	line-height: 1.65;
}

.review-stars {
	margin: 0;
	color: var(--color-accent);
	font-size: 1rem;
	letter-spacing: 0;
}

.review-author {
	margin: auto 0 0;
	color: var(--color-muted);
	font-weight: 700;
}

.review-note {
	max-width: 760px;
	margin: 1rem 0 0;
	color: #68584a;
	font-size: 0.93rem;
	line-height: 1.6;
}

.review-dots {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
	justify-content: center;
	margin-top: 0.75rem;
}

.review-dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 1px solid var(--color-accent);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: transform 220ms var(--motion-pop), background-color 220ms var(--motion-soft), width 220ms var(--motion-soft);
}

.review-dot.is-active {
	width: 26px;
	background: var(--color-accent);
}

.review-dot:hover,
.review-dot:focus {
	transform: scale(1.25);
}

.site-footer {
	padding: 2.5rem 0 1.25rem;
	background: var(--color-ink);
	color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
	color: #fff;
	font-weight: 760;
}

.footer-logo {
	display: block;
	width: min(100%, 310px);
	height: auto;
	margin-bottom: 1rem;
	border-radius: 4px;
	background: transparent;
	filter: brightness(0) invert(1);
	opacity: 0.96;
}

.footer-contact {
	margin: 1rem 0 0;
	font-style: normal;
	line-height: 1.75;
}

.footer-social-links {
	margin-top: 1rem;
}

.footer-heading {
	margin: 0 0 0.75rem;
	color: #fff;
	font-size: 1rem;
}

.footer-menu {
	display: grid;
	gap: 0.45rem;
	align-items: flex-start;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.95rem;
	line-height: 1.45;
}

.footer-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0.1rem 0;
	overflow-wrap: normal;
	word-break: normal;
	transition: color 220ms var(--motion-soft), background-color 220ms var(--motion-soft), transform 220ms var(--motion-pop);
}

.footer-local-links {
	display: grid;
	gap: 0.45rem 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.93rem;
	line-height: 1.45;
}

.footer-local-links a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0.1rem 0;
	overflow-wrap: normal;
	word-break: normal;
	transition: color 220ms var(--motion-soft), transform 220ms var(--motion-pop);
}

.site-footer a {
	color: #fff;
}

.site-footer .social-links a {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
	transition: transform 240ms var(--motion-pop), background-color 240ms var(--motion-soft), border-color 240ms var(--motion-soft);
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	transform: translate3d(0, -3px, 0) scale(1.04);
}

.footer-menu a:hover,
.footer-menu a:focus {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	transform: translateX(4px);
}

.footer-local-links a:hover,
.footer-local-links a:focus {
	color: #fff;
	transform: translateX(4px);
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.9rem;
	overflow-wrap: normal;
}

.footer-bottom p {
	max-width: 100%;
	margin: 0;
	line-height: 1.7;
}

.footer-bottom a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	overflow-wrap: normal;
	white-space: nowrap;
}

.footer-legal-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1.6;
}

.footer-legal-list li {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.footer-legal-list li:not(:last-child)::after {
	width: 1px;
	height: 1em;
	margin-left: 0.7rem;
	background: rgba(255, 255, 255, 0.24);
	content: "";
}

@media (max-width: 640px) {
	.intro-video-module {
		display: none;
	}

	.review-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.review-track {
		grid-auto-columns: minmax(82%, 1fr);
		margin-inline: -0.15rem;
	}

	.footer-legal-list {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.25rem;
	}

	.footer-legal-list li:not(:last-child)::after {
		display: none;
	}
}

@media (min-width: 720px) {
	.three-points,
	.cards {
		grid-template-columns: repeat(3, 1fr);
	}

	.review-track {
		grid-auto-columns: calc((100% - 2rem) / 3);
		overflow-x: hidden;
	}

	.advice-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.form-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-portrait-block {
		grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
	}

	.process-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta-box {
		grid-template-columns: 1fr auto;
	}
}

@media (min-width: 900px) {
	.menu-toggle {
		display: none;
	}

	.primary-nav {
		position: static;
		display: block;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.menu {
		flex-direction: row;
		align-items: center;
		gap: 0.15rem;
	}

	.hero {
		min-height: min(720px, calc(100vh - 72px));
		padding: 5.5rem 0;
	}

	.hero-media img {
		object-position: center right;
	}

	.heritage-film {
		order: initial;
	}

	.split {
		grid-template-columns: 1fr 0.9fr;
	}

	.contact-grid {
		grid-template-columns: 0.78fr 1.22fr;
		align-items: start;
	}

	.process-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		align-items: start;
	}

	.footer-local-links {
		grid-template-columns: repeat(2, minmax(11.5rem, 1fr));
	}

	.advice-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1180px) {
	.footer-grid {
		grid-template-columns: minmax(18rem, 1fr) minmax(11rem, 0.6fr) minmax(28rem, 1.25fr);
	}

	.footer-grid > div:last-child {
		grid-column: 1 / -1;
		justify-self: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.film-scene {
		opacity: 0;
	}

	.film-scene-family {
		opacity: 1;
	}

	.intro-scene {
		opacity: 0;
	}

	.intro-scene-final {
		opacity: 1;
	}

	.intro-video-module::before {
		display: none;
	}
}


/* Conversion et ergonomie mobile - v1.0.59 */
.header-booking-button,
.mobile-conversion-bar {
	display: none;
}

@media (min-width: 1120px) {
	.primary-nav {
		margin-left: auto;
	}

	.header-booking-button {
		display: inline-flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding: 0.65rem 0.95rem;
		border: 1px solid var(--color-ink);
		border-radius: 6px;
		background: var(--color-ink);
		color: #fff;
		font-size: 0.91rem;
		font-weight: 760;
		text-decoration: none;
		transition: transform 220ms var(--motion-pop), box-shadow 220ms var(--motion-soft), background-color 220ms var(--motion-soft);
	}

	.header-booking-button:hover,
	.header-booking-button:focus {
		background: #2b2926;
		color: #fff;
		box-shadow: var(--shadow-soft);
		transform: translateY(-2px);
	}
}

@media (max-width: 719px) {
	body {
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}

	.text-link,
	.footer-contact a,
	.footer-menu a,
	.site-footer .social-links a,
	.footer-bottom a {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
	}

	.review-nav {
		width: 46px;
		height: 46px;
	}

	.review-dots {
		gap: 0;
	}

	.review-dot,
	.review-dot.is-active {
		position: relative;
		display: inline-grid;
		place-items: center;
		width: 44px;
		height: 44px;
		border: 0;
		background: transparent;
	}

	.review-dot::before {
		width: 11px;
		height: 11px;
		border: 1px solid var(--color-accent);
		border-radius: 999px;
		background: transparent;
		content: "";
		transition: width 220ms var(--motion-soft), background-color 220ms var(--motion-soft), transform 220ms var(--motion-pop);
	}

	.review-dot.is-active::before {
		width: 26px;
		background: var(--color-accent);
	}

	.review-dot:hover,
	.review-dot:focus {
		transform: none;
	}

	.review-dot:hover::before,
	.review-dot:focus::before {
		transform: scale(1.15);
	}

	.mobile-conversion-bar {
		position: fixed;
		z-index: 90;
		right: 0.75rem;
		bottom: max(0.75rem, env(safe-area-inset-bottom));
		left: 0.75rem;
		display: grid;
		grid-template-columns: minmax(92px, 0.65fr) minmax(0, 1.35fr);
		gap: 0.5rem;
		padding: 0.5rem;
		border: 1px solid rgba(183, 150, 114, 0.55);
		border-radius: 8px;
		background: rgba(245, 241, 235, 0.96);
		box-shadow: 0 16px 40px rgba(17, 17, 17, 0.18);
		backdrop-filter: blur(14px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(calc(100% + 2rem));
		transition: opacity 220ms var(--motion-soft), transform 260ms var(--motion-pop), visibility 220ms;
	}

	.mobile-conversion-bar.is-visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.mobile-conversion-bar a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		min-height: 48px;
		padding: 0.65rem 0.75rem;
		border-radius: 6px;
		font-size: 0.9rem;
		font-weight: 760;
		line-height: 1.15;
		text-align: center;
		text-decoration: none;
	}

	.mobile-call-link {
		border: 1px solid var(--color-border);
		background: #fff;
		color: var(--color-ink);
	}

	.mobile-booking-link {
		border: 1px solid var(--color-ink);
		background: var(--color-ink);
		color: #fff;
	}
}

@media (max-width: 359px) {
	body {
		padding-bottom: calc(124px + env(safe-area-inset-bottom));
	}

	.mobile-conversion-bar {
		grid-template-columns: 1fr;
	}

	.mobile-conversion-bar a {
		min-height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mobile-conversion-bar {
		transition: none;
	}
}
