:root {
	--bg: #faf7f1;
	--bg-secondary: #f7f1ea;
	--bg-beige: #efe5d8;
	--bg-warm: #e8ddcf;
	--text: #1f1a17;
	--muted: #6f625a;
	--olive: #5f6f4e;
	--olive-soft: #6c7a57;
	--olive-deep: #3f4a32;
	--terracotta: #b67759;
	--rose: #a36b6a;
	--gold: #c9a46a;
	--border: #e6ddd2;
	--surface: rgba(255, 255, 255, 0.7);
	--shadow-soft: 0 16px 38px rgba(82, 60, 40, 0.08);
	--shadow-card: 0 24px 52px rgba(82, 60, 40, 0.1);
	--radius-xl: 34px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--container: min(1220px, calc(100vw - 42px));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.92), transparent 28%),
		linear-gradient(180deg, #fbf8f4 0%, #f6efe8 100%);
}

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

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

button,
input {
	font: inherit;
}

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

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

.site-shell {
	overflow: clip;
}

.site-main {
	position: relative;
}

h1,
h2,
h3,
.brand__text strong,
.guide-title,
.site-footer__tagline {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 500;
}

h1,
h2,
h3,
p,
ul,
ol {
	margin-top: 0;
}

h1 {
	font-size: clamp(3.4rem, 6.1vw, 5.7rem);
	line-height: 0.92;
	letter-spacing: -0.05em;
	margin-bottom: 18px;
}

h2 {
	font-size: clamp(2.6rem, 4vw, 4rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	margin-bottom: 14px;
}

h3 {
	font-size: clamp(1.5rem, 2.3vw, 2rem);
	line-height: 1.08;
	margin-bottom: 12px;
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--terracotta);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 10px;
	border: 1px solid transparent;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: transform 0.32s ease, box-shadow 0.32s ease, color 0.32s ease, border-color 0.32s ease, background-color 0.32s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-3px);
	box-shadow: var(--shadow-soft);
}

.button--primary {
	background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
	color: #fff;
}

.button--ghost {
	background: rgba(255, 255, 255, 0.76);
	color: var(--text);
	border-color: rgba(182, 119, 89, 0.26);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(18px);
	background: rgba(250, 247, 241, 0.9);
	border-bottom: 1px solid rgba(230, 221, 210, 0.9);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.site-logo {
	width: auto;
	height: 44px;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(5px, 0.8vw, 11px);
	min-width: 0;
	white-space: nowrap;
	font-size: clamp(0.54rem, 0.66vw, 0.63rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-nav a,
.footer-column a {
	position: relative;
	color: var(--muted);
	transition: color 0.25s ease;
}

.site-nav a::after,
.footer-column a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible {
	color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-column a:hover::after,
.footer-column a:focus-visible::after {
	transform: scaleX(1);
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(230, 221, 210, 0.9);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.76);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.menu-toggle__line {
	display: block;
	width: 18px;
	height: 1px;
	background: var(--text);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.site-hero {
	position: relative;
	padding: 38px 0 52px;
	overflow: hidden;
}

.hero-backdrop {
	position: absolute;
	top: 18px;
	right: -7%;
	width: 46vw;
	height: 52vw;
	max-width: 720px;
	max-height: 700px;
	border-radius: 52% 48% 48% 52% / 24% 24% 76% 76%;
	background:
		radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), transparent 22%),
		linear-gradient(180deg, rgba(239, 229, 216, 0.96), rgba(230, 218, 202, 0.72));
	filter: blur(0);
}

.hero-backdrop--soft {
	top: auto;
	bottom: 44px;
	left: -6%;
	width: 34vw;
	height: 10vw;
	max-width: 500px;
	max-height: 140px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(201, 164, 106, 0.16), rgba(201, 164, 106, 0));
}

.hero-layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
	align-items: end;
	gap: 26px;
	z-index: 1;
}

.hero-copy {
	position: relative;
	z-index: 2;
	padding: 26px 0 64px;
}

.hero-title {
	display: grid;
	gap: 0.1em;
}

.hero-copy h1 em {
	font-style: normal;
	color: var(--rose);
}

.hero-description {
	max-width: 44ch;
	font-size: 1rem;
	line-height: 1.82;
	color: var(--muted);
}

.hero-kicker {
	margin: 0 0 14px;
	color: var(--olive-deep);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.45rem;
	line-height: 1.08;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 28px 0 0;
}

.hero-note {
	max-width: 36ch;
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.65;
}

.hero-media {
	position: relative;
	z-index: 1;
	min-height: 620px;
}

.hero-media__shape {
	position: absolute;
	inset: 34px 12px 28px 94px;
	border-radius: 46% 54% 42% 58% / 24% 24% 76% 76%;
	background:
		radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.68), transparent 20%),
		linear-gradient(180deg, rgba(239, 229, 216, 0.96), rgba(227, 214, 197, 0.88));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.hero-media__shape::after {
	display: none;
}

.hero-media__photo-wrap {
	position: absolute;
	inset: 10px 8px 0 72px;
	overflow: hidden;
	clip-path: ellipse(66% 72% at 56% 46%);
	opacity: 0;
	transform: scale(0.94);
	transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-media__photo {
	width: 100%;
	height: 100%;
	background-image: url("../images/cunoaste-o-pe-alina.png");
	background-repeat: no-repeat;
	background-size: 164%;
	background-position: 70% 34%;
	filter: saturate(0.94);
	transform: scale(1.03);
}

.hero-media.is-visible .hero-media__photo-wrap {
	opacity: 1;
	transform: scale(1);
}

.trust-strip {
	padding: 0 0 18px;
}

.trust-strip__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 18px;
	border-top: 1px solid rgba(230, 221, 210, 0.95);
	border-bottom: 1px solid rgba(230, 221, 210, 0.95);
	background: rgba(255, 255, 255, 0.38);
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.trust-strip__inner i {
	font-style: normal;
	opacity: 0.55;
}

.stats-section {
	position: relative;
	padding: 12px 0 24px;
}

.stats-section__curve {
	display: none;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
}

.stat-card {
	position: relative;
	isolation: isolate;
	padding: 24px 18px;
	border-radius: 24px;
	border: 1px solid rgba(230, 221, 210, 0.94);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: var(--shadow-soft);
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 10px;
	min-height: 188px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card::before {
	content: "";
	position: absolute;
	inset: 14px;
	border-radius: 18px;
	border: 1px solid rgba(230, 221, 210, 0.55);
	opacity: 0.72;
	z-index: -1;
}

.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card);
}

.stat-card--olive,
.stat-card--olive-soft {
	background: linear-gradient(180deg, rgba(95, 111, 78, 0.1), rgba(255, 255, 255, 0.82));
}

.stat-card--terracotta {
	background: linear-gradient(180deg, rgba(182, 119, 89, 0.13), rgba(255, 255, 255, 0.82));
}

.stat-card__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	color: var(--gold);
	font-size: 1.35rem;
	box-shadow: inset 0 0 0 1px rgba(230, 221, 210, 0.8);
}

.stat-card strong {
	font-size: 2rem;
	line-height: 1;
	letter-spacing: -0.04em;
}

.stat-card span {
	max-width: 14ch;
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.4;
}

.review-strip {
	padding: 0 0 58px;
}

.review-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(230, 221, 210, 0.88);
	border-bottom: 1px solid rgba(230, 221, 210, 0.88);
}

.review-chip {
	padding: 28px 22px;
	text-align: center;
}

.review-chip:not(:last-child) {
	border-right: 1px solid rgba(230, 221, 210, 0.88);
}

.review-chip__stars,
.story-card__stars {
	color: var(--gold);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	margin-bottom: 14px;
}

.review-chip blockquote,
.story-card blockquote {
	margin: 0;
	line-height: 1.76;
}

.review-chip p,
.story-card p,
.section-heading p,
.section-block p {
	color: var(--muted);
}

.review-chip p {
	margin: 14px 0 0;
	font-size: 0.84rem;
	font-weight: 600;
}

.meet-section,
.pillars-section,
.programs-section,
.guide-section,
.stories-section,
.booking-section {
	padding: 0 0 72px;
}

.meet-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	align-items: center;
	gap: 58px;
}

.meet-media {
	position: relative;
	min-height: 470px;
}

.meet-media__shape {
	position: absolute;
	inset: 32px -12px -14px 44px;
	border-radius: 44% 56% 48% 52% / 46% 40% 60% 54%;
	background:
		radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.7), transparent 20%),
		linear-gradient(180deg, rgba(239, 229, 216, 0.8), rgba(226, 214, 197, 0.3));
}

.meet-media__photo {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: 470px;
	object-fit: cover;
	object-position: center 14%;
	border-radius: 32px;
	box-shadow: var(--shadow-card);
	filter: saturate(0.86) contrast(1.08) brightness(1.03);
}

.section-block {
	max-width: 560px;
}

.section-block p {
	font-size: 1.02rem;
	line-height: 1.82;
}

.meet-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 14px;
}

.meet-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(230, 221, 210, 0.95);
	background: rgba(255, 255, 255, 0.7);
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

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

.pillar-card {
	position: relative;
	overflow: hidden;
	padding: 34px 28px 30px;
	min-height: 320px;
	border-radius: 28px;
	border: 1px solid rgba(230, 221, 210, 0.9);
	box-shadow: var(--shadow-soft);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card);
}

.pillar-card__decor {
	position: absolute;
	right: -10%;
	top: -8%;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.34);
	opacity: 0.34;
}

.pillar-card__decor::before,
.pillar-card__decor::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.pillar-card__decor::before {
	left: -78px;
	bottom: 42px;
	width: 180px;
	height: 180px;
}

.pillar-card__decor::after {
	right: 12px;
	bottom: -88px;
	width: 150px;
	height: 150px;
}

.pillar-card__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
	border-radius: 50%;
	color: #fff;
	font-size: 1.45rem;
	position: relative;
	z-index: 2;
}

.pillar-card__icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.pillar-card__icon svg {
	width: 34px;
	height: 34px;
	stroke: currentColor;
}

.pillar-card__eyebrow {
	margin-bottom: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(31, 26, 23, 0.7);
}

.pillar-card p:last-of-type {
	margin-bottom: 18px;
	line-height: 1.75;
	position: relative;
	z-index: 2;
}

.pillar-card a,
.program-card a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 0.28s ease, color 0.28s ease;
	position: relative;
	z-index: 2;
}

.pillar-card a:hover,
.program-card a:hover,
.pillar-card a:focus-visible,
.program-card a:focus-visible {
	transform: translateX(4px);
}

.pillar-card--soul {
	background: linear-gradient(180deg, rgba(95, 111, 78, 0.12), rgba(255, 255, 255, 0.9));
}

.pillar-card--mind {
	background: linear-gradient(180deg, rgba(201, 164, 106, 0.13), rgba(255, 255, 255, 0.9));
}

.pillar-card--body {
	background: linear-gradient(180deg, rgba(163, 107, 106, 0.12), rgba(255, 255, 255, 0.9));
}

.pillar-card--soul .pillar-card__icon {
	background: linear-gradient(135deg, #72815d, #5f6f4e);
}

.pillar-card--mind .pillar-card__icon {
	background: linear-gradient(135deg, #d2a15f, #b67759);
}

.pillar-card--body .pillar-card__icon {
	background: linear-gradient(135deg, #b97c79, #a36b6a);
}

.pillar-card h3 {
	position: relative;
	z-index: 2;
	max-width: 12ch;
}

.pillar-card:hover .pillar-card__icon {
	transform: translateY(-4px) scale(1.05);
}

.section-heading {
	max-width: 680px;
	margin: 0 auto 32px;
	text-align: center;
}

.section-heading p:last-child {
	margin-bottom: 0;
	font-size: 0.94rem;
	line-height: 1.75;
}

.program-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.program-card {
	padding: 24px 16px 22px;
	border-radius: 18px;
	border: 1px solid rgba(230, 221, 210, 0.94);
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.52), transparent 20%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 241, 234, 0.96));
	box-shadow: var(--shadow-soft);
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card);
}

.program-card__icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(95, 111, 78, 0.9), rgba(95, 111, 78, 0.72));
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	transition: transform 0.3s ease;
}

.program-card:hover .program-card__icon {
	transform: scale(1.06);
}

.program-card:nth-child(2) .program-card__icon,
.program-card:nth-child(5) .program-card__icon {
	background: linear-gradient(135deg, rgba(201, 164, 106, 0.95), rgba(182, 119, 89, 0.76));
}

.program-card:nth-child(3) .program-card__icon {
	background: linear-gradient(135deg, rgba(163, 107, 106, 0.92), rgba(145, 96, 105, 0.72));
}

.program-card h3 {
	font-size: 1.24rem;
	margin-bottom: 10px;
}

.program-card p {
	font-size: 0.86rem;
	line-height: 1.7;
	margin-bottom: 16px;
}

.guide-layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
	align-items: center;
	gap: 40px;
	padding: 36px;
	border-radius: 30px;
	background:
		radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.32), transparent 18%),
		linear-gradient(135deg, rgba(95, 111, 78, 0.12), rgba(239, 229, 216, 0.86));
	border: 1px solid rgba(230, 221, 210, 0.95);
	box-shadow: var(--shadow-card);
}

.guided-section {
	padding: 0 0 72px;
}

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

.guided-copy {
	max-width: 540px;
}

.guided-media {
	position: relative;
	min-height: 420px;
}

.guided-media__shape {
	position: absolute;
	inset: 22px -10px -16px 38px;
	border-radius: 40% 60% 48% 52% / 48% 42% 58% 52%;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.7), transparent 20%),
		linear-gradient(180deg, rgba(239, 229, 216, 0.82), rgba(226, 214, 197, 0.32));
}

.guided-media__photo {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 420px;
	object-fit: cover;
	object-position: center center;
	border-radius: 30px;
	box-shadow: var(--shadow-card);
}

.section-anchor {
	display: block;
	position: relative;
	top: -110px;
	visibility: hidden;
}

.guide-visual {
	position: relative;
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.guide-visual__leaf {
	position: absolute;
	right: 0;
	bottom: 18px;
	width: 160px;
	height: 180px;
	opacity: 0.34;
}

.guide-visual__leaf::before,
.guide-visual__leaf::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 50%;
	width: 1px;
	background: rgba(182, 119, 89, 0.2);
	transform: translateX(-50%);
}

.guide-visual__leaf::after {
	width: 120px;
	height: 120px;
	left: 20px;
	top: 18px;
	border-radius: 50%;
	border: 1px solid rgba(182, 119, 89, 0.18);
	background: none;
	transform: none;
}

.guide-visual__frame {
	position: relative;
	width: min(100%, 320px);
	padding: 18px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: var(--shadow-card);
}

.guide-visual__frame img {
	width: 100%;
	border-radius: 16px;
}

.guide-title {
	font-size: 1.6rem;
	line-height: 1.08;
	color: var(--olive-deep);
	margin-bottom: 10px;
}

.email-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.email-form input {
	flex: 1 1 240px;
	min-height: 54px;
	padding: 0 16px;
	border-radius: 10px;
	border: 1px solid rgba(230, 221, 210, 0.95);
	background: rgba(255, 255, 255, 0.86);
	color: var(--text);
}

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

.story-card {
	padding: 24px 22px 22px;
	border-radius: 20px;
	border: 1px solid rgba(230, 221, 210, 0.95);
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 22%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 241, 234, 0.92));
	box-shadow: var(--shadow-soft);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card);
}

.story-card__video-shell {
	position: relative;
	margin-bottom: 16px;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(232, 221, 207, 0.94), rgba(247, 241, 234, 0.96));
	box-shadow: inset 0 0 0 1px rgba(230, 221, 210, 0.95);
}

.story-card__video-badge {
	position: absolute;
	left: 16px;
	top: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 252, 248, 0.88);
	color: var(--olive-deep);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.story-card__play {
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--olive);
	color: #fff;
	font-size: 0.68rem;
	animation: pulse-play 3.8s ease-in-out infinite;
}

.story-card__video-shell video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, rgba(201, 164, 106, 0.24), rgba(95, 111, 78, 0.16));
	object-fit: cover;
}

.story-card h3 {
	font-size: 1.26rem;
	margin-bottom: 10px;
}

.story-card p {
	margin: 12px 0 0;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.booking-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 24px;
	align-items: stretch;
	padding: 34px;
	border-radius: 30px;
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.26), transparent 22%),
		linear-gradient(135deg, rgba(95, 111, 78, 0.12), rgba(239, 229, 216, 0.9));
	border: 1px solid rgba(230, 221, 210, 0.95);
	box-shadow: var(--shadow-card);
}

.booking-copy {
	max-width: 640px;
}

.booking-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 22px 0 0;
	list-style: none;
}

.booking-list li {
	position: relative;
	padding-left: 26px;
	color: var(--muted);
	line-height: 1.75;
}

.booking-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold), var(--terracotta));
}

.booking-card {
	align-self: center;
	padding: 28px 26px;
	border-radius: 26px;
	background: rgba(255, 252, 248, 0.88);
	border: 1px solid rgba(230, 221, 210, 0.95);
	box-shadow: var(--shadow-soft);
}

.booking-card__label {
	margin-bottom: 10px;
	color: var(--terracotta);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.booking-card h3 {
	font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.booking-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.booking-card__meta {
	margin-top: 16px;
	color: var(--olive-deep);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer {
	position: relative;
	padding: 42px 0 24px;
	background:
		radial-gradient(circle at 10% 18%, rgba(182, 119, 89, 0.08), transparent 18%),
		radial-gradient(circle at 88% 16%, rgba(95, 111, 78, 0.08), transparent 18%),
		linear-gradient(180deg, rgba(247, 241, 234, 0.82), rgba(250, 247, 241, 0.98));
	border-top: 1px solid rgba(230, 221, 210, 0.95);
}

.site-footer__ornament {
	position: absolute;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	border: 1px solid rgba(182, 119, 89, 0.14);
	opacity: 0.5;
}

.site-footer__ornament--left {
	left: 2%;
	top: 20px;
}

.site-footer__ornament--right {
	right: 3%;
	bottom: 68px;
}

.site-footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.3fr repeat(5, minmax(0, 0.82fr));
	gap: 24px;
	z-index: 1;
}

.brand--footer {
	margin-bottom: 14px;
}

.site-logo--footer {
	height: 72px;
	max-width: 210px;
	object-fit: contain;
}

.site-footer__tagline {
	margin-bottom: 12px;
	font-size: 1.4rem;
}

.site-footer__note {
	max-width: 32ch;
	margin-bottom: 18px;
	font-size: 0.94rem;
	line-height: 1.78;
	color: var(--muted);
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(230, 221, 210, 0.95);
	background: rgba(255, 255, 255, 0.8);
	color: var(--olive-deep);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
}

.footer-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.floating-whatsapp {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 90;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	background: linear-gradient(135deg, #5f6f4e 0%, #314028 100%);
	color: #fff;
	box-shadow: 0 18px 42px rgba(49, 64, 40, 0.28);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 24px 54px rgba(49, 64, 40, 0.34);
	background: linear-gradient(135deg, #6d7d59 0%, #314028 100%);
}

.floating-whatsapp svg {
	width: 29px;
	height: 29px;
	fill: currentColor;
}

.ac-cookie-banner {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(92px, calc(env(safe-area-inset-bottom) + 92px));
	z-index: 120;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	width: min(680px, calc(100vw - 36px));
	padding: 22px;
	border: 1px solid rgba(230, 221, 210, 0.94);
	border-radius: 18px;
	background: rgba(255, 250, 244, 0.96);
	box-shadow: 0 24px 70px rgba(49, 38, 28, 0.18);
	backdrop-filter: blur(14px);
}

.ac-cookie-banner__eyebrow {
	margin: 0 0 8px;
	color: var(--rose);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ac-cookie-banner h2 {
	margin: 0 0 8px;
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	line-height: 1.08;
}

.ac-cookie-banner p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.62;
}

.ac-cookie-preferences {
	display: grid;
	gap: 8px;
	margin-top: 14px;
	color: var(--olive-deep);
	font-size: 0.9rem;
}

.ac-cookie-preferences label {
	display: flex;
	align-items: center;
	gap: 9px;
}

.ac-cookie-banner__actions {
	display: grid;
	gap: 9px;
	align-content: start;
	min-width: 150px;
}

.ac-cookie-banner__actions button {
	border: 1px solid rgba(95, 111, 78, 0.24);
	border-radius: 999px;
	background: transparent;
	color: var(--olive-deep);
	cursor: pointer;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 11px 15px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ac-cookie-banner__actions button:first-child,
.ac-cookie-banner__actions button[data-cookie-save] {
	background: var(--olive-deep);
	color: #fff;
}

.ac-cookie-banner__actions button:hover,
.ac-cookie-banner__actions button:focus-visible {
	transform: translateY(-1px);
	background: var(--olive-deep);
	color: #fff;
}

.footer-cookie-settings {
	border: 0;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	font: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	padding: 0;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
	color: var(--olive-deep);
}

.footer-legal-links {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 16px;
}

.footer-legal-links a {
	color: var(--muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
	color: var(--olive-deep);
}

.footer-column h2 {
	margin-bottom: 14px;
	font-size: 1.45rem;
}

.footer-column ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.site-footer__contact-panel {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
	margin-bottom: clamp(34px, 6vw, 76px);
	padding-bottom: clamp(28px, 5vw, 54px);
	border-bottom: 1px solid rgba(230, 221, 210, 0.95);
}

.site-footer__contact-copy {
	max-width: 460px;
}

.site-footer__contact-eyebrow {
	margin: 0 0 10px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rose);
}

.site-footer__contact-copy h2 {
	max-width: 10ch;
	margin: 0 0 14px;
	font-size: clamp(2rem, 4vw, 3.8rem);
	line-height: 0.98;
}

.site-footer__contact-copy p:last-child {
	max-width: 34ch;
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

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

.site-footer__field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.site-footer__contact-form label {
	display: grid;
	gap: 7px;
}

.site-footer__contact-form span {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(49, 64, 40, 0.72);
}

.site-footer__contact-form input,
.site-footer__contact-form select,
.site-footer__contact-form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(78, 68, 58, 0.26);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.34);
	color: var(--ink);
	font: inherit;
	padding: 13px 2px 12px;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.site-footer__contact-form textarea {
	resize: vertical;
	min-height: 118px;
}

.site-footer__contact-form input:focus,
.site-footer__contact-form select:focus,
.site-footer__contact-form textarea:focus {
	border-color: var(--olive);
	background: rgba(255, 255, 255, 0.58);
}

.site-footer__honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.site-footer__contact-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.site-footer__contact-actions button {
	border: 0;
	border-radius: 999px;
	background: var(--olive-deep);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 14px 24px;
	box-shadow: 0 14px 34px rgba(49, 64, 40, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.site-footer__contact-actions button:hover,
.site-footer__contact-actions button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(49, 64, 40, 0.24);
}

.site-footer__contact-actions button:disabled {
	cursor: wait;
	opacity: 0.64;
	transform: none;
}

.site-footer__contact-actions p {
	min-height: 1.4em;
	margin: 0;
	font-size: 0.92rem;
	color: var(--muted);
}

.site-footer__contact-actions p[data-state="success"] {
	color: var(--olive-deep);
}

.site-footer__contact-actions p[data-state="error"] {
	color: var(--rose);
}

.ac-contact-page {
	position: relative;
	overflow: hidden;
	padding: clamp(64px, 9vw, 126px) 0 clamp(72px, 10vw, 140px);
	background:
		radial-gradient(circle at 8% 18%, rgba(184, 151, 119, 0.16), transparent 30%),
		radial-gradient(circle at 88% 12%, rgba(95, 111, 78, 0.12), transparent 28%),
		linear-gradient(135deg, #fbf7f1 0%, #f4eee6 54%, #faf8f3 100%);
}

.ac-contact-page::before {
	content: "";
	position: absolute;
	top: 72px;
	right: -80px;
	width: 320px;
	height: 520px;
	border: 1px solid rgba(95, 111, 78, 0.12);
	border-radius: 50%;
	transform: rotate(-22deg);
}

.ac-contact-hero,
.ac-contact-layout {
	position: relative;
	z-index: 1;
}

.ac-contact-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
	gap: clamp(28px, 6vw, 88px);
	align-items: end;
	margin-bottom: clamp(42px, 7vw, 92px);
}

.ac-contact-eyebrow,
.ac-contact-form-eyebrow {
	margin: 0 0 12px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rose);
}

.ac-contact-hero h1 {
	max-width: 15ch;
	margin: 0 0 20px;
	font-size: clamp(2.9rem, 5.4vw, 5.7rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.ac-contact-hero__copy p:last-child {
	max-width: 62ch;
	margin: 0;
	color: var(--muted);
	font-size: clamp(1rem, 1.3vw, 1.18rem);
	line-height: 1.85;
}

.ac-contact-hero__note {
	padding-left: 28px;
	border-left: 1px solid rgba(95, 111, 78, 0.28);
}

.ac-contact-hero__note p {
	margin: 0;
	color: var(--olive-deep);
	font-family: var(--font-serif);
	font-size: clamp(1.08rem, 1.55vw, 1.48rem);
	line-height: 1.35;
}

.ac-contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(34px, 6vw, 86px);
	align-items: start;
}

.ac-contact-info {
	display: grid;
	gap: 20px;
	padding-top: 8px;
}

.ac-contact-info__item {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.ac-contact-info__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	background: rgba(167, 104, 118, 0.09);
	color: #c8a28f;
}

.ac-contact-info__icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.ac-contact-info h2 {
	margin: 2px 0 8px;
	color: #c8a28f;
	font-family: var(--font-sans);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ac-contact-info p {
	margin: 0;
	color: #c8a28f;
	font-family: var(--font-sans);
	font-size: clamp(0.88rem, 0.95vw, 1.02rem);
	font-weight: 500;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.ac-contact-info a {
	color: inherit;
	text-decoration: none;
}

.ac-contact-info a:hover,
.ac-contact-info a:focus-visible {
	color: var(--olive-deep);
}

.ac-contact-social {
	display: flex;
	gap: 10px;
	padding-left: 60px;
}

.ac-contact-social a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	background: rgba(167, 104, 118, 0.09);
	color: #c8a28f;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ac-contact-social a:hover,
.ac-contact-social a:focus-visible {
	transform: translateY(-2px);
	background: var(--olive-deep);
	color: #fff;
}

.ac-contact-form-wrap {
	padding: clamp(24px, 4vw, 42px) 0 0;
	border-top: 1px solid rgba(95, 111, 78, 0.18);
}

.ac-contact-form-wrap h2 {
	max-width: 18ch;
	margin: 0 0 24px;
	font-size: clamp(1.85rem, 3.1vw, 3.15rem);
	line-height: 1.04;
}

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

.ac-contact-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px;
}

.ac-contact-form label {
	display: grid;
	gap: 8px;
}

.ac-contact-form span {
	color: rgba(49, 64, 40, 0.72);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ac-contact-form input,
.ac-contact-form select,
.ac-contact-form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(49, 64, 40, 0.26);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.36);
	color: var(--ink);
	font: inherit;
	padding: 14px 2px 12px;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.ac-contact-form textarea {
	min-height: 138px;
	resize: vertical;
}

.ac-contact-form input:focus,
.ac-contact-form select:focus,
.ac-contact-form textarea:focus {
	border-color: var(--olive);
	background: rgba(255, 255, 255, 0.62);
}

.ac-contact-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ac-contact-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 8px;
}

.ac-contact-actions button,
.ac-contact-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.ac-contact-actions button {
	border: 0;
	background: var(--olive-deep);
	color: #fff;
	cursor: pointer;
	padding: 14px 24px;
	box-shadow: 0 16px 34px rgba(49, 64, 40, 0.18);
}

.ac-contact-actions a {
	border: 1px solid rgba(95, 111, 78, 0.32);
	color: var(--olive-deep);
	padding: 13px 22px;
}

.ac-contact-actions p {
	flex-basis: 100%;
	min-height: 1.4em;
	margin: 0;
	color: var(--muted);
}

.ac-contact-actions p[data-state="success"] {
	color: var(--olive-deep);
}

.ac-contact-actions p[data-state="error"] {
	color: var(--rose);
}

.ac-policy-page {
	padding: clamp(64px, 8vw, 118px) 0;
	background: linear-gradient(135deg, #fbf7f1 0%, #f5eee6 100%);
}

.ac-policy-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
	gap: clamp(32px, 6vw, 88px);
	align-items: start;
}

.ac-policy-hero {
	position: sticky;
	top: 120px;
}

.ac-policy-hero h1 {
	max-width: 12ch;
	margin: 0 0 18px;
	font-size: clamp(2.55rem, 4.7vw, 4.95rem);
	line-height: 0.98;
}

.ac-policy-hero p:last-child {
	max-width: 36ch;
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

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

.ac-policy-content h2 {
	margin: 0;
	color: var(--olive-deep);
	font-size: clamp(1.35rem, 1.95vw, 1.95rem);
	line-height: 1.08;
}

.ac-policy-content p {
	margin: -10px 0 12px;
	color: var(--muted);
	line-height: 1.85;
}

.ac-policy-content a {
	color: var(--rose);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.site-footer__bottom {
	position: relative;
	z-index: 1;
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(230, 221, 210, 0.95);
}

.footer-values {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}

.footer-values span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(230, 221, 210, 0.95);
	background: rgba(255, 255, 255, 0.76);
	color: var(--muted);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin-bottom: 0;
	text-align: center;
	color: var(--muted);
	font-size: 0.88rem;
}

/* ============================================================
   Simplified footer (July 2026 client mockup): brand block on the
   left, a single "Work with me | Free resources | Contact" row on
   the right, and one bottom line with copyright, legal links and
   social icons.
   ============================================================ */
.site-footer__grid--simple {
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(28px, 5vw, 84px);
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding-top: 12px;
}

.site-footer__links a {
	padding: 2px 22px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.15rem;
	line-height: 1.3;
	color: var(--olive-deep, #3f4a32);
	text-decoration: none;
	border-right: 1px solid rgba(63, 74, 50, 0.25);
}

.site-footer__links a:first-child { padding-left: 0; }
.site-footer__links a:last-child { padding-right: 0; border-right: 0; }

.site-footer__links a:hover,
.site-footer__links a:focus-visible { color: var(--terracotta, #b67759); }

.site-footer__bottom--simple {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 24px;
}

.site-footer__bottom--simple .site-footer__copy,
.site-footer__bottom--simple .footer-legal-links { text-align: left; }

.site-footer__bottom--simple .footer-social a { width: 34px; height: 34px; }
.site-footer__bottom--simple .footer-social svg { width: 17px; height: 17px; }

/* Agency credit line, sits under the copyright/social row. */
.site-footer__credit {
	position: relative;
	z-index: 1;
	margin-top: 14px;
}

.site-footer__credit p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.8rem;
	text-align: center;
}

.site-footer__credit a {
	color: var(--muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible { color: var(--terracotta, #b67759); }

@media (max-width: 860px) {
	.site-footer__grid--simple { grid-template-columns: 1fr; gap: 30px; }
	.site-footer__links { justify-content: flex-start; }
	.site-footer__bottom--simple { flex-direction: column; justify-content: center; text-align: center; }
	.site-footer__bottom--simple .footer-legal-links,
	.site-footer__bottom--simple .footer-social { justify-content: center; }
}

.animate-fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero-copy .animate-fade-up:nth-child(1) {
	transition-delay: 0.06s;
}

.hero-title .animate-fade-up:nth-child(1) {
	transition-delay: 0.14s;
}

.hero-title .animate-fade-up:nth-child(2) {
	transition-delay: 0.24s;
}

.hero-description.animate-fade-up {
	transition-delay: 0.32s;
}

.hero-actions.animate-fade-up {
	transition-delay: 0.42s;
}

.hero-credentials.animate-fade-up {
	transition-delay: 0.52s;
}

.animate-fade-up[data-delay] {
	transition-delay: calc(var(--delay, 0s) + 0s);
}

.guide-mockup {
	animation: none;
}

.guide-mockup.is-visible {
	animation: gentle-float 5.8s ease-in-out infinite alternate;
}

.site-hero .parallax-shape,
.meet-media__shape,
.guide-visual__leaf,
.site-footer__ornament {
	will-change: transform;
}

body.nav-open {
	overflow: hidden;
}

@keyframes gentle-float {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-10px);
	}
}

@keyframes pulse-play {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(95, 111, 78, 0.2);
	}
	50% {
		transform: scale(1.06);
		box-shadow: 0 0 0 10px rgba(95, 111, 78, 0);
	}
}

@media (max-width: 1120px) {
	.site-header__inner,
	.hero-layout,
	.meet-layout,
	.guide-layout,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.site-header__actions {
		justify-content: flex-start;
	}

	.hero-copy,
	.section-block,
	.site-footer__note,
	.booking-copy,
	.guided-copy {
		max-width: none;
	}

	.hero-media {
		min-height: 580px;
	}

	.hero-media__shape {
		inset: 18px 0 24px 30px;
	}

	.hero-media__photo-wrap {
		inset: 0 0 0 18px;
	}

	.stats-grid,
	.program-grid,
	.footer-values {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.booking-panel,
	.guided-layout,
	.pillars-grid,
	.stories-grid,
	.review-strip__grid {
		grid-template-columns: 1fr;
	}

	.review-chip:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid rgba(230, 221, 210, 0.88);
	}

}

@media (max-width: 900px) {
	.site-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.site-logo {
		height: 44px;
	}

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

	.site-nav {
		position: absolute;
		left: 14px;
		right: 14px;
		top: calc(100% + 12px);
		display: grid;
		gap: 14px;
		padding: 20px;
		border-radius: 20px;
		background: rgba(250, 247, 241, 0.98);
		border: 1px solid rgba(230, 221, 210, 0.95);
		box-shadow: var(--shadow-card);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity 0.25s ease, transform 0.25s ease;
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-nav a::after {
		display: none;
	}
}

@media (max-width: 820px) {
	.container {
		width: calc(100vw - 28px);
	}

	h1 {
		font-size: clamp(2.9rem, 12vw, 4.5rem);
	}

	h2 {
		font-size: clamp(2.2rem, 8vw, 3.3rem);
	}

	.site-hero {
		padding-top: 30px;
	}

	.hero-copy {
		padding-bottom: 8px;
	}

	.hero-media {
		min-height: 470px;
	}

	.hero-media__photo {
		background-size: 186%;
		background-position: 66% 24%;
	}

	.hero-media__linework {
		display: none;
	}

	.stats-grid,
	.program-grid,
	.footer-values {
		grid-template-columns: 1fr;
	}

	.guide-layout {
		padding: 24px;
	}

	.booking-panel {
		padding: 24px;
	}

	.booking-panel {
		padding: 24px;
	}

	.email-form {
		flex-direction: column;
	}

	.email-form input,
	.email-form .button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.animate-fade-up {
		opacity: 1;
		transform: none;
	}
}

/* Screenshot-matched homepage rebuild */
.site-header {
	position: sticky;
	top: 0;
	backdrop-filter: blur(12px);
	background: rgba(250, 247, 241, 0.96);
}

.site-header__inner {
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	padding: 12px 0;
	min-height: 74px;
}

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

.site-logo {
	width: auto;
	height: 58px;
	max-width: 270px;
	object-fit: contain;
}

.site-nav {
	justify-self: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: clamp(8px, 1vw, 18px);
	white-space: nowrap;
}

.site-nav a,
.site-language a,
.site-language span {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-nav a {
	position: relative;
	padding: 6px 0;
	color: rgba(31, 26, 23, 0.82);
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.28s ease, background-color 0.28s ease;
}

.site-nav a.is-active::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
	color: var(--olive);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-language {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: rgba(31, 26, 23, 0.68);
}

.site-language .is-active {
	color: var(--text);
}

.site-header__cta {
	min-height: 40px;
	padding: 0 18px;
	border-radius: 6px;
	background: linear-gradient(135deg, #b16a7d 0%, #9f5d71 100%);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--shadow-soft);
	filter: brightness(0.97);
}

.home-match {
	padding: 14px 0 36px;
}

.home-match__frame {
	overflow: hidden;
	border-radius: 26px;
	background: rgba(252, 249, 244, 0.62);
	box-shadow: 0 18px 42px rgba(82, 60, 40, 0.05);
}

.home-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: stretch;
	min-height: 352px;
	padding: 6px 0 0;
}

.home-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px 0 34px 52px;
}

.home-hero__title {
	display: grid;
	gap: 2px;
	margin-bottom: 8px;
	font-size: clamp(3.05rem, 4.5vw, 4.4rem);
	line-height: 0.94;
	letter-spacing: -0.04em;
}

.home-hero__title .animate-fade-up:nth-child(1) {
	transition-delay: 0.08s;
}

.home-hero__title .animate-fade-up:nth-child(2) {
	transition-delay: 0.18s;
}

.tone-olive {
	color: var(--olive);
}

.tone-gold {
	color: #b89253;
}

.tone-rose {
	color: #a45e73;
}

.home-hero__ornament {
	margin: 8px 0 14px;
	width: 64px;
	color: var(--gold);
}

.home-hero__ornament svg {
	width: 100%;
	height: auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-hero__description {
	max-width: 30ch;
	margin-bottom: 0;
	color: #5f5650;
	font-size: 0.94rem;
	line-height: 1.72;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 22px;
}

.home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 5px;
	border: 1px solid transparent;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.home-button:hover,
.home-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--shadow-soft);
}

.home-button--olive {
	background: linear-gradient(135deg, #73805a 0%, #5f6f4e 100%);
	color: #fff;
}

.home-button--ghost {
	background: rgba(255, 255, 255, 0.52);
	border-color: #d8cfc2;
	color: var(--text);
}

.home-button__icon {
	width: 14px;
	height: 14px;
}

.home-button__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-hero__media {
	position: relative;
	overflow: hidden;
	min-height: 352px;
}

.home-hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(250, 247, 241, 1) 0%, rgba(250, 247, 241, 0.86) 13%, rgba(250, 247, 241, 0.25) 34%, rgba(250, 247, 241, 0) 56%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
	z-index: 1;
}

.home-hero__image {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-size: 188% auto;
	background-position: 91% 48%;
	transform: scale(1.02);
}

.home-pillar__content a span,
.home-need-card a,
.home-button,
.site-header__cta {
	will-change: transform;
}

.home-pillars {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(230, 221, 210, 0.92);
	border-bottom: 1px solid rgba(230, 221, 210, 0.92);
	background: rgba(255, 255, 255, 0.42);
}

.home-pillar {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 22px 24px 20px;
	transition: background-color 0.28s ease;
}

.home-pillar + .home-pillar {
	border-left: 1px solid rgba(230, 221, 210, 0.82);
}

.home-pillar:hover {
	background: rgba(255, 255, 255, 0.6);
}

.home-pillar__icon {
	flex: 0 0 60px;
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.home-pillar__icon img {
	width: 60px;
	height: 60px;
	transition: transform 0.28s ease;
}

.home-pillar__content h2 {
	margin-bottom: 2px;
	font-size: 2rem;
	line-height: 0.98;
}

.home-pillar--soul h2 {
	color: var(--olive);
}

.home-pillar--mind h2 {
	color: #b89253;
}

.home-pillar--body h2 {
	color: #a45e73;
}

.home-pillar__label {
	margin-bottom: 8px;
	color: rgba(31, 26, 23, 0.74);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.home-pillar__content p {
	margin-bottom: 10px;
	color: var(--muted);
	font-size: 0.8rem;
	line-height: 1.55;
}

.home-pillar__content a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(31, 26, 23, 0.78);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: transform 0.28s ease, color 0.28s ease;
}

.home-pillar__content a:hover,
.home-pillar__content a:focus-visible {
	transform: translateX(4px);
}

.home-pillar:hover .home-pillar__icon img {
	transform: scale(1.05);
}

.home-lower {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
	gap: 34px;
	padding: 30px 0 18px;
	align-items: start;
}

.home-needs {
	padding-left: 52px;
}

.home-needs__heading h2 {
	margin-bottom: 4px;
	font-size: 2.1rem;
	letter-spacing: -0.03em;
}

.home-needs__heading p {
	margin-bottom: 16px;
	color: var(--muted);
	font-size: 0.88rem;
}

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

.home-need-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 172px;
	padding: 18px 14px;
	border: 1px solid rgba(230, 221, 210, 0.94);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 28px rgba(82, 60, 40, 0.05);
	text-align: center;
	transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.home-need-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 34px rgba(82, 60, 40, 0.1);
}

.home-need-card__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 16px;
	border-radius: 50%;
	color: #fff;
}

.home-need-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.28s ease;
}

.home-need-card__icon--olive {
	background: #7b8762;
}

.home-need-card__icon--gold {
	background: #c98c3f;
}

.home-need-card__icon--rose {
	background: #b15e79;
}

.home-need-card h3 {
	margin-bottom: 10px;
	font-family: "Inter", sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home-need-card a {
	margin-top: auto;
	color: rgba(31, 26, 23, 0.76);
	font-size: 0.76rem;
	font-weight: 600;
	transition: transform 0.28s ease;
}

.home-need-card:hover .home-need-card__icon svg {
	transform: scale(1.06);
}

.home-need-card:hover a {
	transform: translateX(4px);
}

.home-resource {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	margin-right: 6px;
	padding: 18px;
	border: 1px solid rgba(216, 207, 194, 0.98);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 12px 30px rgba(82, 60, 40, 0.08);
}

.home-resource__cover img {
	width: 100%;
	max-width: 108px;
	filter: drop-shadow(0 16px 20px rgba(82, 60, 40, 0.16));
}

.home-resource__eyebrow {
	margin-bottom: 8px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.42rem;
	line-height: 1.05;
	color: var(--text);
}

.home-resource__text {
	margin-bottom: 14px;
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.52;
}

.home-resource__form {
	display: grid;
	gap: 10px;
}

.home-resource__form input {
	width: 100%;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #d8cfc2;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--text);
	font-size: 0.82rem;
}

.home-resource__form .home-button {
	width: 100%;
	min-height: 36px;
	font-size: 0.68rem;
}

.home-benefits {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	padding: 10px 18px 0;
	border-top: 1px solid rgba(230, 221, 210, 0.88);
}

.home-benefit {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 6px 0;
}

.home-benefit__icon {
	flex: 0 0 24px;
	color: rgba(184, 146, 83, 0.95);
}

.home-benefit__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-benefit p {
	display: grid;
	gap: 2px;
	margin-bottom: 0;
	font-size: 0.72rem;
	line-height: 1.45;
	color: var(--muted);
}

.home-benefit strong {
	font-size: 0.74rem;
	font-weight: 700;
	color: rgba(31, 26, 23, 0.82);
}

.home-benefit span {
	display: block;
}

@media (max-width: 1180px) {
	.site-header__inner {
		grid-template-columns: auto 1fr;
	}

	.site-header__actions {
		justify-self: end;
	}

	.home-hero {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	}

	.home-hero__copy,
	.home-needs {
		padding-left: 28px;
	}

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

	.home-resource {
		margin: 0 28px;
	}

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

@media (max-width: 980px) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.menu-toggle {
		display: inline-flex;
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.site-nav {
		display: none;
	}

	.site-nav.is-open {
		display: flex;
		position: absolute;
		left: 14px;
		right: 14px;
		top: calc(100% + 8px);
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 18px;
		border: 1px solid rgba(230, 221, 210, 0.94);
		border-radius: 14px;
		background: rgba(250, 247, 241, 0.98);
		box-shadow: var(--shadow-soft);
	}

	.site-nav.is-open > a,
	.site-nav.is-open .site-nav__item > a {
		display: flex;
		justify-content: flex-start;
		width: 100%;
		padding: 11px 0;
		text-align: left;
	}

	.site-header__actions {
		display: flex;
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		align-items: center;
		gap: 0;
	}

	.site-language {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 0 2px;
	}

	.site-language a,
	.site-language span {
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.site-header__cta {
		display: none;
	}

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

	.home-hero__copy {
		padding-right: 28px;
	}

	.home-hero__media {
		min-height: 290px;
	}

	.home-hero__image {
		background-size: cover;
		background-position: 76% 28%;
	}

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

	.home-pillar + .home-pillar {
		border-left: 0;
		border-top: 1px solid rgba(230, 221, 210, 0.82);
	}

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

	.home-resource {
		grid-template-columns: 96px minmax(0, 1fr);
	}

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

@media (max-width: 640px) {
	.site-logo {
		height: 48px;
		max-width: 142px;
	}

	.home-match {
		padding-top: 6px;
	}

	.home-hero__copy,
	.home-needs {
		padding: 22px 18px 0;
	}

	.home-hero__title {
		font-size: clamp(2.45rem, 11vw, 3.2rem);
	}

	.home-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.home-button {
		width: 100%;
	}

	.home-pillar {
		padding: 18px;
	}

	.home-lower {
		padding-top: 22px;
		gap: 22px;
	}

	.home-resource {
		grid-template-columns: 1fr;
		margin: 0 18px;
		justify-items: center;
		text-align: center;
	}

	.home-resource__cover img {
		max-width: 94px;
	}

	.home-benefits {
		grid-template-columns: 1fr;
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (min-width: 981px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto !important;
		align-items: center;
		gap: 16px;
		padding: 12px 0;
	}

	.menu-toggle {
		display: none !important;
	}

	.site-nav {
		display: flex !important;
		position: static !important;
		flex-direction: row !important;
		align-items: center;
		justify-content: center;
		gap: clamp(8px, 1vw, 14px);
		min-width: 0;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
		white-space: nowrap;
		font-size: clamp(0.56rem, 0.7vw, 0.66rem);
		letter-spacing: 0.08em;
	}

	.site-header__actions {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		gap: 12px;
		white-space: nowrap;
	}

	.site-header__cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 38px;
		padding: 0 16px;
		line-height: 1;
		text-align: center;
	}
}

.site-nav__item {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.site-nav__item > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.site-nav__item--has-submenu > a::before {
	content: "";
	width: 5px;
	height: 5px;
	margin-top: -3px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	order: 2;
	opacity: 0.72;
}

.site-subnav {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	z-index: 40;
	display: grid;
	min-width: 230px;
	padding: 12px;
	border: 1px solid rgba(230, 221, 210, 0.92);
	border-radius: 14px;
	background: rgba(250, 247, 241, 0.98);
	box-shadow: 0 24px 58px rgba(82, 60, 40, 0.13);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-subnav::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -18px;
	height: 18px;
}

.site-nav__item--has-submenu:hover .site-subnav,
.site-nav__item--has-submenu:focus-within .site-subnav {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.site-nav .site-subnav a {
	display: block;
	padding: 10px 12px;
	border-radius: 9px;
	color: rgba(31, 26, 23, 0.78);
	font-size: 0.66rem;
	letter-spacing: 0.11em;
	text-align: left;
}

.site-nav .site-subnav a::after {
	display: none;
}

.site-nav .site-subnav a:hover,
.site-nav .site-subnav a:focus-visible,
.site-nav .site-subnav a.is-active {
	background: rgba(95, 111, 78, 0.1);
	color: var(--olive-deep);
}

@media (max-width: 980px) {
	.site-nav__item,
	.site-nav__item > a {
		width: 100%;
		justify-content: flex-start;
		text-align: left;
	}

	.site-nav__item {
		display: block;
		position: static;
		width: 100%;
	}

	.ac-contact-hero,
	.ac-contact-layout,
	.ac-policy-layout {
		grid-template-columns: 1fr;
	}

	.ac-contact-page {
		padding: 54px 0 76px;
	}

	.ac-policy-hero {
		position: static;
	}

	.ac-contact-hero h1 {
		max-width: 15ch;
		font-size: clamp(2.55rem, 8.5vw, 4.2rem);
		line-height: 1;
	}

	.ac-policy-hero h1 {
		max-width: 14ch;
		font-size: clamp(2.35rem, 7.5vw, 3.8rem);
		line-height: 1;
	}

	.ac-contact-hero__note {
		padding-left: 0;
		padding-top: 18px;
		border-top: 1px solid rgba(95, 111, 78, 0.2);
		border-left: 0;
	}

	.site-footer__contact-panel {
		grid-template-columns: 1fr;
	}

	.site-footer__contact-copy h2 {
		max-width: 14ch;
	}

	.site-subnav {
		position: static;
		display: none;
		width: 100%;
		min-width: 0;
		margin: 4px 0 8px;
		padding: 6px 0 6px 14px;
		border: 0;
		border-left: 1px solid rgba(95, 111, 78, 0.22);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none !important;
		left: auto;
		top: auto;
	}

	.site-nav__item.is-submenu-open .site-subnav {
		display: grid;
	}

	.site-nav__item--has-submenu:hover .site-subnav,
	.site-nav__item--has-submenu:focus-within .site-subnav {
		transform: none !important;
	}

	.site-subnav::before {
		display: none;
	}

	.site-nav .site-subnav a {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		padding: 9px 0 9px 12px;
		text-align: left;
	}
}

@media (max-width: 640px) {
	.ac-cookie-banner {
		left: 12px;
		right: 12px;
		bottom: max(84px, calc(env(safe-area-inset-bottom) + 84px));
		grid-template-columns: 1fr;
		width: auto;
		max-height: calc(100vh - 112px);
		overflow: auto;
		padding: 18px;
	}

	.ac-cookie-banner__actions {
		grid-template-columns: 1fr;
	}

	.ac-contact-page {
		padding-top: 42px;
	}

	.ac-contact-hero h1 {
		max-width: 12ch;
		margin-bottom: 14px;
		font-size: clamp(2.55rem, 13vw, 3.65rem);
		line-height: 1;
	}

	.ac-contact-hero {
		gap: 20px;
		margin-bottom: 38px;
	}

	.ac-contact-hero__copy p:last-child {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.ac-contact-hero__note {
		padding-top: 14px;
	}

	.ac-contact-hero__note p {
		font-size: 1.08rem;
		line-height: 1.45;
		font-family: var(--font-sans);
	}

	.ac-contact-layout {
		gap: 36px;
	}

	.ac-contact-info {
		gap: 20px;
	}

	.ac-contact-info__item {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 12px;
	}

	.ac-contact-info__icon {
		width: 42px;
		height: 42px;
	}

	.ac-contact-info__icon svg {
		width: 20px;
		height: 20px;
	}

	.ac-contact-info h2 {
		margin-bottom: 5px;
		font-size: 0.66rem;
		letter-spacing: 0.1em;
	}

	.ac-contact-info p {
		font-family: var(--font-sans);
		font-size: 0.78rem;
		line-height: 1.45;
		overflow-wrap: anywhere;
	}

	.ac-contact-social {
		padding-left: 54px;
	}

	.ac-contact-form-wrap {
		padding-top: 26px;
	}

	.ac-contact-form-wrap h2 {
		max-width: 16ch;
		margin-bottom: 18px;
		font-size: clamp(1.75rem, 9vw, 2.55rem);
		line-height: 1.05;
	}

	.ac-contact-field-row {
		grid-template-columns: 1fr;
	}

	.ac-contact-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ac-contact-actions button,
	.ac-contact-actions a {
		width: 100%;
	}

	.site-footer__field-row {
		grid-template-columns: 1fr;
	}

	.site-footer__contact-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.site-footer__contact-actions button {
		width: 100%;
	}
}

/* Final mobile navigation override. */
@media (max-width: 980px) {
	.site-header {
		position: sticky;
		z-index: 1000;
	}

	.site-header__inner {
		position: relative;
		grid-template-columns: auto 1fr auto !important;
		align-items: center;
	}

	.site-header__actions {
		display: flex !important;
		grid-column: 2 !important;
		justify-self: end !important;
		padding-right: 10px;
	}

	.site-language {
		display: inline-flex !important;
	}

	.site-header__cta {
		display: none !important;
	}

	.menu-toggle {
		display: inline-flex !important;
		grid-column: 3 !important;
		justify-self: end !important;
	}

	.site-nav {
		position: fixed !important;
		top: 84px !important;
		left: auto !important;
		right: 14px !important;
		z-index: 1001;
		display: none !important;
		width: min(280px, calc(100vw - 28px)) !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 14px 18px !important;
		box-sizing: border-box !important;
		border: 1px solid rgba(230, 221, 210, 0.94) !important;
		border-radius: 16px !important;
		background: rgba(250, 247, 241, 0.98) !important;
		box-shadow: 0 24px 58px rgba(82, 60, 40, 0.14) !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: none !important;
		transition: none !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		justify-self: end !important;
		gap: 0 !important;
		white-space: normal !important;
	}

	.site-nav.is-open {
		display: flex !important;
	}

	.site-nav.is-open > a,
	.site-nav.is-open .site-nav__item > a {
		width: 100% !important;
		justify-content: flex-start !important;
		padding: 11px 0 !important;
		text-align: left !important;
	}
}

/* Ten top-level menu items (Soul/Mind/Body were promoted out of Services) no
   longer fit between the logo and the CTA just above the mobile breakpoint —
   at 1000px the logo and the nav overlapped. Tighten the nav in that band. */
@media (min-width: 981px) and (max-width: 1140px) {
	.site-nav {
		gap: 6px;
		font-size: 0.52rem;
		letter-spacing: 0.06em;
	}

	.site-header__inner {
		gap: 10px;
	}

	.site-logo {
		max-width: 118px;
	}

	.site-header__cta {
		padding: 0 12px;
		font-size: 0.6rem;
	}
}

/* ============================================================
   Contact page — rebuilt to the client's July 2026 mockup.
   Copy left (headline, intro, "ways we can connect", "available
   worldwide", quote); photo of Alina on the right with the form
   card overlapping it. Older .ac-contact-* rules above are unused
   by the new template but left in place, harmless.
   ============================================================ */
.ac-contact-page {
	background: var(--bg, #faf7f1);
	padding: clamp(48px, 7vw, 104px) 0 clamp(56px, 8vw, 120px);
}

.ac-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 68px);
	align-items: start;
}

/* ---- left column ---- */
.ac-contact-eyebrow {
	margin: 0 0 18px;
	font-family: "Inter", sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--rose, #a36b6a);
}

.ac-contact-title {
	margin: 0 0 26px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	font-weight: 500;
	line-height: 1.04;
	color: var(--olive-deep, #3f4a32);
}

.ac-contact-title em {
	display: block;
	font-style: italic;
	color: var(--olive, #5f6f4e);
}

.ac-contact-intro {
	max-width: 46ch;
	margin: 0 0 16px;
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--muted, #6f625a);
}

.ac-contact-intro--accent {
	color: var(--text, #1f1a17);
	font-weight: 500;
}

.ac-contact-columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 3vw, 44px);
	margin: clamp(30px, 4vw, 46px) 0 clamp(26px, 3vw, 38px);
}

.ac-contact-subhead {
	margin: 0 0 18px;
	font-family: "Inter", sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rose, #a36b6a);
}

.ac-contact-method {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
	text-decoration: none;
	color: inherit;
}

.ac-contact-method__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(182, 119, 89, 0.12);
}

.ac-contact-method__icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: var(--terracotta, #b67759);
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ac-contact-method__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-top: 2px;
}

.ac-contact-method__body strong {
	font-family: "Inter", sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--text, #1f1a17);
}

.ac-contact-method__body span {
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--muted, #6f625a);
}

.ac-contact-method:hover .ac-contact-method__icon {
	background: rgba(182, 119, 89, 0.2);
}

.ac-contact-method:hover .ac-contact-method__body strong {
	color: var(--olive-deep, #3f4a32);
}

/* ---- available worldwide ---- */
.ac-contact-worldwide__icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: rgba(95, 111, 78, 0.1);
}

.ac-contact-worldwide__icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--olive, #5f6f4e);
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ac-contact-worldwide p {
	margin: 0 0 12px;
	font-size: 0.9rem;
	line-height: 1.68;
	color: var(--muted, #6f625a);
}

/* ---- quote ---- */
.ac-contact-quote {
	position: relative;
	max-width: 52ch;
	margin: clamp(6px, 1vw, 14px) 0 0;
	padding-left: 26px;
	border-left: 2px solid rgba(182, 119, 89, 0.4);
	font-family: "Playfair Display", Georgia, serif;
	font-style: italic;
	font-size: 1.12rem;
	line-height: 1.6;
	color: var(--olive-deep, #3f4a32);
}

/* ---- right column: photo + form ---- */
.ac-contact-aside {
	position: relative;
	min-height: 560px;
}

.ac-contact-photo {
	position: absolute;
	top: 0;
	right: -3%;
	width: 62%;
	height: 100%;
	z-index: 1;
}

.ac-contact-photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
	mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
}

.ac-contact-form-wrap {
	position: relative;
	z-index: 2;
	max-width: 460px;
	margin-top: 24px;
	padding: clamp(26px, 3vw, 38px);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(6px);
	box-shadow: 0 26px 60px rgba(57, 44, 33, 0.12);
}

.ac-contact-form-title {
	margin: 0 0 22px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.4rem, 2vw, 1.85rem);
	font-weight: 500;
	line-height: 1.15;
	color: var(--olive-deep, #3f4a32);
}

.ac-contact-form label {
	display: block;
	margin-bottom: 16px;
}

.ac-contact-form label > span {
	display: block;
	margin-bottom: 7px;
	font-family: "Inter", sans-serif;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted, #6f625a);
}

.ac-contact-form input,
.ac-contact-form select,
.ac-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(57, 44, 33, 0.16);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.7);
	font-family: "Inter", sans-serif;
	font-size: 0.92rem;
	color: var(--text, #1f1a17);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ac-contact-form input::placeholder,
.ac-contact-form textarea::placeholder {
	color: rgba(111, 98, 90, 0.6);
}

.ac-contact-form input:focus,
.ac-contact-form select:focus,
.ac-contact-form textarea:focus {
	outline: none;
	border-color: var(--olive, #5f6f4e);
	box-shadow: 0 0 0 3px rgba(95, 111, 78, 0.12);
}

.ac-contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.ac-contact-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ac-contact-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 6px;
}

.ac-contact-form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 30px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #5f6f4e 0%, #3f4a32 100%);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ac-contact-form button[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(63, 74, 50, 0.22);
}

.ac-contact-form [data-contact-status] {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.4;
	color: var(--olive-deep, #3f4a32);
}

.ac-contact-privacy {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 18px 0 0;
	font-size: 0.8rem;
	line-height: 1.55;
	color: var(--muted, #6f625a);
}

.ac-contact-privacy__icon svg {
	width: 16px;
	height: 16px;
	margin-top: 1px;
	fill: none;
	stroke: var(--olive, #5f6f4e);
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 980px) {
	.ac-contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ac-contact-aside {
		min-height: 0;
		display: flex;
		flex-direction: column-reverse;
		gap: 24px;
	}

	.ac-contact-photo {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		max-width: 340px;
		height: auto;
		margin: 0 auto;
	}

	.ac-contact-photo img {
		height: auto;
	}

	.ac-contact-form-wrap {
		margin-top: 0;
		max-width: none;
	}
}

@media (max-width: 640px) {
	.ac-contact-columns {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   Contact aside — single source of truth (matches client mockup).
   The right column is ONE rounded, bordered panel on a cream ground
   with soft golden botanical line-art. Inside it: the form on the
   left half, Alina's photo on the right half filling flush to the
   panel's rounded edges. The photo is a transparent cutout, so the
   cream + mandala show around her; it is cover-cropped head-to-hips
   exactly as in the mockup. The quote sits in its own card below.
   ============================================================ */
.ac-contact-grid {
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	max-width: 1300px;
	gap: clamp(30px, 3.4vw, 56px);
	align-items: start;
}

/* right column: form card on the left, the photo standing beside it */
.ac-contact-aside {
	--ac-form-w: 430px;   /* form card width — the photo anchors to it */
	--ac-overlap: 46px;   /* how far the photo sits over the card's edge */
	position: relative;
	display: block;
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: none;
	overflow: visible;
}

/* golden mandala, top-right behind her head */
.ac-contact-art-glow {
	display: block !important;
	position: absolute;
	top: -46px;
	left: calc(var(--ac-form-w) + 20px);
	width: 300px;
	height: 300px;
	z-index: 0;
	pointer-events: none;
	opacity: 0.7;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%23c9a46a' stroke-width='0.7' opacity='0.9'%3E%3Ccircle cx='100' cy='100' r='94'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Cg%3E%3Cline x1='100' y1='6' x2='100' y2='30'/%3E%3Cline x1='100' y1='170' x2='100' y2='194'/%3E%3Cline x1='6' y1='100' x2='30' y2='100'/%3E%3Cline x1='170' y1='100' x2='194' y2='100'/%3E%3Cline x1='33.4' y1='33.4' x2='50.3' y2='50.3'/%3E%3Cline x1='149.7' y1='149.7' x2='166.6' y2='166.6'/%3E%3Cline x1='166.6' y1='33.4' x2='149.7' y2='50.3'/%3E%3Cline x1='50.3' y1='149.7' x2='33.4' y2='166.6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

/* golden botanical sprig, near the form */
.ac-contact-art-leaf {
	display: block !important;
	position: absolute;
	left: calc(var(--ac-form-w) - 80px);
	bottom: -6px;
	width: 110px;
	height: 170px;
	z-index: 0;
	pointer-events: none;
	opacity: 0.5;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 200' fill='none' stroke='%23c9a46a' stroke-width='1.2' stroke-linecap='round' opacity='0.85'%3E%3Cpath d='M60 196C60 130 56 80 74 26'/%3E%3Cpath d='M60 150c14-4 24-16 22-34-18 3-26 16-22 34Z' fill='%23c9a46a' fill-opacity='0.12'/%3E%3Cpath d='M50 120c-14-4-24-16-22-34 18 3 26 16 22 34Z' fill='%23c9a46a' fill-opacity='0.12'/%3E%3Cpath d='M62 90c14-4 24-16 22-34-18 3-26 16-22 34Z' fill='%23c9a46a' fill-opacity='0.12'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* form card — its height drives the row; the photo matches it and sits beside/over it */
.ac-contact-form-wrap {
	position: relative;
	z-index: 1;
	width: var(--ac-form-w);
	max-width: 100%;
	margin: 0;
	padding: clamp(26px, 2.4vw, 40px);
	border: 1px solid rgba(190, 160, 110, 0.32);
	border-radius: 22px;
	background: rgba(252, 249, 242, 0.92);
	backdrop-filter: blur(6px);
	box-shadow: 0 26px 60px rgba(57, 44, 33, 0.12);
}

.ac-contact-form-title {
	font-size: clamp(1.35rem, 1.7vw, 1.65rem);
	margin-bottom: 16px;
}

/* photo — free-standing cutout with a FIXED size (identical in every language),
   anchored to the bottom, overlapping the form's right edge */
.ac-contact-photo {
	position: absolute;
	bottom: 0;
	left: calc(var(--ac-form-w) - var(--ac-overlap));
	z-index: 2;
	height: var(--ac-photo-h, 780px);
	width: calc(var(--ac-photo-h, 780px) * 0.693);   /* 927 / 1337 keeps her aspect */
	min-height: 0;
	margin: 0;
	padding: 0;
	background: none;
	border-radius: 0;
	overflow: visible;
	aspect-ratio: auto;
}

.ac-contact-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom center;
	/* melt the cutout into the cream ground: crisp face/torso, the hem
	   dissolves gently at the very bottom so she doesn't look pasted on */
	-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 80%, rgba(0, 0, 0, 0.55) 92%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 0%, #000 80%, rgba(0, 0, 0, 0.55) 92%, transparent 100%);
	filter: none;
	padding: 0;
}

.ac-contact-photo::before { content: none; }

/* stack on tablet / mobile: full cutout photo on top, form card below */
@media (max-width: 980px) {
	.ac-contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ac-contact-aside {
		display: flex;
		flex-direction: column;
		align-items: center;
		min-height: 0;
	}

	/* the cutout photo is desktop-only — it looks poor stacked on mobile */
	.ac-contact-photo { display: none !important; }

	.ac-contact-form-wrap {
		width: 100%;
		max-width: 520px;
		margin: 0;
	}

	.ac-contact-art-glow { display: none !important; }
	.ac-contact-art-leaf { display: none !important; }
}

@media (max-width: 640px) {
	.ac-contact-columns {
		grid-template-columns: 1fr;
	}

	.ac-contact-photo {
		max-width: 260px;
	}
}

/* ============================================================
   Home page adjustments (July 2026 docx).
   ============================================================ */

/* Note: the "Explore" row alignment is handled in elementor-home.css
   (the .ac-native-need grid uses grid-template-rows: auto 1fr auto so the
   link pins to the bottom of each equal-height card). */

/* Articles are shown without a date (docx: "articolele să nu fie datate"). */
.ac-blog-card-date {
	display: none;
}

/* ============================================================
   Header fit + Google Translate widget hiding (July 2026).
   ============================================================ */

/* The header row gets more width than the page content so the longer
   Romanian nav labels and CTA fit on one line without overlapping. */
.site-header .container {
	width: min(1380px, calc(100vw - 32px));
}

/* Hide the Google Translate widget/toolbar UI. The Romanian translation
   still applies (it is driven by the language cookie/URL); only Google's
   own on-screen gadget, banner and tooltip are removed. */
#ac-google-translate,
.goog-te-gadget,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-logo-link,
#goog-gt-tt,
.goog-tooltip {
	display: none !important;
}
.skiptranslate > iframe {
	display: none !important;
}
body {
	top: 0 !important;
}

/* ============================================================
   Home "Insights" — three undated articles (mind/body/soul) under
   the testimonials.
   ============================================================ */
.ac-home-articles { padding: clamp(40px, 6vw, 88px) 0; background: var(--bg, #faf7f1); }
.ac-home-articles__inner { width: var(--container); margin: 0 auto; }
.ac-home-articles__head { text-align: center; max-width: none; margin: 0 auto clamp(28px, 4vw, 52px); }
.ac-home-articles__eyebrow { font-family: "Inter", sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose, #a36b6a); margin: 0 0 12px; }
.ac-home-articles__title { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.35rem, 2.5vw, 2.35rem); font-weight: 500; line-height: 1.12; color: var(--olive-deep, #3f4a32); margin: 0; white-space: nowrap; }
@media (max-width: 640px) { .ac-home-articles__title { white-space: normal; } }
.ac-home-articles__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 40px); }
.ac-home-article-card { display: flex; flex-direction: column; }
.ac-home-article-card__media { display: block; aspect-ratio: 16 / 11; border-radius: 16px; overflow: hidden; margin-bottom: 18px; background: rgba(182,119,89,0.08); }
.ac-home-article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ac-home-article-card:hover .ac-home-article-card__media img { transform: scale(1.04); }
.ac-home-article-card__tag { font-family: "Inter", sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta, #b67759); margin: 0 0 10px; }
.ac-home-article-card__title { font-family: "Playfair Display", Georgia, serif; font-size: 1.34rem; font-weight: 500; line-height: 1.25; margin: 0 0 10px; }
.ac-home-article-card__title a { color: var(--olive-deep, #3f4a32); text-decoration: none; }
.ac-home-article-card__title a:hover { color: var(--terracotta, #b67759); }
.ac-home-article-card__excerpt { font-size: 0.94rem; line-height: 1.65; color: var(--muted, #6f625a); margin: 0 0 16px; }
.ac-home-article-card__link { margin-top: auto; font-family: "Inter", sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose, #a36b6a); text-decoration: none; }
.ac-home-article-card__link:hover { color: var(--olive-deep, #3f4a32); }
@media (max-width: 820px) { .ac-home-articles__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ============================================================
   Corporate / For Organisations page
   ============================================================ */
.ac-corp-eyebrow { font-family: "Inter", sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose, #a36b6a); margin: 0 0 16px; }

.ac-corp-hero { background: var(--bg, #faf7f1); padding: clamp(36px, 5vw, 72px) 0 clamp(48px, 6vw, 90px); }
.ac-corp-hero__grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.ac-corp-hero__title { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.1rem, 3.6vw, 3.4rem); font-weight: 500; line-height: 1.08; color: var(--olive-deep, #3f4a32); margin: 0 0 22px; }
.ac-corp-hero__rule { display: block; width: 64px; height: 2px; background: var(--terracotta, #b67759); opacity: 0.6; margin: 0 0 22px; }
.ac-corp-hero__copy p { max-width: 46ch; margin: 0 0 16px; font-size: 1.02rem; line-height: 1.75; color: var(--muted, #6f625a); }
.ac-corp-hero__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: 0 30px 70px rgba(82, 60, 40, 0.12); }

.ac-corp-solutions { padding: clamp(44px, 6vw, 90px) 0; background: #fff; }
.ac-corp-head { text-align: center; max-width: 44ch; margin: 0 auto clamp(32px, 4vw, 54px); }
.ac-corp-solutions .ac-corp-head { max-width: none; }
.ac-corp-solutions .ac-corp-head__title { white-space: nowrap; font-size: clamp(1.3rem, 2.3vw, 2.15rem); }
@media (max-width: 720px) { .ac-corp-solutions .ac-corp-head__title { white-space: normal; } }
.ac-corp-head--left { text-align: left; max-width: none; margin: 0 0 clamp(28px, 3vw, 42px); }
.ac-corp-head__title { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 500; line-height: 1.15; color: var(--olive-deep, #3f4a32); margin: 0; }
.ac-corp-cards { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.ac-corp-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: clamp(22px, 2vw, 32px) clamp(14px, 1.4vw, 20px); border: 1px solid rgba(190, 160, 110, 0.28); border-radius: 18px; background: rgba(250, 247, 241, 0.5); }
.ac-corp-card__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(95, 111, 78, 0.12); color: var(--olive, #5f6f4e); margin-bottom: 18px; }
.ac-corp-card__icon svg { width: 30px; height: 30px; }
.ac-corp-card__title { font-family: "Inter", sans-serif; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--olive-deep, #3f4a32); margin: 0 0 12px; line-height: 1.35; }
.ac-corp-card__text { font-size: 0.9rem; line-height: 1.6; color: var(--muted, #6f625a); margin: 0; }

/* Combined band: quote (left) beside the "Why this approach works" content
   (right), exactly like the mockup. */
.ac-corp-whyband { padding: clamp(44px, 6vw, 92px) 0; background: #fff; }
.ac-corp-whyband__grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(30px, 4vw, 72px); align-items: center; }

.ac-corp-quote { position: relative; }
.ac-corp-quote__media { border-radius: 20px; overflow: hidden; height: clamp(420px, 42vw, 560px); }
.ac-corp-quote__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ac-corp-quote__card { position: absolute; right: -34px; bottom: 34px; width: min(290px, 86%); padding: clamp(24px, 2vw, 34px); background: rgba(250, 247, 241, 0.98); border: 1px solid rgba(190, 160, 110, 0.3); border-radius: 18px; box-shadow: 0 26px 60px rgba(82, 60, 40, 0.13); }
.ac-corp-quote__mark { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 3rem; line-height: 0.4; color: var(--terracotta, #b67759); }
.ac-corp-quote__card p { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-size: 1.12rem; line-height: 1.5; color: var(--olive-deep, #3f4a32); margin: 12px 0 0; }

.ac-corp-why__lead { max-width: 60ch; margin: 16px 0 0; font-size: 1.02rem; line-height: 1.7; color: var(--muted, #6f625a); }
.ac-corp-pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.4vw, 24px); margin-top: clamp(26px, 3vw, 42px); }
.ac-corp-pillar { text-align: center; }
.ac-corp-pillar__icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%; border: 1px solid rgba(201, 164, 106, 0.45); color: #c9a46a; }
.ac-corp-pillar__icon svg { width: 27px; height: 27px; }
.ac-corp-pillar__title { font-family: "Inter", sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--olive-deep, #3f4a32); margin: 0 0 10px; }
.ac-corp-pillar__text { font-size: 0.9rem; line-height: 1.6; color: var(--muted, #6f625a); margin: 0; }

.ac-corp-cta { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 100px) 0; background: linear-gradient(180deg, rgba(226, 223, 205, 0.55), rgba(210, 206, 184, 0.7)); text-align: center; }
.ac-corp-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.ac-corp-cta__title { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 500; line-height: 1.18; color: var(--olive-deep, #3f4a32); margin: 0 0 16px; }
.ac-corp-cta__text { font-size: 1.02rem; line-height: 1.7; color: var(--muted, #6f625a); margin: 0 0 28px; }
.ac-corp-cta__leaf { position: absolute; width: 200px; height: 260px; opacity: 0.4; pointer-events: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 200' fill='none' stroke='%23c9a46a' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M60 196C60 130 56 80 74 26'/%3E%3Cpath d='M60 150c14-4 24-16 22-34-18 3-26 16-22 34Z'/%3E%3Cpath d='M50 120c-14-4-24-16-22-34 18 3 26 16 22 34Z'/%3E%3Cpath d='M62 90c14-4 24-16 22-34-18 3-26 16-22 34Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.ac-corp-cta__leaf--left { left: -20px; bottom: -30px; transform: scaleX(-1); }
.ac-corp-cta__leaf--right { right: -20px; top: -30px; }

@media (max-width: 1000px) {
	.ac-corp-hero__grid { grid-template-columns: 1fr; }
	.ac-corp-whyband__grid { grid-template-columns: 1fr; gap: 34px; }
	.ac-corp-quote { margin-bottom: 8px; }
	.ac-corp-quote__media img { min-height: 300px; }
	.ac-corp-quote__card { position: static; width: auto; margin: -46px 24px 0; }
}
/* Keep the 5 cards / 4 pillars in a single row (like the mockup) down to
   tablet, then stack. */
.ac-corp-cards { gap: clamp(10px, 1.2vw, 22px); }
.ac-corp-card { padding: clamp(18px, 1.6vw, 32px) clamp(10px, 1vw, 20px); }
@media (max-width: 820px) {
	.ac-corp-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
	.ac-corp-card { padding: clamp(22px, 4vw, 30px); }
}
@media (max-width: 720px) {
	.ac-corp-pillars { grid-template-columns: repeat(2, 1fr); max-width: 480px; margin: 30px auto 0; }
}
@media (max-width: 460px) {
	.ac-corp-pillars { grid-template-columns: 1fr; max-width: 320px; }
}

/* ============================================================
   Video testimonial — visible CC (English subtitles) toggle button,
   so it isn't buried in the native controls' overflow menu.
   ============================================================ */
.ac-testimonial-card__player { position: relative; }
.ac-testimonial-cc {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 28px;
	padding: 0 10px;
	border: 0;
	border-radius: 6px;
	background: rgba(31, 26, 23, 0.62);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(3px);
	transition: background 0.2s ease, transform 0.2s ease;
}
.ac-testimonial-cc:hover { background: rgba(31, 26, 23, 0.82); transform: translateY(-1px); }
.ac-testimonial-cc.is-on { background: var(--terracotta, #b67759); }

/* Resources blog cards: equal height + "read the article" link aligned to bottom */
.ac-blog-grid .ac-blog-card { height: 100%; }
.ac-blog-card > .e-con-inner { display: flex; flex-direction: column; height: 100%; }
.ac-blog-card-copy { display: flex; flex-direction: column; flex: 1 1 auto; }
.ac-blog-card-copy > .e-con-inner { display: flex; flex-direction: column; flex: 1 1 auto; height: 100%; }
.ac-blog-card-link { margin-top: auto; }

/* Sessions page (id 20): bigger session cards, centered on the viewport (grid breaks out of the boxed width). */
.page-id-20 .ac-guided-collection > .e-con-inner { max-width: min(94vw, 1280px) !important; overflow: visible !important; }
.page-id-20 .ac-guided-card-grid {
	width: min(94vw, 1280px) !important;
	max-width: none !important;
	position: relative !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.page-id-20 .ac-guided-card-grid > .e-con-inner { max-width: none !important; width: 100% !important; }
