/* ==========================================================================
   Yoga Passage design system — tokens + components.
   Source: GRO-428 design-analysis (Figma Desktop 1440; tablet/mobile are
   conventional fallbacks pending designer sign-off).
   ========================================================================== */

:root {
	--yp-navy: #111724;
	--yp-olive: #7F3D1C;
	--yp-taupe: #7F3D1C;
	--yp-cream: #F5F0E8;
	--yp-white: #FFFFFF;
	--yp-black: #000000;
	--yp-faq-border: #404557;
	--yp-footer-divider: #4B5168;
	--yp-input-border: #DAD4D4;
	--yp-row-border: #E5E5E5;
	--yp-card-border: rgba(127, 61, 28, 0.2); /* taupe @20% shared card borders */
	--yp-text-light: rgba(245, 240, 232, 0.5);
	--yp-text-light-strong: rgba(245, 240, 232, 0.72);
	--yp-text-muted: rgba(17, 23, 36, 0.66);

	--yp-font-display: "Montserrat", sans-serif;
	--yp-font-body: "Proxima Nova", "proxima-nova", "Helvetica Neue", Arial, sans-serif;

	--yp-container: 1240px;
	--yp-gutter: 30px;
	--yp-section-pad: 80px;
	--yp-radius-pill: 100px;
	--yp-header-h: 112px;
}

/* ------------------------------------------------------------------ base */

body {
	font-family: var(--yp-font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--yp-navy);
	background: var(--yp-white);
}

.yp-container {
	max-width: var(--yp-container);
	margin-inline: auto;
	padding-inline: 20px;
}

@media (min-width: 1281px) {
	.yp-container { padding-inline: 0; }
}

.yp-block { position: relative; }
.yp-section { padding-block: var(--yp-section-pad); }

/* Section background schemes */
.is-navy { background: var(--yp-navy); color: var(--yp-white); }
.is-white { background: var(--yp-white); color: var(--yp-navy); }
.is-cream { background: var(--yp-cream); color: var(--yp-navy); }
.is-cream-soft { background: rgba(245, 240, 232, 0.5); color: var(--yp-navy); }

/* GP wrapper neutralization for full-bleed block pages */
.yp-transparent-header .site-content,
body .site-content { padding: 0; }
.container.grid-container { max-width: none; padding: 0; }
.separate-containers .inside-article { padding: 0; }
.entry-content { margin-top: 0; }

/* ------------------------------------------------------------ typography */

.yp-h1,
.yp-h2,
.yp-page-hero__title {
	font-family: var(--yp-font-display);
	font-weight: 400;
	text-transform: uppercase; /* stored sentence case; caps via CSS per readout */
	margin: 0;
}

.yp-h1 { font-size: clamp(38px, 4.6vw, 66px); line-height: 1.12; }
.yp-h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.16; }

/* Two-tone headings: <em> = accent */
.yp-h1 em, .yp-h2 em, .yp-page-hero__title em { font-style: normal; }
.is-navy .yp-h2 em, .yp-h1 em, .yp-page-hero__title em, .yp-hero .yp-h1 em { color: var(--yp-olive); }
.is-white .yp-h2 em, .is-cream .yp-h2 em, .is-cream-soft .yp-h2 em { color: var(--yp-taupe); }
.yp-pricing-panel.is-navy .yp-h2 em { color: var(--yp-olive); }

.yp-eyebrow {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--yp-font-display);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 24px;
	color: var(--yp-taupe);
}

.yp-eyebrow__rule { width: 30px; height: 1px; background: currentColor; flex: none; }
.is-navy .yp-eyebrow, .yp-hero .yp-eyebrow { color: var(--yp-olive); }

.yp-section-header { margin-bottom: 40px; max-width: 820px; }
.yp-section-header.is-center { margin-inline: auto; text-align: center; }
.yp-section-header.is-center .yp-eyebrow { justify-content: center; }

.yp-prose { margin-top: 8px; }
.yp-prose p { margin: 0 0 16px; }
.yp-prose a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.yp-prose a:hover { color: var(--yp-olive); }
.is-navy .yp-prose, .is-navy .yp-faq__body { color: var(--yp-text-light-strong); }
.is-white .yp-prose, .is-cream .yp-prose, .is-cream-soft .yp-prose { color: var(--yp-text-muted); }

/* ------------------------------------------------------------- buttons */

.yp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: var(--yp-radius-pill);
	font-family: var(--yp-font-display);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.2;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Hover states are not designed in Figma — conventional darken/invert, flagged for sign-off. */
.yp-btn--olive { background: var(--yp-olive); color: var(--yp-white); }
.yp-btn--olive:hover { background: color-mix(in srgb, var(--yp-olive) 85%, white); color: var(--yp-white); }
.yp-btn--taupe { background: var(--yp-taupe); color: var(--yp-white); }
.yp-btn--taupe:hover { background: color-mix(in srgb, var(--yp-taupe) 85%, white); color: var(--yp-white); }
.yp-btn--white { background: var(--yp-white); color: var(--yp-taupe); }
.yp-btn--white:hover { background: var(--yp-cream); color: var(--yp-taupe); }
.yp-btn--outline-white { border-color: var(--yp-white); color: var(--yp-white); background: transparent; }
.yp-btn--outline-white:hover { background: rgba(255, 255, 255, 0.12); color: var(--yp-white); }
.yp-btn--outline-navy { border-color: var(--yp-navy); color: var(--yp-navy); background: transparent; }
.yp-btn--outline-navy:hover { background: rgba(17, 23, 36, 0.08); color: var(--yp-navy); }

.yp-btn__arrow svg, .yp-icon svg { display: block; width: 1em; height: 1em; }

.yp-btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.yp-textlink {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--yp-font-display);
	font-weight: 500;
	font-size: 16px;
	color: var(--yp-olive);
	text-decoration: none;
	text-transform: uppercase;
}
.yp-textlink:hover { text-decoration: underline; color: var(--yp-olive); }

.yp-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--yp-font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--yp-olive);
	text-decoration: none;
	margin-top: 18px;
}
.yp-learn-more:hover { text-decoration: underline; color: var(--yp-olive); }

.yp-chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 24px 0; padding: 0; }
.yp-chips li {
	background: rgba(127, 61, 28, 0.1);
	color: var(--yp-taupe);
	border-radius: var(--yp-radius-pill);
	padding: 8px 18px;
	font-size: 14px;
}
.yp-chip {
	display: inline-block;
	padding: 4px 14px;
	white-space: nowrap;
	background: transparent;
	color: var(--yp-taupe);
	border: 1px solid var(--yp-taupe);
	border-radius: 0;
	font-size: 14px;
}

.yp-badge {
	display: inline-block;
	background: var(--yp-navy);
	color: var(--yp-white);
	border-radius: 0;
	padding: 8px 20px;
	font-family: var(--yp-font-display);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 22px;
}

/* ------------------------------------------------------------- images */

.yp-img-placeholder {
	display: grid;
	place-items: center;
	background: repeating-linear-gradient(45deg, rgba(127,61,28,.12), rgba(127,61,28,.12) 14px, rgba(127,61,28,.2) 14px, rgba(127,61,28,.2) 28px);
	color: var(--yp-taupe);
	font-family: var(--yp-font-display);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	min-height: 240px;
	width: 100%;
	text-align: center;
	padding: 20px;
}
.yp-img-placeholder span { max-width: 260px; }

/* --------------------------------------------------------------- header */

.yp-header {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 50;
	background: var(--yp-navy); /* solid fallback when no hero present */
}
.yp-transparent-header .yp-header { background: transparent; }

.yp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: var(--yp-header-h);
	padding-inline: clamp(20px, 6.9vw, 100px);
}

.yp-wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.yp-wordmark--text {
	font-family: var(--yp-font-display);
	font-weight: 500;
	font-size: 26px;
	letter-spacing: 0.42em;
	color: var(--yp-white);
}
.yp-wordmark--text:hover { color: var(--yp-white); }
.yp-wordmark__img { max-height: 32px; width: auto; }

.yp-nav { /* glass pill */
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: var(--yp-radius-pill);
	padding: 6px 10px;
}
.yp-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.yp-nav__list li { position: relative; }
.yp-nav__list a {
	display: inline-block;
	color: var(--yp-white);
	font-size: 15px;
	text-decoration: none;
	padding: 10px 14px;
	border-radius: var(--yp-radius-pill);
	white-space: nowrap;
}
.yp-nav__list a:hover { background: rgba(255, 255, 255, 0.1); color: var(--yp-white); }

.yp-nav__list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--yp-navy);
	border-radius: 0;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	z-index: 60;
}
.yp-nav__list li:hover > .sub-menu,
.yp-nav__list li:focus-within > .sub-menu { display: block; }
.yp-nav__list .sub-menu li { position: relative; }
.yp-nav__list .sub-menu a { display: block; border-radius: 8px; }
.yp-nav__list .sub-menu .sub-menu { top: 0; left: 100%; margin: 0 0 0 4px; }

.yp-nav__list .menu-item-has-children > a { position: relative; padding-right: 30px; }
.yp-nav__list > .menu-item-has-children > a::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
}
.yp-nav__list .sub-menu .menu-item-has-children > a::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-50%) rotate(-45deg);
}

.yp-header__book { padding: 15px 26px; }

.yp-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: rgba(255, 255, 255, 0.08);
	border: 0;
	border-radius: var(--yp-radius-pill);
	padding: 14px;
	cursor: pointer;
}
.yp-nav-toggle__bar { width: 22px; height: 2px; background: var(--yp-white); display: block; }

.yp-mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 80%;
	max-width: 360px;
	background: var(--yp-navy);
	padding: 24px clamp(20px, 6vw, 40px) 32px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.35s ease;
	z-index: 200;
	box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
}
.yp-mobile-nav.is-open { transform: translateX(0); }

.yp-mobile-nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
	z-index: 190;
}
.yp-mobile-nav-backdrop.is-open { opacity: 1; visibility: visible; }
body.yp-nav-open { overflow: hidden; }
.yp-mobile-nav__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.yp-mobile-nav__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.08);
	border: 0;
	border-radius: var(--yp-radius-pill);
	color: var(--yp-white);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}
.yp-mobile-nav__list { list-style: none; margin: 0 0 20px; padding: 0; }
.yp-mobile-nav__list li { position: relative; }
.yp-mobile-nav__list a {
	display: block;
	color: var(--yp-white);
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid var(--yp-footer-divider);
	font-family: var(--yp-font-display);
	font-size: 16px;
}
.yp-mobile-nav__list .menu-item-has-children > a { padding-right: 40px; }

.yp-mobile-nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 16px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.yp-mobile-nav__list .sub-menu a { font-size: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.yp-mobile-nav__list li.is-expanded > .sub-menu { max-height: 1000px; }

.yp-mobile-nav__expand {
	position: absolute;
	top: 4px;
	right: 0;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.yp-mobile-nav__expand::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid var(--yp-white);
	border-bottom: 1.5px solid var(--yp-white);
	transform: translate(-50%, -65%) rotate(45deg);
	transition: transform 0.25s ease;
}
.yp-mobile-nav__list li.is-expanded > .yp-mobile-nav__expand::after { transform: translate(-50%, -35%) rotate(225deg); }

@media (max-width: 1099px) {
	.yp-nav, .yp-header__cta { display: none; }
	.yp-nav-toggle { display: flex; }
	.yp-header { position: relative; background: var(--yp-navy); }
	.yp-transparent-header .yp-header { background: var(--yp-navy); }
	.yp-header__inner { height: 76px; }
}

/* ---------------------------------------------------------------- heroes */

.yp-hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	background: var(--yp-navy);
	color: var(--yp-white);
	padding-top: var(--yp-header-h);
}
@media (min-width: 1100px) { .yp-hero { min-height: 960px; } }

.yp-hero__media { position: absolute; inset: 0; overflow: hidden; }
.yp-hero__media img, .yp-hero__media video, .yp-hero__media .yp-img-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 0;
}
/* Poster <img> is the real, always-present layer (it's what LCP/fetchpriority
   target — see render.php). The video only fades in over it once site.js has
   confirmed it's actually loaded and playing, so a slow/blocked/skipped video
   never leaves a blank gap — the poster is already there under it regardless. */
.yp-hero__video { opacity: 0; transition: opacity 0.6s ease; }
.yp-hero__video.is-ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
	.yp-hero__video { display: none; } /* site.js already skips playing it; this is belt-and-suspenders. */
}
.yp-hero__scrim {
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 75% at 50% 42%, transparent 10%, rgba(17, 23, 36, 0.6) 40%, rgba(17, 23, 36, 0.92) 70%, rgba(17, 23, 36, 1) 100%);
}

.yp-hero__content { position: relative; z-index: 2; width: 100%; padding-block: 90px 150px; }
.yp-hero__kicker { margin-bottom: 28px; }
.yp-hero__sub { font-size: 20px; line-height: 1.4; color: var(--yp-text-light); max-width: 560px; margin: 24px 0 0; }
@media (min-width: 1100px) {
	.yp-hero__content {
		max-width: calc(var(--yp-container) * 0.6);
		margin-inline: max(20px, calc((100% - var(--yp-container)) / 2)) auto;
	}
}

.yp-trust-bar {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 3;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
.yp-trust-bar__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; padding-block: 22px; }
.yp-trust-bar__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--yp-font-display);
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.yp-trust-bar__item .yp-icon { color: var(--yp-olive); font-size: 22px; }

/* Interior page banner */
.yp-page-hero {
	position: relative;
	min-height: 335px;
	display: flex;
	align-items: center;
	background: var(--yp-navy);
	color: var(--yp-white);
	padding: calc(var(--yp-header-h) + 40px) 0 48px;
}
.yp-page-hero__media { position: absolute; inset: 0; overflow: hidden; }
.yp-page-hero__media img, .yp-page-hero__media .yp-img-placeholder { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; position: absolute; inset: 0; min-height: 0; }
.yp-page-hero__scrim { position: absolute; inset: 0; background: radial-gradient(70% 75% at 50% 42%, transparent 10%, rgba(17, 23, 36, 0.6) 40%, rgba(17, 23, 36, 0.92) 70%, rgba(17, 23, 36, 1) 100%); }
.yp-page-hero .yp-container { position: relative; z-index: 2; width: 100%; text-align: center; }
.yp-page-hero__title { font-size: 40px; font-weight: 400; }
@media (max-width: 1099px) { .yp-page-hero { padding-top: 64px; min-height: 260px; } }

/* Legal content block */
.yp-legal-content {
	padding-block: clamp(56px, 7vw, 110px);
}
.yp-legal-content__inner {
	max-width: 960px;
}
.yp-legal-content__header {
	margin-bottom: clamp(28px, 4vw, 48px);
	padding-bottom: 28px;
	border-bottom: 1px solid var(--yp-card-border);
}
.yp-legal-content__title {
	font-family: var(--yp-font-display);
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 400;
	line-height: 1.12;
	text-transform: uppercase;
	color: var(--yp-navy);
	margin: 0;
}
.yp-legal-content__updated {
	margin: 16px 0 0;
	font-family: var(--yp-font-display);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--yp-taupe);
}
.yp-legal-content__intro {
	max-width: 760px;
	margin-top: 22px;
	font-size: 18px;
	color: var(--yp-text-muted);
}
.yp-legal-content__body {
	background: var(--yp-white);
	border: 1px solid var(--yp-card-border);
	border-radius: 24px;
	padding: clamp(26px, 4vw, 56px);
	box-shadow: 0 20px 60px rgba(17, 23, 36, 0.06);
	color: var(--yp-navy);
}
.yp-legal-content__body > *:first-child { margin-top: 0; }
.yp-legal-content__body > *:last-child { margin-bottom: 0; }
.yp-legal-content__body h2,
.yp-legal-content__body h3,
.yp-legal-content__body h4 {
	font-family: var(--yp-font-display);
	font-weight: 500;
	line-height: 1.25;
	color: var(--yp-navy);
	margin: 32px 0 14px;
}
.yp-legal-content__body h2 { font-size: clamp(24px, 2.5vw, 34px); }
.yp-legal-content__body h3 { font-size: clamp(20px, 2vw, 26px); }
.yp-legal-content__body h4 { font-size: 18px; }
.yp-legal-content__body p,
.yp-legal-content__body li {
	font-size: 16px;
	line-height: 1.75;
	color: var(--yp-text-muted);
}
.yp-legal-content__body p { margin: 0 0 18px; }
.yp-legal-content__body ul,
.yp-legal-content__body ol {
	margin: 0 0 22px 1.25em;
	padding: 0;
}
.yp-legal-content__body li { margin-bottom: 10px; padding-left: 4px; }
.yp-legal-content__body a { color: var(--yp-taupe); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.yp-legal-content__body a:hover { color: var(--yp-olive); }
.yp-legal-content__placeholder {
	border-style: dashed;
	background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 699px) {
	.yp-legal-content { padding-block: 44px; }
	.yp-legal-content__body { border-radius: 18px; }
}

/* ---------------------------------------------------------------- layout */

.yp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px var(--yp-gutter); align-items: center; }
@media (max-width: 899px) { .yp-split { grid-template-columns: 1fr; } .yp-split--media-left > *:first-child { order: -1; } }

/* --------------------------------------------------------- story collage */

.yp-collage {
	position: relative;
	overflow: hidden;
	aspect-ratio: 6 / 5;
	border-radius: 0;
	border: 5px solid var(--yp-cream);
}
.yp-collage__main, .yp-collage__second { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yp-collage__main { clip-path: polygon(0 0, 100% 0, 0 100%); z-index: 1; }
.yp-collage .yp-img-placeholder { min-height: 480px; }

/* --------------------------------------------------------- service cards */

.yp-services__header-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.yp-services__header-row .yp-section-header { margin-bottom: 0; }
@media (max-width: 649px) {
	.yp-services .yp-container { display: flex; flex-direction: column; }
	.yp-services__header-row { display: contents; }
	.yp-services__header-row .yp-services__header-col { order: 1; margin-bottom: 40px; }
	.yp-services__header-row .yp-textlink { order: 3; margin-top: 40px; }
	.yp-services__grid { order: 2; }
}

.yp-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.yp-service-card {
	display: block;
	padding: 30px;
	border: 1px solid var(--yp-card-border);
	margin: -1px 0 0 -1px; /* shared 1px borders, gap 0 per design */
	color: inherit;
	text-decoration: none;
	min-height: 242px;
}
a.yp-service-card:hover { background: rgba(127, 61, 28, 0.08); color: inherit; }
.yp-service-card__index { font-family: var(--yp-font-display); font-size: 36px; color: var(--yp-taupe); display: block; margin-bottom: 14px; }
.yp-service-card__image { display: block; width: 48px; height: 48px; object-fit: cover; margin-bottom: 14px; }
.yp-workshops-grid .yp-services__grid { gap: 24px; }
.yp-workshops-grid .yp-service-card { overflow: hidden; text-align: center; background: var(--yp-navy); color: var(--yp-white); border: 0; margin: 0; }
.yp-workshops-grid a.yp-service-card:hover { background: linear-gradient(rgba(127, 61, 28, 0.06), rgba(127, 61, 28, 0.06)), var(--yp-navy); color: var(--yp-white); }
.yp-workshops-grid a.yp-service-card .yp-service-card__excerpt { color: var(--yp-text-light); font-size: 16px; }
.yp-workshops-grid a.yp-service-card .yp-service-card__title { font-size: 21px; }
.yp-workshops-grid a.yp-service-card .yp-service-card__meta { font-size: 17px; margin-bottom: 10px; }
.yp-workshops-grid .yp-service-card__media { display: block; position: relative; width: calc(100% + 60px); margin: -30px -30px 20px; }
.yp-workshops-grid .yp-service-card__media .yp-service-card__image { display: block; width: 100%; max-width: none; height: 290px; object-fit: cover; margin: 0; }
.yp-workshops-grid .yp-service-card__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--yp-white);
	color: var(--yp-navy);
	padding: 8px 14px;
	text-align: center;
	line-height: 1.1;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.yp-workshops-grid .yp-service-card__badge-month { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--yp-olive); }
.yp-workshops-grid .yp-service-card__badge-day { display: block; font-size: 20px; font-weight: 600; }
.yp-workshops-grid { padding-top: calc(var(--yp-header-h) + 80px); padding-bottom: 100px; }
@media (max-width: 1099px) { .yp-workshops-grid { padding-top: 80px; } }
.yp-workshops-grid .yp-services__header-row { flex-direction: column; align-items: center; text-align: center; }
.yp-workshops-grid .yp-section-header { margin-inline: auto; }

.yp-teachers-grid.is-white, .yp-teachers-grid.is-navy, .yp-teachers-grid.is-cream { background: var(--yp-cream); color: var(--yp-navy); }
.yp-teachers-grid .yp-services__grid { gap: 30px; }
.yp-teachers-grid__kicker-icon { display: flex; justify-content: center; color: var(--yp-taupe); font-size: 30px; margin-bottom: 14px; }
.yp-teachers-grid .yp-service-card {
	overflow: hidden;
	text-align: center;
	background: var(--yp-white);
	color: var(--yp-navy);
	border: 0;
	border-radius: 16px;
	margin: 0;
	min-height: 0;
	box-shadow: 0 14px 32px rgba(17, 23, 36, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.yp-teachers-grid a.yp-service-card:hover {
	background: var(--yp-white);
	color: var(--yp-navy);
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(17, 23, 36, 0.14);
}
.yp-teachers-grid .yp-service-card__image { width: 100%; max-width: none; height: 340px; object-fit: cover; margin: 0; }
.yp-teachers-grid .yp-service-card__title {
	position: relative;
	margin: 0;
	padding: 24px 16px 22px;
	font-family: var(--yp-font-display);
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.yp-teachers-grid .yp-service-card__title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 2px;
	background: var(--yp-taupe);
}
.yp-teachers-grid { padding-top: calc(var(--yp-header-h) + 80px); padding-bottom: 100px; }
@media (max-width: 1099px) { .yp-teachers-grid { padding-top: 80px; } }
.yp-teachers-grid .yp-services__header-row { flex-direction: column; align-items: center; text-align: center; }
.yp-teachers-grid .yp-section-header { margin-inline: auto; }
@media (max-width: 999px) { .yp-teachers-grid .yp-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 649px) { .yp-teachers-grid .yp-services__grid { grid-template-columns: 1fr; } }

.yp-therapists-grid.is-white, .yp-therapists-grid.is-navy, .yp-therapists-grid.is-cream { background: var(--yp-cream); color: var(--yp-navy); }
.yp-therapists-grid .yp-services__grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
.yp-therapists-grid .yp-service-card {
	overflow: hidden;
	text-align: center;
	background: var(--yp-white);
	color: var(--yp-navy);
	border: 0;
	border-radius: 16px;
	margin: 0;
	padding: 0;
	min-height: 0;
	box-shadow: 0 14px 32px rgba(17, 23, 36, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.yp-therapists-grid a.yp-service-card:hover {
	background: var(--yp-white);
	color: var(--yp-navy);
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(17, 23, 36, 0.14);
}
.yp-therapists-grid .yp-service-card__image { width: 100%; max-width: none; height: 240px; object-fit: cover; margin: 0; }
.yp-therapists-grid .yp-service-card__title { margin: 0; padding: 24px 20px 4px; }
@media (max-width: 999px) { .yp-therapists-grid .yp-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 649px) { .yp-therapists-grid .yp-services__grid { grid-template-columns: 1fr; } }
.yp-therapists-grid { padding-top: calc(var(--yp-header-h) + 80px); padding-bottom: 100px; }
@media (max-width: 1099px) { .yp-therapists-grid { padding-top: 80px; } }
@media (max-width: 649px) {
	.yp-therapists-grid { padding-top: 32px; }
	.yp-therapists-grid .yp-container { display: block; }
	.yp-therapists-grid .yp-services__header-row { display: flex; }
	.yp-therapists-grid .yp-services__grid { order: initial; }
}
.yp-therapists-grid .yp-services__header-row { flex-direction: column; align-items: center; text-align: center; }
.yp-therapists-grid .yp-section-header { margin-inline: auto; }
.yp-therapists-grid .yp-services__header-row .yp-eyebrow {
	display: inline-flex;
	background: rgba(127, 61, 28, 0.1);
	color: var(--yp-taupe);
	padding: 9px 22px;
	border-radius: var(--yp-radius-pill);
	margin: 0 0 20px;
}
.yp-therapists-grid .yp-services__header-row .yp-eyebrow__rule { display: none; }
.yp-therapists-grid .yp-services__footer-text {
	margin-top: 72px;
	padding: 56px clamp(24px, 5vw, 64px);
	max-width: none;
	text-align: center;
	border-top: 0;
	background: rgba(127, 61, 28, 0.06);
	border-radius: 24px;
}
.yp-therapists-grid .yp-services__footer-text h3 {
	font-family: var(--yp-font-display);
	font-weight: 400;
	font-size: clamp(28px, 3.4vw, 44px);
	text-transform: uppercase;
	margin: 0 0 24px;
}
.yp-therapists-grid .yp-services__footer-text h3 em { font-style: normal; }
.yp-therapists-grid .yp-services__footer-text p { max-width: 720px; margin-inline: auto; }

.yp-services__intro-icon-row, .yp-services__footer-icon-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 20px;
	color: var(--yp-taupe);
	font-size: 24px;
}
.yp-services__intro-line { width: 40px; height: 1px; background: var(--yp-row-border); flex: none; }
.yp-therapists-grid .yp-services__intro { margin-bottom: 56px; text-align: center; }
.yp-services__intro-divider {
	position: relative;
	border: 0;
	height: 1px;
	background-image: repeating-linear-gradient(to right, var(--yp-row-border) 0 4px, transparent 4px 9px);
	margin: 32px 0;
}
.yp-services__intro-divider::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--yp-taupe);
}
.yp-therapists-grid .yp-services__intro-heading {
	font-family: var(--yp-font-display);
	font-weight: 400;
	font-size: clamp(30px, 3.6vw, 44px);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0;
}
.yp-therapists-grid .yp-services__intro-heading em { font-style: normal; }
.is-navy .yp-services__intro-heading em { color: var(--yp-olive); }
.is-white .yp-services__intro-heading em, .is-cream .yp-services__intro-heading em { color: var(--yp-taupe); }
.yp-therapists-grid .yp-services__intro-text { max-width: 720px; margin-inline: auto; }
.yp-therapists-grid .yp-services__intro-text a { color: var(--yp-taupe); font-weight: 600; text-decoration: none; }
.yp-therapists-grid .yp-services__intro-text a:hover { text-decoration: underline; }
.yp-iframe-embed .yp-section-header { margin-inline: auto; text-align: center; }
@media (max-width: 899px) { .yp-iframe-embed { padding-top: 4px; } }
.yp-iframe-embed__body { max-width: 720px; margin: 8px auto 0; text-align: center; }
.yp-iframe-embed__frame { margin-top: 40px; }
.yp-iframe-embed__frame iframe { display: block; width: 100%; min-height: 600px; border: 0; }

.yp-therapists-grid .yp-services__intro-text em { font-style: italic; }
.is-navy .yp-services__intro-text em { color: var(--yp-olive); }
.is-white .yp-services__intro-text em { color: var(--yp-taupe); }
.yp-therapists-grid .yp-services__footer-text em { font-style: normal; }
.is-navy .yp-services__footer-text em { color: var(--yp-olive); }
.is-white .yp-services__footer-text em { color: var(--yp-taupe); }
.yp-therapists-grid a.yp-service-card .yp-service-card__credential {
	position: relative;
	font-family: var(--yp-font-display);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--yp-taupe);
	margin: 0;
	padding: 0 20px 20px;
}
.yp-therapists-grid a.yp-service-card .yp-service-card__credential::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 26px;
	height: 2px;
	background: var(--yp-taupe);
}
.yp-therapists-grid a.yp-service-card .yp-service-card__specialties {
	font-size: 14px;
	line-height: 1.7;
	color: var(--yp-text-muted);
	margin: 0;
	padding: 20px 20px 28px;
}

.yp-services__body { margin: 18px auto 0; max-width: 560px; }
.is-navy .yp-services__body { color: var(--yp-text-light); }
.is-white .yp-services__body { color: var(--yp-text-muted); }
.yp-service-card__title { font-family: var(--yp-font-display); font-weight: 400; font-size: 24px; margin: 0 0 10px; }
.yp-service-card__excerpt { font-size: 16px; line-height: 1.5; margin: 0 0 14px; }
.is-navy .yp-service-card__excerpt { color: var(--yp-text-light); }
.is-white .yp-service-card__excerpt { color: var(--yp-text-muted); }
.yp-service-card__meta { font-size: 16px; color: var(--yp-olive); margin: 0; }
@media (max-width: 999px) { .yp-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 649px) { .yp-services__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------- teacher training */

.yp-tt .yp-split { grid-template-columns: 55% 45%; }
@media (max-width: 899px) { .yp-tt .yp-split { grid-template-columns: 1fr; } }
.yp-tt__media { position: relative; }
.yp-tt__media-copy { position: absolute; top: 50%; left: 0; transform: translateY(-50%); z-index: 1; width: 100%; }
.yp-tt__media-copy .yp-section-header { max-width: 85%; }
.yp-tt__media img { width: 100%; height: auto; }
.yp-tt__stats { display: flex; gap: 40px; margin: 28px 0; flex-wrap: wrap; }
.yp-tt__stat { display: grid; gap: 2px; }
.yp-tt__stat-value { font-family: var(--yp-font-display); font-size: 40px; color: var(--yp-taupe); }
.yp-tt__stat-label { font-family: var(--yp-font-display); font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; }
.yp-tt__stat-sub { font-size: 14px; color: var(--yp-text-muted); }
.yp-tt--teaser .yp-split { grid-template-columns: 1fr 1fr; }
.yp-tt__teaser-copy .yp-section-header { margin-bottom: 16px; }
.yp-tt__teaser-copy .yp-prose { color: var(--yp-taupe); }
.yp-tt__teaser-cta { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 16px; }
@media (max-width: 899px) { .yp-tt__teaser-cta { justify-content: flex-start; } }

/* ---------------------------------------------------------- testimonials */

.yp-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 64px; }
.yp-testimonial {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.yp-testimonial:not(:first-child)::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -32px;
	width: 1px;
	background: var(--yp-olive);
	opacity: 0.15;
}
.yp-stars { display: inline-flex; gap: 4px; color: var(--yp-olive); font-size: 16px; }
.yp-testimonial blockquote {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.55;
	text-align: left;
	flex: 1;
	text-decoration: none;
	border: none;
	background: none;
	/* Real Google reviews run long — cap the quote height instead of letting one
	   review's length dictate every card's. The full text is still reachable:
	   this scrolls in place (a vertical "slider" within the card), separate
	   from the horizontal Swiper that pages between different reviews. */
	max-height: 161px;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding-right: 10px;
}
/* Chromium/Safari: style via the legacy pseudo-elements only — declaring
   scrollbar-color alongside them makes current Chrome switch to its native
   standardized-scrollbar renderer instead, which brings back a pair of
   step-arrow buttons that pseudo-element rule has no power to hide. Firefox
   (no ::-webkit-scrollbar support) falls back to its own default scrollbar,
   which has no such buttons to begin with. */
.yp-testimonial blockquote::-webkit-scrollbar { width: 4px; }
.yp-testimonial blockquote::-webkit-scrollbar-track { background: transparent; }
.yp-testimonial blockquote::-webkit-scrollbar-thumb { background: var(--yp-olive); border-radius: 4px; }
.yp-testimonial blockquote::-webkit-scrollbar-button { display: none; height: 0; width: 0; }
.is-navy .yp-testimonial blockquote::-webkit-scrollbar-thumb { background: var(--yp-text-light-strong); }
.is-navy .yp-testimonial blockquote { color: var(--yp-text-light-strong); }
.yp-testimonial figcaption { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0; }
.yp-testimonial__name { font-family: var(--yp-font-display); font-weight: 500; font-size: 15px; color: var(--yp-taupe); }
.yp-testimonial__role { font-size: 13px; color: var(--yp-taupe); opacity: 0.85; }
@media (max-width: 899px) {
	.yp-testimonials__grid { grid-template-columns: 1fr; gap: 32px 0; }
	.yp-testimonial:not(:first-child)::before { display: none; }
	.yp-testimonial:not(:first-child) { border-top: 1px solid rgba(127, 61, 28, 0.15); padding-top: 32px; }
}

/* Google Reviews Widget (plugin) — real reviews (inc/google-reviews.php),
   rendered through the same .yp-testimonial figure as the manual cards
   above, carried in a Swiper track (assets/vendor/swiper) so any number of
   reviews beyond the visible 3 are reached by sliding. Each slide gets its
   own bordered card face since, unlike the static 3-up grid, siblings not
   fitting in that grid's own divider-line convention no longer applies. */
/* Reset the shared .yp-testimonials__grid { display:grid; grid-template-columns:repeat(3,1fr) }
   this element also carries — left in place, a 3-column grid auto-places
   .swiper-wrapper into column 1 and .yp-testimonials__nav into column 2,
   and since Swiper lays every slide out in an unconstrained flex row, that
   first "column" sizes to the full unclipped width of all 6+ slides
   end-to-end — pushing the nav row thousands of pixels off to the right. */
.yp-testimonials__grid--grw { display: block; position: relative; padding-bottom: 8px; }
.yp-testimonials__grid--grw .swiper-wrapper { align-items: stretch; }
.yp-testimonials__grid--grw .yp-testimonial {
	height: auto;
	background: var(--yp-white);
	border: 1px solid var(--yp-card-border);
	border-radius: 16px;
	padding: 28px;
}
.yp-testimonials__grid--grw .yp-testimonial:not(:first-child)::before { display: none; }
.is-navy .yp-testimonials__grid--grw .yp-testimonial blockquote,
.is-navy .yp-testimonials__grid--grw .yp-testimonial { color: var(--yp-navy); } /* Cards stay white-faced even on a navy section. */
/* Card face is white regardless of section scheme — scrollbar thumb matches (overrides the .is-navy light-text-on-navy default above). */
.is-navy .yp-testimonials__grid--grw .yp-testimonial blockquote::-webkit-scrollbar-thumb { background: var(--yp-olive); }

.yp-testimonials__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
/* Swiper's own CSS fights this flex row on two fronts: .swiper-pagination is
   position:absolute (its horizontal modifier pins it bottom:0/left:0), so it
   floats free and lands on top of the arrows; and its horizontal-bullets
   modifier hardcodes width:100% at the same specificity as the override
   below, which (since swiper-bundle's stylesheet happens to print after
   site.css) wins on source order alone and stretches the bullet row across
   the whole nav — leaving the dots pinned left instead of centered as a
   group with the arrows. !important on both settles it regardless of
   enqueue order. */
.yp-testimonials__nav .swiper-pagination {
	position: static !important;
	width: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.yp-testimonials__arrow {
	flex: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 50%;
	background: rgba(127, 61, 28, 0.08);
	border: 1px solid var(--yp-card-border);
	color: var(--yp-taupe);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.is-navy .yp-testimonials__arrow { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.3); color: var(--yp-white); }
.yp-testimonials__arrow:hover { background: var(--yp-olive); border-color: var(--yp-olive); color: var(--yp-white); }
.yp-testimonials__arrow .yp-icon { width: 16px; height: 16px; }
.yp-testimonials__arrow--prev .yp-icon { transform: rotate(180deg); }
.yp-testimonials__arrow.swiper-button-disabled { opacity: 0.35; cursor: default; }
.yp-testimonials__arrow.swiper-button-disabled:hover { background: rgba(127, 61, 28, 0.08); border-color: var(--yp-card-border); color: var(--yp-taupe); }
.is-navy .yp-testimonials__arrow.swiper-button-disabled:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.3); color: var(--yp-white); }

.yp-testimonials__grid--grw .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(127, 61, 28, 0.3); opacity: 1; border-radius: 50%; transition: width 0.2s ease, border-radius 0.2s ease; }
.yp-testimonials__grid--grw .swiper-pagination-bullet-active { width: 22px; border-radius: 4px; background: var(--yp-olive); }
.is-navy .yp-testimonials__grid--grw .swiper-pagination-bullet { background: rgba(255, 255, 255, 0.3); }

@media (max-width: 649px) {
	.yp-testimonials__grid--grw .yp-testimonial { padding: 24px; }
}

/* Header beside the heading: the profile's own Google rating + total review
   count (not just the handful of cards shown), and the write-a-review CTA.
   Heading owns the left, the score/CTA stack sits bottom-aligned on the
   right so its last line meets the heading's baseline. */
.yp-testimonials__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px 56px;
	margin-bottom: 40px;
}
.yp-testimonials__head .yp-section-header { flex: 1 1 420px; margin-bottom: 0; }
.yp-testimonials__summary { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; flex: none; }
.yp-testimonials__score { display: flex; align-items: center; gap: 16px; margin: 0; }
.yp-testimonials__rating {
	font-family: var(--yp-font-display);
	font-weight: 400;
	font-size: 44px;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.yp-testimonials__stars .yp-stars { font-size: 18px; gap: 5px; }
.is-navy .yp-testimonials__stars .yp-stars { color: var(--yp-cream); } /* Olive stars are ~2:1 on navy — fine inside a card, too dim as the headline rating. */
.yp-testimonials__based { margin: 0; font-size: 14px; line-height: 1.4; color: var(--yp-text-muted); }
.is-navy .yp-testimonials__based { color: var(--yp-text-light-strong); }
.yp-testimonials__based a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.yp-testimonials__based a:hover { color: var(--yp-olive); }
.is-navy .yp-testimonials__based a:hover { color: var(--yp-white); }
.yp-testimonials__write { margin-top: 14px; }
.yp-testimonials__write .yp-btn__arrow { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.yp-testimonials__write:hover .yp-btn__arrow { transform: translateX(4px); }
.yp-testimonials__summary a:focus-visible { outline: 2px solid var(--yp-olive); outline-offset: 3px; }
.is-navy .yp-testimonials__summary a:focus-visible { outline-color: var(--yp-cream); }
@media (prefers-reduced-motion: reduce) {
	.yp-testimonials__write .yp-btn__arrow { transition: none; }
	.yp-testimonials__write:hover .yp-btn__arrow { transform: none; }
}
@media (max-width: 899px) {
	.yp-testimonials__head { gap: 24px; }
	.yp-testimonials__rating { font-size: 36px; }
}

.yp-testimonials__embed { width: 100%; }
.yp-testimonials__embed iframe { display: block; width: 100%; border: 0; min-height: 480px; }

/* ----------------------------------------------------------------- video */

.yp-video { position: relative; min-height: 420px; background: var(--yp-black); }
@media (min-width: 900px) { .yp-video { min-height: 760px; } }
.yp-video__poster, .yp-video > .yp-img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.yp-video__scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); }
.yp-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 96px;
	height: 96px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--yp-white);
	font-size: 34px;
	display: grid;
	place-items: center;
	cursor: pointer;
	z-index: 2;
}
.yp-video__play:hover { background: rgba(255, 255, 255, 0.25); }
.yp-video__play[disabled] { opacity: 0.5; cursor: not-allowed; }
.yp-video iframe, .yp-video video { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; border: 0; }

/* --------------------------------------------------------------- gallery */

.yp-gallery__mosaic { display: grid; grid-template-columns: 1.2fr 0.73fr 1.2fr; gap: 5px; }
.yp-gallery__tall img, .yp-gallery__tall .yp-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.yp-gallery__squares { display: grid; gap: 5px; }
.yp-gallery__squares img, .yp-gallery__squares .yp-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 237px; }
.yp-gallery__quote { position: relative; overflow: hidden; }
.yp-gallery__quote-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.yp-gallery__quote-card {
	position: relative;
	z-index: 2;
	background: var(--yp-taupe);
	margin: 0 0 0 auto;
	max-width: 100%;
	min-height: 50%;
	padding: 36px;
	border: none;
	font-family: var(--yp-font-body);
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.45;
	color: var(--yp-white);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 899px) { .yp-gallery__mosaic { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- CTA band */

.yp-cta-band { position: relative; min-height: 490px; display: flex; align-items: center; overflow: hidden; }
.yp-cta-band__media { position: absolute; inset: 0; }
.yp-cta-band__media img, .yp-cta-band__media .yp-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; position: absolute; inset: 0; }
.yp-cta-band__media::before { content: ""; position: absolute; inset: 0; background: rgba(17, 23, 36, 0.2); z-index: 2; }
.yp-cta-band__content { position: relative; z-index: 3; padding-block: 80px; max-width: var(--yp-container); text-align: center; }
.yp-cta-band__content .yp-eyebrow { justify-content: center; }
.yp-cta-band__content .yp-btn-row { justify-content: center; }
.yp-cta-band__sub { color: var(--yp-text-light-strong); margin: 18px auto 0; font-size: 17px; max-width: 560px; }

/* --------------------------------------------------------------- wellness */

.yp-wellness--single .yp-split { align-items: stretch; }
.yp-wellness--portraits .yp-split { align-items: stretch; }
.yp-wellness--single .yp-wellness__side { margin-top: 44px; }
.yp-wellness--events { padding-top: calc(var(--yp-header-h) + 40px); }
.yp-wellness--events .yp-split { align-items: start; }
.yp-wellness--events .yp-wellness__body .yp-btn { margin-top: 32px; }
.yp-wellness--events .yp-wellness__category {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--yp-font-display);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: var(--yp-taupe);
	margin: 0 0 28px;
}
.yp-wellness--events .yp-wellness__category .yp-services__intro-line { flex: 1; width: auto; }
.yp-wellness--events .yp-wellness__dates { margin-top: 0; }
.yp-wellness--events .yp-prose { margin-top: 16px; color: var(--yp-text-muted); }
.yp-wellness__media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--yp-gutter); align-items: stretch; overflow: hidden; }
.yp-wellness--single .yp-wellness__media, .yp-wellness--events .yp-wellness__media { grid-template-columns: 1fr; }
.yp-wellness--single .yp-wellness__media { margin: 28px 0; }
.yp-wellness--events .yp-wellness__media {
	position: sticky;
	top: calc(var(--yp-header-h) + 24px);
	align-self: start;
	height: min(520px, calc(100vh - var(--yp-header-h) - 48px));
	border-radius: 20px;
}
.yp-wellness--events .yp-wellness__img { max-height: none; }
.yp-wellness__dates { margin: 24px 0 0; display: grid; gap: 12px; }
.yp-wellness__datetime, .yp-wellness__range {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--yp-navy);
	background: var(--yp-white);
	border: 1px solid var(--yp-input-border);
	border-radius: 14px;
	padding: 14px 18px;
}
.yp-wellness__datetime-icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(127, 61, 28, 0.1);
	color: var(--yp-taupe);
	font-size: 17px;
	flex: none;
}
.yp-wellness__range .yp-wellness__datetime { display: block; border: 0; padding: 0; background: none; font-size: 16px; }
.yp-wellness__datetime.is-active,
.yp-wellness__range.is-active {
	background: var(--yp-taupe);
	border-color: var(--yp-taupe);
	color: var(--yp-white);
}
.yp-wellness__datetime.is-active .yp-wellness__datetime-icon,
.yp-wellness__range.is-active .yp-wellness__datetime-icon {
	background: rgba(255, 255, 255, 0.16);
	color: var(--yp-white);
}
.yp-wellness__range.is-active .yp-wellness__datetime { color: var(--yp-white); }
.yp-wellness__location { margin: 24px 0 0; display: grid; gap: 10px; }
.yp-wellness__location-name, .yp-wellness__location-address { margin: 0; font-size: 16px; color: var(--yp-navy); display: flex; align-items: flex-start; gap: 10px; }
.yp-wellness__location-icon { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--yp-taupe); }
.yp-wellness__location-map { color: var(--yp-taupe); text-decoration: underline; }
.yp-wellness__location-map:hover { color: var(--yp-navy); }
.yp-wellness__heading {
	position: relative;
	font-family: var(--yp-font-display);
	font-weight: 400;
	font-size: clamp(26px, 2.6vw, 36px);
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--yp-taupe);
	margin: 32px 0 0;
	padding-left: 26px;
}
.yp-wellness__heading::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 18px; height: 2px; background: var(--yp-taupe); }
.yp-wellness__themes {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: rgba(127, 61, 28, 0.06);
	border-radius: 16px;
	padding: 28px;
	margin-top: 32px;
}
.yp-wellness__themes-icon { color: var(--yp-taupe); font-size: 40px; flex: none; }
.yp-wellness__themes-body { min-width: 0; }
.yp-wellness__themes-heading { font-family: var(--yp-font-display); font-weight: 600; font-size: 16px; color: var(--yp-taupe); margin: 0 0 12px; }
.yp-wellness__theme { font-size: 16px; line-height: 1.6; color: var(--yp-navy); margin: 0 0 6px; }
.yp-wellness__theme:last-child { margin-bottom: 0; }
.yp-wellness__theme strong { font-weight: 700; }
.yp-wellness__details { list-style: none; margin: 28px 0 0; padding: 0; }
.yp-wellness__details li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--yp-row-border);
	color: var(--yp-navy);
	font-size: 16px;
}
.yp-wellness__details li:first-child { border-top: 1px solid var(--yp-row-border); }
.yp-wellness__details .yp-icon { color: var(--yp-taupe); font-size: 20px; flex: none; }
.yp-wellness__media .yp-img-placeholder { min-height: 0; }
@media (max-width: 1099px) { .yp-wellness--events { padding-top: 30px; } }
@media (max-width: 899px) {
	.yp-wellness__img { height: auto; max-height: 360px; }
	.yp-wellness--events .yp-wellness__img { max-height: 360px; }
	.yp-wellness--events .yp-split { gap: 0; }
	.yp-wellness--events .yp-wellness__body { display: contents; }
	.yp-wellness--events .yp-wellness__category { order: 1; margin-top: 0; }
	.yp-wellness--events .yp-wellness__dates { order: 2; margin-top: 16px; }
	.yp-wellness--events .yp-wellness__location { order: 3; margin-top: 24px; }
	.yp-wellness--events .yp-wellness__media { order: 4; margin-top: 24px; position: static; height: auto; }
	.yp-wellness--events .yp-wellness__heading { order: 5; margin-top: 24px; }
	.yp-wellness--events .yp-wellness__body > .yp-prose { order: 6; margin-top: 8px; }
	.yp-wellness--events .yp-wellness__themes { order: 7; margin-top: 16px; }
	.yp-wellness--events .yp-wellness__details { order: 8; }
	.yp-wellness--events .yp-wellness__body > .yp-btn { order: 9; margin-top: 24px; margin-bottom: 24px; }
}
.yp-wellness--single .yp-wellness__side .yp-prose { margin-bottom: 24px; }
.yp-wellness--single .yp-wellness__list { margin-top: 90px; }
.yp-wellness__list { list-style: none; margin: 24px 0; padding: 0; }
.yp-wellness__list li {
	display: flex;
	align-items: baseline;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid var(--yp-row-border);
}
.yp-wellness__num { font-family: var(--yp-font-display); font-size: 20px; color: var(--yp-taupe); flex: none; }
.yp-wellness__body-text { display: grid; gap: 4px; flex: 1; }
.yp-wellness__title { font-family: var(--yp-font-display); font-weight: 500; font-size: 16px; }
.yp-wellness__text { color: var(--yp-taupe); font-size: 16px; font-weight: 400; font-family: var(--yp-font-body); }
.yp-wellness__meta { font-size: 14px; color: var(--yp-text-muted); white-space: nowrap; }

/* ------------------------------------------------------------------- FAQ */

.yp-faq__cols { display: grid; grid-template-columns: 515fr 665fr; gap: 60px; align-items: start; }
.yp-faq__body { margin: 0 0 28px; }
.yp-faq__item { border-bottom: 1px solid var(--yp-faq-border); }
.yp-faq__item:first-child { border-top: 1px solid var(--yp-faq-border); }
.yp-faq__q { margin: 0; }
.yp-faq__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	appearance: none;
	-webkit-appearance: none;
	background: none;
	border: 0;
	color: #F5F0E880;
	font-family: var(--yp-font-display);
	font-weight: 400;
	font-size: 20px;
	text-align: left;
	padding: 30px 4px;
	cursor: pointer;
	transition: color 0.2s ease;
}
.yp-faq__toggle:hover,
.yp-faq__toggle:active,
.yp-faq__toggle:focus,
.yp-faq__item.is-open .yp-faq__toggle {
	color: var(--yp-white);
	background: none;
}
.yp-faq__chevron { transition: transform 0.25s ease; font-size: 14px; flex: none; }
.yp-faq__item.is-open .yp-faq__chevron { transform: rotate(180deg); }
.yp-faq__a { padding: 0 4px 28px; }
.yp-faq__a .yp-prose { color: #F5F0E880; font-size: 16px; font-weight: 400; font-family: var(--yp-font-body); }
@media (max-width: 899px) { .yp-faq__cols { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- contact + map */

.yp-contact-map { padding-block: 0; }
.yp-contact-map__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.yp-contact-map__info {
	padding: 72px clamp(24px, 6.9vw, 100px) 72px max(20px, calc(100% - (var(--yp-container) / 2)));
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.yp-contact-map__heading { font-family: var(--yp-font-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 48px); text-transform: uppercase; margin: 0; }
.yp-contact-map__heading em { font-style: normal; color: var(--yp-taupe); }
.yp-contact-map__sub { margin: 18px 0 0; color: var(--yp-text-muted); max-width: 46ch; }
.yp-contact-map__list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 18px; }
.yp-contact-map__list li { display: flex; align-items: flex-start; gap: 16px; font-size: 16px; color: var(--yp-navy); }
.yp-contact-map__list a { color: var(--yp-navy); text-decoration: none; }
.yp-contact-map__list a:hover { color: var(--yp-taupe); }
.yp-contact-map__list .yp-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--yp-taupe);
	color: var(--yp-white);
	font-size: 17px;
	flex: none;
}
.yp-contact-map__map-link { display: flex; align-items: flex-start; gap: 16px; }
.yp-contact-map__map-link:hover .yp-icon { background: var(--yp-olive); }
.yp-contact-map__media { position: relative; min-height: 480px; }
.yp-contact-map__media .yp-img-placeholder { position: absolute; inset: 0; min-height: 0; }
.yp-contact-map__embed, .yp-contact-map__embed iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(1);
}
@media (max-width: 899px) {
	.yp-contact-map__grid { grid-template-columns: 1fr; }
	.yp-contact-map__info { padding: 56px clamp(24px, 6.9vw, 48px) 40px 20px; }
	.yp-contact-map__media { min-height: 360px; }
}

/* ---------------------------------------------------------- about / team */

.yp-about-story .yp-split { grid-template-columns: 40% 60%; }
@media (max-width: 899px) { .yp-about-story .yp-split { grid-template-columns: 1fr; } }
.yp-about-story__body .yp-section-header { max-width: none; }
.yp-about-story__body .yp-prose { width: 80%; }
.yp-about-story__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 6 / 5;
	border-radius: 0;
	border: 5px solid var(--yp-cream);
}
.yp-about-story__img, .yp-about-story__img2 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yp-about-story__img { clip-path: polygon(0 0, 100% 0, 0 100%); z-index: 1; }
.yp-about-story__media .yp-img-placeholder { min-height: 480px; }

.yp-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--yp-gutter); }
.yp-value-card { border: none; padding: 40px; min-height: 277px; }
.yp-value-card:nth-child(3n+2) { border: 1px solid rgba(255, 255, 255, 0.14); }
.yp-value-card__kicker { display: flex; align-items: center; gap: 10px; font-family: var(--yp-font-display); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yp-olive); margin: 0 0 16px; }
.yp-value-card__rule { width: 14px; height: 1px; background: currentColor; flex: none; }
.yp-value-card__title { font-family: var(--yp-font-display); font-weight: 500; font-size: 22px; margin: 0 0 12px; }
.yp-value-card__text { color: var(--yp-text-light-strong); margin: 0; }
@media (max-width: 899px) {
	.yp-values__grid { grid-template-columns: 1fr; }
	.yp-value-card { border: 1px solid rgba(255, 255, 255, 0.14); }
}

.yp-teachers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.yp-teacher-card { text-align: center; }
.yp-teacher-card__photo { width: 100%; aspect-ratio: 1; object-fit: cover; }
.yp-teacher-card .yp-img-placeholder { aspect-ratio: 1; min-height: 0; }
.yp-teacher-card__name { font-family: var(--yp-font-display); font-weight: 500; font-size: 19px; margin: 18px 0 4px; }
.yp-teacher-card__role { font-size: 16px; color: var(--yp-olive); margin: 0 0 8px; }
.yp-teacher-card__bio { font-size: 16px; color: var(--yp-text-muted); margin: 0; }
@media (max-width: 999px) { .yp-teachers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .yp-teachers__grid { grid-template-columns: 1fr; } }

.yp-timeline__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--yp-gutter); list-style: none; margin: 0; padding: 0; counter-reset: none; }
.yp-timeline__item { padding-left: 20px; }
.yp-timeline__item:first-child { padding-left: 0; }
.yp-timeline__item:not(:first-child) { border-left: 2px solid var(--yp-footer-divider); }
.yp-timeline__year { font-family: var(--yp-font-display); font-size: 24px; font-weight: 500; color: var(--yp-white); display: block; margin-bottom: 10px; }
.yp-timeline__text { color: var(--yp-text-light-strong); margin: 0; font-size: 16px; }
@media (max-width: 899px) {
	.yp-timeline__row { grid-template-columns: repeat(2, 1fr); }
	.yp-timeline__item { padding-left: 0; }
	.yp-timeline__item:not(:first-child) { border-left: none; }
}
@media (max-width: 599px) {
	.yp-timeline__row { grid-template-columns: 1fr; }
	.yp-timeline .yp-h2 br { display: none; }
}

/* --------------------------------------------------------- pricing panels */

.yp-pricing-panels__row { display: grid; grid-template-columns: 1fr 1fr; }
.yp-pricing-panel.is-cream { background: var(--yp-cream); color: var(--yp-navy); }
.yp-pricing-panel.is-navy { background: var(--yp-navy); color: var(--yp-white); }
.yp-pricing-panel__inner { max-width: 650px; padding: 80px clamp(20px, 3vw, 48px); margin-left: auto; }
.yp-pricing-panel.is-navy .yp-pricing-panel__inner { margin-left: 0; margin-right: auto; }
.yp-pricing-panel__body { margin: 0 0 24px; }
.yp-pricing-panel.is-navy .yp-pricing-panel__body { color: var(--yp-text-light-strong); }
.yp-price-rows { list-style: none; margin: 0 0 32px; padding: 0; }
.yp-price-rows li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--yp-row-border);
}
.yp-pricing-panel.is-navy .yp-price-rows li { border-color: rgba(255, 255, 255, 0.14); }
.yp-pricing-panel.is-cream .yp-price-rows li { border-color: var(--yp-card-border); }
.yp-price-rows__label { font-size: 16px; font-weight: 400; color: var(--yp-taupe); font-family: var(--yp-font-body); }
.yp-price-rows__price { font-family: var(--yp-font-display); font-size: 30px; font-weight: 400; }
.yp-pricing-panel.is-navy .yp-price-rows__label, .yp-pricing-panel.is-navy .yp-price-rows__price { color: #F5F0E880; }
.yp-pricing-panel .yp-section-header { max-width: none; }
.yp-price-rows__currency { font-size: 0.5em; vertical-align: baseline; }
@media (max-width: 899px) { .yp-pricing-panels__row { grid-template-columns: 1fr; } .yp-pricing-panel__inner { margin: 0; } }

/* ---------------------------------------------------- service detail bits */

.yp-sdc__body .yp-prose { font-size: 16px; font-weight: 400; color: var(--yp-taupe); font-family: var(--yp-font-body); margin-top: 32px; }
.yp-sdc__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; }
.yp-sdc__stat { padding: 0 0 24px; border-bottom: 2px solid var(--yp-row-border); }
.yp-sdc__stat:nth-child(odd) { border-right: 2px solid var(--yp-row-border); padding-right: var(--yp-gutter); }
.yp-sdc__stat:nth-child(even) { padding-left: var(--yp-gutter); }
.yp-sdc__stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; padding-top: 24px; }
.yp-sdc__stat dt { font-family: var(--yp-font-display); font-size: 30px; font-weight: 400; color: var(--yp-navy); margin: 0; }
.yp-sdc__stat-suffix { color: var(--yp-olive); }
.yp-sdc__stat dd { margin: 2px 0 0; font-size: 20px; font-weight: 400; color: var(--yp-taupe); font-family: var(--yp-font-body); }
.yp-sdc__list-heading { font-family: var(--yp-font-display); font-weight: 500; font-size: 20px; margin: 0 0 12px; }

.yp-numbered-list { list-style: none; margin: 0; padding: 0; }
.yp-numbered-list li { display: flex; align-items: center; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--yp-row-border); }
.yp-numbered-list__num { font-family: var(--yp-font-display); font-size: 20px; font-weight: 400; color: var(--yp-taupe); flex: none; }
.yp-numbered-list__title { font-family: var(--yp-font-display); font-weight: 500; font-size: 16px; color: #000; }
.yp-numbered-list__text { margin: 6px 0 0; font-size: 16px; font-weight: 400; color: var(--yp-taupe); font-family: var(--yp-font-body); }

.yp-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--yp-gutter); }
.yp-benefit-card { border: 1px solid rgba(255, 255, 255, 0.14); padding: 36px; }
.yp-benefit-card__icon { color: var(--yp-olive); font-size: 30px; display: inline-block; margin-bottom: 20px; }
.yp-benefit-card__title { font-family: var(--yp-font-display); font-weight: 500; font-size: 20px; margin: 0 0 10px; }
.yp-benefit-card__text { color: var(--yp-text-light-strong); margin: 0; font-size: 16px; }
.yp-benefits__intro { max-width: 640px; margin: -16px 0 36px; color: var(--yp-text-light-strong); }
@media (max-width: 999px) { .yp-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 649px) { .yp-benefits__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- schedule */

.yp-schedule__scroll { overflow-x: auto; }
.yp-schedule__table { width: 100%; border-collapse: collapse; background: transparent; }
.yp-schedule__table th, .yp-schedule__table td { border: 1px solid var(--yp-card-border); padding: 16px 18px; text-align: left; font-size: 15px; background: transparent; }
.yp-schedule__table th { font-family: var(--yp-font-display); font-weight: 500; font-size: 15px; color: #000; }
.yp-schedule__book { font-family: var(--yp-font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--yp-olive); text-decoration: none; }
.yp-schedule__book:hover { text-decoration: underline; color: var(--yp-olive); }
.yp-schedule__note { color: var(--yp-text-muted); margin: 0 0 24px; }

/* Mobile: needs designed treatment — conventional card collapse, flagged for sign-off. */
@media (max-width: 767px) {
	.yp-schedule__table thead { display: none; }
	.yp-schedule__table, .yp-schedule__table tbody, .yp-schedule__table tr, .yp-schedule__table td { display: block; width: 100%; }
	.yp-schedule__table tr { border: 1px solid var(--yp-card-border); margin-bottom: 14px; }
	.yp-schedule__table td { border: 0; border-bottom: 1px solid var(--yp-row-border); display: flex; justify-content: space-between; gap: 16px; }
	.yp-schedule__table td::before { content: attr(data-th); font-family: var(--yp-font-display); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--yp-taupe); }
}

/* ----------------------------------------------------------- what to expect */

.yp-expect__list { list-style: none; margin: 0; padding: 0; }
.yp-expect__list li { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--yp-row-border); }
.yp-expect__title { font-family: var(--yp-font-display); font-weight: 500; font-size: 18px; margin: 0; }
.yp-expect__text { margin: 6px 0 0; color: var(--yp-text-muted); font-size: 16px; }
.yp-expect__side { align-self: start; }
.yp-bring-card { padding: 44px; }
.yp-bring-card.is-navy { background: var(--yp-navy); color: var(--yp-white); }
.yp-bring-card__title { font-family: var(--yp-font-display); font-weight: 500; font-size: 14px; text-transform: uppercase; margin: 0 0 22px; }
.yp-bring-card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.yp-bring-card__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--yp-text-light-strong); }
.yp-bring-card__list .yp-icon { color: var(--yp-olive); font-size: 18px; margin-top: 2px; flex: none; }
.yp-bring-card__note { margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--yp-faq-border); color: var(--yp-text-light-strong); font-size: 16px; }
.yp-expect__offer { margin-top: 28px; }
.yp-expect__offer-title { font-family: var(--yp-font-display); font-weight: 500; font-size: 20px; margin: 0 0 10px; }
.yp-expect__offer-text { color: var(--yp-text-muted); margin: 0 0 22px; font-size: 16px; }

/* ------------------------------------------------------------ pricing cards */

.yp-pricing__sub { font-size: 16px; font-weight: 400; color: var(--yp-text-light-strong); margin: 0 0 40px; }
.yp-pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--yp-gutter); align-items: stretch; }
.yp-price-card { padding: 40px; display: flex; flex-direction: column; gap: 6px; }
.yp-price-card.is-highlight { background: rgba(127, 61, 28, 0.4); border-top: 2px solid var(--yp-olive); }
.yp-price-card__badge { font-family: var(--yp-font-display); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yp-olive); margin: 0 0 10px; }
.yp-price-card__title { font-family: var(--yp-font-display); font-weight: 500; font-size: 20px; margin: 0; }
.yp-price-card__price { font-family: var(--yp-font-display); font-size: 44px; margin: 6px 0 0; }
.yp-price-card__period { color: var(--yp-text-light-strong); font-size: 16px; margin: 0 0 16px; }
.yp-price-card__bullets { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; flex: 1; }
.yp-price-card__bullets li { padding-left: 22px; position: relative; color: var(--yp-text-light-strong); font-size: 15px; }
.yp-price-card__bullets li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--yp-olive); }
@media (max-width: 899px) { .yp-pricing__grid { grid-template-columns: 1fr; } }
@media (max-width: 649px) {
	.yp-price-card { padding: 28px; gap: 4px; }
	.yp-price-card__title { font-size: 18px; }
	.yp-price-card__price { font-size: 32px; margin-top: 4px; }
	.yp-price-card__period { margin-bottom: 12px; }
	.yp-price-card__bullets { margin-bottom: 22px; }
	.yp-price-card .yp-btn { width: 100%; justify-content: center; }
}

.yp-pricing__carousel { position: relative; overflow: hidden; }
.yp-pricing__track {
	display: flex;
	gap: var(--yp-gutter);
	transition: transform 0.45s ease;
	will-change: transform;
}
.yp-pricing__slide { flex: 0 0 calc((100% - 2 * var(--yp-gutter)) / 3); display: flex; }
.yp-pricing__slide .yp-price-card { width: 100%; }
@media (max-width: 1099px) { .yp-pricing__slide { flex-basis: calc((100% - var(--yp-gutter)) / 2); } }
@media (max-width: 649px) { .yp-pricing__slide { flex-basis: 100%; } }

.yp-pricing__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }

.yp-pricing__arrow {
	flex: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--yp-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.yp-pricing__arrow:hover { background: var(--yp-olive); border-color: var(--yp-olive); }
.yp-pricing__arrow .yp-icon { width: 16px; height: 16px; }
.yp-pricing__arrow--prev .yp-icon { transform: rotate(180deg); }

.yp-pricing__dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.yp-pricing__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: width 0.2s ease, border-radius 0.2s ease; }
.yp-pricing__dot.is-active { width: 22px; border-radius: 4px; background: var(--yp-olive); }

/* ------------------------------------------------------------- explore more */

.yp-explore-more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--yp-gutter); }
.yp-explore-card { padding: 30px; border: 1px solid var(--yp-card-border); }
.yp-explore-card__quote { font-size: 16px; line-height: 1.5; color: var(--yp-taupe); margin: 0 0 18px; }
.yp-explore-card .yp-learn-more { color: var(--yp-taupe); }
@media (max-width: 999px) { .yp-explore-more__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 649px) { .yp-explore-more__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ contact page */

.yp-contact-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--yp-gutter); }
.yp-contact-card { border: none; padding: 40px; min-height: 277px; }
.yp-contact-card:nth-child(3n+2) { border: 1px solid var(--yp-card-border); }
.yp-contact-card__icon { color: var(--yp-taupe); font-size: 28px; display: inline-block; margin-bottom: 18px; }
.yp-contact-card__kicker { font-family: var(--yp-font-display); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yp-taupe); margin: 0 0 10px; }
.yp-contact-card__title { font-family: var(--yp-font-display); font-weight: 500; font-size: 21px; margin: 0 0 10px; }
.yp-contact-card__text { color: var(--yp-text-muted); margin: 0; }
.yp-contact-card .yp-learn-more { color: var(--yp-taupe); }
@media (max-width: 899px) {
	.yp-contact-cards__grid { grid-template-columns: 1fr; }
	.yp-contact-card { border: 1px solid var(--yp-card-border); }
}

.yp-contact-split__cols { display: grid; grid-template-columns: 709fr 497fr; gap: 34px; align-items: start; }
.yp-contact-split__sub { color: var(--yp-text-light-strong); margin: -12px 0 32px; }
.yp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.yp-form__field { margin: 0 0 18px; }
.yp-form label {
	display: block;
	font-family: var(--yp-font-display);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--yp-cream);
	margin-bottom: 8px;
}
.yp-form input, .yp-form select, .yp-form textarea {
	width: 100%;
	background: transparent;
	border: 1px solid rgba(245, 240, 232, 0.2);
	border-radius: 5px;
	color: var(--yp-white);
	padding: 12px 14px;
	font-size: 15px;
	font-family: var(--yp-font-body);
}
.yp-form select { appearance: none; }
.yp-form select option { color: var(--yp-navy); }
.yp-form ::placeholder { color: var(--yp-text-light); }
.yp-form input:focus, .yp-form select:focus, .yp-form textarea:focus { outline: 2px solid var(--yp-olive); outline-offset: 1px; border-color: transparent; }
.yp-form .yp-btn { margin-top: 10px; }

/* Real JetFormBuilder form (blocks/yp-contact-form-info, YP_JFB_CONTACT_FORM_ID)
   — same token values as the .yp-form rules above (that markup is retired,
   left in place only for the admin-pasted-embed fallback), reskinning
   JetFormBuilder's own field markup instead since its structure differs
   (jet-form-builder-row per field, no shared wrapping "row" element for a
   name/email pairing) — the 2-up pairing is recreated with a CSS grid on
   the form itself rather than in markup. */
/* .yp-contact-split__cols is itself a grid (709fr/497fr) — a grid item's
   default min-width:auto respects its content's intrinsic width, so this
   nested grid (full of un-shrinkable input fields) was overflowing its own
   709fr track and spilling across the gap on top of the Studio Information
   column instead of shrinking to fit. */
.yp-contact-split__form { min-width: 0; }
.yp-contact-split__form .jet-form-builder { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; min-width: 0; }
.yp-contact-split__form .jet-form-builder-row {
	/* Some already-loaded stylesheet makes .jet-form-builder-row a nowrap flex
	   row with both the label and field-wrap children stretched to the row's
	   own full width — doubling the row's effective content width and
	   spilling the field half of every row into whatever sits to its right
	   (here, the Studio Information column). Force label-above-input instead. */
	display: block;
	margin: 0 0 18px;
}
.yp-contact-split__form .field-type-select-field,
.yp-contact-split__form .field-type-textarea-field,
.yp-contact-split__form .field-type-submit-field { grid-column: 1 / -1; }
.yp-contact-split__form .jet-form-builder__label-text {
	display: block;
	font-family: var(--yp-font-display);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--yp-cream);
	margin-bottom: 8px;
}
.yp-contact-split__form .jet-form-builder__required { color: var(--yp-olive); margin-left: 2px; }
.yp-contact-split__form .jet-form-builder__field {
	width: 100%;
	background: transparent;
	border: 1px solid rgba(245, 240, 232, 0.2);
	border-radius: 5px;
	color: var(--yp-white);
	padding: 12px 14px;
	font-size: 15px;
	font-family: var(--yp-font-body);
}
/* JetFormBuilder's per-form inline block style (.cb-xxxx .jet-form-builder__field-wrap input {color:#000;background:#fff}, specificity 0,2,1)
   beats the plain field rule above for <input>s only — textarea/select escaped it, which is why the four text inputs rendered white
   while Message stayed navy. Out-specify it so every field shares one look. */
.yp-contact-split__form .jet-form-builder .jet-form-builder__field-wrap input.jet-form-builder__field {
	background-color: transparent;
	color: var(--yp-white);
	border: 1px solid rgba(245, 240, 232, 0.2);
	border-radius: 5px;
}
.yp-contact-split__form .jet-form-builder .jet-form-builder__field-wrap input.jet-form-builder__field::placeholder { color: var(--yp-text-light); opacity: 1; }
.yp-contact-split__form select.jet-form-builder__field { appearance: none; }
.yp-contact-split__form select.jet-form-builder__field option { color: var(--yp-navy); }
.yp-contact-split__form textarea.jet-form-builder__field { min-height: 120px; resize: vertical; }
.yp-contact-split__form ::placeholder { color: var(--yp-text-light); opacity: 1; }
.yp-contact-split__form .jet-form-builder__field:focus { outline: 2px solid var(--yp-olive); outline-offset: 1px; border-color: transparent; }
.yp-contact-split__form .jet-form-builder__submit-wrap { margin-top: 10px; }
.yp-contact-split__form .jet-form-builder-messages-wrap { margin-top: 16px; font-size: 14px; color: var(--yp-text-light-strong); }
.yp-contact-split__form .jet-form-builder-messages-wrap:empty { display: none; }
@media (max-width: 649px) {
	.yp-contact-split__form .jet-form-builder { grid-template-columns: 1fr; }
	.yp-contact-split__form .jet-form-builder-row { grid-column: 1 / -1; }
}

.yp-studio-info { padding: 34px; }
.yp-studio-info__title { margin: 0 0 10px; }
.yp-studio-info__rows { margin: 0; }
.yp-studio-info__rows > div { padding: 20px 0; border-bottom: 1px solid rgba(127, 61, 28, 0.3); }
.yp-studio-info__rows > div:last-child { border-bottom: 0; }
.yp-studio-info__rows dt { font-family: var(--yp-font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--yp-olive); margin-bottom: 8px; }
.yp-studio-info__rows dd { margin: 0; color: var(--yp-text-light-strong); }
.yp-studio-info__rows dd a { color: var(--yp-white); text-decoration: none; }
.yp-studio-info__rows dd a:hover { color: var(--yp-olive); }
.yp-studio-info__hours-row { display: flex; justify-content: space-between; gap: 16px; }
.yp-studio-info__hours-row span:first-child { color: var(--yp-white); }
@media (max-width: 899px) { .yp-contact-split__cols { grid-template-columns: 1fr; } .yp-form__row { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------- map */

.yp-map__media { position: relative; aspect-ratio: 705 / 399; overflow: hidden; }
.yp-map__img, .yp-map__media .yp-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; filter: grayscale(1); }
.yp-map__embed, .yp-map__embed iframe {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	border: 0 !important;
	filter: grayscale(1);
}
.yp-map__body .yp-btn { margin-top: 24px; }
.yp-map .yp-h2 br { display: none; }
@media (min-width: 900px) { .yp-map .yp-h2 br { display: inline; } }

/* ------------------------------------------------------------------ footer */

.yp-footer { background: var(--yp-navy); color: var(--yp-white); padding: 60px 0 30px; }
.yp-footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 40px; }
.yp-footer__brand, .yp-footer__col { min-width: 0; text-align: left; overflow-wrap: anywhere; }
.yp-footer__blurb { color: var(--yp-text-light); font-size: 16px; margin: 18px 0 22px; }
.yp-footer__head {
	font-family: var(--yp-font-display);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 8px;
	padding-bottom: 12px;
	position: relative;
}
.yp-footer__head::after { content: ""; position: absolute; left: 0; bottom: 0; width: 22px; height: 2px; background: var(--yp-olive); }
.yp-footer__links { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.yp-footer__links a { color: var(--yp-text-light-strong); text-decoration: none; font-size: 16px; }
.yp-footer__links a:hover { color: var(--yp-white); }
.yp-footer__hours li { display: flex; justify-content: flex-start; gap: 6px; color: var(--yp-text-light-strong); font-size: 16px; }

.yp-socials { list-style: none; display: flex; gap: 12px; margin: 0; padding: 0; }
.yp-socials a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--yp-taupe);
	color: var(--yp-white);
	font-size: 18px;
}
.yp-socials a:hover { background: var(--yp-olive); color: var(--yp-white); }

.yp-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid var(--yp-footer-divider);
	margin-top: 48px;
	padding-top: 26px;
	color: var(--yp-text-light);
	font-size: 16px;
}
.yp-footer__bottom p { margin: 0; }
.yp-footer__credit { display: flex; align-items: center; gap: 12px; }
.yp-footer__credit a, .yp-footer__credit span { color: var(--yp-text-light); text-decoration: none; }
.yp-footer__credit a:hover { color: var(--yp-white); }
.yp-footer__credit-logo { display: block; width: auto; height: auto; max-width: 100px; max-height: 100px; }
@media (max-width: 899px) { .yp-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) {
	.yp-footer__grid { grid-template-columns: 1fr; }
	.yp-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------- teacher profile */

.yp-teacher-profile { padding-block: 0; }
.yp-teacher-profile__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 720px; }
.yp-teacher-profile__info {
	padding: 96px clamp(24px, 6.9vw, 100px) 96px max(20px, calc(100% - (var(--yp-container) / 2)));
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.yp-teacher-profile__eyebrow {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--yp-font-display);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--yp-taupe);
	margin: 0 0 16px;
}
.yp-teacher-profile__name {
	font-family: var(--yp-font-display);
	font-weight: 700;
	font-size: clamp(42px, 4.8vw, 68px);
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--yp-navy);
	margin: 0 0 20px;
}
.yp-teacher-profile__bio { color: var(--yp-text-muted); max-width: 56ch; }
.yp-teacher-profile__bio p { margin: 0 0 18px; }
.yp-teacher-profile__quote {
	margin: 8px 0 0;
	padding-top: 28px;
	border-top: 1px solid var(--yp-row-border);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.yp-teacher-profile__quote-mark { font-family: var(--yp-font-display); font-size: 40px; line-height: 0.6; color: var(--yp-taupe); flex: none; }
.yp-teacher-profile__quote p { margin: 0; font-family: var(--yp-font-body); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--yp-navy); }
.yp-teacher-profile__media { position: relative; }
.yp-teacher-profile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.yp-teacher-profile__caption {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 420px;
	margin-inline: auto;
	background: var(--yp-taupe);
	color: var(--yp-white);
	border-radius: 16px;
	padding: 20px 24px;
}
.yp-teacher-profile__caption-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--yp-white);
	font-size: 18px;
	flex: none;
}
.yp-teacher-profile__caption p { margin: 0; font-family: var(--yp-font-body); font-size: 16px; line-height: 1.4; }
@media (max-width: 899px) {
	.yp-teacher-profile__grid { grid-template-columns: 1fr; min-height: 0; }
	.yp-teacher-profile__info { padding: 56px clamp(20px, 6vw, 48px) 40px; }
	.yp-teacher-profile__media { height: 480px; }
	.yp-teacher-profile__caption { left: 16px; right: 16px; bottom: 16px; padding: 16px 18px; }
}

/* -------------------------------------------------------- therapist feature */

.yp-therapist-feature { padding-block: 0; }
.yp-therapist-feature__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 640px; }
.yp-therapist-feature__info {
	padding: 88px clamp(24px, 6.9vw, 100px) 88px max(20px, calc(100% - (var(--yp-container) / 2)));
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.yp-therapist-feature__info .yp-services__intro-icon-row { justify-content: flex-start; margin-bottom: 24px; }
.yp-therapist-feature__name {
	position: relative;
	font-family: var(--yp-font-display);
	font-weight: 400;
	font-size: clamp(34px, 3.8vw, 50px);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--yp-taupe);
	margin: 0 0 24px;
	padding-bottom: 20px;
}
.yp-therapist-feature__name::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 26px;
	height: 2px;
	background: var(--yp-taupe);
}
.yp-therapist-feature__role { font-family: var(--yp-font-display); font-weight: 600; font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--yp-navy); margin: 0 0 12px; }
.yp-therapist-feature__bio { color: var(--yp-text-muted); max-width: 56ch; }
.yp-therapist-feature__bio p { margin: 0 0 18px; }
.yp-therapist-feature__bio p:last-child { margin-bottom: 0; }
.yp-therapist-feature__media { position: relative; }
.yp-therapist-feature__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 899px) {
	.yp-therapist-feature__grid { grid-template-columns: 1fr; min-height: 0; }
	.yp-therapist-feature__info { padding: 56px clamp(20px, 6vw, 48px) 40px; }
	.yp-therapist-feature__media { height: 420px; }
}

.yp-therapist-cta { position: relative; overflow: hidden; padding-block: 88px; text-align: center; background: rgba(127, 61, 28, 0.06); }
.yp-therapist-cta::before {
	content: "";
	position: absolute;
	left: -40px;
	bottom: -40px;
	width: 260px;
	height: 260px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237F3D1C' stroke-width='1.6'%3E%3Cpath d='M12 20c-2.6-1.6-4-3.9-4-6.4 0-2.4 1.5-4.8 4-6.6 2.5 1.8 4 4.2 4 6.6 0 2.5-1.4 4.8-4 6.4Z'/%3E%3Cpath d='M12 20c-3.9.6-7.2-.6-9-3 1.6-1.5 3.8-2.3 6-2.2M12 20c3.9.6 7.2-.6 9-3-1.6-1.5-3.8-2.3-6-2.2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.08;
	pointer-events: none;
}
.yp-therapist-cta__inner { position: relative; max-width: 760px; }
.yp-therapist-cta .yp-eyebrow {
	display: inline-flex;
	background: rgba(127, 61, 28, 0.1);
	color: var(--yp-taupe);
	padding: 9px 22px;
	border-radius: var(--yp-radius-pill);
	margin: 0 0 24px;
}
.yp-therapist-cta__heading {
	font-family: var(--yp-font-display);
	font-weight: 400;
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--yp-navy);
	margin: 0;
}
.yp-therapist-cta__heading em { font-style: normal; color: var(--yp-taupe); }
.yp-therapist-cta .yp-services__intro-divider { margin: 40px auto 0; max-width: 400px; }
.yp-therapist-cta .yp-btn { margin-top: 32px; }

/* ------------------------------------------------------------------- 404 */

.yp-404 {
	position: relative;
	overflow: hidden;
	min-height: 720px;
	display: flex;
	align-items: center;
	padding: calc(var(--yp-header-h) + 40px) 0 64px;
}
.yp-404::before,
.yp-404::after {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1.6'%3E%3Cpath d='M12 20c-2.6-1.6-4-3.9-4-6.4 0-2.4 1.5-4.8 4-6.6 2.5 1.8 4 4.2 4 6.6 0 2.5-1.4 4.8-4 6.4Z'/%3E%3Cpath d='M12 20c-3.9.6-7.2-.6-9-3 1.6-1.5 3.8-2.3 6-2.2M12 20c3.9.6 7.2-.6 9-3-1.6-1.5-3.8-2.3-6-2.2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.05;
	pointer-events: none;
}
.yp-404::before { left: -70px; top: -50px; }
.yp-404::after { right: -70px; bottom: -50px; transform: rotate(180deg); }

.yp-404__inner { position: relative; z-index: 2; text-align: center; max-width: 620px; margin-inline: auto; }

.yp-404__mark {
	font-family: var(--yp-font-display);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
	font-size: clamp(96px, 16vw, 190px);
	color: rgba(127, 61, 28, 0.18);
	margin: 0;
}
@supports (-webkit-text-stroke: 1px black) {
	.yp-404__mark {
		color: transparent;
		-webkit-text-stroke: 1.5px rgba(127, 61, 28, 0.45);
	}
}

.yp-404 .yp-h1 { margin-top: 4px; text-wrap: balance; }
.yp-404__sub { color: var(--yp-text-light); font-size: 18px; line-height: 1.6; max-width: 460px; margin: 22px auto 0; }
.yp-404 .yp-btn-row { justify-content: center; }

@media (max-width: 1099px) {
	.yp-404 { padding: 96px 0 56px; min-height: 0; }
}
@media (max-width: 649px) {
	.yp-404__mark { font-size: clamp(72px, 24vw, 120px); }
	.yp-404::before, .yp-404::after { width: 200px; height: 200px; }
}

/* -------------------------------------------------------------- utilities */

.screen-reader-text {
	position: absolute !important;
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}
