/* =========================================================
   Proficiency Builders — design tokens & base styles
   Colors/fonts extracted 1:1 from Figma (node 1:19)
   ========================================================= */

:root {
	--pb-green-900: #0b4b3b; /* headings, primary accent */
	--pb-green-950: #0f2620; /* body text */
	--pb-green-300: #9fcfb6; /* buttons, badges */
	--pb-green-100: #e7edeb; /* light card backgrounds */
	--pb-gold-700: #7d6025;  /* eyebrow labels, quote band */
	--pb-cream-100: #faf7f2; /* section background */
	--pb-cream-200: #ebe6dd; /* pill backgrounds */
	--pb-white: #ffffff;
	--pb-black: #000000;

	--pb-font-serif: 'Ancizar Serif', 'Fraunces', Georgia, serif;
	--pb-font-display: 'Fraunces', Georgia, serif;
	--pb-font-body: 'Manrope', 'Figtree', system-ui, sans-serif;
	--pb-font-nav: 'Satoshi', 'Manrope', system-ui, sans-serif;
	--pb-font-script: 'Caveat', cursive;

	--pb-radius-sm: 8px;
	--pb-radius-md: 12px;
	--pb-radius-lg: 24px;
	--pb-container: 1440px;
	--pb-narrow: 980px;
	/* Figma frames content at x=64 inside the 1440 canvas */
	--pb-gutter: clamp(24px, 4.45vw, 64px);

	/* Shared motion tokens — a Framer/Linear-style "settle" curve for reveals
	   and a snappier one for direct-manipulation hovers/presses. */
	--pb-ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
	--pb-ease-hover: cubic-bezier(0.22, 1, 0.36, 1);
	--pb-duration-reveal: 0.8s;
	--pb-duration-hover: 0.35s;
}

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

html {
	scroll-behavior: smooth;
}

/* Lenis smooth-scroll recommended base rules (see inc/enqueue.php / assets/js/lenis-init.js). */
html.lenis,
html.lenis body {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}
.lenis.lenis-stopped {
	overflow: hidden;
}
.lenis.lenis-smooth iframe {
	pointer-events: none;
}

body {
	margin: 0;
	font-family: var(--pb-font-body);
	color: var(--pb-green-950);
	background: var(--pb-white);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
	font-family: var(--pb-font-serif);
	font-weight: 500;
	color: var(--pb-green-900);
	margin: 0 0 0.5em;
	line-height: 1.15;
}

p {
	margin: 0 0 1em;
}

.container {
	max-width: var(--pb-container);
	margin-inline: auto;
	padding-inline: var(--pb-gutter);
}

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

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--pb-green-900);
	color: var(--pb-white);
	padding: 12px 20px;
	z-index: 999;
}
.skip-link:focus {
	top: 0;
}

.eyebrow {
	display: inline-block;
	font-family: var(--pb-font-body);
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	color: var(--pb-gold-700);
	margin-bottom: 12px;
}

/* =========================================================
   Scroll-reveal (fade + stagger), driven by assets/js/reveal.js
   ========================================================= */

.reveal {
	opacity: 0;
	transform: translateY(28px) scale(0.98);
	filter: blur(6px);
	transition:
		opacity var(--pb-duration-reveal) var(--pb-ease-reveal),
		transform var(--pb-duration-reveal) var(--pb-ease-reveal),
		filter var(--pb-duration-reveal) var(--pb-ease-reveal);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform, filter;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
	filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		transition: none;
		opacity: 1;
		transform: none;
		filter: none;
	}
}

/* =========================================================
   Page-builder section wrapper
   Every section rendered by pb_render_page_sections() gets this
   wrapper automatically: anchor id, top/bottom padding (desktop +
   mobile, set inline as CSS custom properties per-row), an optional
   background layer (color/gradient/image), an optional dark overlay
   over background images, and a width variant for its inner content.
   Individual template-parts/sections/*.php files only need to render
   their own content — none of this is their responsibility.
   ========================================================= */

.pb-section {
	position: relative;
	padding-top: var(--pb-pad-top-d, 80px);
	padding-bottom: var(--pb-pad-bottom-d, 80px);
}

.pb-section__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.pb-section__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.pb-section__inner {
	position: relative;
	z-index: 2;
	margin-inline: auto;
	padding-inline: var(--pb-gutter);
}

.pb-section__inner--full {
	max-width: none;
	padding-inline: 0;
}

.pb-section__inner--container {
	max-width: var(--pb-container);
}

.pb-section__inner--narrow {
	max-width: var(--pb-narrow);
}

@media (max-width: 599px) {
	.pb-section {
		padding-top: var(--pb-pad-top-m, 48px);
		padding-bottom: var(--pb-pad-bottom-m, 48px);
	}
}

.section__header {
	max-width: 640px;
	margin-bottom: 48px;
}

.section__heading {
	font-size: clamp(26px, 3.2vw, 40px);
}

.section__heading--center {
	text-align: center;
	margin-inline: auto;
}

/* =========================================================
   Page Header (inner-page hero)
   ========================================================= */

.pb-section--page_header {
	--pb-pad-top-d: 36px;
	--pb-pad-bottom-d: 28px;
	--pb-pad-top-m: 24px;
	--pb-pad-bottom-m: 20px;
}

.page-header {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.page-header .eyebrow {
	margin-bottom: 0;
}

.page-header__heading {
	font-size: clamp(26px, 3.2vw, 40px);
	letter-spacing: -0.03em;
	margin-bottom: 0;
}

.page-header__intro {
	font-size: clamp(16px, 1.4vw, 20px);
	line-height: 1.5;
	color: var(--pb-green-950);
	max-width: 46ch;
	margin-bottom: 0;
}

.page-header .button {
	margin-top: 8px;
}

/* =========================================================
   Buttons
   ========================================================= */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--pb-font-body);
	font-weight: 500;
	font-size: 16px;
	padding: 14px 24px;
	border-radius: var(--pb-radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	transition:
		transform var(--pb-duration-hover) var(--pb-ease-hover),
		background-color var(--pb-duration-hover) var(--pb-ease-hover),
		box-shadow var(--pb-duration-hover) var(--pb-ease-hover),
		border-color var(--pb-duration-hover) var(--pb-ease-hover);
}
.button:hover {
	transform: translateY(-2px) scale(1.02);
}
.button:active {
	transform: translateY(0) scale(0.97);
	transition-duration: 0.12s;
}

.button--primary {
	background: var(--pb-green-300);
	color: var(--pb-green-950);
	box-shadow: 0 0 0 0 rgba(159, 207, 182, 0);
}
.button--primary:hover {
	background: #8fc2a6;
	box-shadow: 0 10px 24px -8px rgba(11, 75, 59, 0.45);
}

.button--secondary {
	background: transparent;
	color: var(--pb-green-950);
	border-color: currentColor;
}
.button--secondary:hover {
	background: var(--pb-green-950);
	color: var(--pb-white);
	border-color: var(--pb-green-950);
}

/* Figma "Learn more": same mint fill, tighter 12x16 padding */
.button--small {
	padding: 12px 16px;
	line-height: 1.2;
}

/* Hand-drawn underline behind a highlighted word in headings.
   Wrap the word in *asterisks* in the ACF heading field to trigger it. */
.heading-swoosh {
	font-style: inherit;
	display: inline-block;
	background: url(../images/swoosh.svg) no-repeat bottom center / 100% 9px;
	padding-bottom: 12px;
	margin-bottom: -12px;
}

.button--outline {
	background: transparent;
	color: var(--pb-white);
	border-color: var(--pb-white);
}
.button--outline:hover {
	background: var(--pb-white);
	color: var(--pb-green-900);
}

/* =========================================================
   Header / Nav
   ========================================================= */

.site-header {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid transparent;
	box-shadow: 0 1px 0 rgba(15, 38, 32, 0.06);
	transition: box-shadow var(--pb-duration-hover) var(--pb-ease-hover), border-color var(--pb-duration-hover) var(--pb-ease-hover);
}
.site-header.is-scrolled {
	border-bottom-color: var(--pb-green-100);
	box-shadow: 0 12px 24px -16px rgba(15, 38, 32, 0.25);
}

.nav {
	max-width: var(--pb-container);
	margin-inline: auto;
	padding: 16px var(--pb-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.nav__logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav__logo-mark {
	height: 32px;
	width: auto;
}

.nav__logo-wordmark {
	height: 22px;
	width: auto;
}

.nav__logo-text {
	font-family: var(--pb-font-display);
	font-weight: 600;
	font-size: 20px;
	color: var(--pb-green-900);
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav__menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--pb-font-nav);
	font-weight: 500;
	font-size: 16px;
}

.nav__menu a {
	position: relative;
	display: inline-block;
	padding-block: 4px;
}
.nav__menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1.5px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover);
}
.nav__menu a:hover::after,
.nav__menu a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Dropdown submenus (WP outputs .menu-item-has-children > .sub-menu) */
.nav__menu li {
	position: relative;
}

.nav__menu .menu-item-has-children > a {
	padding-right: 18px;
}
.nav__menu .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover);
}
.nav__menu .menu-item-has-children.is-open > a::before {
	transform: rotate(225deg);
	margin-top: -2px;
}

.nav__menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 8px;
}

@media (min-width: 900px) {
	.nav__menu .sub-menu {
		position: absolute;
		top: calc(100% + 12px);
		left: -12px;
		min-width: 220px;
		background: var(--pb-white);
		border-radius: var(--pb-radius-md);
		box-shadow: 0 20px 40px -16px rgba(15, 38, 32, 0.25);
		border: 1px solid var(--pb-green-100);
		display: flex;
		flex-direction: column;
		gap: 2px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition:
			opacity var(--pb-duration-hover) var(--pb-ease-hover),
			transform var(--pb-duration-hover) var(--pb-ease-hover),
			visibility 0s linear var(--pb-duration-hover);
	}

	.nav__menu li:hover > .sub-menu,
	.nav__menu li:focus-within > .sub-menu,
	.nav__menu li.is-open > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition-delay: 0s;
	}

	.nav__menu .sub-menu a {
		display: block;
		padding: 8px 12px;
		border-radius: var(--pb-radius-sm);
		white-space: nowrap;
	}
	.nav__menu .sub-menu a:hover {
		background: var(--pb-green-100);
	}
	.nav__menu .sub-menu a::after {
		display: none;
	}
}

.nav__logo {
	display: flex;
	align-items: center;
	gap: 8px;
	transition: opacity var(--pb-duration-hover) var(--pb-ease-hover);
}
.nav__logo:hover {
	opacity: 0.75;
}

.nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
}
.nav__toggle-bar {
	width: 24px;
	height: 2px;
	background: var(--pb-green-950);
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), opacity var(--pb-duration-hover) var(--pb-ease-hover);
}
/* The button's first child is the screen-reader label, so target the three
   bars from the end of the child list. */
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-last-child(3) {
	transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-last-child(2) {
	opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-last-child(1) {
	transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Hero
   ========================================================= */

/* Figma: headline block full-width, then a full-width 600px-tall image,
   then the about/stats band — everything stacked, nothing side-by-side. */
.hero__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	margin-bottom: 72px;
}

.hero__headline {
	font-size: clamp(36px, 3.9vw, 56px);
	max-width: 26ch;
	margin-bottom: 0;
}

.hero__cta {
	margin-top: 32px;
}

.hero__media {
	position: relative;
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
}

.hero__image {
	border-radius: var(--pb-radius-lg);
	width: 100%;
	height: clamp(320px, 42vw, 600px);
	object-fit: cover;
	transition: transform 0.6s var(--pb-ease-hover);
}
.hero__media:hover .hero__image {
	transform: scale(1.02);
}

.hero__trust-card {
	position: absolute;
	left: 24px;
	top: 24px;
	z-index: 3;
	background: var(--pb-white);
	border-radius: var(--pb-radius-lg);
	padding: 20px 24px;
	max-width: 320px;
	box-shadow: 0 12px 32px rgba(15, 38, 32, 0.12);
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}
.hero__trust-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(15, 38, 32, 0.18);
}

/* Hand-drawn white doodles over the hero photo (Figma 38:38/44/49/58),
   with a soft shimmer: gentle opacity/scale pulse + white glow sweep. */
.hero__doodle {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	animation: pb-doodle-shimmer 4.5s var(--pb-ease-hover) infinite;
}

.hero__doodle--globe {
	left: 1.2%;
	top: 46.5%;
	width: 14.6%;
	animation-delay: 0s;
}

.hero__doodle--star {
	left: 43%;
	top: 21%;
	width: 7.1%;
	animation-delay: 1.1s;
}

.hero__doodle--book {
	right: -6.3%;
	top: 1.8%;
	width: 10.9%;
	animation-delay: 2.2s;
}

.hero__doodle--protractor {
	right: 8%;
	bottom: -2.4%;
	width: 12%;
	animation-delay: 3.3s;
}

@keyframes pb-doodle-shimmer {
	0%,
	100% {
		opacity: 0.75;
		transform: scale(1) rotate(0deg);
		filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
	}
	50% {
		opacity: 1;
		transform: scale(1.05) rotate(1.5deg);
		filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.75));
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__doodle {
		animation: none;
	}
}

@media (max-width: 599px) {
	.hero__doodle {
		display: none;
	}
}

.hero__rating {
	color: var(--pb-gold-700);
	font-size: 18px;
	display: block;
	margin-bottom: 4px;
}

.hero__trust-text {
	font-weight: 500;
	margin: 0;
}

.hero__bottom {
	display: grid;
	grid-template-columns: 1fr;
	gap: 64px;
	align-items: start;
	padding-top: 24px;
}

/* Eyebrow in the left column, the big statement in the right. */
.hero__about {
	display: grid;
	grid-template-columns: minmax(160px, 400px) 1fr;
	gap: 24px;
	align-items: start;
}

.hero__about-text {
	font-size: clamp(20px, 1.7vw, 24px);
	line-height: 1.5;
	color: var(--pb-green-950);
	margin: 0;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hero__stat-number {
	display: block;
	font-family: var(--pb-font-serif);
	font-weight: 500;
	/* sized so "Research based" stays on one line in its column */
	font-size: clamp(30px, 2.9vw, 42px);
	white-space: nowrap;
	color: var(--pb-green-900);
	margin-bottom: 12px;
}

.hero__stat-label {
	font-size: 18px;
}

/* =========================================================
   Offerings
   ========================================================= */

/* Figma: eyebrow + heading centered above the card row */
.pb-section--offerings .section__header {
	max-width: none;
	text-align: center;
}

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

/* Figma card: copy + button at top, soft vector texture overlay, photo at bottom */
.program-card {
	position: relative;
	background: var(--pb-green-100);
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
	min-height: 570px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}
.program-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px -20px rgba(15, 38, 32, 0.3);
}

.program-card__texture {
	position: absolute;
	left: 0%;
	top: 36%;
	width: 155%;
	height: auto;
	max-width: none;
	pointer-events: none;
	z-index: 0;
    opacity: 1;
    mix-blend-mode: overlay;
}

.program-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
}

.program-card__copy {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.program-card__media {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 63%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.program-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	transition: transform 0.6s var(--pb-ease-hover);
}
.program-card:hover .program-card__media img {
	transform: scale(1.04);
}

.program-card__title {
	font-family: var(--pb-font-body);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.01em;
	margin-bottom: 0;
}

.program-card__description {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.01em;
	margin: 0;
	max-width: 32ch;
}

@media (max-width: 1099px) {
	.offerings__grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 699px) {
	.program-card {
		min-height: 520px;
		padding: 32px;
	}
	.program-card__media {
		left: -18%;
		right: -8%;
		height: 58%;
	}
}

/* =========================================================
   Testimonial spotlight (dark gold quote band)
   ========================================================= */

/* Figma: pale 4% gold band, green serif italic quote, author block +
   rule on the left. The !important beats the ACF inline background so the
   old seeded solid-gold color can't leak through. */
.pb-section--testimonial_spotlight {
	background-color: rgba(125, 96, 37, 0.04) !important;
	color: var(--pb-green-950);
}

.testimonial-spotlight__inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 40px;
	max-width: 1200px;
	margin-inline: auto;
}

.testimonial-spotlight__author {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 0 0 280px;
	padding-top: 12px;
}

.testimonial-spotlight__name {
	font-weight: 500;
	font-size: 20px;
	color: var(--pb-green-900);
}

/* short rule after the author name, as in Figma */
.testimonial-spotlight__author::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(15, 38, 32, 0.3);
}

@media (max-width: 899px) {
	.testimonial-spotlight__inner {
		flex-direction: column;
		gap: 24px;
	}
	.testimonial-spotlight__author {
		flex-basis: auto;
		align-self: stretch;
	}
}

.testimonial-spotlight__avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--pb-gold-700);
	color: var(--pb-white);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	flex-shrink: 0;
}

.testimonial-spotlight__quote {
	font-family: var(--pb-font-serif);
	font-style: italic;
	font-size: 32px;
	line-height: 1.5;
	letter-spacing: -0.03em;
	color: var(--pb-green-900);
	margin: 0;
	max-width: 664px;
}

/* =========================================================
   Why choose us
   ========================================================= */

.why-choose__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* Figma: ~140px between the text column and the tilted image block */
	gap: clamp(48px, 7vw, 100px);
	align-items: center;
}

.section__header--left {
	max-width: none;
}

.why-choose__features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 24px;
}

.feature {
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover);
}
.feature:hover {
	transform: translateY(-4px);
}

.feature__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 8px;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover);
}
.feature:hover .feature__icon {
	transform: scale(1.1) rotate(-4deg);
}

.feature__title {
	font-family: var(--pb-font-body);
	color: var(--pb-green-950);
	font-size: clamp(20px, 1.6vw, 24px);
	margin-bottom: 6px;
}

.feature__description {
	font-size: clamp(16px, 1.25vw, 18px);
	line-height: 1.45;
}

/* Figma 38:161: the photo (rotated -0.7deg) sits on a mint card tilted
   8deg up-left behind it, textured with the scribble map (overlay blend). */
.why-choose__media {
	position: relative;
	margin: 8% 0 4% 8%;
}

.why-choose__media::before {
	content: "";
	position: absolute;
	top: -8%;
	left: -11%;
	width: 102%;
	height: 103%;
	background: url(../images/cta-texture.svg) center / cover, var(--pb-green-300);
	background-blend-mode: overlay;
	border-radius: var(--pb-radius-lg);
	transform: rotate(8deg);
	z-index: -1;
}

.why-choose__media img {
	width: 100%;
	border-radius: var(--pb-radius-lg);
	transform: rotate(-0.7deg);
	transition: transform 0.6s var(--pb-ease-hover);
}
.why-choose__media:hover img {
	transform: rotate(-0.7deg) scale(1.02);
}

/* =========================================================
   Results & testimonials
   ========================================================= */

/* Figma: eyebrow, heading and tab pills all centered */
.results__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	max-width: none;
}

.results__tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}

.results__tab {
	font-family: var(--pb-font-body);
	font-size: 14px;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 68px;
	border: 0;
	background: var(--pb-cream-200);
	color: var(--pb-green-950);
	cursor: pointer;
	transition: background-color var(--pb-duration-hover) var(--pb-ease-hover), color var(--pb-duration-hover) var(--pb-ease-hover), transform var(--pb-duration-hover) var(--pb-ease-hover);
}

.results__tab:hover {
	transform: translateY(-1px);
	background: var(--pb-green-300);
}

.results__tab.is-active {
	background: var(--pb-green-950);
	color: var(--pb-white);
}

/* Hand-drawn "see the insights!" doodle top-left of the section (Figma 38:228) */
.results__doodle {
	position: absolute;
	top: 10px;
	left: clamp(24px, 6.5vw, 94px);
	width: 208px;
	height: auto;
	pointer-events: none;
}

@media (max-width: 1099px) {
	.results__doodle {
		display: none;
	}
}

/* Bento rows (Figma): stat cards 205px, media cards 200px, quote cards
   flex to fill; every card is 210px tall with 16px gaps in a 1040px band. */
.results__panels {
	max-width: 1040px;
	margin: 64px auto 0;
}

.results__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.results__panel {
	display: none;
}
.results__panel.is-active {
	display: block;
}

.testimonial-card {
	background: var(--pb-white);
	border-radius: var(--pb-radius-md);
	padding: 20px;
	min-height: 210px;
	flex: 1 1 320px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}
.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -18px rgba(15, 38, 32, 0.25);
}

.testimonial-card--stat {
	background: var(--pb-green-100);
	flex: 0 1 205px;
	min-width: 180px;
	padding: 16px 20px 20px;
	justify-content: space-between;
}

.testimonial-card--featured {
	background: var(--pb-green-300);
}

/* photo/video card with dark overlay + play badge */
.testimonial-card--media {
	flex: 0 1 200px;
	min-width: 160px;
	padding: 0;
	position: relative;
	overflow: hidden;
}
.testimonial-card--media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.testimonial-card--media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}
.testimonial-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--pb-white);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonial-card__play::after {
	content: "";
	border-style: solid;
	border-width: 7px 0 7px 11px;
	border-color: transparent transparent transparent var(--pb-green-950);
	margin-left: 3px;
}

.testimonial-card__stat {
	font-family: var(--pb-font-serif);
	font-size: 40px;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--pb-green-950);
}

.testimonial-card__caption,
.testimonial-card__quote {
	font-size: 14px;
	margin: 0;
	margin-top: auto;
}

.testimonial-card--quote .testimonial-card__quote {
	font-size: 16px;
	margin-top: 0;
}

.testimonial-card__logo {
	height: 68px;
	width: auto;
	margin-top: auto;
	align-self: flex-start;
}

@media (max-width: 899px) {
	.testimonial-card,
	.testimonial-card--stat,
	.testimonial-card--media {
		flex: 1 1 45%;
	}
}

.testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.testimonial-card__avatar {
	width: 39px;
	height: 39px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-card__author strong {
	display: block;
	font-family: var(--pb-font-serif);
	font-size: 14px;
	font-weight: 400;
}

.testimonial-card__author small {
	font-size: 12px;
	font-weight: 500;
}

/* =========================================================
   5 Steps
   ========================================================= */

/* Figma: the steps heading sits left-aligned, not centered */
.pb-section--steps .section__heading--center {
	text-align: left;
	margin-inline: 0;
	max-width: 15ch;
}

.steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 64px;
}

/* Figma card: number pill pinned top-left, title + copy at the bottom */
.step-card {
	background-color: var(--pb-green-100);
	border-radius: var(--pb-radius-lg);
	padding: 24px;
	min-height: 383px;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8px;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}

.step-card--photo {
	position: relative;
	overflow: hidden;
	color: var(--pb-white);
}

.step-card--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		180deg,
		rgba(11, 75, 59, 0.3) 0%,
		rgba(11, 75, 59, 0.78) 52%,
		rgba(11, 75, 59, 0.96) 100%
	);
	z-index: 0;
}

.step-card--photo > * {
	position: relative;
	z-index: 1;
}

.step-card--photo .step-card__title,
.step-card--photo .step-card__description {
	color: var(--pb-white);
}
.step-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -20px rgba(15, 38, 32, 0.25);
}

.step-card--featured {
	background-color: var(--pb-green-900);
	color: var(--pb-white);
}
.step-card--featured .step-card__title,
.step-card--featured .step-card__number {
	color: var(--pb-white);
}

.step-card__number {
	font-family: var(--pb-font-serif);
	font-size: 20px;
	font-weight: 600;
	color: var(--pb-green-900);
	background: var(--pb-white);
	border-radius: var(--pb-radius-sm);
	padding: 12px;
	align-self: flex-start;
	margin-bottom: auto;
}
.step-card--featured .step-card__number {
	color: var(--pb-green-900);
}

.step-card__title {
	font-size: 28px;
	margin-top: 24px;
	margin-bottom: 4px;
}

.step-card__description {
	font-family: var(--pb-font-nav);
	font-size: 16px;
	margin: 0;
}

/* =========================================================
   Trusted by
   ========================================================= */

/* Figma: heading on the left, divider, logo row on the right */
.pb-section--trusted_by .pb-section__inner {
	display: flex;
	align-items: center;
	gap: 43px;
}

.trusted-by__heading {
	text-align: left;
	font-size: clamp(28px, 2.8vw, 40px);
	max-width: 430px;
	flex-shrink: 0;
	margin: 0;
	padding-right: 43px;
	border-right: 1px solid var(--pb-green-100);
}

.trusted-by__marquee {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent,
		#000 10%,
		#000 90%,
		transparent
	);
	mask-image: linear-gradient(
		to right,
		transparent,
		#000 10%,
		#000 90%,
		transparent
	);
}

.trusted-by__track {
	display: flex;
	width: max-content;
	animation: trusted-by-scroll 40s linear infinite;
	will-change: transform;
}

.trusted-by__marquee:hover .trusted-by__track {
	animation-play-state: paused;
}

.trusted-by__logos {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 48px;
	padding-right: 48px;
}

@keyframes trusted-by-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-1 * var(--marquee-distance, 50%)));
	}
}

@media (prefers-reduced-motion: reduce) {
	.trusted-by__track {
		animation: none;
		flex-wrap: wrap;
		width: auto;
	}
	.trusted-by__marquee {
		-webkit-mask-image: none;
		mask-image: none;
	}
}

@media (max-width: 899px) {
	.pb-section--trusted_by .pb-section__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}
	.trusted-by__heading {
		border-right: 0;
		padding-right: 0;
	}
	.trusted-by__marquee {
		width: 100%;
		min-width: 0;
	}
	.trusted-by__row {
		width: 100%;
	}
}

.trusted-by__logo {
	height: 48px;
	width: auto;
	opacity: 0.6;
	filter: grayscale(1);
	transition: opacity var(--pb-duration-hover) var(--pb-ease-hover), filter var(--pb-duration-hover) var(--pb-ease-hover), transform var(--pb-duration-hover) var(--pb-ease-hover);
}
.trusted-by__logo:hover {
	opacity: 1;
	filter: grayscale(0);
	transform: scale(1.05);
}

/* =========================================================
   CTA Banner
   ========================================================= */

.pb-section--cta_banner {
	color: var(--pb-white);
}

/* Figma: heading + buttons centered, photo row hugging (and overhanging)
   the bottom edge of the dark band */
.cta-banner__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 40px;
}

.cta-banner__heading {
	color: var(--pb-white);
	font-size: clamp(26px, 3.2vw, 40px);
	max-width: 16ch;
	margin-inline: auto;
}

.cta-banner__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Figma: four polaroid-style photos, slightly rotated and overlapping
   each other, staying inside the band (no bleed into the footer). */
.cta-banner__photos {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	/* Figma: the photo row pokes ~97px past the band, sliding *under* the
	   footer (the footer paints on top and crops the photo bottoms). */
	margin-bottom: calc(-1 * var(--pb-pad-bottom-d, 80px) - 97px);
}

.cta-banner__photo {
	flex: 0 0 auto;
	width: clamp(140px, 19vw, 272px);
	aspect-ratio: 5 / 6;
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
	position: relative;
	box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.45);
}

.cta-banner__photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--cta-photo);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.6s var(--pb-ease-hover);
}

.cta-banner__photo:hover::before {
	transform: scale(1.08);
}

.cta-banner__photo:not(:first-child) {
	margin-left: calc(-1 * clamp(16px, 2.6vw, 38px));
}

.cta-banner__photo:nth-child(1) {
	transform: rotate(-5deg) translateY(10px);
}
.cta-banner__photo:nth-child(2) {
	transform: rotate(3deg) translateY(-6px);
	z-index: 1;
}
.cta-banner__photo:nth-child(3) {
	transform: rotate(-3deg) translateY(-14px);
	z-index: 2;
}
.cta-banner__photo:nth-child(4) {
	transform: rotate(5deg) translateY(8px);
}

/* Scribble-map texture over the dark band (opacity/blend baked into the SVG);
   overflow stays visible so the photo row can overhang into the footer. */
.pb-section--cta_banner {
	overflow: visible;
}
.pb-section--cta_banner::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: url(../images/cta-texture.svg) center / cover no-repeat;
	mix-blend-mode: overlay;
	pointer-events: none;
}

/* =========================================================
   Team / People
   ========================================================= */

.pb-section--team {
	--pb-pad-top-d: 64px;
	--pb-pad-bottom-d: 80px;
	--pb-pad-top-m: 40px;
	--pb-pad-bottom-m: 48px;
	background-color: var(--pb-cream-100);
}

.team__header {
	max-width: 760px;
	margin-inline: auto;
	margin-bottom: 48px;
	text-align: center;
}

.team__profiles {
	display: grid;
	gap: clamp(48px, 5vw, 72px);
}

.team-profile {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: clamp(32px, 6vw, 88px);
	align-items: center;
}

.team-profile--reverse {
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.team-profile--reverse .team-profile__media {
	order: 2;
}

.team-profile__media {
	min-width: 0;
	background: var(--pb-green-100);
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
}

.team-profile__media img {
	width: 100%;
	aspect-ratio: 5 / 6;
	max-height: clamp(360px, 36vw, 480px);
	object-fit: cover;
}

.team-profile__content {
	max-width: 620px;
}

.team-profile__name {
	font-size: clamp(28px, 2.4vw, 40px);
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}

.team-profile__bio {
	max-width: 62ch;
	margin-bottom: 24px;
	font-size: clamp(16px, 1.35vw, 18px);
	line-height: 1.75;
}

.team-profile__trigger:focus-visible,
.team-dialog__close:focus-visible {
	outline: 3px solid var(--pb-gold-700);
	outline-offset: 4px;
}

.team-dialog {
	width: min(1040px, calc(100vw - 48px));
	max-width: none;
	max-height: calc(100dvh - 48px);
	margin: auto;
	padding: 0;
	border: 0;
	border-radius: var(--pb-radius-lg);
	background: var(--pb-cream-100);
	color: var(--pb-green-950);
	overflow: hidden;
	box-shadow: 0 32px 80px -24px color-mix(in srgb, var(--pb-green-950) 70%, transparent);
}

.team-dialog::backdrop {
	background: color-mix(in srgb, var(--pb-green-950) 76%, transparent);
}

.team-dialog__shell {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	max-height: calc(100dvh - 48px);
}

.team-dialog__close-form {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	margin: 0;
}

.team-dialog__close {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0 0 3px;
	border: 0;
	border-radius: 50%;
	background: var(--pb-green-100);
	color: var(--pb-green-900);
	font: 500 30px/1 var(--pb-font-body);
	cursor: pointer;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), background-color var(--pb-duration-hover) var(--pb-ease-hover);
}

.team-dialog__close:hover {
	transform: rotate(6deg) scale(1.05);
	background: var(--pb-cream-200);
}

.team-dialog__media {
	min-height: 560px;
	background: var(--pb-green-100);
}

.team-dialog__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-dialog__content {
	padding: clamp(48px, 6vw, 80px);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.team-dialog__content h2 {
	font-size: clamp(38px, 4.2vw, 58px);
	letter-spacing: -0.025em;
	margin-bottom: 24px;
}

.team-dialog__bio {
	max-width: 68ch;
	font-size: 16px;
	line-height: 1.75;
}

.team-dialog__bio p:last-child {
	margin-bottom: 0;
}

.has-team-dialog {
	overflow: hidden;
}

@media (max-width: 899px) {
	.team-profile,
	.team-profile--reverse {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.team-profile--reverse .team-profile__media {
		order: 0;
	}

	.team-profile__media img {
		aspect-ratio: 4 / 3;
	}

	.team-dialog__shell {
		grid-template-columns: 1fr;
		overflow-y: auto;
	}

	.team-dialog__media {
		min-height: 0;
		max-height: 280px;
	}

	.team-dialog__media img {
		aspect-ratio: 16 / 9;
		object-position: center 28%;
	}

	.team-dialog__content {
		overflow: visible;
	}
}

@media (max-width: 599px) {
	.team__header {
		margin-bottom: 40px;
	}

	.team__profiles {
		gap: 56px;
	}

	.team-profile__name {
		margin-bottom: 16px;
	}

	.team-profile__bio {
		margin-bottom: 24px;
	}

	.team-dialog {
		width: calc(100vw - 24px);
		max-height: calc(100dvh - 24px);
	}

	.team-dialog__shell {
		max-height: calc(100dvh - 24px);
	}

	.team-dialog__media {
		max-height: 210px;
	}

	.team-dialog__content {
		padding: 32px 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.team-dialog__close {
		transition: none;
	}

	.team-dialog__close:hover {
		transform: none;
	}
}

/* =========================================================
   Content Split (image + rich text)
   ========================================================= */

.pb-section--content_split {
	--pb-pad-top-d: 80px;
	--pb-pad-bottom-d: 80px;
	--pb-pad-top-m: 48px;
	--pb-pad-bottom-m: 48px;
}

.content-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(48px, 6vw, 90px);
	align-items: center;
}

.content-split--image-left .content-split__media {
	order: -1;
}

.content-split__copy {
	font-size: clamp(16px, 1.35vw, 18px);
	line-height: 1.75;
}
.content-split__copy p:last-child {
	margin-bottom: 0;
}
.content-split__copy blockquote {
	margin: 24px 0;
	padding-left: 20px;
	border-left: 3px solid var(--pb-green-300);
	font-family: var(--pb-font-serif);
	font-style: italic;
	font-size: 20px;
	color: var(--pb-green-900);
}

.content-split__media img {
	width: 100%;
	border-radius: var(--pb-radius-lg);
}

@media (max-width: 899px) {
	.content-split {
		grid-template-columns: 1fr;
	}
	.content-split--image-left .content-split__media {
		order: 0;
	}
}

/* =========================================================
   Contact & Student Portal pages
   ========================================================= */

.contact-page,
.portal-page {
	display: grid;
	gap: clamp(40px, 5vw, 72px);
}

.contact-page {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
}

.contact-page__details {
	display: grid;
	gap: 24px;
}

.contact-card {
	background: var(--pb-cream-100);
	border-radius: var(--pb-radius-lg);
	padding: clamp(24px, 3vw, 32px);
}

.contact-card__title {
	font-size: clamp(24px, 2.2vw, 32px);
	margin-bottom: 12px;
}

.contact-card__list {
	margin: 0;
	padding-left: 1.1em;
}

.contact-card__list li + li {
	margin-top: 8px;
}

.contact-page__form-title,
.portal-page__title {
	font-size: clamp(24px, 2.4vw, 36px);
	margin-bottom: 20px;
	text-align: center;
}

.contact-card--form {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.contact-card--form .contact-card__title {
	text-align: left;
	margin-bottom: 20px;
}

.contact-card--form .pb-embed {
	flex: 1;
}

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

.portal-page__panel {
	background: var(--pb-cream-100);
	border-radius: var(--pb-radius-lg);
	padding: clamp(24px, 3vw, 36px);
}

.pb-embed {
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
	background: var(--pb-white);
	box-shadow: 0 18px 48px -28px rgba(15, 38, 32, 0.28);
}

.pb-embed iframe {
	display: block;
	width: 100%;
	border: 0;
}

.pb-embed--form iframe {
	min-height: 720px;
}

.pb-embed--portal iframe {
	min-height: 520px;
}

.pb-embed--portal-script {
	background: transparent;
	box-shadow: none;
	min-height: 120px;
}

/* Custom code section (page builder) */
.custom-code__header {
	margin-bottom: clamp(24px, 3vw, 36px);
}

.custom-code__intro {
	max-width: 62ch;
}

.embed-block__heading {
	font-size: clamp(24px, 2.4vw, 36px);
	margin-bottom: 20px;
}

@media (max-width: 899px) {
	.contact-page,
	.portal-page {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
	background: var(--pb-green-900);
	color: var(--pb-white);
	padding-top: 64px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	/* sit above the CTA band's overhanging photos so they crop at the border */
	position: relative;
	z-index: 4;
}

.footer__inner {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 32px;
	padding-bottom: 48px;
}

.footer__brand {
	max-width: 320px;
}

.footer__logo {
	font-family: var(--pb-font-display);
	font-size: 24px;
	font-weight: 600;
	display: block;
	margin-bottom: 12px;
}

.footer__tagline {
	font-family: var(--pb-font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
}

.footer__heading {
	font-family: var(--pb-font-serif);
	font-size: 14px;
	font-weight: 700;
	color: var(--pb-white);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
}

.footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}

.footer__list a {
	position: relative;
	display: inline-block;
	transition: opacity var(--pb-duration-hover) var(--pb-ease-hover);
}
.footer__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover);
}
.footer__list a:hover {
	opacity: 0.85;
}
.footer__list a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-block: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
}

.footer__legal-menu {
	list-style: none;
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
}

.footer__copyright {
	margin: 0;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.footer__credit a {
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity var(--pb-duration-hover) var(--pb-ease-hover);
}
.footer__credit a:hover {
	opacity: 0.8;
}

/* =========================================================
   Blog hub, archive, single
   ========================================================= */

.pb-section--blog-hub,
.pb-section--blog-archive,
.pb-section--blog-single {
	padding-block: clamp(64px, 8vw, 96px);
}

.blog-hub,
.archive,
.single-post-wrap {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

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

.blog-hub__card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 220px;
	padding: 32px;
	border-radius: var(--pb-radius-lg);
	background: var(--pb-green-100);
	color: inherit;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}

.blog-hub__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px -20px rgba(15, 38, 32, 0.3);
}

.blog-hub__card-title {
	font-family: var(--pb-font-body);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
	color: var(--pb-green-900);
}

.blog-hub__card-description {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--pb-green-950);
	flex: 1;
}

.blog-hub__card-count {
	font-size: 13px;
	font-weight: 600;
	color: var(--pb-gold-700);
}

.blog-hub__card-link {
	font-size: 15px;
	font-weight: 600;
	color: var(--pb-green-900);
}

.archive__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.post-card {
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
	background: var(--pb-green-100);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}
.post-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px -20px rgba(15, 38, 32, 0.3);
}

.post-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.post-card__thumbnail {
	flex: 0 0 200px;
	height: 200px;
	overflow: hidden;
	background: var(--pb-cream-200);
}

.post-card__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--pb-ease-hover);
}
.post-card:hover .post-card__thumbnail img {
	transform: scale(1.08);
}

.post-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.post-card__category,
.single-post__meta .post-card__category {
	display: inline-flex;
	align-self: flex-start;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pb-gold-700);
}

.post-card__date,
.single-post__byline {
	font-size: 14px;
	color: rgba(15, 38, 32, 0.7);
}

.post-card__title {
	font-size: 22px;
	line-height: 1.3;
	margin: 0;
	transition: color var(--pb-duration-hover) var(--pb-ease-hover);
}
.post-card:hover .post-card__title {
	color: var(--pb-gold-700);
}

.post-card__excerpt {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--pb-green-950);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.single-post-wrap {
	max-width: 820px;
	margin-inline: auto;
}

.single-post__header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: center;
	align-items: center;
}

.single-post__back {
	align-self: flex-start;
	font-size: 14px;
	font-weight: 600;
	color: var(--pb-gold-700);
}

.single-post__title {
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.15;
	margin: 0;
}

.single-post__thumbnail {
	margin-top: 40px;
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
}

.single-post__thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.single-post__content.prose {
	margin-top: 40px;
	font-size: 18px;
	line-height: 1.75;
	color: var(--pb-green-950);
}

.single-post__content.prose > *:first-child {
	margin-top: 0;
}

.single-post__content.prose h2,
.single-post__content.prose h3,
.single-post__content.prose h4 {
	margin-top: 1.6em;
	margin-bottom: 0.6em;
}

.single-post__content.prose p,
.single-post__content.prose ul,
.single-post__content.prose ol,
.single-post__content.prose blockquote {
	margin-bottom: 1.2em;
}

.single-post__content.prose a {
	color: var(--pb-green-900);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.single-post__content.prose img {
	border-radius: var(--pb-radius-md);
	max-width: 100%;
	height: auto;
}

.single-post__content.prose img.aligncenter,
.single-post__content.prose .aligncenter img {
	display: block;
	margin-inline: auto;
}

.single-post__content.prose blockquote {
	padding: 20px 24px;
	border-left: 4px solid var(--pb-green-300);
	background: var(--pb-cream-100);
	border-radius: 0 var(--pb-radius-md) var(--pb-radius-md) 0;
}

.single-post__nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--pb-green-100);
}

.single-post__nav-link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px;
	border-radius: var(--pb-radius-md);
	background: var(--pb-green-100);
	color: inherit;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}

.single-post__nav-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px -16px rgba(15, 38, 32, 0.25);
}

.single-post__nav-link--next {
	text-align: right;
}

.single-post__nav-link--empty {
	background: transparent;
}

.single-post__nav-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pb-gold-700);
}

.single-post__nav-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--pb-green-900);
}

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.pagination .page-numbers,
.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding-inline: 12px;
	border-radius: var(--pb-radius-sm);
	background: var(--pb-green-100);
	color: var(--pb-green-900);
	font-weight: 600;
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
	background: var(--pb-green-300);
}

article.page {
	padding-block: 64px;
	max-width: 760px;
	margin-inline: auto;
}

.page__content {
	font-size: 18px;
	line-height: 1.7;
}

.not-found {
	padding-block: 120px;
	text-align: center;
}

@media (max-width: 899px) {
	.blog-hub__grid {
		grid-template-columns: 1fr;
	}

	.single-post__nav {
		grid-template-columns: 1fr;
	}

	.single-post__nav-link--next {
		text-align: left;
	}
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 899px) {
	.nav__toggle {
		display: flex;
	}

	.nav__links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 60;
		background: var(--pb-white);
		flex-direction: column;
		align-items: flex-start;
		padding: 16px 24px 24px;
		display: none;
		gap: 16px;
		box-shadow: 0 24px 40px -20px rgba(15, 38, 32, 0.3);
		border-bottom: 1px solid var(--pb-green-100);
	}

	.nav__links.is-open {
		display: flex;
	}

	.nav__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		width: 100%;
	}

	/* Mobile: sub-menu is an accordion toggled by navigation.js */
	.nav__menu .sub-menu {
		display: none;
		padding: 8px 0 0 16px;
	}
	.nav__menu li.is-open > .sub-menu {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.nav__right {
		display: none;
	}

	.hero__headline {
		font-size: 36px;
	}

	.hero__bottom,
	.why-choose__grid {
		grid-template-columns: 1fr;
	}

	.hero__about {
		grid-template-columns: 1fr;
		gap: 8px;
	}

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

	.why-choose__features {
		grid-template-columns: 1fr;
	}

	.footer__inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 599px) {
	.hero__stats {
		grid-template-columns: 1fr;
	}

	.cta-banner__photos {
		flex-wrap: wrap;
		gap: 12px;
		margin-bottom: calc(-1 * var(--pb-pad-bottom-m, 48px) - 40px);
	}

	.footer__inner {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   v2.3 redesign (Figma "Version 2.3", node 109:4)
   New homepage sections + restyled shared blocks
   ========================================================= */

:root {
	--pb-gold-500: #dfa33e; /* v2.3 accent: number badges, photo frames */
	--pb-red-600: #b33939;  /* v2.3 "before" bars */
	--pb-cream-50: #fbf8f2; /* v2.3 soft section background */
}

/* --- Hero + service cards -------------------------------- */

.hero-v2__header {
	max-width: 1244px;
	margin-inline: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 48px;
}

.hero-v2__title {
	font-family: var(--pb-font-serif);
	font-weight: 400;
	font-size: clamp(36px, 4.45vw, 64px);
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0;
}

.hero-v2__subtitle {
	font-family: var(--pb-font-body);
	font-weight: 500;
	font-size: clamp(16px, 1.3vw, 18px);
	letter-spacing: -0.01em;
	line-height: 1.5;
	color: var(--pb-green-950);
	max-width: 1100px;
	margin: 0 auto;
}

.hero-v2__photo {
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
	margin-bottom: 32px;
}

.hero-v2__photo img {
	width: 100%;
	aspect-ratio: 1312 / 553;
	object-fit: cover;
}

.hero-v2__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.service-card {
	position: relative;
	overflow: hidden;
	background: var(--pb-green-100);
	border-radius: var(--pb-radius-lg);
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

/* scribble texture drifting off the top-right corner, as in Figma */
.service-card::after {
	content: "";
	position: absolute;
	top: -100px;
	right: -60px;
	width: 371px;
	height: 280px;
	background: url(../images/card-swoosh-v2.svg) center / contain no-repeat;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.service-card__header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.service-card__icon {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--pb-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

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

.service-card__title {
	font-family: var(--pb-font-body);
	font-weight: 500;
	font-size: clamp(22px, 2vw, 28px);
	letter-spacing: -0.01em;
	color: var(--pb-green-950);
	margin: 0;
}

.service-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-card__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	letter-spacing: -0.01em;
	color: var(--pb-green-950);
}

.service-card__check {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
}

.service-card__cta {
	margin-top: auto;
	padding: 12px 16px;
	line-height: 1.2;
}

/* --- Trusted-by single-line scroller --------------------- */

.trusted-by__row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(32px, 4vw, 56px);
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
	cursor: grab;
	padding-block: 12px;
	scrollbar-width: thin;
	scrollbar-color: rgba(11, 75, 59, 0.28) transparent;
}

.trusted-by__row.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	user-select: none;
}

.trusted-by__row::-webkit-scrollbar {
	height: 6px;
}

.trusted-by__row::-webkit-scrollbar-thumb {
	background: rgba(11, 75, 59, 0.28);
	border-radius: 999px;
}

.trusted-by__row .trusted-by__logo {
	height: auto;
	max-height: 72px;
	max-width: 200px;
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
	opacity: 1;
	filter: none;
	-webkit-user-drag: none;
	user-select: none;
}

/* Nearly-square marks stay taller so Allegiant matches the wordmarks,
   without wrapping the row. Extra logos scroll horizontally. */
.trusted-by__row .trusted-by__logo--stacked {
	max-height: 112px;
	max-width: 120px;
}

/* --- Why choose (v2.3: framed photo left, copy right) ----- */

.why-choose__grid {
	grid-template-columns: 536fr 728fr;
	align-items: stretch;
}

.why-choose__description {
	font-size: clamp(17px, 1.4vw, 20px);
	letter-spacing: -0.01em;
	line-height: 1.5;
	color: var(--pb-green-950);
	margin: 16px 0 0;
}

.why-choose__media {
	margin: 0;
	background: var(--pb-gold-500);
	border-radius: var(--pb-radius-lg);
	padding: 12px;
}

.why-choose__media::before {
	content: none;
}

.why-choose__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transform: none;
}
.why-choose__media:hover img {
	transform: scale(1.02);
}

.why-choose__features {
	gap: 36px;
	margin-top: 36px;
}

.feature__icon {
	width: 60px;
	height: 60px;
	margin-bottom: 24px;
}

.feature__title {
	font-weight: 500;
	letter-spacing: -0.01em;
}

/* --- Evidence / case-study cards -------------------------- */

.evidence__heading {
	max-width: 860px;
	margin-bottom: 48px;
}

.evidence__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	max-width: 1200px;
	margin-inline: auto;
}

.evidence-card {
	position: relative;
	overflow: hidden;
	background: var(--pb-white);
	border-radius: 28px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.evidence-card::after {
	content: "";
	position: absolute;
	top: -100px;
	right: -60px;
	width: 371px;
	height: 280px;
	background: url(../images/card-swoosh-v2.svg) center / contain no-repeat;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.evidence-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	flex: 1;
}

.evidence-card__badge {
	display: inline-block;
	background: rgba(214, 147, 35, 0.1);
	color: var(--pb-gold-500);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: -0.01em;
	padding: 6px 12px;
	border-radius: 100px;
}

.evidence-card__logo {
	max-height: 56px;
	max-width: 270px;
	width: auto;
	object-fit: contain;
}

.evidence-card__description {
	font-weight: 600;
	font-size: 16px;
	color: var(--pb-green-900);
	margin: 0;
}

.evidence-card__bars {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	margin-top: 8px;
}

.evidence-bar {
	display: flex;
	align-items: center;
	gap: 16px;
}

.evidence-bar__label {
	flex: 0 0 60px;
	font-weight: 600;
	font-size: 14px;
}
.evidence-bar--before .evidence-bar__label {
	opacity: 0.6;
}
.evidence-bar--after .evidence-bar__label {
	font-weight: 700;
	color: var(--pb-green-900);
}

.evidence-bar__track {
	flex: 1;
	height: 32px;
	border-radius: var(--pb-radius-sm);
	background: rgba(15, 38, 32, 0.1);
	overflow: hidden;
	display: block;
}

.evidence-bar__fill {
	display: block;
	height: 100%;
	border-radius: 0;
	width: var(--bar-width, 0%);
	transition: width 1.1s var(--pb-ease-reveal) 0.25s;
}

/* Bars start empty and grow to --bar-width when the card scrolls into view
   (reveal.js adds .is-visible). Without JS the fallback width applies. */
.evidence-card.reveal:not(.is-visible) .evidence-bar__fill {
	width: 0;
}

@media (prefers-reduced-motion: reduce) {
	.evidence-bar__fill {
		transition: none;
	}
}
.evidence-bar--before .evidence-bar__fill {
	background: var(--pb-red-600);
}
.evidence-bar--after .evidence-bar__fill {
	background: var(--pb-green-900);
}

.evidence-bar__value {
	flex: 0 0 auto;
	min-width: 44px;
	text-align: right;
	font-size: 20px;
	letter-spacing: -0.01em;
}
.evidence-bar--before .evidence-bar__value {
	color: var(--pb-red-600);
}
.evidence-bar--after .evidence-bar__value {
	font-weight: 600;
	color: var(--pb-green-900);
}

.evidence-card__highlight {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	background: rgba(159, 207, 182, 0.5);
	border-radius: 16px;
	padding: 16px;
}

.evidence-card__highlight-stat {
	font-family: var(--pb-font-serif);
	font-weight: 700;
	font-size: 32px;
	letter-spacing: -0.01em;
	color: var(--pb-green-950);
	white-space: nowrap;
}

.evidence-card__highlight-text {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -0.01em;
	color: var(--pb-green-900);
	line-height: 1.4;
}

.evidence-card__metrics {
	display: flex;
	gap: 12px;
	width: 100%;
	border-top: 1px solid rgba(15, 38, 32, 0.12);
	padding-top: 32px;
}

.evidence-metric {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.evidence-metric__value {
	font-weight: 600;
	font-size: 20px;
	color: var(--pb-green-950);
}

.evidence-metric__label {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -0.01em;
	color: var(--pb-green-900);
	opacity: 0.7;
}

/* --- Impact stats ----------------------------------------- */

.pb-section--impact_stats .section__heading--center {
	margin-bottom: 48px;
}

.impact-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.impact-stat {
	position: relative;
	overflow: hidden;
	background: var(--pb-cream-50);
	border-radius: var(--pb-radius-lg);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

.impact-stat::after {
	content: "";
	position: absolute;
	top: -63px;
	right: -140px;
	width: 371px;
	height: 280px;
	background: url(../images/card-swoosh-v2.svg) center / contain no-repeat;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.impact-stat__number {
	font-family: var(--pb-font-serif);
	font-weight: 500;
	font-size: clamp(36px, 3.4vw, 48px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--pb-green-900);
}

.impact-stat__label {
	font-weight: 500;
	font-size: clamp(16px, 1.4vw, 20px);
	letter-spacing: -0.01em;
	color: var(--pb-green-950);
	line-height: 1.5;
}

/* --- Steps v2 (numbered list + framed photo) --------------- */

.steps-v2 {
	display: grid;
	grid-template-columns: 562fr 686fr;
	gap: clamp(40px, 4.45vw, 64px);
	align-items: end;
}

.steps-v2__content .section__heading {
	margin-bottom: 48px;
}

.steps-v2__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.steps-v2__item {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	padding-block: 32px;
	border-bottom: 1px solid rgba(15, 38, 32, 0.12);
}
.steps-v2__item:first-child {
	padding-top: 16px;
}
.steps-v2__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.steps-v2__number {
	flex: 0 0 auto;
	background: var(--pb-gold-500);
	color: var(--pb-white);
	font-family: var(--pb-font-nav);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	padding: 12px 16px;
	border-radius: var(--pb-radius-sm);
}

.steps-v2__title {
	font-family: var(--pb-font-body);
	font-weight: 500;
	font-size: clamp(22px, 1.8vw, 28px);
	letter-spacing: -0.01em;
	line-height: 1.3;
	color: var(--pb-green-950);
	margin: 0 0 8px;
}

.steps-v2__description {
	font-family: var(--pb-font-nav);
	font-weight: 500;
	font-size: clamp(16px, 1.35vw, 20px);
	line-height: 1.45;
	letter-spacing: -0.02em;
	color: var(--pb-green-950);
	margin: 0;
}

.steps-v2__media {
	background: var(--pb-gold-500);
	border-radius: var(--pb-radius-lg);
	padding: 12px;
	align-self: stretch;
}

.steps-v2__media img {
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: cover;
	border-radius: 20px;
}

/* --- CTA banner v2 (centered, no photos) ------------------- */

/* Keep page heroes, section titles, and CTA headings on one type scale. */
.section__heading,
.cta-banner__heading,
.page-header__heading {
	font-size: clamp(26px, 3.2vw, 40px);
}

/* Match the Figma CTA measure (954px) instead of the old 16ch cap so the
   heading breathes the same way everywhere. */
.cta-banner__heading {
	max-width: 954px;
	letter-spacing: -0.03em;
}

.cta-banner__inner--centered {
	gap: 0;
	padding-block: 0;
}

.cta-banner__inner--centered .cta-banner__heading {
	margin-bottom: 0;
}

.cta-banner__description {
	max-width: 680px;
	margin: 16px auto 0;
	font-size: clamp(18px, 1.5vw, 22px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.cta-banner__inner--centered .cta-banner__actions {
	margin-top: 40px;
}

/* --- Footer v2 (near-black green, logo pill) --------------- */

.site-footer {
	background: var(--pb-green-950);
	border-top-color: rgba(159, 207, 182, 0.2);
	overflow: hidden;
	position: relative;
}

.site-footer::before {
	content: "";
	position: absolute;
	top: -265px;
	right: -300px;
	width: 1150px;
	height: 957px;
	background: url(../images/cta-swoosh-v2.svg) center / contain no-repeat;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.footer__inner {
	grid-template-columns: 340px 1fr;
	gap: clamp(48px, 7vw, 104px);
	position: relative;
}

.footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	max-width: 340px;
}

.footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--pb-white);
	border-radius: 32px;
	padding: 16px;
	margin-bottom: 0;
}

.footer__logo-mark {
	height: 45px;
	width: auto;
}

.footer__logo-wordmark {
	height: 31px;
	width: auto;
}

.footer__logo-text {
	font-family: var(--pb-font-display);
	font-size: 20px;
	font-weight: 600;
	color: var(--pb-green-900);
}

.footer__tagline {
	font-family: var(--pb-font-body);
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	max-width: 278px;
	margin: 0;
}

.footer__columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(32px, 4.45vw, 64px);
}

.footer__heading {
	font-family: var(--pb-font-serif);
	font-weight: 500;
	font-size: 24px;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.4;
	margin-bottom: 16px;
}

.footer__list {
	gap: 12px;
	font-size: 16px;
}

.footer__bottom {
	border-top-color: rgba(255, 255, 255, 0.1);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	position: relative;
}

/* --- v2.3 responsive --------------------------------------- */

@media (max-width: 1099px) {
	.impact-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 899px) {
	.hero-v2__cards,
	.evidence__cards {
		grid-template-columns: 1fr;
	}

	.why-choose__grid {
		grid-template-columns: 1fr;
	}

	.why-choose__media {
		max-height: 480px;
		overflow: hidden;
	}

	.steps-v2 {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.steps-v2__media img {
		min-height: 320px;
	}

	.footer__inner {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 599px) {
	.service-card,
	.evidence-card {
		padding: 28px 24px;
	}

	.evidence-bar__label {
		flex-basis: 48px;
		font-size: 13px;
	}

	.evidence-card__metrics {
		flex-wrap: wrap;
	}

	.evidence-metric {
		flex: 1 1 40%;
	}

	.impact-stats {
		grid-template-columns: 1fr;
	}

	.steps-v2__item {
		gap: 16px;
		padding-block: 24px;
	}

	.footer__columns {
		grid-template-columns: 1fr;
	}
}

/* content-split photos share one cropped aspect so wide/odd source images
   sit in the layout the same way on every inner page */
.content-split__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--pb-radius-lg);
}

/* --- Team card grid (Our Tutors) ---------------------------- */

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.team-card {
	display: flex;
	flex-direction: column;
	background: var(--pb-cream-50);
	border-radius: var(--pb-radius-lg);
	overflow: hidden;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}
.team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -24px rgba(15, 38, 32, 0.35);
}

.team-card__media {
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.team-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--pb-ease-hover);
}
.team-card:hover .team-card__media img {
	transform: scale(1.04);
}

.team-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 24px;
	flex: 1;
}

.team-card__name {
	font-family: var(--pb-font-body);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: -0.01em;
	color: var(--pb-green-950);
	margin: 0;
}

.team-card__role {
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--pb-gold-700);
}

.team-card__bio {
	font-size: 14px;
	line-height: 1.5;
	color: var(--pb-green-950);
	margin: 4px 0 12px;
}

.team-card__trigger {
	margin-top: auto;
}

@media (max-width: 1099px) {
	.team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 599px) {
	.team-grid {
		grid-template-columns: 1fr;
	}
}

/* --- Process flow (model how-it-works) ---------------------- */

.process-flow__header {
	max-width: 760px;
	margin-inline: auto;
}

.process-flow__intro {
	text-align: center;
	font-size: 18px;
	color: var(--pb-green-950);
	margin: 16px auto 0;
	max-width: 620px;
}

.process-flow {
	list-style: none;
	margin: 48px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 12px;
}

.process-flow__group {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* arrow between groups */
.process-flow__group + .process-flow__group::before {
	content: "";
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	margin-inline: 4px;
	border-top: 2px solid var(--pb-gold-700);
	border-right: 2px solid var(--pb-gold-700);
	transform: rotate(45deg);
	order: -1;
	align-self: center;
}

.process-node {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	background: var(--pb-white);
	border: 1.5px solid var(--pb-gold-500);
	border-radius: 16px;
	padding: 16px 20px;
	max-width: 200px;
	min-height: 100%;
	text-align: center;
	align-items: center;
}

.process-node__label {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--pb-gold-700);
}

.process-node__description {
	font-size: 13px;
	line-height: 1.4;
	color: var(--pb-green-950);
}

.process-node--milestone {
	background: var(--pb-green-900);
	border-color: var(--pb-green-900);
}
.process-node--milestone .process-node__label {
	color: var(--pb-white);
}
.process-node--milestone .process-node__description {
	color: rgba(255, 255, 255, 0.85);
}

.process-cycle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--pb-green-100);
	border-radius: var(--pb-radius-lg);
	padding: 16px;
	height: 100%;
}

.process-cycle__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pb-green-900);
	margin-bottom: 12px;
}

.process-cycle__icon {
	width: 14px;
	height: 14px;
}

.process-cycle__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.process-node--cycle {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: var(--pb-white);
	border: 0;
	border-radius: 12px;
	padding: 12px 16px;
	text-align: center;
}
.process-node--cycle .process-node__label {
	color: var(--pb-green-900);
}

.process-flow__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	max-width: 880px;
	margin: 48px auto 0;
}

.process-column {
	background: var(--pb-cream-50);
	border-radius: var(--pb-radius-lg);
	padding: 32px;
}

.process-column__title {
	font-family: var(--pb-font-body);
	font-weight: 600;
	font-size: 20px;
	color: var(--pb-green-950);
	margin: 0 0 16px;
}

.process-column__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.process-column__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: var(--pb-green-950);
}

.process-column__check {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
}

/* --- Student growth charts ---------------------------------- */

.section__header--center {
	margin-inline: auto;
	text-align: center;
}

.growth__intro {
	text-align: center;
	font-size: 18px;
	color: var(--pb-green-950);
	margin: 16px auto 0;
	max-width: 620px;
}

.growth__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.growth-chart {
	margin: 0;
	background: var(--pb-white);
	border-radius: var(--pb-radius-lg);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.growth-chart__title {
	font-weight: 700;
	font-size: 17px;
	color: var(--pb-green-950);
}

.growth-chart__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(15, 38, 32, 0.55);
}

.growth-chart__series {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-transform: none;
	letter-spacing: 0;
	font-size: 13px;
}

.growth-chart__swatch {
	width: 12px;
	height: 12px;
	border-radius: 3px;
}

.growth-chart__svg {
	width: 100%;
	height: auto;
	display: block;
}

.growth-chart__grid {
	stroke: rgba(15, 38, 32, 0.08);
	stroke-width: 1;
}

.growth-chart__line {
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.growth-chart__value {
	font-family: var(--pb-font-body);
	font-size: 13px;
	font-weight: 700;
	fill: var(--pb-green-950);
	text-anchor: start;
}
.growth-chart__value--end {
	text-anchor: end;
}

.growth-chart__axis {
	position: relative;
	height: 18px;
	font-size: 12px;
	color: rgba(15, 38, 32, 0.55);
}

.growth-chart__tick {
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
}

.growth-chart--green .growth-chart__line { stroke: var(--pb-green-900); }
.growth-chart--green .growth-chart__dot { fill: var(--pb-green-900); }
.growth-chart--green .growth-chart__swatch { background: var(--pb-green-900); }
.growth-chart--gold .growth-chart__line { stroke: var(--pb-gold-500); }
.growth-chart--gold .growth-chart__dot { fill: var(--pb-gold-500); }
.growth-chart--gold .growth-chart__swatch { background: var(--pb-gold-500); }

/* line draws in when the card scrolls into view (reveal.js .is-visible) */
.growth-chart__line {
	stroke-dasharray: 1;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset 1.4s var(--pb-ease-reveal) 0.2s;
}
.growth-chart.reveal:not(.is-visible) .growth-chart__line {
	stroke-dashoffset: 1;
}
.growth-chart__dot {
	transition: opacity 0.4s ease 1.2s;
}
.growth-chart.reveal:not(.is-visible) .growth-chart__dot,
.growth-chart.reveal:not(.is-visible) .growth-chart__value {
	opacity: 0;
}
.growth-chart__value {
	transition: opacity 0.4s ease 1.3s;
}

@media (prefers-reduced-motion: reduce) {
	.growth-chart__line,
	.growth-chart__dot,
	.growth-chart__value {
		transition: none;
	}
}

.growth-table {
	max-width: 720px;
	margin: 48px auto 0;
	background: var(--pb-white);
	border-radius: var(--pb-radius-lg);
	padding: 32px;
}

.growth-table__heading {
	font-family: var(--pb-font-body);
	font-weight: 700;
	font-size: 18px;
	color: var(--pb-green-950);
	margin: 0 0 20px;
	text-align: center;
}

.growth-table__scroll {
	overflow-x: auto;
}

.growth-table__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.growth-table__table th,
.growth-table__table td {
	padding: 10px 16px;
	text-align: center;
	border-bottom: 1px solid rgba(15, 38, 32, 0.08);
}

.growth-table__table thead th {
	font-weight: 700;
	color: var(--pb-green-900);
}

.growth-table__table tbody th {
	text-align: left;
	font-weight: 600;
	color: var(--pb-green-950);
}

.growth-table__table tbody tr:last-child th,
.growth-table__table tbody tr:last-child td {
	border-bottom: 0;
}

.growth-table__highlight {
	font-weight: 700;
	color: var(--pb-green-900);
	background: rgba(159, 207, 182, 0.25);
}

@media (max-width: 899px) {
	.growth__grid,
	.process-flow__columns,
	.process-cycle__steps {
		grid-template-columns: 1fr;
	}

	.process-flow {
		flex-direction: column;
		align-items: stretch;
	}

	.process-flow__group {
		flex-direction: column;
	}

	.process-flow__group + .process-flow__group::before {
		transform: rotate(135deg);
		order: 0;
		margin: 4px auto;
	}

	.process-node {
		max-width: none;
		width: 100%;
	}
}

/* --- Gravity Forms (consultation form), branded ------------- */

.pb-embed--gform {
	max-width: 720px;
	margin-inline: auto;
	background: var(--pb-cream-50);
	border-radius: var(--pb-radius-lg);
	padding: clamp(24px, 4vw, 48px);
}

.pb-embed--gform .gform_wrapper .gform_description {
	display: block;
	font-size: 16px;
	color: var(--pb-green-950);
	margin-bottom: 24px;
}

.pb-embed--gform .gform_wrapper .gfield_label,
.pb-embed--gform .gform_wrapper legend.gfield_label {
	font-family: var(--pb-font-body);
	font-weight: 600;
	font-size: 16px;
	color: var(--pb-green-950);
}

.pb-embed--gform .gform_wrapper .gfield_required {
	color: var(--pb-gold-700);
}

.pb-embed--gform .gform_wrapper input[type="text"],
.pb-embed--gform .gform_wrapper input[type="email"],
.pb-embed--gform .gform_wrapper input[type="tel"],
.pb-embed--gform .gform_wrapper select,
.pb-embed--gform .gform_wrapper textarea {
	font-family: var(--pb-font-body);
	font-size: 16px;
	color: var(--pb-green-950);
	background: var(--pb-white);
	border: 1px solid rgba(15, 38, 32, 0.18);
	border-radius: var(--pb-radius-sm);
	padding: 12px 16px;
	width: 100%;
	transition: border-color var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}

.pb-embed--gform .gform_wrapper input:focus,
.pb-embed--gform .gform_wrapper select:focus,
.pb-embed--gform .gform_wrapper textarea:focus {
	outline: none;
	border-color: var(--pb-green-900);
	box-shadow: 0 0 0 3px rgba(159, 207, 182, 0.4);
}

.pb-embed--gform .gform_wrapper .gchoice {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-block: 4px;
}

.pb-embed--gform .gform_wrapper .gchoice input[type="radio"],
.pb-embed--gform .gform_wrapper .gchoice input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--pb-green-900);
}

.pb-embed--gform .gform_wrapper .gchoice label {
	font-size: 16px;
	color: var(--pb-green-950);
	margin: 0;
}

.pb-embed--gform .gform_wrapper .gform_footer {
	margin-top: 24px;
	padding: 0;
}

.pb-embed--gform .gform_wrapper input[type="submit"],
.pb-embed--gform .gform_wrapper .gform_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--pb-font-body);
	font-weight: 500;
	font-size: 16px;
	color: var(--pb-green-950);
	background: var(--pb-green-300);
	border: 1px solid transparent;
	border-radius: var(--pb-radius-sm);
	padding: 14px 28px;
	cursor: pointer;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), background-color var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}
.pb-embed--gform .gform_wrapper input[type="submit"]:hover,
.pb-embed--gform .gform_wrapper .gform_button:hover {
	background: #8fc2a6;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -8px rgba(11, 75, 59, 0.45);
}

.pb-embed--gform .gform_wrapper .gform_validation_errors,
.pb-embed--gform .gform_wrapper .gfield_validation_message {
	border-radius: var(--pb-radius-sm);
}

.pb-embed--gform .gform_confirmation_message {
	font-size: 18px;
	color: var(--pb-green-900);
	background: rgba(159, 207, 182, 0.35);
	border-radius: var(--pb-radius-md);
	padding: 24px;
}

/* --- Gravity Forms multi-page step flow --------------------- */

.pb-embed--gform .gf_page_steps {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	border: 0;
	margin-bottom: 28px;
	padding: 0;
}

.pb-embed--gform .gf_step {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 8px 14px;
	background: var(--pb-white);
	border-radius: 100px;
	opacity: 1;
	border: 1px solid rgba(15, 38, 32, 0.12);
}

.pb-embed--gform .gf_step_number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 0;
	border-radius: 50%;
	background: var(--pb-cream-200);
	color: var(--pb-green-950);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.pb-embed--gform .gf_step_label {
	font-size: 13px;
	font-weight: 600;
	color: var(--pb-green-950);
}

.pb-embed--gform .gf_step_active {
	background: var(--pb-green-100);
	border-color: var(--pb-green-300);
}
.pb-embed--gform .gf_step_active .gf_step_number {
	background: var(--pb-green-900);
	color: var(--pb-white);
}

.pb-embed--gform .gf_step_completed .gf_step_number {
	background: var(--pb-green-300);
	color: var(--pb-green-950);
}

.pb-embed--gform .gform_page_footer {
	display: flex;
	gap: 12px;
	margin-top: 24px;
	padding: 0;
	border: 0;
}

.pb-embed--gform .gform_page_footer input[type="submit"],
.pb-embed--gform .gform_page_footer .gform_next_button,
.pb-embed--gform .gform_page_footer .gform_previous_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--pb-font-body);
	font-weight: 500;
	font-size: 16px;
	border-radius: var(--pb-radius-sm);
	padding: 14px 28px;
	cursor: pointer;
	transition: transform var(--pb-duration-hover) var(--pb-ease-hover), background-color var(--pb-duration-hover) var(--pb-ease-hover), box-shadow var(--pb-duration-hover) var(--pb-ease-hover);
}

.pb-embed--gform .gform_page_footer .gform_next_button,
.pb-embed--gform .gform_page_footer input[type="submit"] {
	background: var(--pb-green-300);
	color: var(--pb-green-950);
	border: 1px solid transparent;
}
.pb-embed--gform .gform_page_footer .gform_next_button:hover,
.pb-embed--gform .gform_page_footer input[type="submit"]:hover {
	background: #8fc2a6;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -8px rgba(11, 75, 59, 0.45);
}

.pb-embed--gform .gform_page_footer .gform_previous_button {
	background: transparent;
	color: var(--pb-green-950);
	border: 1px solid rgba(15, 38, 32, 0.35);
	order: -1;
}
.pb-embed--gform .gform_page_footer .gform_previous_button:hover {
	background: var(--pb-green-950);
	color: var(--pb-white);
	border-color: var(--pb-green-950);
}

/* --- Gravity Forms orbital theme -> brand overrides ---------- */

/* Recolor GF's Orbital theme (default blue) via its CSS variables. */
.pb-embed--gform .gform_wrapper {
	--gform-theme-color-primary: var(--pb-green-900);
	--gform-theme-color-primary-rgb: 11, 75, 59;
	--gform-theme-color-primary-contrast: var(--pb-white);
	--gform-theme-color-primary-contrast-rgb: 255, 255, 255;
	--gform-theme-color-primary-darker: #08392d;
	--gform-theme-color-primary-lighter: var(--pb-green-300);
	--gform-theme-color-info: var(--pb-green-900);
	--gform-theme-control-button-background-color-primary: var(--pb-green-300);
	--gform-theme-control-button-background-color-hover-primary: #8fc2a6;
	--gform-theme-control-button-background-color-active-primary: #8fc2a6;
	--gform-theme-control-button-color-primary: var(--pb-green-950);
	--gform-theme-control-button-border-color-primary: transparent;
	--gform-theme-control-button-border-color-hover-primary: transparent;
	--gform-theme-control-choice-background-color-checked: var(--pb-green-900);
	--gform-theme-control-choice-check-background-color: var(--pb-green-900);
	--gform-theme-control-border-color-focus: var(--pb-green-900);
}

/* Step pills: smaller, and no overlapping check badge. */
.pb-embed--gform .gf_step {
	gap: 6px;
	padding: 5px 12px 5px 6px;
}

.pb-embed--gform .gf_step_number {
	width: 20px !important;
	height: 20px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	min-inline-size: 0 !important;
	min-block-size: 0 !important;
	font-size: 11px !important;
	position: relative;
}

.pb-embed--gform .gf_step_label {
	font-size: 12px;
}

/* Orbital paints its own oversized blue check over the number on completed
   steps — remove it and tint the number circle instead. */
.pb-embed--gform .gf_step_completed .gf_step_number::before,
.pb-embed--gform .gf_step_completed .gf_step_number::after {
	display: none !important;
	background: none !important;
	content: none !important;
}

.pb-embed--gform .gf_step_completed .gf_step_number {
	background: var(--pb-green-900);
	color: var(--pb-white);
}

/* Breathing room between checkbox/radio controls and their labels. */
.pb-embed--gform .gform_wrapper .gchoice {
	display: flex !important;
	align-items: center;
	gap: 10px !important;
	padding-block: 4px;
}

.pb-embed--gform .gform_wrapper .gchoice input[type="radio"],
.pb-embed--gform .gform_wrapper .gchoice input[type="checkbox"] {
	margin: 0 !important;
	accent-color: var(--pb-green-900);
}

.pb-embed--gform .gform_wrapper .gchoice label {
	margin: 0 !important;
	padding-left: 0 !important;
}

/* Footer buttons (Next/Back/submit): our CTA styling, regardless of theme. */
.pb-embed--gform .gform_wrapper .gform_next_button,
.pb-embed--gform .gform_wrapper .gform_button,
.pb-embed--gform .gform_wrapper input[type="submit"],
.pb-embed--gform .gform_wrapper button[type="submit"] {
	font-family: var(--pb-font-body) !important;
	font-weight: 500 !important;
	font-size: 16px !important;
	background: var(--pb-green-300) !important;
	color: var(--pb-green-950) !important;
	border: 1px solid transparent !important;
	border-radius: var(--pb-radius-sm) !important;
	padding: 14px 28px !important;
}
.pb-embed--gform .gform_wrapper .gform_next_button:hover,
.pb-embed--gform .gform_wrapper .gform_button:hover,
.pb-embed--gform .gform_wrapper input[type="submit"]:hover,
.pb-embed--gform .gform_wrapper button[type="submit"]:hover {
	background: #8fc2a6 !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -8px rgba(11, 75, 59, 0.45);
}

.pb-embed--gform .gform_wrapper .gform_previous_button {
	background: transparent !important;
	color: var(--pb-green-950) !important;
	border: 1px solid rgba(15, 38, 32, 0.35) !important;
	border-radius: var(--pb-radius-sm) !important;
	padding: 14px 28px !important;
	font-size: 16px !important;
}
.pb-embed--gform .gform_wrapper .gform_previous_button:hover {
	background: var(--pb-green-950) !important;
	color: var(--pb-white) !important;
}
