@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/poppins-latin-ext-400.woff2") format("woff2");
	unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/poppins-latin-400.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/poppins-latin-ext-500.woff2") format("woff2");
	unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/poppins-latin-500.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/poppins-latin-ext-600.woff2") format("woff2");
	unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/poppins-latin-600.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Bodoni Moda";
	font-style: normal;
	font-weight: 500 600;
	font-display: swap;
	src: url("../fonts/bodoni-moda-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Bodoni Moda";
	font-style: normal;
	font-weight: 500 600;
	font-display: swap;
	src: url("../fonts/bodoni-moda-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--yuzu-ink: #2b241d;
	--yuzu-cocoa: #4b2a18;
	--yuzu-terracotta: #934e34;
	--yuzu-clay: #c0916e;
	--yuzu-pale-oak: #cfb196;
	--yuzu-sand: #e3d4c3;
	--yuzu-ivory: #f7f1eb;
	--yuzu-paper: #fffcf8;
	--yuzu-olive: #6f6e45;
	--yuzu-white: #fff;
	--yuzu-line: rgb(43 36 29 / 14%);
	--yuzu-shadow: 0 24px 70px rgb(75 42 24 / 12%);
	--yuzu-radius-sm: 0.75rem;
	--yuzu-radius-md: 1.5rem;
	--yuzu-radius-lg: 2.5rem;
	--yuzu-content: 760px;
	--yuzu-wide: 1280px;
	--yuzu-gutter: clamp(1.1rem, 4vw, 3rem);
	--yuzu-section: clamp(4rem, 7vw, 6.5rem);
}

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

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

body {
	margin: 0;
	overflow-x: clip;
	background: var(--yuzu-paper);
	color: var(--yuzu-ink);
	text-wrap: pretty;
}

body.admin-bar .yuzu-site-header {
	top: 32px;
}

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

a {
	text-underline-offset: 0.18em;
	text-decoration-thickness: 0.08em;
}

button,
input,
textarea,
select {
	font: inherit;
}

:focus-visible {
	outline: 3px solid var(--yuzu-olive);
	outline-offset: 4px;
}

::selection {
	background: var(--yuzu-sand);
	color: var(--yuzu-ink);
}

.yuzu-skip-link {
	position: fixed;
	z-index: 99999;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.75rem 1rem;
	transform: translateY(-160%);
	border-radius: 999px;
	background: var(--yuzu-ink);
	color: var(--yuzu-white);
	font-weight: 600;
}

.yuzu-skip-link:focus {
	transform: translateY(0);
}

.yuzu-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid transparent;
	background: rgb(255 252 248 / 92%);
	backdrop-filter: blur(16px);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.yuzu-site-header.is-scrolled {
	border-color: var(--yuzu-line);
	box-shadow: 0 8px 30px rgb(43 36 29 / 6%);
}

.yuzu-header-inner {
	min-height: 5.5rem;
	padding-inline: var(--yuzu-gutter);
}

.yuzu-logo {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	width: clamp(6.75rem, 11vw, 8.5rem);
	text-decoration: none;
}

.yuzu-logo img {
	width: 100%;
	height: auto;
}

.yuzu-navigation {
	gap: clamp(0.75rem, 1.7vw, 1.5rem);
}

.yuzu-navigation .wp-block-navigation-item__content {
	position: relative;
	padding-block: 0.55rem;
	color: var(--yuzu-ink);
	text-decoration: none;
}

.yuzu-navigation .wp-block-navigation-item:not(.yuzu-nav-cta) > .wp-block-navigation-item__content::after {
	position: absolute;
	right: 0;
	bottom: 0.25rem;
	left: 0;
	height: 1px;
	transform: scaleX(0);
	transform-origin: right;
	background: var(--yuzu-terracotta);
	content: "";
	transition: transform 180ms ease;
}

.yuzu-navigation .wp-block-navigation-item:not(.yuzu-nav-cta) > .wp-block-navigation-item__content:hover::after,
.yuzu-navigation .current-menu-item > .wp-block-navigation-item__content::after {
	transform: scaleX(1);
	transform-origin: left;
}

.yuzu-navigation .yuzu-nav-cta > .wp-block-navigation-item__content {
	padding: 0.68rem 1.1rem;
	border-radius: 999px;
	background: var(--yuzu-terracotta);
	color: var(--yuzu-white);
	font-weight: 600;
	transition: background 180ms ease, transform 180ms ease;
}

.yuzu-navigation .yuzu-nav-cta > .wp-block-navigation-item__content:hover {
	transform: translateY(-1px);
	background: var(--yuzu-cocoa);
}

.yuzu-main,
.yuzu-main .wp-block-post-content {
	margin-block: 0;
}

.yuzu-main--page > .wp-block-post-content > :first-child,
.yuzu-main--home > .wp-block-post-content > :first-child {
	margin-top: 0;
}

.yuzu-shell {
	width: min(calc(100% - (2 * var(--yuzu-gutter))), var(--yuzu-wide));
	margin-inline: auto;
}

.yuzu-shell--narrow {
	width: min(calc(100% - (2 * var(--yuzu-gutter))), var(--yuzu-content));
	margin-inline: auto;
}

.yuzu-section {
	position: relative;
	margin: 0;
	padding-block: var(--yuzu-section);
}

.yuzu-section--compact {
	padding-block: clamp(3rem, 6vw, 5rem);
}

.yuzu-section--ivory {
	background: var(--yuzu-ivory);
}

.yuzu-section--sand {
	background: var(--yuzu-sand);
}

.yuzu-section--ink {
	background: var(--yuzu-ink);
	color: var(--yuzu-ivory);
}

.yuzu-section--ink h1,
.yuzu-section--ink h2,
.yuzu-section--ink h3,
.yuzu-section--ink a {
	color: var(--yuzu-ivory);
}

.yuzu-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 1rem;
	color: var(--yuzu-terracotta);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.yuzu-kicker::before {
	display: block;
	width: 2.25rem;
	height: 1px;
	background: currentcolor;
	content: "";
}

.yuzu-section--ink .yuzu-kicker {
	color: var(--yuzu-pale-oak);
}

.yuzu-display,
.yuzu-page-title {
	max-width: 14ch;
	margin: 0;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2.75rem, 5.25vw, 5.4rem);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 0.94;
}

.yuzu-page-title {
	max-width: 18ch;
	font-size: clamp(2.5rem, 6vw, 5.8rem);
}

.yuzu-section-title {
	max-width: 15ch;
	margin: 0;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2.25rem, 5vw, 4.9rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.yuzu-subtitle {
	max-width: 24ch;
	margin: 0;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(1.65rem, 3vw, 2.7rem);
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.05;
}

.yuzu-lead {
	max-width: 43rem;
	margin-block: 1.5rem 0;
	color: rgb(43 36 29 / 78%);
	font-size: clamp(1.03rem, 1.45vw, 1.25rem);
	line-height: 1.65;
}

.yuzu-section--ink .yuzu-lead {
	color: rgb(247 241 235 / 78%);
}

.yuzu-section--ink .yuzu-copy p {
	color: rgb(247 241 235 / 78%);
}

.yuzu-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
	margin-top: 2rem;
}

.yuzu-button,
.yuzu-button:visited {
	display: inline-flex;
	min-height: 3.1rem;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.4rem;
	border: 1px solid var(--yuzu-terracotta);
	border-radius: 999px;
	background: var(--yuzu-terracotta);
	color: var(--yuzu-white);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.yuzu-button:hover {
	transform: translateY(-2px);
	border-color: var(--yuzu-cocoa);
	background: var(--yuzu-cocoa);
	color: var(--yuzu-white);
}

.yuzu-button--outline,
.yuzu-button--outline:visited {
	border-color: var(--yuzu-line);
	background: transparent;
	color: var(--yuzu-ink);
}

.yuzu-button--outline:hover {
	border-color: var(--yuzu-ink);
	background: var(--yuzu-ink);
	color: var(--yuzu-white);
}

.yuzu-section--ink .yuzu-button--outline,
.yuzu-section--ink .yuzu-button--outline:visited {
	border-color: rgb(247 241 235 / 35%);
	color: var(--yuzu-ivory);
}

.yuzu-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--yuzu-terracotta);
	font-weight: 600;
	text-decoration: none;
}

.yuzu-text-link::after {
	content: "→";
	transition: transform 180ms ease;
}

.yuzu-text-link:hover::after {
	transform: translateX(0.25rem);
}

.yuzu-hero {
	position: relative;
	min-height: min(830px, calc(100svh - 5.5rem));
	overflow: hidden;
	background:
		radial-gradient(circle at 15% 15%, rgb(207 177 150 / 30%), transparent 33rem),
		var(--yuzu-ivory);
}

.yuzu-hero::after {
	position: absolute;
	right: -10rem;
	bottom: -14rem;
	width: 38rem;
	height: 38rem;
	border: 1px solid rgb(147 78 52 / 22%);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.yuzu-hero-grid {
	display: grid;
	min-height: inherit;
	grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.85fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
	padding-block: clamp(3rem, 6vw, 6rem);
}

.yuzu-hero-copy {
	position: relative;
	z-index: 2;
}

.yuzu-hero-media {
	position: relative;
	z-index: 1;
	justify-self: end;
	width: min(100%, 34rem);
}

.yuzu-hero-media::before {
	position: absolute;
	z-index: -1;
	top: -1.6rem;
	right: -1.8rem;
	width: 62%;
	height: 46%;
	border-radius: 10rem 2rem 10rem 4rem;
	background: var(--yuzu-pale-oak);
	content: "";
}

.yuzu-hero-media img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	border-radius: 11rem 1.5rem 9rem 1.5rem;
	box-shadow: var(--yuzu-shadow);
	object-fit: cover;
	object-position: 58% center;
}

.yuzu-hero-note {
	position: absolute;
	right: -1.2rem;
	bottom: 2rem;
	max-width: 15rem;
	padding: 1rem 1.15rem;
	border: 1px solid rgb(255 255 255 / 60%);
	border-radius: 1rem;
	background: rgb(255 252 248 / 88%);
	box-shadow: 0 16px 40px rgb(43 36 29 / 14%);
	color: var(--yuzu-ink);
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.55;
	backdrop-filter: blur(12px);
}

.yuzu-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.4rem;
	margin-top: 2rem;
	color: rgb(43 36 29 / 64%);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.03em;
}

.yuzu-meta-row span {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.yuzu-meta-row span::before {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--yuzu-terracotta);
	content: "";
}

.yuzu-intro-grid,
.yuzu-split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: start;
}

.yuzu-copy > :first-child {
	margin-top: 0;
}

.yuzu-copy > :last-child {
	margin-bottom: 0;
}

.yuzu-copy p {
	color: rgb(43 36 29 / 76%);
}

.yuzu-copy p + p {
	margin-top: 1.25rem;
}

.yuzu-stats,
.yuzu-card-grid,
.yuzu-price-grid,
.yuzu-step-grid,
.yuzu-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.yuzu-stats,
.yuzu-card-grid {
	margin-top: clamp(2.25rem, 4vw, 3rem);
}

.yuzu-stat,
.yuzu-card,
.yuzu-contact-card {
	position: relative;
	padding: clamp(1.35rem, 3vw, 2rem);
	border: 1px solid var(--yuzu-line);
	border-radius: var(--yuzu-radius-md);
	background: var(--yuzu-paper);
}

.yuzu-stat-number {
	display: block;
	margin-bottom: 2.5rem;
	color: var(--yuzu-terracotta);
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2.3rem, 5vw, 4rem);
	line-height: 1;
}

.yuzu-stat h3,
.yuzu-card h3,
.yuzu-contact-card h2,
.yuzu-contact-card h3 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.35rem, 2.4vw, 1.8rem);
	line-height: 1.1;
}

.yuzu-stat p,
.yuzu-card p,
.yuzu-contact-card p {
	margin: 0;
	color: rgb(43 36 29 / 70%);
	font-size: 0.92rem;
	line-height: 1.65;
}

.yuzu-media-frame {
	position: relative;
}

.yuzu-media-frame img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	border-radius: 1.5rem 8rem 1.5rem 8rem;
	box-shadow: var(--yuzu-shadow);
	object-fit: cover;
}

.yuzu-media-frame--wide img {
	aspect-ratio: 4 / 3;
	border-radius: var(--yuzu-radius-lg);
}

.yuzu-split--balanced {
	align-items: center;
}

.yuzu-split--about-eliza {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.yuzu-media-frame--eliza img {
	aspect-ratio: 1 / 1;
	object-position: 50% 32%;
}

.yuzu-instructor--eliza img {
	object-position: 50% 32%;
}

.yuzu-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.yuzu-pill-list li {
	padding: 0.55rem 0.85rem;
	border: 1px solid var(--yuzu-line);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 500;
}

.yuzu-editorial-quote {
	max-width: 20ch;
	margin: 0;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2rem, 4.8vw, 4.5rem);
	letter-spacing: -0.035em;
	line-height: 1.04;
}

.yuzu-editorial-quote em {
	color: var(--yuzu-pale-oak);
	font-weight: inherit;
}

.yuzu-instructor-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 4vw, 2.5rem);
	margin-top: 3rem;
}

.yuzu-instructor {
	display: grid;
	grid-template-columns: minmax(9rem, 0.78fr) minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid var(--yuzu-line);
	border-radius: var(--yuzu-radius-lg);
	background: var(--yuzu-paper);
}

.yuzu-instructor img {
	width: 100%;
	height: 100%;
	min-height: 23rem;
	object-fit: cover;
}

.yuzu-instructor-copy {
	align-self: center;
	padding: clamp(1.4rem, 3vw, 2.25rem);
}

.yuzu-instructor-copy h3 {
	margin: 0 0 0.4rem;
	font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.yuzu-role {
	margin: 0 0 1.2rem;
	color: var(--yuzu-terracotta);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.yuzu-instructor-copy p:last-child {
	margin-bottom: 0;
}

.yuzu-price-grid {
	align-items: stretch;
	margin-top: 3rem;
}

.yuzu-price-card {
	display: flex;
	min-height: 25rem;
	flex-direction: column;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid var(--yuzu-line);
	border-radius: var(--yuzu-radius-lg);
	background: var(--yuzu-paper);
}

.yuzu-price-card--featured {
	transform: translateY(-1rem);
	border-color: transparent;
	background: var(--yuzu-terracotta);
	color: var(--yuzu-white);
	box-shadow: 0 24px 60px rgb(147 78 52 / 22%);
}

.yuzu-price-card h2,
.yuzu-price-card h3 {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.yuzu-price-card--featured h2,
.yuzu-price-card--featured h3,
.yuzu-price-card--featured .yuzu-price {
	color: var(--yuzu-white);
}

.yuzu-price {
	display: block;
	margin-block: auto 0.8rem;
	padding-top: 3rem;
	color: var(--yuzu-cocoa);
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2.5rem, 5vw, 4.4rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1;
}

.yuzu-price-note {
	margin: 0;
	color: rgb(43 36 29 / 64%);
	font-size: 0.82rem;
}

.yuzu-price-card--featured .yuzu-price-note {
	color: rgb(255 255 255 / 78%);
}

.yuzu-price-card .yuzu-button {
	margin-top: 1.5rem;
}

.yuzu-price-card--featured .yuzu-button {
	border-color: var(--yuzu-white);
	background: var(--yuzu-white);
	color: var(--yuzu-terracotta);
}

.yuzu-step-grid {
	counter-reset: yuzu-step;
	margin-top: 3rem;
}

.yuzu-step {
	position: relative;
	padding: 4.5rem 1.5rem 1.75rem;
	border-top: 1px solid currentcolor;
	counter-increment: yuzu-step;
}

.yuzu-step::before {
	position: absolute;
	top: 1rem;
	left: 1.5rem;
	color: var(--yuzu-pale-oak);
	content: "0" counter(yuzu-step);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.yuzu-step h3 {
	margin: 0 0 0.7rem;
	color: inherit;
	font-size: clamp(1.4rem, 2.3vw, 1.85rem);
}

.yuzu-step p {
	margin: 0;
	color: rgb(247 241 235 / 72%);
	font-size: 0.9rem;
}

.yuzu-page-hero {
	overflow: hidden;
	padding-block: clamp(3.5rem, 7vw, 6rem);
	background:
		radial-gradient(circle at 85% 10%, rgb(207 177 150 / 32%), transparent 26rem),
		var(--yuzu-ivory);
}

.yuzu-page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: center;
}

.yuzu-page-hero-media {
	width: min(100%, 28rem);
	justify-self: end;
}

.yuzu-page-hero-media img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	border-radius: 8rem 1.5rem 8rem 1.5rem;
	object-fit: cover;
}

.yuzu-page-hero-media--patricia img {
	object-position: 50% 66%;
}

.yuzu-page-hero-media--patricia {
	width: min(100%, 22.5rem);
}

.yuzu-page-hero + .yuzu-section {
	padding-top: clamp(3rem, 5vw, 4.5rem);
}

.yuzu-prose {
	font-size: 1.02rem;
}

.yuzu-prose h2 {
	margin-top: 3.5rem;
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.yuzu-prose h3 {
	margin-top: 2.5rem;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.yuzu-prose p,
.yuzu-prose li {
	color: rgb(43 36 29 / 78%);
}

.yuzu-prose a {
	font-weight: 600;
}

.yuzu-checklist {
	display: grid;
	gap: 0.75rem;
	margin: 2rem 0;
	padding: 0;
	list-style: none;
}

.yuzu-checklist li {
	position: relative;
	padding: 1rem 1rem 1rem 3rem;
	border: 1px solid var(--yuzu-line);
	border-radius: var(--yuzu-radius-sm);
	background: var(--yuzu-paper);
}

.yuzu-checklist li::before {
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	background: var(--yuzu-olive);
	color: var(--yuzu-white);
	content: "✓";
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.35rem;
	text-align: center;
}

.yuzu-note {
	margin-block: 2rem;
	padding: 1.25rem 1.4rem;
	border-left: 4px solid var(--yuzu-terracotta);
	border-radius: 0 var(--yuzu-radius-sm) var(--yuzu-radius-sm) 0;
	background: var(--yuzu-ivory);
}

.yuzu-note p {
	margin: 0;
}

.yuzu-faq {
	display: grid;
	gap: 0;
	margin-top: 2.5rem;
	border-top: 1px solid var(--yuzu-line);
}

.yuzu-faq details {
	border-bottom: 1px solid var(--yuzu-line);
}

.yuzu-faq summary {
	position: relative;
	padding: 1.4rem 3rem 1.4rem 0;
	cursor: pointer;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 500;
	line-height: 1.2;
	list-style: none;
}

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

.yuzu-faq summary::after {
	position: absolute;
	top: 50%;
	right: 0.4rem;
	transform: translateY(-50%);
	color: var(--yuzu-terracotta);
	content: "+";
	font-family: Poppins, sans-serif;
	font-size: 1.4rem;
}

.yuzu-faq details[open] summary::after {
	content: "−";
}

.yuzu-faq details > div {
	max-width: 50rem;
	padding: 0 3rem 1.5rem 0;
	color: rgb(43 36 29 / 76%);
}

.yuzu-faq details > div p:first-child {
	margin-top: 0;
}

.yuzu-contact-grid {
	margin-top: 3rem;
}

.yuzu-contact-section .yuzu-contact-grid {
	margin-top: 0;
}

.yuzu-contact-card a {
	font-weight: 600;
	word-break: break-word;
}

.yuzu-map-link {
	display: flex;
	min-height: 22rem;
	align-items: flex-end;
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: var(--yuzu-radius-lg);
	background:
		linear-gradient(120deg, rgb(43 36 29 / 78%), rgb(75 42 24 / 28%)),
		url("../images/yuzu-interior.webp") center / cover;
	color: var(--yuzu-white);
	text-decoration: none;
}

.yuzu-map-link span {
	display: block;
	max-width: 18ch;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.8rem);
	line-height: 1;
}

.yuzu-contact-map-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: stretch;
}

.yuzu-map-embed {
	position: relative;
	min-height: clamp(24rem, 36vw, 31rem);
	overflow: hidden;
	border: 1px solid var(--yuzu-line);
	border-radius: var(--yuzu-radius-lg);
	background: var(--yuzu-ink);
	box-shadow: var(--yuzu-shadow);
}

.yuzu-map-embed__preview {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: clamp(1.5rem, 4vw, 3rem);
	background:
		linear-gradient(135deg, rgb(43 36 29 / 88%), rgb(75 42 24 / 38%)),
		url("../images/yuzu-interior.webp") center 58% / cover;
	color: var(--yuzu-white);
}

.yuzu-map-embed__preview .yuzu-kicker {
	color: var(--yuzu-pale-oak);
}

.yuzu-map-embed__preview h2 {
	max-width: 12ch;
	margin: 0;
	color: var(--yuzu-white);
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2.25rem, 4.5vw, 4.25rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1;
}

.yuzu-map-embed__preview p:not(.yuzu-kicker) {
	max-width: 38rem;
	margin: 1rem 0 0;
	color: rgb(255 255 255 / 82%);
}

.yuzu-map-embed__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.yuzu-map-embed__actions .yuzu-button--outline,
.yuzu-map-embed__actions .yuzu-button--outline:visited {
	border-color: rgb(255 255 255 / 52%);
	color: var(--yuzu-white);
}

.yuzu-map-embed iframe {
	display: block;
	width: 100%;
	height: clamp(24rem, 36vw, 31rem);
	border: 0;
}

.yuzu-contact-arrival {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.75rem, 4vw, 3rem);
	border: 1px solid var(--yuzu-line);
	border-radius: var(--yuzu-radius-lg);
	background: var(--yuzu-paper);
}

.yuzu-legal-notice {
	margin-bottom: 2rem;
	padding: 1rem 1.2rem;
	border: 1px solid #a86a20;
	border-radius: var(--yuzu-radius-sm);
	background: #fff4dc;
	color: #59350a;
	font-size: 0.88rem;
}

.yuzu-legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.yuzu-legal-table th,
.yuzu-legal-table td {
	padding: 0.85rem;
	border: 1px solid var(--yuzu-line);
	text-align: left;
	vertical-align: top;
}

.yuzu-review-placeholder {
	margin-top: clamp(2.25rem, 4vw, 3rem);
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px dashed rgb(43 36 29 / 30%);
	border-radius: var(--yuzu-radius-lg);
	background: rgb(255 252 248 / 55%);
	text-align: center;
}

.yuzu-review-placeholder p {
	max-width: 42rem;
	margin-inline: auto;
}

.yuzu-cta-band {
	overflow: hidden;
	background: var(--yuzu-terracotta);
	color: var(--yuzu-white);
}

.yuzu-cta-band .yuzu-shell {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.yuzu-cta-band h2 {
	max-width: 15ch;
	margin: 0;
	color: var(--yuzu-white);
	font-size: clamp(2rem, 5vw, 4.5rem);
}

.yuzu-cta-band .yuzu-button {
	flex: 0 0 auto;
	border-color: var(--yuzu-white);
	background: var(--yuzu-white);
	color: var(--yuzu-terracotta);
}

.yuzu-footer {
	margin: 0;
	padding: clamp(4rem, 8vw, 7rem) var(--yuzu-gutter) 1.5rem;
	background: var(--yuzu-ink);
	color: rgb(247 241 235 / 75%);
}

.yuzu-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: clamp(2rem, 5vw, 5rem);
}

.yuzu-footer-brand img {
	width: 10rem;
	height: auto;
	margin-bottom: 1.5rem;
}

.yuzu-footer-brand p {
	max-width: 18rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 1.6rem;
	line-height: 1.15;
}

.yuzu-footer-heading {
	margin: 0 0 1rem;
	color: var(--yuzu-white);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.yuzu-footer ul {
	display: grid;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.yuzu-footer a,
.yuzu-footer address {
	color: rgb(247 241 235 / 75%);
	font-size: 0.86rem;
	font-style: normal;
	line-height: 1.8;
}

.yuzu-footer a:hover {
	color: var(--yuzu-white);
}

.yuzu-social-links {
	display: flex;
	gap: 1rem;
}

.yuzu-cookie-settings {
	padding: 0;
	border: 0;
	background: transparent;
	color: rgb(247 241 235 / 75%);
	cursor: pointer;
	font-size: 0.86rem;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.yuzu-footer-bottom {
	display: flex;
	gap: 1rem 2rem;
	justify-content: space-between;
	margin-top: clamp(3rem, 7vw, 6rem);
	padding-top: 1.25rem;
	border-top: 1px solid rgb(247 241 235 / 14%);
	font-size: 0.72rem;
}

.yuzu-footer-bottom p {
	margin: 0;
}

.yuzu-credit {
	opacity: 0.7;
}

.yuzu-mobile-booking {
	display: none;
}

.yuzu-error,
.yuzu-article {
	padding: var(--yuzu-section) var(--yuzu-gutter);
}

.yuzu-post-card {
	margin-block: 1rem;
	padding: 1.5rem;
	border: 1px solid var(--yuzu-line);
	border-radius: var(--yuzu-radius-md);
}

.reveal-enabled [data-reveal] {
	opacity: 0;
	transform: translateY(1.25rem);
	transition: opacity 650ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-enabled [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* Above-the-fold content must be immediately readable and paintable. */
.reveal-enabled .yuzu-hero [data-reveal],
.reveal-enabled .yuzu-page-hero [data-reveal] {
	opacity: 1;
	transform: none;
	transition: none;
}

.reveal-enabled [data-reveal-delay="1"] {
	transition-delay: 90ms;
}

.reveal-enabled [data-reveal-delay="2"] {
	transition-delay: 180ms;
}

/* Complianz adopts the Yuzu system without changing its consent logic. */
.cmplz-cookiebanner {
	border: 1px solid var(--yuzu-line) !important;
	border-radius: 1.25rem !important;
	background: var(--yuzu-paper) !important;
	box-shadow: var(--yuzu-shadow) !important;
	font-family: Poppins, system-ui, sans-serif !important;
}

.cmplz-cookiebanner .cmplz-title {
	font-family: "Bodoni Moda", Georgia, serif !important;
	font-size: 1.75rem !important;
	font-weight: 500 !important;
}

.cmplz-cookiebanner .cmplz-btn {
	min-height: 2.9rem !important;
	border: 1px solid var(--yuzu-terracotta) !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	font-weight: 600 !important;
}

.cmplz-cookiebanner .cmplz-accept,
.cmplz-cookiebanner .cmplz-deny {
	background: var(--yuzu-terracotta) !important;
	color: var(--yuzu-white) !important;
}

.cmplz-cookiebanner .cmplz-view-preferences {
	background: transparent !important;
	color: var(--yuzu-ink) !important;
}

/* The visible consent re-entry lives in the footer; keep Complianz's trigger as an accessible JS target. */
.cmplz-manage-consent {
	display: none !important;
}

@media (max-width: 1100px) {
	.yuzu-navigation {
		gap: 0.65rem;
	}

	.yuzu-navigation .wp-block-navigation-item__content {
		font-size: 0.78rem;
	}

	.yuzu-instructor {
		grid-template-columns: 1fr;
	}

	.yuzu-instructor img {
		min-height: 18rem;
		max-height: 26rem;
	}
}

@media (max-width: 900px) {
	body.admin-bar .yuzu-site-header {
		top: 46px;
	}

	.yuzu-header-inner {
		min-height: 4.8rem;
	}

	.yuzu-navigation .wp-block-navigation__responsive-container-open,
	.yuzu-navigation .wp-block-navigation__responsive-container-close {
		display: inline-flex;
		width: 2.75rem;
		height: 2.75rem;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
	}

	.yuzu-navigation .wp-block-navigation__responsive-container.is-menu-open {
		padding: 1.25rem var(--yuzu-gutter) 2rem;
		background: var(--yuzu-ivory);
		color: var(--yuzu-ink);
	}

	.yuzu-navigation .wp-block-navigation__responsive-container-content {
		gap: 1.25rem;
	}

	.yuzu-navigation .wp-block-navigation__container {
		gap: 0.7rem;
		align-items: flex-start;
	}

	.yuzu-navigation .wp-block-navigation-item__content {
		font-family: "Bodoni Moda", Georgia, serif;
		font-size: clamp(1.7rem, 7vw, 3rem);
		line-height: 1.1;
	}

	.yuzu-navigation .yuzu-nav-cta > .wp-block-navigation-item__content {
		margin-top: 0.75rem;
		padding: 0.75rem 1.2rem;
		font-family: Poppins, sans-serif;
		font-size: 0.9rem;
	}

	.yuzu-hero {
		min-height: auto;
	}

	.yuzu-hero-grid,
	.yuzu-page-hero-grid,
	.yuzu-intro-grid,
	.yuzu-split,
	.yuzu-split--about-eliza {
		grid-template-columns: 1fr;
	}

	.yuzu-page-hero-media {
		justify-self: center;
	}

	.yuzu-hero-grid {
		padding-bottom: 5rem;
	}

	.yuzu-hero-media {
		justify-self: center;
		width: min(90%, 35rem);
	}

	.yuzu-hero-media img {
		aspect-ratio: 4 / 4.6;
	}

	.yuzu-stats,
	.yuzu-card-grid,
	.yuzu-price-grid,
	.yuzu-step-grid,
	.yuzu-contact-grid {
		grid-template-columns: 1fr;
	}

	.yuzu-contact-map-grid {
		grid-template-columns: 1fr;
	}

	.yuzu-price-card {
		min-height: 20rem;
	}

	.yuzu-price-card--featured {
		transform: none;
	}

	.yuzu-instructor-grid {
		grid-template-columns: 1fr;
	}

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

	.yuzu-cta-band .yuzu-shell {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 700px) {
	body:not(.is-booking-page) {
		padding-bottom: 4.5rem;
	}

	.yuzu-display {
		font-size: clamp(2.55rem, 11.5vw, 3.55rem);
	}

	.yuzu-section-title {
		line-height: 1.06;
	}

	.yuzu-map-embed,
	.yuzu-map-embed iframe {
		min-height: 23rem;
		height: 23rem;
	}

	.yuzu-hero-note {
		right: -0.5rem;
		bottom: 1rem;
	}

	.yuzu-meta-row {
		display: grid;
		gap: 0.45rem;
	}

	.yuzu-instructor {
		grid-template-columns: 1fr;
	}

	.yuzu-footer-grid {
		grid-template-columns: 1fr;
	}

	.yuzu-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.yuzu-mobile-booking {
		position: fixed;
		z-index: 950;
		right: 0.75rem;
		bottom: 0.75rem;
		left: 0.75rem;
		display: flex;
		min-height: 3.4rem;
		align-items: center;
		justify-content: space-between;
		padding: 0.85rem 1.2rem;
		border: 1px solid rgb(255 255 255 / 28%);
		border-radius: 999px;
		background: rgb(147 78 52 / 96%);
		box-shadow: 0 12px 35px rgb(43 36 29 / 25%);
		color: var(--yuzu-white) !important;
		font-size: 0.9rem;
		font-weight: 600;
		text-decoration: none;
		backdrop-filter: blur(14px);
	}

	.is-booking-page .yuzu-mobile-booking {
		display: none;
	}

	.yuzu-legal-table,
	.yuzu-legal-table tbody,
	.yuzu-legal-table tr,
	.yuzu-legal-table th,
	.yuzu-legal-table td {
		display: block;
	}

	.yuzu-legal-table tr {
		margin-bottom: 1rem;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.yuzu-site-header,
	.yuzu-footer,
	.yuzu-actions,
	.yuzu-mobile-booking,
	.cmplz-cookiebanner {
		display: none !important;
	}

	.yuzu-section,
	.yuzu-page-hero {
		padding-block: 1rem;
	}

	body {
		background: #fff;
		color: #000;
	}
}
