:root {
	--color-bg: #0b0f1a;
	--color-bg-soft: #101726;
	--color-panel: rgba(255, 255, 255, 0.04);
	--color-panel-strong: rgba(255, 255, 255, 0.07);
	--color-text: #fff8ea;
	--color-muted: #94a3b8;
	--color-gold: #d4af37;
	--color-gold-light: #f0d675;
	--color-gold-soft: rgba(212, 175, 55, 0.16);
	--color-line: rgba(255, 255, 255, 0.13);
	--shadow-gold: 0 24px 80px rgba(212, 175, 55, 0.16);
	--shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.42);
	--radius: 16px;
	--container: 1180px;
	--header-height: 82px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	position: relative;
	margin: 0;
	overflow-x: hidden;
	background:
		linear-gradient(135deg, rgba(13, 24, 44, 0.86), rgba(3, 5, 10, 0.98) 62%),
		radial-gradient(circle at 78% 12%, rgba(212, 175, 55, 0.14), transparent 32%),
		radial-gradient(circle at 8% 46%, rgba(255, 255, 255, 0.055), transparent 34%),
		var(--color-bg);
	color: var(--color-text);
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: "";
	opacity: 0.03;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
	background-size: 4px 4px;
}

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

img {
	height: auto;
}

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

p {
	color: var(--color-muted);
}

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

.section,
.section-pad {
	padding: 140px 0;
}

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 50;
	border-bottom: 1px solid transparent;
	transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
	background: rgba(11, 15, 26, 0.88);
	border-color: var(--color-line);
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(18px);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	gap: 28px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	letter-spacing: 0;
}

.brand-mark {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 1px solid rgba(212, 175, 55, 0.54);
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.12);
	color: var(--color-gold-light);
	font-size: 14px;
	box-shadow: 0 0 34px rgba(212, 175, 55, 0.12);
}

.brand-text {
	font-size: 15px;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.nav-menu a {
	color: rgba(255, 248, 234, 0.74);
	font-size: 14px;
	font-weight: 700;
	transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
	color: var(--color-gold-light);
}

.hero {
	position: relative;
	isolation: isolate;
}

.hero::before,
.hero::after {
	position: absolute;
	z-index: -1;
	content: "";
	pointer-events: none;
}

.hero::before {
	top: 10%;
	left: 10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 68%);
	filter: blur(120px);
}

.hero::after {
	top: 30%;
	right: 10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
	filter: blur(84px);
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: calc(var(--header-height) + 54px);
}

.hero-grid,
.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
	align-items: center;
	gap: 78px;
}

.about-grid {
	grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--color-gold-light);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

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

h1,
h2,
h3 {
	color: var(--color-text);
}

.hero h1,
h1 {
	max-width: 790px;
	margin-bottom: 22px;
	font-size: clamp(58px, 7vw, 96px);
	line-height: 1.08;
	letter-spacing: 0;
}

.hero-tagline {
	max-width: 680px;
	margin-bottom: 22px;
	color: var(--color-gold-light);
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 900;
	line-height: 1.08;
}

h2 {
	max-width: 860px;
	margin-bottom: 20px;
	font-size: clamp(34px, 4.5vw, 58px);
	line-height: 1.05;
	letter-spacing: 0;
}

h3 {
	margin-bottom: 16px;
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: 0;
}

.hero-subtext {
	max-width: 650px;
	margin-bottom: 30px;
	font-size: 18px;
}

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

.about-copy p {
	max-width: 640px;
	margin-bottom: 34px;
	font-size: 18px;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 900;
	line-height: 1.2;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus {
	transform: translateY(-3px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
	color: #111111;
	box-shadow: var(--shadow-gold);
}

.btn-primary:hover,
.btn-primary:focus {
	box-shadow: 0 26px 90px rgba(212, 175, 55, 0.26);
}

.btn-outline {
	border-color: rgba(212, 175, 55, 0.42);
	color: var(--color-gold-light);
	background: rgba(255, 255, 255, 0.035);
}

.btn-outline:hover,
.btn-outline:focus {
	border-color: rgba(212, 175, 55, 0.82);
	background: rgba(212, 175, 55, 0.12);
}

.hero-media,
.about-media {
	position: relative;
}

.hero-collage,
.about-image-frame,
.transformation-frame {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.26);
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
	box-shadow: var(--shadow-deep);
}

.hero-collage::before,
.about-image-frame::before,
.transformation-frame::before {
	position: absolute;
	inset: 18px;
	z-index: 2;
	content: "";
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: calc(var(--radius) - 4px);
	pointer-events: none;
}

.hero-collage::after,
.about-image-frame::after,
.transformation-frame::after {
	position: absolute;
	inset: auto 24px 24px;
	z-index: 2;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.76), transparent);
}

.hero-image,
.about-image {
	width: 100%;
	object-fit: cover;
}

.hero-image {
	aspect-ratio: 16 / 11;
}

.about-image {
	aspect-ratio: 1 / 1.08;
}

.hero-collage {
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
	transition: transform 260ms ease;
}

.hero-collage:hover {
	transform: translateY(-6px);
}

.hero-collage .hero-image {
	border-radius: 20px;
	object-position: center center;
	transition: transform 500ms ease, filter 500ms ease;
}

.hero-collage:hover .hero-image {
	transform: scale(1.035);
	filter: saturate(1.08) contrast(1.04);
}

.hero-video-badge {
	position: absolute;
	right: 26px;
	bottom: 28px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid rgba(212, 175, 55, 0.4);
	border-radius: 999px;
	background: rgba(7, 10, 18, 0.82);
	color: var(--color-text);
	font-size: 13px;
	font-weight: 900;
	backdrop-filter: blur(14px);
}

.play-icon {
	display: inline-block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-gold);
	box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.play-icon::before {
	display: block;
	width: 0;
	height: 0;
	margin: 13px 0 0 16px;
	content: "";
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid #101010;
}

.hero-video-badge .play-icon {
	width: 28px;
	height: 28px;
}

.hero-video-badge .play-icon::before {
	margin: 8px 0 0 11px;
	border-top-width: 6px;
	border-bottom-width: 6px;
	border-left-width: 9px;
}

.about-section,
.media-section {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.section-heading {
	max-width: 780px;
	margin-bottom: 54px;
}

.section-heading h2,
.media-section .section-heading h2,
.testimonials-section .section-heading h2,
.programs-section .section-heading h2,
.lead-section .section-heading h2 {
	color: var(--color-text);
}

.teachings-grid,
.media-grid,
.stats-grid {
	display: grid;
	gap: 24px;
}

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

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

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

.glass-card,
.card {
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-panel);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.card {
	padding: 40px;
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-10px) scale(1.02);
	border: 1px solid rgba(212, 175, 55, 0.4);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.teaching-card {
	position: relative;
	overflow: hidden;
	min-height: 310px;
}

.card-mark {
	display: block;
	width: 46px;
	height: 3px;
	margin-bottom: 34px;
	background: linear-gradient(90deg, var(--color-gold), transparent);
}

.teaching-card::after {
	position: absolute;
	right: -60px;
	bottom: -80px;
	width: 180px;
	height: 180px;
	content: "";
	background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 70%);
	pointer-events: none;
}

.teaching-card p {
	margin-bottom: 0;
}

.social-proof-panel {
	position: relative;
	overflow: hidden;
	padding: 58px;
	background:
		linear-gradient(135deg, rgba(212, 175, 55, 0.11), rgba(255, 255, 255, 0.04)),
		var(--color-panel);
}

.social-proof-panel h2 {
	margin-bottom: 44px;
}

.stat-item {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: var(--radius);
	background: rgba(11, 15, 26, 0.48);
}

.stat-item strong {
	display: block;
	margin-bottom: 6px;
	color: var(--color-gold-light);
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1;
}

.stat-item span {
	color: var(--color-muted);
	font-weight: 800;
}

.impact-image-card {
	position: relative;
	overflow: hidden;
	margin-top: 34px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	background: rgba(11, 15, 26, 0.5);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.impact-image-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 360ms ease;
}

.impact-image-card:hover img {
	transform: scale(1.055);
}

.transformation-frame {
	padding: 14px;
}

.media-label {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
	padding: 8px 12px;
	border: 1px solid rgba(212, 175, 55, 0.34);
	border-radius: 999px;
	background: rgba(7, 10, 18, 0.72);
	color: var(--color-gold-light);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.journey-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 16px;
	object-fit: cover;
	transition: transform 420ms ease, filter 420ms ease;
}

.transformation-frame:hover .journey-image {
	transform: scale(1.045);
	filter: saturate(1.05) contrast(1.04);
}

.video-card {
	position: relative;
	overflow: hidden;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.video-card:hover {
	transform: translateY(-8px);
	border-color: rgba(212, 175, 55, 0.42);
	box-shadow: var(--shadow-deep);
}

.video-card iframe,
.video-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	object-fit: cover;
	transition: transform 360ms ease;
}

.video-card:hover img {
	transform: scale(1.045);
}

.final-cta-section {
	position: relative;
	isolation: isolate;
}

.final-cta-section::before {
	position: absolute;
	top: 18%;
	left: 50%;
	z-index: -1;
	width: min(760px, 80vw);
	height: 360px;
	content: "";
	background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
	filter: blur(70px);
	transform: translateX(-50%);
	pointer-events: none;
}

.final-cta {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
	align-items: center;
	gap: 44px;
	position: relative;
	overflow: hidden;
	padding: 72px;
	text-align: left;
	background:
		linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.045)),
		rgba(255, 255, 255, 0.045);
}

.final-cta h2 {
	margin-bottom: 30px;
}

.cta-actions {
	justify-content: flex-start;
}

.cta-visual {
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.24);
	border-radius: 20px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.cta-visual img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 420ms ease, filter 420ms ease;
}

.final-cta:hover .cta-visual img {
	transform: scale(1.045);
	filter: saturate(1.06) contrast(1.04);
}

.site-footer {
	border-top: 1px solid var(--color-line);
	background: rgba(5, 8, 15, 0.64);
}

.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 34px 0;
	color: var(--color-muted);
	font-size: 14px;
}

.footer-wrap p {
	margin: 0;
}

.footer-brand {
	color: var(--color-gold-light);
	font-weight: 800;
}

.fade-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 760ms ease, transform 760ms ease;
}

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

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	overflow: visible;
	clip: auto;
	border-radius: 8px;
	background: var(--color-gold);
	color: #111111;
}

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

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

@media (max-width: 980px) {
	:root {
		--header-height: 74px;
	}

	.section,
	.section-pad {
		padding: 104px 0;
	}

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

	.hero-grid,
	.about-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.hero-media,
	.about-media {
		max-width: 560px;
	}

	.teachings-grid,
	.media-grid,
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.final-cta {
		grid-template-columns: 1fr;
	}

	.teaching-card {
		min-height: auto;
	}
}

@media (max-width: 680px) {
	.container {
		width: min(100% - 28px, var(--container));
	}

	.nav-wrap {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		min-height: 100px;
		gap: 12px;
	}

	.nav-menu {
		gap: 18px;
	}

	.hero-section {
		padding-top: 142px;
	}

	.hero h1,
	h1 {
		font-size: 48px;
	}

	.hero-tagline {
		font-size: 27px;
	}

	h2 {
		font-size: 34px;
	}

	.hero-subtext,
	.about-copy p {
		font-size: 16px;
	}

	.hero-actions,
	.footer-wrap {
		align-items: stretch;
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.card,
	.social-proof-panel,
	.final-cta {
		padding: 30px;
	}

	.about-image {
		aspect-ratio: 1 / 1.08;
	}

	.hero-image {
		aspect-ratio: 4 / 3;
	}

	.hero-video-badge {
		right: 16px;
		bottom: 16px;
		max-width: calc(100% - 32px);
	}

	.final-cta {
		text-align: left;
	}

	.impact-image-card img,
	.journey-image,
	.cta-visual img {
		aspect-ratio: 4 / 3;
	}
}

/* Production refinement overrides. */
html,
body {
	overflow-x: hidden;
}

#home,
#about,
#teachings,
#media,
#work-with-me,
#contact {
	scroll-margin-top: 96px;
}

.brand-text {
	font-size: 16px;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--color-gold-light);
}

.hero-section {
	min-height: calc(100vh - 90px);
	overflow: hidden;
}

.hero-grid {
	grid-template-columns: 0.95fr 1.15fr;
	gap: clamp(48px, 6vw, 96px);
}

.hero-media {
	position: relative;
	transform: scale(1.12);
	margin-right: -70px;
}

.hero-collage {
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 24px;
	box-shadow: 0 50px 130px rgba(0, 0, 0, 0.75);
}

.hero-collage .hero-image {
	width: 100%;
	min-height: 520px;
	border-radius: 24px;
	object-fit: cover;
}

.hero-video-badge {
	display: none;
}

.about-grid {
	grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
	gap: clamp(48px, 6vw, 88px);
	align-items: center;
}

.about-copy h2 {
	max-width: 650px;
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.05;
}

.about-copy p {
	max-width: 620px;
}

.transformation-frame {
	transform: none;
	padding: 0;
	overflow: visible;
}

.transformation-frame::before {
	display: block;
	inset: 8%;
	border: 0;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.17), transparent 68%);
	filter: blur(34px);
}

.journey-image {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.social-proof-panel {
	padding: clamp(34px, 5vw, 58px);
}

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

.social-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.social-buttons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 16px;
	border: 1px solid rgba(212, 175, 55, 0.32);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--color-gold-light);
	font-size: 13px;
	font-weight: 900;
}

.impact-image-card {
	max-width: 920px;
	margin: 38px auto 0;
	border-radius: 24px;
}

.impact-image-card img,
.impact-image {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	object-position: center;
}

.authority-strip {
	display: none;
}

.section-heading p {
	max-width: 720px;
	margin-bottom: 0;
}

.section-actions {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.lead-form {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: start;
}

.lead-form .privacy-note {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 13px;
}

.cta-visual img {
	min-height: 360px;
	object-position: center top;
	transform: none;
}

.final-cta:hover .cta-visual img {
	transform: scale(1.06);
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 1199px) {
	.hero-media {
		margin-right: 0;
		transform: scale(1.02);
	}

	.hero-collage .hero-image {
		min-height: 440px;
	}
}

@media (min-width: 768px) and (max-width: 1080px) {
	.nav-wrap {
		grid-template-columns: auto auto;
	}

	.menu-toggle {
		display: inline-block;
		justify-self: end;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 20px;
		display: none;
		width: min(320px, calc(100vw - 40px));
		padding: 18px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 18px;
		background: rgba(10, 10, 20, 0.94);
		backdrop-filter: blur(16px);
	}

	.nav-open .site-nav {
		display: block;
	}

	.nav-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.header-cta {
		display: none;
	}
}

@media (max-width: 767px) {
	.section,
	.section-pad,
	section {
		padding: 72px 0;
	}

	.nav-wrap {
		grid-template-columns: auto auto;
		align-items: center;
		min-height: 78px;
	}

	.menu-toggle {
		display: inline-block;
		justify-self: end;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 14px;
		left: 14px;
		display: none;
		padding: 18px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 18px;
		background: rgba(10, 10, 20, 0.94);
		backdrop-filter: blur(16px);
	}

	.nav-open .site-nav {
		display: block;
	}

	.nav-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.header-cta {
		display: none;
	}

	.hero-grid,
	.about-grid,
	.stats-grid,
	.media-grid,
	.testimonial-grid,
	.program-grid,
	.lead-panel,
	.final-cta,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-section {
		min-height: auto;
		padding-top: 116px;
	}

	.hero-media {
		transform: none;
	}

	.hero-collage .hero-image {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.hero-actions,
	.cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.about-copy h2 {
		font-size: clamp(34px, 9vw, 44px);
	}

	.impact-image-card img,
	.impact-image {
		max-height: none;
		aspect-ratio: 4 / 3;
	}

	.lead-form {
		grid-template-columns: 1fr;
	}

	.cta-visual img {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
}

/* Final typography polish: keep the homepage type scale premium and consistent. */
body.wp-theme-ajaymishra-theme .hero h1 {
	max-width: 820px;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(64px, 6.4vw, 96px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}

body.wp-theme-ajaymishra-theme .hero-tagline {
	max-width: 820px;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(34px, 3.35vw, 48px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .section-heading h2,
body.wp-theme-ajaymishra-theme .impact-copy h2,
body.wp-theme-ajaymishra-theme .lead-copy h2,
body.wp-theme-ajaymishra-theme .final-cta h2 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(54px, 5.35vw, 82px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .about-copy h2 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(42px, 4.15vw, 62px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .media-section .section-heading h2,
body.wp-theme-ajaymishra-theme .testimonials-section .section-heading h2,
body.wp-theme-ajaymishra-theme .programs-section .section-heading h2 {
	max-width: 1080px;
}

body.wp-theme-ajaymishra-theme .card h3,
body.wp-theme-ajaymishra-theme .testimonial-card h3,
body.wp-theme-ajaymishra-theme .program-block h3 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(22px, 1.9vw, 30px);
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .media-video-card,
body.wp-theme-ajaymishra-theme .media-video-card.is-featured {
	border: 1px solid rgba(212, 175, 55, 0.24) !important;
	outline: 0 !important;
	box-shadow:
		0 28px 90px rgba(0, 0, 0, 0.56),
		inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

@media (max-width: 767px) {
	body.wp-theme-ajaymishra-theme .hero h1 {
		font-size: clamp(48px, 15vw, 66px);
		white-space: normal;
	}

	body.wp-theme-ajaymishra-theme .hero-tagline {
		font-size: clamp(30px, 9vw, 40px);
	}

	body.wp-theme-ajaymishra-theme .section-heading h2,
	body.wp-theme-ajaymishra-theme .impact-copy h2,
	body.wp-theme-ajaymishra-theme .lead-copy h2,
	body.wp-theme-ajaymishra-theme .final-cta h2,
	body.wp-theme-ajaymishra-theme .about-copy h2 {
		font-size: clamp(36px, 10.5vw, 48px);
		line-height: 1.08;
	}
}

/* Final typography polish: keep the homepage type scale premium and consistent. */
body.wp-theme-ajaymishra-theme .hero h1 {
	max-width: 820px;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(64px, 6.4vw, 96px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}

body.wp-theme-ajaymishra-theme .hero-tagline {
	max-width: 820px;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(34px, 3.35vw, 48px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .section-heading h2,
body.wp-theme-ajaymishra-theme .impact-copy h2,
body.wp-theme-ajaymishra-theme .lead-copy h2,
body.wp-theme-ajaymishra-theme .final-cta h2 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(42px, 4.6vw, 64px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .about-copy h2 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(36px, 3.65vw, 52px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .card h3,
body.wp-theme-ajaymishra-theme .testimonial-card h3,
body.wp-theme-ajaymishra-theme .program-block h3 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(22px, 1.9vw, 30px);
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .media-video-card,
body.wp-theme-ajaymishra-theme .media-video-card.is-featured {
	border: 1px solid rgba(212, 175, 55, 0.24) !important;
	outline: 0 !important;
	box-shadow:
		0 28px 90px rgba(0, 0, 0, 0.56),
		inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

@media (max-width: 767px) {
	body.wp-theme-ajaymishra-theme .hero h1 {
		font-size: clamp(48px, 15vw, 66px);
		white-space: normal;
	}

	body.wp-theme-ajaymishra-theme .hero-tagline {
		font-size: clamp(30px, 9vw, 40px);
	}

	body.wp-theme-ajaymishra-theme .section-heading h2,
	body.wp-theme-ajaymishra-theme .impact-copy h2,
	body.wp-theme-ajaymishra-theme .lead-copy h2,
	body.wp-theme-ajaymishra-theme .final-cta h2,
	body.wp-theme-ajaymishra-theme .about-copy h2 {
		font-size: clamp(34px, 10vw, 44px);
		line-height: 1.08;
	}
}

/* Final media polish: remove legacy red borders and restore premium gold glass styling. */
body.wp-theme-ajaymishra-theme .media-video-card,
body.wp-theme-ajaymishra-theme .media-video-card.is-featured {
	border: 1px solid rgba(212, 175, 55, 0.24) !important;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
		rgba(6, 10, 18, 0.86) !important;
	box-shadow:
		0 28px 90px rgba(0, 0, 0, 0.56),
		inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
	outline: 0 !important;
}

body.wp-theme-ajaymishra-theme .media-video-card::before {
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.06) 62%),
		radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 54%) !important;
}

body.wp-theme-ajaymishra-theme .media-video-card:hover,
body.wp-theme-ajaymishra-theme .media-video-card:focus-visible {
	border-color: rgba(212, 175, 55, 0.52) !important;
	box-shadow:
		0 34px 105px rgba(0, 0, 0, 0.66),
		0 0 0 1px rgba(212, 175, 55, 0.12),
		0 0 42px rgba(212, 175, 55, 0.14) !important;
	transform: translateY(-4px);
}

body.wp-theme-ajaymishra-theme .media-play {
	background: linear-gradient(135deg, #d4af37, #ffe77a) !important;
	box-shadow:
		0 18px 52px rgba(212, 175, 55, 0.38),
		0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

/* Theme isolation: keep legacy builder styles from recoloring the custom homepage. */
html body.wp-theme-ajaymishra-theme {
	overflow-x: hidden;
	background:
		linear-gradient(135deg, rgba(8, 14, 27, 0.96), rgba(3, 5, 10, 0.99) 62%),
		radial-gradient(circle at 78% 12%, rgba(212, 175, 55, 0.11), transparent 32%),
		radial-gradient(circle at 8% 46%, rgba(255, 255, 255, 0.035), transparent 34%),
		#0b0f1a !important;
	color: var(--color-text);
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.wp-theme-ajaymishra-theme main,
body.wp-theme-ajaymishra-theme .site-main,
body.wp-theme-ajaymishra-theme .hero-section,
body.wp-theme-ajaymishra-theme .about-section,
body.wp-theme-ajaymishra-theme .teachings-section,
body.wp-theme-ajaymishra-theme .media-section,
body.wp-theme-ajaymishra-theme .testimonials-section,
body.wp-theme-ajaymishra-theme .programs-section,
body.wp-theme-ajaymishra-theme .lead-section,
body.wp-theme-ajaymishra-theme .final-cta-section {
	background:
		linear-gradient(180deg, rgba(11, 15, 26, 0.98), rgba(5, 8, 14, 0.99)),
		#0b0f1a !important;
	color: var(--color-text);
}

body.wp-theme-ajaymishra-theme .hero-section {
	background:
		radial-gradient(circle at 78% 28%, rgba(212, 175, 55, 0.13), transparent 30%),
		linear-gradient(135deg, rgba(5, 7, 13, 0.99), rgba(10, 20, 36, 0.95) 54%, rgba(3, 5, 10, 0.99)) !important;
}

body.wp-theme-ajaymishra-theme h1,
body.wp-theme-ajaymishra-theme h2,
body.wp-theme-ajaymishra-theme h3,
body.wp-theme-ajaymishra-theme .section-heading h2,
body.wp-theme-ajaymishra-theme .hero h1,
body.wp-theme-ajaymishra-theme .about-copy h2,
body.wp-theme-ajaymishra-theme .impact-copy h2,
body.wp-theme-ajaymishra-theme .lead-copy h2,
body.wp-theme-ajaymishra-theme .final-cta h2 {
	color: var(--color-text) !important;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-weight: 900;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .hero h1 {
	font-size: clamp(58px, 7vw, 96px);
	line-height: 1.04;
}

body.wp-theme-ajaymishra-theme .hero-tagline,
body.wp-theme-ajaymishra-theme .eyebrow,
body.wp-theme-ajaymishra-theme .stat-number,
body.wp-theme-ajaymishra-theme .testimonial-card span,
body.wp-theme-ajaymishra-theme .program-block a {
	color: var(--color-gold-light) !important;
}

body.wp-theme-ajaymishra-theme .hero-tagline {
	font-size: clamp(26px, 3vw, 42px);
	line-height: 1.08;
	font-weight: 900;
}

body.wp-theme-ajaymishra-theme p,
body.wp-theme-ajaymishra-theme .hero-subtext,
body.wp-theme-ajaymishra-theme .section-heading p:not(.eyebrow),
body.wp-theme-ajaymishra-theme .testimonial-card p,
body.wp-theme-ajaymishra-theme .card p {
	color: var(--color-muted) !important;
}

body.wp-theme-ajaymishra-theme .glass-card,
body.wp-theme-ajaymishra-theme .card,
body.wp-theme-ajaymishra-theme .testimonial-card,
body.wp-theme-ajaymishra-theme .program-block,
body.wp-theme-ajaymishra-theme .lead-panel,
body.wp-theme-ajaymishra-theme .final-cta {
	border-color: rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
		rgba(10, 16, 28, 0.76) !important;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

body.wp-theme-ajaymishra-theme .social-proof-panel {
	background:
		radial-gradient(circle at 74% 28%, rgba(212, 175, 55, 0.12), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
		rgba(12, 15, 24, 0.9) !important;
}

body.wp-theme-ajaymishra-theme .btn-primary,
body.wp-theme-ajaymishra-theme button[type="submit"],
body.wp-theme-ajaymishra-theme .lead-form button {
	background: linear-gradient(135deg, #d4af37, #ffe77a) !important;
	color: #07101d !important;
	border-color: rgba(212, 175, 55, 0.86) !important;
}

body.wp-theme-ajaymishra-theme .btn-outline,
body.wp-theme-ajaymishra-theme .social-buttons a {
	color: var(--color-gold-light) !important;
	border-color: rgba(212, 175, 55, 0.42) !important;
	background: rgba(255, 255, 255, 0.025) !important;
}

body.wp-theme-ajaymishra-theme .media-video-title {
	display: none !important;
}

@media (max-width: 767px) {
	body.wp-theme-ajaymishra-theme .hero h1 {
		font-size: clamp(48px, 15vw, 66px);
	}
}

/* Browser comment refinements: Journey heading and Impact balance */
.about-copy h2 {
	max-width: 600px;
	font-size: clamp(34px, 3.2vw, 46px);
	line-height: 1.08;
}

.impact-grid {
	grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.12fr);
	gap: clamp(42px, 5vw, 78px);
}

.impact-copy {
	max-width: 620px;
}

.impact-copy h2 {
	font-size: clamp(38px, 3.8vw, 54px);
	line-height: 1.06;
}

.impact-copy .stats-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 560px;
	gap: 14px;
}

.impact-copy .stat-item {
	padding: 22px 24px;
}

.impact-copy .stat-item strong {
	font-size: clamp(36px, 3.2vw, 52px);
}

.impact-image {
	width: min(100%, 760px);
	max-width: 760px;
	margin-left: auto;
}

.impact-image img,
.impact-photo {
	aspect-ratio: 16 / 13;
	object-fit: cover;
	object-position: center top;
}

@media (min-width: 1280px) {
	.social-proof-panel {
		padding-right: 58px;
		padding-left: 58px;
	}
}

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

	.impact-copy,
	.impact-copy .stats-grid,
	.impact-image {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.about-copy h2 {
		font-size: clamp(32px, 9vw, 40px);
	}

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

@media (max-width: 480px) {
	.impact-copy .stats-grid {
		grid-template-columns: 1fr;
	}
}

/* Last-mile overrides for May 5 image swaps and mobile QA */
.hero-grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(42px, 5vw, 82px);
}

.hero-media {
	transform: scale(1.02);
	margin-right: -24px;
}

.hero-collage {
	overflow: hidden;
}

.hero-collage .hero-image {
	width: 100%;
	min-height: auto;
	max-height: 660px;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: center center;
}

.impact-grid {
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
	gap: clamp(44px, 5vw, 78px);
}

.impact-copy h2 {
	font-size: clamp(40px, 4vw, 56px);
}

.impact-copy .stats-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.impact-copy .stat-item {
	padding: 22px;
}

.impact-copy .stat-item strong {
	font-size: clamp(36px, 3.2vw, 52px);
}

.impact-image {
	width: min(100%, 700px);
	max-width: 700px;
	max-height: none;
}

.impact-image img,
.impact-photo {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center top;
}

.media-showcase {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
}

.media-video-card.is-featured {
	grid-row: span 2;
}

.media-video-card.is-hidden,
.media-more-action {
	display: none !important;
}

.program-block img,
.program-block:first-child img,
.program-block:nth-child(2) img {
	object-position: center;
}

.cta-visual img {
	object-position: center top;
}

@media (min-width: 1280px) {
	.hero-collage {
		max-width: 660px;
		margin-left: auto;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.hero-grid,
	.impact-grid {
		grid-template-columns: 1fr;
	}

	.hero-media {
		transform: none;
		margin-right: 0;
	}

	.hero-collage {
		max-width: 720px;
		margin: 0 auto;
	}

	.impact-image {
		margin-right: auto;
		margin-left: auto;
	}

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

	.media-video-card.is-featured {
		grid-column: 1 / -1;
		min-height: 430px;
	}
}

@media (max-width: 767px) {
	body {
		min-width: 0;
	}

	.container {
		width: min(100% - 32px, var(--container));
	}

	.hero-grid,
	.impact-grid,
	.media-showcase {
		grid-template-columns: 1fr;
	}

	.hero-section {
		padding-top: 104px;
	}

	.hero-media {
		transform: none;
		margin-right: 0;
	}

	.hero-collage .hero-image {
		aspect-ratio: 1 / 1;
	}

	.hero h1 {
		white-space: normal;
		font-size: clamp(48px, 15vw, 68px);
	}

	.hero-tagline {
		font-size: clamp(28px, 8vw, 40px);
	}

	.hero-subtext {
		font-size: 17px;
	}

	.hero-actions,
	.cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .btn,
	.cta-actions .btn {
		width: 100%;
		justify-content: center;
		white-space: normal;
	}

	.social-proof-panel,
	.lead-panel,
	.final-cta {
		padding: 28px;
	}

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

	.impact-copy .stat-item {
		padding: 18px;
	}

	.impact-copy .stat-item strong {
		font-size: clamp(34px, 11vw, 46px);
	}

	.media-video-card,
	.media-video-card.is-featured {
		min-height: 230px;
	}

	.program-block,
	.program-block img {
		min-height: 360px;
	}

	.footer-grid {
		gap: 28px;
	}
}

@media (max-width: 480px) {
	.impact-copy .stats-grid {
		grid-template-columns: 1fr;
	}

	.brand-text {
		font-size: 15px;
	}

	.site-brand {
		gap: 10px;
	}

	.brand-mark {
		width: 46px;
		height: 46px;
	}
}

/* Final requested image, media, and mobile refinements */
.hero-grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(42px, 5vw, 82px);
}

.hero-media {
	transform: scale(1.02);
	margin-right: -24px;
}

.hero-collage {
	overflow: hidden;
}

.hero-collage .hero-image {
	width: 100%;
	min-height: auto;
	max-height: 660px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
}

.impact-grid {
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
	gap: clamp(44px, 5vw, 78px);
}

.impact-copy h2 {
	font-size: clamp(40px, 4vw, 56px);
}

.impact-copy .stats-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.impact-copy .stat-item {
	padding: 22px;
}

.impact-copy .stat-item strong {
	font-size: clamp(36px, 3.2vw, 52px);
}

.impact-image {
	width: min(100%, 700px);
	max-width: 700px;
}

.impact-image img,
.impact-photo {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center top;
}

.media-showcase {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
}

.media-video-card.is-featured {
	grid-row: span 2;
}

.media-video-card.is-hidden,
.media-more-action {
	display: none !important;
}

.program-block img {
	object-position: center;
}

.program-block:first-child img {
	object-position: center center;
}

.program-block:nth-child(2) img {
	object-position: center center;
}

.cta-visual img {
	object-position: center top;
}

@media (min-width: 1280px) {
	.hero-collage {
		max-width: 660px;
		margin-left: auto;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.hero-grid,
	.impact-grid {
		grid-template-columns: 1fr;
	}

	.hero-media {
		transform: none;
		margin-right: 0;
	}

	.hero-collage {
		max-width: 720px;
		margin: 0 auto;
	}

	.impact-image {
		margin-right: auto;
		margin-left: auto;
	}

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

	.media-video-card.is-featured {
		grid-column: 1 / -1;
		min-height: 430px;
	}
}

@media (max-width: 767px) {
	body {
		min-width: 0;
	}

	.container {
		width: min(100% - 32px, var(--container));
	}

	.hero-grid,
	.impact-grid,
	.media-showcase {
		grid-template-columns: 1fr;
	}

	.hero-section {
		padding-top: 104px;
	}

	.hero-media {
		transform: none;
		margin-right: 0;
	}

	.hero-collage .hero-image {
		aspect-ratio: 1 / 1;
	}

	.hero h1 {
		white-space: normal;
		font-size: clamp(48px, 15vw, 68px);
	}

	.hero-tagline {
		font-size: clamp(28px, 8vw, 40px);
	}

	.hero-subtext {
		font-size: 17px;
	}

	.hero-actions,
	.cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .btn,
	.cta-actions .btn {
		width: 100%;
		justify-content: center;
		white-space: normal;
	}

	.social-proof-panel,
	.lead-panel,
	.final-cta {
		padding: 28px;
	}

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

	.impact-copy .stat-item {
		padding: 18px;
	}

	.impact-copy .stat-item strong {
		font-size: clamp(34px, 11vw, 46px);
	}

	.media-video-card,
	.media-video-card.is-featured {
		min-height: 230px;
	}

	.program-block,
	.program-block img {
		min-height: 360px;
	}

	.footer-grid {
		gap: 28px;
	}
}

@media (max-width: 480px) {
	.impact-copy .stats-grid {
		grid-template-columns: 1fr;
	}

	.brand-text {
		font-size: 15px;
	}

	.site-brand {
		gap: 10px;
	}

	.brand-mark {
		width: 46px;
		height: 46px;
	}
}

/* Final browser-comment refinements */
.social-buttons {
	justify-content: center;
}

.footer-newsletter .mini-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.footer-newsletter .mini-form button {
	grid-column: 1 / -1;
	width: 100%;
	min-height: 52px;
}

@media (min-width: 1200px) {
	.hero h1 {
		max-width: none;
		margin-bottom: 18px;
		font-size: clamp(64px, 5.2vw, 82px);
		line-height: 0.96;
		white-space: nowrap;
	}

	.hero-tagline {
		max-width: 720px;
		font-size: clamp(30px, 2.6vw, 42px);
		line-height: 1.12;
	}

	.hero-actions {
		align-items: center;
		flex-wrap: nowrap;
		gap: 16px;
	}

	.hero-actions .btn {
		width: auto;
		padding-inline: 28px;
		white-space: nowrap;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	}

	.hero-collage .hero-image {
		min-height: 500px;
		aspect-ratio: 16 / 10;
		object-fit: contain;
		object-position: center;
		background: #05070d;
	}

	.hero-collage:hover .hero-image {
		transform: scale(1.04);
	}

	.about-copy h2 {
		max-width: 680px;
		font-size: clamp(40px, 3.2vw, 50px);
		line-height: 1.08;
	}

	.media-section .section-heading {
		max-width: none;
	}

	.media-section .section-heading p:not(.eyebrow) {
		max-width: none;
		font-size: 20px;
		white-space: nowrap;
	}
}

@media (max-width: 767px) {
	.footer-newsletter .mini-form {
		grid-template-columns: 1fr;
	}

	.media-section .section-heading p:not(.eyebrow) {
		white-space: normal;
	}
}

/* Production polish pass */
.hero-grid {
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(48px, 5vw, 88px);
}

.hero-media {
	transform: scale(1.04);
	margin-right: -36px;
}

.hero-collage {
	overflow: hidden;
}

.hero-collage::before,
.hero-collage::after {
	display: none;
}

.hero-collage .hero-image {
	width: 100%;
	min-height: auto;
	max-height: 620px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center center;
	border-radius: 24px;
	border: 1px solid rgba(212, 175, 55, 0.25);
	box-shadow: 0 50px 130px rgba(0, 0, 0, 0.75);
}

.hero-collage:hover {
	transform: translateY(-4px);
}

.hero-collage:hover .hero-image {
	transform: scale(1.035);
}

.about-grid,
.journey-grid {
	grid-template-columns: 1.08fr 0.92fr;
	align-items: center;
	gap: clamp(56px, 6vw, 96px);
}

.journey h2,
.about h2,
.about-copy h2 {
	max-width: 680px;
	font-size: clamp(42px, 4.5vw, 60px);
	line-height: 1.08;
}

.transformation-frame {
	position: relative;
	border-radius: 24px;
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(212, 175, 55, 0.12);
}

.journey-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center;
	border-radius: 24px;
	border: 1px solid rgba(212, 175, 55, 0.22);
}

.social-proof-section {
	padding: 110px 0;
}

.impact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
	align-items: center;
	gap: clamp(56px, 6vw, 96px);
}

.impact-copy h2 {
	max-width: 760px;
	margin-bottom: 32px;
	font-size: clamp(42px, 4.5vw, 62px);
}

.impact-copy .stats-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.impact-copy .stat-item {
	padding: 28px;
}

.impact-copy .stat-item strong {
	font-size: clamp(40px, 4vw, 64px);
}

.impact-copy .social-buttons {
	justify-content: flex-start;
	margin-top: 24px;
}

.impact-image {
	max-width: 560px;
	margin-left: auto;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.22);
	border-radius: 24px;
	box-shadow: 0 40px 110px rgba(0, 0, 0, 0.65);
}

.impact-image img,
.impact-photo {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.5s ease;
}

.impact-image:hover img,
.impact-image:hover .impact-photo {
	transform: scale(1.045);
}

.media-section .section-heading {
	max-width: 1040px;
}

.media-section .section-heading p:not(.eyebrow) {
	max-width: 1040px;
	white-space: normal;
}

.media-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) minmax(0, 0.88fr);
	gap: 24px;
	margin-top: 58px;
}

.media-video-card {
	position: relative;
	display: block;
	min-height: 220px;
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
	cursor: pointer;
}

.media-video-card.is-featured {
	grid-row: span 2;
	min-height: 464px;
}

.media-video-card img,
.media-video-card iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	border: 0;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.media-video-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 60%);
	pointer-events: none;
}

.media-video-card:hover img {
	transform: scale(1.08);
}

.media-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 72px;
	height: 72px;
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.92);
	box-shadow: 0 20px 55px rgba(212, 175, 55, 0.35);
	transform: translate(-50%, -50%);
}

.media-play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 52%;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #07101d;
	transform: translate(-50%, -50%);
}

.media-video-card.is-loaded {
	cursor: default;
}

.media-video-card.is-loaded::before {
	display: none;
}

.media-video-card.is-loaded iframe {
	position: absolute;
	inset: 0;
	min-height: 0;
}

.media-more-action {
	margin-top: 30px;
}

.lead-shortcode {
	width: 100%;
}

@media (min-width: 1200px) {
	.hero-collage .hero-image {
		object-fit: cover;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.hero-media {
		transform: scale(1);
		margin-right: 0;
	}

	.hero-collage .hero-image {
		aspect-ratio: 16 / 11;
	}

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

	.media-video-card.is-featured {
		grid-column: 1 / -1;
		min-height: 420px;
	}
}

@media (max-width: 767px) {
	.hero-grid,
	.about-grid,
	.journey-grid,
	.impact-grid,
	.media-showcase {
		grid-template-columns: 1fr;
	}

	.hero-media {
		transform: scale(1);
		margin-right: 0;
	}

	.hero-collage .hero-image {
		aspect-ratio: 16 / 11;
	}

	.about-media {
		order: 1;
	}

	.about-copy {
		order: 2;
	}

	.journey h2,
	.about h2,
	.about-copy h2 {
		font-size: clamp(36px, 11vw, 42px);
	}

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

	.impact-copy .social-buttons {
		justify-content: center;
	}

	.impact-image {
		max-width: 100%;
		margin: 8px auto 0;
	}

	.media-video-card,
	.media-video-card.is-featured {
		min-height: 240px;
	}
}

@media (max-width: 480px) {
	.impact-copy .stats-grid {
		grid-template-columns: 1fr;
	}
}

/* Global authority-level cinematic pass. */
section {
	padding: 140px 0;
}

.site-header {
	background: rgba(10, 10, 20, 0.6);
	backdrop-filter: blur(12px);
}

.nav-wrap {
	display: grid;
	grid-template-columns: auto 1fr auto;
}

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

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px;
	border: 1px solid rgba(212, 175, 55, 0.46);
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.12);
	color: var(--color-gold-light);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
	transition: transform 180ms ease, background-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus {
	transform: translateY(-2px);
	background: rgba(212, 175, 55, 0.22);
}

.hero {
	position: relative;
	overflow: hidden;
}

.hero::before {
	inset: 0;
	width: auto;
	height: auto;
	background: radial-gradient(circle at left, rgba(212, 175, 55, 0.15), transparent 50%);
	filter: none;
}

.hero::after {
	inset: 0;
	width: auto;
	height: auto;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
	filter: none;
}

.hero-copy {
	z-index: 3;
}

.hero-media {
	z-index: 2;
	transform: scale(1.26);
	margin-right: -170px;
}

.hero-collage {
	border: 0;
	border-radius: 12px;
	box-shadow: 0 50px 140px rgba(0, 0, 0, 0.9);
}

.hero-collage::before,
.hero-collage::after {
	display: none;
}

.hero-collage .hero-image {
	border-radius: 12px;
}

.hero-collage:hover {
	transform: scale(1.05);
}

.hero-collage:hover .hero-image {
	transform: scale(1.1);
}

.about-grid {
	grid-template-columns: 1.3fr 1fr;
	align-items: center;
}

.transformation-frame {
	overflow: hidden;
	transform: scale(1.08);
	border: 0;
	background: transparent;
	box-shadow: none;
}

.transformation-frame::before,
.transformation-frame::after {
	display: none;
}

.journey-image {
	border-radius: 20px;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.about-media::after {
	position: absolute;
	inset: auto 0 0;
	height: 45%;
	content: "";
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
	pointer-events: none;
}

.stat-item {
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	position: absolute;
	inset: 20% 12%;
	content: "";
	background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 68%);
	filter: blur(22px);
}

.stat-item strong {
	position: relative;
	z-index: 1;
	font-size: clamp(42px, 4.6vw, 64px);
	text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.authority-strip {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 22px;
	margin-top: 28px;
}

.authority-strip img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
	transition: transform 400ms ease, filter 400ms ease;
}

.authority-strip img:hover {
	transform: scale(1.055);
	filter: saturate(1.07) contrast(1.04);
}

.card {
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(255, 255, 255, 0.045);
	backdrop-filter: blur(10px);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.video-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.video-card::after {
	position: absolute;
	inset: 0;
	content: "";
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.16);
	pointer-events: none;
}

.video-card iframe,
.video-card img {
	aspect-ratio: 16 / 10;
	transition: transform 0.4s ease;
}

.video-card:hover iframe,
.video-card:hover img {
	transform: scale(1.06);
}

.testimonials-section,
.programs-section,
.lead-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

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

.testimonial-card {
	position: relative;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.testimonial-card::before {
	display: block;
	width: 46px;
	height: 3px;
	margin-bottom: 24px;
	content: "";
	background: linear-gradient(90deg, var(--color-gold), transparent);
}

.testimonial-avatar {
	display: grid;
	width: 76px;
	height: 76px;
	margin-bottom: 22px;
	place-items: center;
	border: 1px solid rgba(212, 175, 55, 0.44);
	border-radius: 50%;
	color: var(--color-gold-light);
	font-weight: 900;
	overflow: hidden;
	background: rgba(212, 175, 55, 0.08);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-card h3 {
	margin-bottom: 2px;
}

.testimonial-card span {
	color: var(--color-gold-light);
	font-size: 13px;
	font-weight: 900;
}

.program-block {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	border-radius: 22px;
	background: #05070d;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.program-block img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	opacity: 0.72;
	transition: transform 500ms ease, opacity 500ms ease;
}

.program-block:hover img {
	transform: scale(1.08);
	opacity: 0.92;
}

.program-copy {
	position: absolute;
	inset: auto 0 0;
	padding: 32px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent);
}

.text-link {
	color: var(--color-gold-light);
	font-weight: 900;
}

.lead-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
	align-items: center;
	gap: 36px;
	padding: 54px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 24px;
	background:
		radial-gradient(circle at right, rgba(212, 175, 55, 0.14), transparent 38%),
		rgba(255, 255, 255, 0.045);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.lead-copy p {
	max-width: 560px;
	margin-bottom: 0;
}

.lead-form,
.mini-form {
	display: flex;
	gap: 12px;
}

.lead-form input,
.mini-form input {
	width: 100%;
	min-height: 54px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 999px;
	background: rgba(5, 8, 15, 0.72);
	color: var(--color-text);
	padding: 0 18px;
	font: inherit;
}

.mini-form button {
	border: 1px solid rgba(212, 175, 55, 0.48);
	border-radius: 999px;
	background: var(--color-gold);
	color: #111111;
	padding: 0 18px;
	font-weight: 900;
}

.final-cta-section::before {
	background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 70%);
}

.cta-visual img {
	transform: scale(1.12);
}

.final-cta:hover .cta-visual img {
	transform: scale(1.2);
}

.site-footer {
	border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
	gap: 34px;
	padding: 62px 0 34px;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col h3 {
	margin-bottom: 8px;
	font-size: 15px;
	color: var(--color-gold-light);
}

.footer-col a,
.footer-col p {
	color: var(--color-muted);
}

.footer-brand {
	color: var(--color-text);
	font-size: 22px;
	font-weight: 900;
}

.footer-bottom {
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: 0.6s ease;
}

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

@media (max-width: 1080px) {
	.nav-wrap {
		grid-template-columns: 1fr auto;
	}

	.site-nav {
		display: none;
	}

	.hero-media {
		margin-right: 0;
		transform: none;
	}

	.about-grid,
	.lead-panel,
	.final-cta {
		grid-template-columns: 1fr;
	}

	.testimonial-grid,
	.program-grid,
	.media-grid,
	.stats-grid,
	.authority-strip,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.transformation-frame {
		transform: none;
	}
}

@media (max-width: 680px) {
	.header-cta {
		display: none;
	}

	.lead-panel,
	.final-cta {
		padding: 30px;
	}

	.lead-form,
	.mini-form {
		flex-direction: column;
	}

	.program-block,
	.program-block img {
		min-height: 420px;
	}
}

/* Final production fixes: requested section balance and responsive nav. */
html,
body {
	overflow-x: hidden;
}

#home,
#about,
#teachings,
#media,
#work-with-me,
#contact {
	scroll-margin-top: 96px;
}

.hero-video-badge,
.authority-strip {
	display: none;
}

.brand-text {
	font-size: 16px;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--color-gold-light);
}

.hero-section {
	min-height: calc(100vh - 90px);
}

.hero-grid {
	grid-template-columns: 0.95fr 1.15fr;
	gap: clamp(48px, 6vw, 96px);
}

.hero-media {
	position: relative;
	transform: scale(1.12);
	margin-right: -70px;
}

.hero-collage {
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 24px;
	box-shadow: 0 50px 130px rgba(0, 0, 0, 0.75);
}

.hero-collage .hero-image {
	width: 100%;
	min-height: 520px;
	border-radius: 24px;
	object-fit: cover;
}

.about-grid {
	grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
	gap: clamp(48px, 6vw, 88px);
}

.about-copy h2 {
	max-width: 650px;
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.05;
}

.about-copy p {
	max-width: 620px;
}

.transformation-frame {
	transform: none;
	padding: 0;
	overflow: visible;
}

.journey-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.social-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.social-buttons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 16px;
	border: 1px solid rgba(212, 175, 55, 0.32);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--color-gold-light);
	font-size: 13px;
	font-weight: 900;
}

.impact-image-card {
	max-width: 920px;
	margin: 38px auto 0;
	border-radius: 24px;
}

.impact-image-card img,
.impact-image {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	object-position: center;
}

.section-heading p {
	max-width: 720px;
	margin-bottom: 0;
}

.section-actions {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.lead-form {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: start;
}

.lead-form .privacy-note {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 13px;
}

.cta-visual img {
	min-height: 360px;
	object-position: center top;
	transform: none;
}

.final-cta:hover .cta-visual img {
	transform: scale(1.06);
}

.footer-bottom p {
	margin: 0;
}

@media (min-width: 768px) and (max-width: 1080px) {
	.menu-toggle {
		display: inline-block;
		justify-self: end;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 20px;
		display: none;
		width: min(320px, calc(100vw - 40px));
		padding: 18px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 18px;
		background: rgba(10, 10, 20, 0.94);
		backdrop-filter: blur(16px);
	}

	.nav-open .site-nav {
		display: block;
	}

	.nav-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.header-cta {
		display: none;
	}
}

@media (max-width: 767px) {
	.section,
	.section-pad,
	section {
		padding: 72px 0;
	}

	.nav-wrap {
		grid-template-columns: auto auto;
		align-items: center;
		min-height: 78px;
	}

	.menu-toggle {
		display: inline-block;
		justify-self: end;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 14px;
		left: 14px;
		display: none;
		padding: 18px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 18px;
		background: rgba(10, 10, 20, 0.94);
		backdrop-filter: blur(16px);
	}

	.nav-open .site-nav {
		display: block;
	}

	.nav-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.header-cta {
		display: none;
	}

	.hero-grid,
	.about-grid,
	.stats-grid,
	.media-grid,
	.testimonial-grid,
	.program-grid,
	.lead-panel,
	.final-cta,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-section {
		min-height: auto;
		padding-top: 116px;
	}

	.hero-media {
		transform: none;
		margin-right: 0;
	}

	.hero-collage .hero-image {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.hero-actions,
	.cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.about-copy h2 {
		font-size: clamp(34px, 9vw, 44px);
	}

	.impact-image-card img,
	.impact-image {
		max-height: none;
		aspect-ratio: 4 / 3;
	}

	.lead-form {
		grid-template-columns: 1fr;
	}

	.cta-visual img {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
}

/* Final typography lock: loaded last to protect the premium homepage hierarchy. */
body.wp-theme-ajaymishra-theme .hero h1 {
	max-width: 820px;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(64px, 6.4vw, 96px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}

body.wp-theme-ajaymishra-theme .hero-tagline {
	max-width: 820px;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(34px, 3.35vw, 48px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .section-heading h2,
body.wp-theme-ajaymishra-theme .impact-copy h2,
body.wp-theme-ajaymishra-theme .lead-copy h2,
body.wp-theme-ajaymishra-theme .final-cta h2 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(42px, 4.6vw, 64px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .about-copy h2 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(36px, 3.65vw, 52px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .card h3,
body.wp-theme-ajaymishra-theme .testimonial-card h3,
body.wp-theme-ajaymishra-theme .program-block h3 {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(22px, 1.9vw, 30px);
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

body.wp-theme-ajaymishra-theme .media-video-card,
body.wp-theme-ajaymishra-theme .media-video-card.is-featured {
	border: 1px solid rgba(212, 175, 55, 0.24) !important;
	outline: 0 !important;
	box-shadow:
		0 28px 90px rgba(0, 0, 0, 0.56),
		inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

@media (max-width: 767px) {
	body.wp-theme-ajaymishra-theme .hero h1 {
		font-size: clamp(48px, 15vw, 66px);
		white-space: normal;
	}

	body.wp-theme-ajaymishra-theme .hero-tagline {
		font-size: clamp(30px, 9vw, 40px);
	}

	body.wp-theme-ajaymishra-theme .section-heading h2,
	body.wp-theme-ajaymishra-theme .impact-copy h2,
	body.wp-theme-ajaymishra-theme .lead-copy h2,
	body.wp-theme-ajaymishra-theme .final-cta h2,
	body.wp-theme-ajaymishra-theme .about-copy h2 {
		font-size: clamp(34px, 10vw, 44px);
		line-height: 1.08;
	}
}

@media (min-width: 768px) and (max-width: 1080px) {
	body.wp-theme-ajaymishra-theme .hero h1 {
		font-size: clamp(54px, 7vw, 76px);
		white-space: normal;
	}

	body.wp-theme-ajaymishra-theme .hero-tagline {
		font-size: clamp(30px, 4.4vw, 40px);
	}

	body.wp-theme-ajaymishra-theme .section-heading h2,
	body.wp-theme-ajaymishra-theme .impact-copy h2,
	body.wp-theme-ajaymishra-theme .lead-copy h2,
	body.wp-theme-ajaymishra-theme .final-cta h2 {
		font-size: clamp(44px, 6.4vw, 64px);
	}

	body.wp-theme-ajaymishra-theme .about-copy h2 {
		font-size: clamp(40px, 5.4vw, 54px);
	}
}

/* Mobile polish after live QA: tighter header, hero image order, CTAs, impact crop, footer links. */
.hero-media-mobile {
	display: none;
}

.program-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 46px;
	margin-top: 10px;
	padding: 11px 20px;
	border: 1px solid rgba(212, 175, 55, 0.52);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
	color: #080b12;
	font-weight: 900;
	box-shadow: 0 16px 34px rgba(212, 175, 55, 0.18);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-cta:hover,
.program-cta:focus {
	color: #080b12;
	transform: translateY(-2px);
	box-shadow: 0 20px 44px rgba(212, 175, 55, 0.25);
}

@media (max-width: 767px) {
	.site-header .nav-wrap {
		width: min(100% - 28px, var(--container));
		grid-template-columns: auto 1fr auto;
		gap: 16px;
		min-height: 88px;
	}

	.site-brand {
		justify-self: start;
		gap: 14px;
	}

	.brand-mark {
		width: 58px;
		height: 58px;
		font-size: 19px;
	}

	.brand-text {
		font-size: 20px;
		line-height: 1;
	}

	.menu-toggle {
		width: 58px;
		height: 58px;
		grid-column: 3;
		justify-self: end;
	}

	.menu-toggle span:not(.screen-reader-text) {
		width: 24px;
		height: 3px;
		margin: 5px auto;
	}

	.site-nav {
		grid-column: 1 / -1;
	}

	.hero-section {
		padding-top: 88px;
	}

	.hero-media {
		display: none;
	}

	.hero-media-mobile {
		display: block;
		margin: 26px 0 30px;
	}

	.hero-media-mobile .hero-collage {
		border-radius: 22px;
		box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
	}

	.hero-media-mobile .hero-image {
		width: 100%;
		min-height: 0;
		aspect-ratio: 16 / 10;
		border-radius: 22px;
		object-fit: cover;
		object-position: center center;
	}

	.impact-image {
		max-width: min(100%, 380px);
		margin-right: auto;
		margin-left: auto;
	}

	.impact-image img,
	.impact-photo {
		width: 100%;
		aspect-ratio: 4 / 5;
		max-height: none;
		object-fit: cover;
		object-position: center top;
	}

	.program-cta {
		width: 100%;
		max-width: 260px;
		margin-top: 14px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 22px;
		row-gap: 34px;
	}

	.footer-about,
	.footer-newsletter {
		grid-column: 1 / -1;
	}

	.footer-col h3 {
		font-size: 17px;
	}

	.footer-col a {
		font-size: clamp(17px, 5vw, 22px);
		line-height: 1.2;
	}

	.footer-newsletter .mini-form {
		display: flex;
		flex-direction: column;
	}
}

/* Final mobile QA pass: impact image visibility, program CTA contrast, and Begin Now order. */
.program-block .program-cta,
.program-block .program-cta:visited,
.program-block .program-cta:hover,
.program-block .program-cta:focus {
	color: #080b12;
	text-shadow: none;
}

.cta-visual-mobile {
	display: none;
}

@media (max-width: 767px) {
	.impact-image {
		max-width: min(100%, 390px);
		padding: 10px;
		background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), rgba(8, 11, 18, 0.96));
	}

	.impact-image img,
	.impact-photo {
		aspect-ratio: 4 / 5;
		object-fit: contain;
		object-position: center center;
		border-radius: 18px;
		background: #05070c;
	}

	.final-cta > .cta-visual {
		display: none;
	}

	.final-cta-copy {
		display: flex;
		flex-direction: column;
	}

	.cta-visual-mobile {
		display: block;
		margin: 24px 0 28px;
	}

	.cta-visual-mobile img {
		width: 100%;
		aspect-ratio: 16 / 10;
		object-fit: cover;
		object-position: center top;
	}

	.cta-actions {
		margin-top: 0;
	}
}
