/*
Theme Name: Pointed Arch Academy
Author: Pointed Arch Academy
Description: A classic WordPress continuing-education theme with native course, lesson, enrollment, quiz, student account, and xAPI Learning Record Store features.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: pointed-arch-academy
*/

:root {
	--ink: #11110f;
	--ink-soft: #262720;
	--forest: #274432;
	--forest-dark: #172a20;
	--sage: #718071;
	--ivory: #f5f1e5;
	--paper: #fffdf7;
	--white: #ffffff;
	--stone: #b7b0a2;
	--stone-light: #ddd6c8;
	--line: rgba(17, 17, 15, 0.2);
	--muted: #625f57;
	--success: #235f3d;
	--error: #983c31;
	--display: Georgia, 'Times New Roman', serif;
	--body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--shell: min(1180px, calc(100% - 48px));
	--narrow: min(780px, calc(100% - 48px));
	--shadow: 0 24px 70px rgba(27, 25, 20, 0.11);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

figure,
blockquote {
	margin: 0;
}

a {
	color: inherit;
}

a:hover {
	color: var(--forest);
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid #c69a45;
	outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--display);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.02;
}

h1 em,
h2 em {
	font-weight: 400;
}

p {
	margin: 0 0 1em;
}

.site-shell {
	width: var(--shell);
	margin-inline: auto;
}

.site-main {
	min-height: 55vh;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	top: 10px;
	left: 10px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	clip-path: none;
	background: var(--white);
	color: var(--ink);
	font-weight: 700;
}

.academy-ribbon {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.69rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ribbon-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 36px;
}

.ribbon-inner p {
	margin: 0;
}

.ribbon-inner span + span::before {
	content: '·';
	margin-inline: 10px;
	color: var(--stone);
}

.site-header {
	position: relative;
	z-index: 1000;
	border-bottom: 1px solid var(--line);
	background: var(--ivory);
}

.header-inner {
	display: grid;
	grid-template-columns: minmax(230px, 1fr) auto auto;
	align-items: center;
	gap: 34px;
	min-height: 112px;
}

.site-brand {
	min-width: 0;
}

.academy-brand-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--ink);
	text-decoration: none;
}

.academy-brand-link:hover {
	color: var(--ink);
}

.academy-brand-link img {
	width: 66px;
	height: 66px;
}

.academy-brand-link > span {
	display: grid;
	line-height: 1;
}

.academy-brand-link strong {
	font-family: var(--display);
	font-size: 1.42rem;
	font-weight: 400;
	letter-spacing: -0.025em;
}

.academy-brand-link small {
	margin-top: 7px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.29em;
	text-transform: uppercase;
}

.custom-logo-link img {
	width: auto;
	max-width: 280px;
	max-height: 78px;
}

.primary-menu,
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	display: block;
	padding: 12px 0;
	font-family: var(--display);
	font-size: 1rem;
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--forest);
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -20px;
	min-width: 220px;
	margin: 0;
	padding: 12px 20px;
	list-style: none;
	background: var(--paper);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 180ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.menu-toggle-lines {
	display: grid;
	gap: 4px;
	width: 24px;
}

.menu-toggle-lines span {
	display: block;
	height: 2px;
	background: currentColor;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 0;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.105em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button-small {
	min-height: 42px;
	padding: 10px 17px;
	font-size: 0.66rem;
}

.button-dark {
	background: var(--ink);
	color: var(--white);
}

.button-dark:hover {
	background: var(--forest);
	color: var(--white);
}

.button-light {
	background: var(--ivory);
	color: var(--ink);
}

.button-light:hover {
	background: var(--white);
	color: var(--forest-dark);
}

.button-ghost {
	border-color: rgba(255, 255, 255, 0.58);
	color: var(--white);
}

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

.button-outline-dark {
	border-color: var(--ink);
	color: var(--ink);
}

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

.button-block {
	width: 100%;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link span {
	transition: transform 170ms ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.eyebrow,
.post-meta,
.card-kicker,
.course-category {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 24px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: '';
	width: 34px;
	height: 1px;
	background: currentColor;
}

.academy-hero {
	position: relative;
	isolation: isolate;
	min-height: 700px;
	overflow: hidden;
	background: var(--ink) url('assets/images/academy-hero.png') center 38% / cover no-repeat;
	color: var(--white);
}

.academy-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(10, 12, 10, 0.96) 0%, rgba(10, 12, 10, 0.79) 46%, rgba(10, 12, 10, 0.24) 100%);
}

.academy-hero-inner {
	display: grid;
	align-items: center;
	min-height: inherit;
	padding-block: 95px;
}

.hero-copy {
	max-width: 760px;
}

.hero-copy h1 {
	font-size: clamp(4rem, 7.6vw, 7.6rem);
}

.hero-copy h1 em {
	color: var(--stone-light);
}

.hero-lead {
	max-width: 690px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.13rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.proof-strip {
	background: var(--forest-dark);
	color: var(--white);
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
	display: grid;
	gap: 3px;
	min-height: 110px;
	padding: 27px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid > div:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid strong {
	font-family: var(--display);
	font-size: 1.35rem;
	font-weight: 400;
}

.proof-grid span {
	color: rgba(255, 255, 255, 0.63);
	font-size: 0.77rem;
}

.section {
	padding-block: 110px;
}

.section-white {
	background: var(--paper);
}

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

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

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

.section-heading h2,
.story-copy h2,
.course-content h2,
.lesson-content h2,
.auth-required h2,
.empty-dashboard h2,
.account-summary h2,
.contact-form-inner h2 {
	font-size: clamp(3rem, 5vw, 5.2rem);
}

.centered-heading {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.centered-heading .eyebrow {
	justify-content: center;
}

.centered-heading > p:last-child {
	max-width: 680px;
	margin: 24px auto 0;
	color: var(--muted);
}

.split-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
	align-items: end;
	gap: 70px;
}

.split-heading > p {
	margin: 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: 1.02rem;
}

.light-split > p {
	color: var(--muted);
}

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

.course-card {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	min-height: 350px;
	border: 1px solid var(--ink);
	background: var(--paper);
}

.course-card-image {
	display: block;
	min-height: 100%;
	overflow: hidden;
	background: var(--stone);
}

.course-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) sepia(0.12);
	transition: transform 500ms ease, filter 300ms ease;
}

.course-card:hover .course-card-image img {
	transform: scale(1.025);
	filter: grayscale(0.85) sepia(0.1);
}

.course-card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 34px;
}

.course-category {
	margin-bottom: 16px;
	color: var(--forest);
}

.course-card h3 {
	font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

.course-card h3 a {
	text-decoration: none;
}

.course-card-body > p:not(.course-category):not(.progress-label) {
	margin: 18px 0;
	color: var(--muted);
	font-size: 0.89rem;
}

.course-meta,
.course-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.course-meta li + li::before,
.course-hero-meta li + li::before {
	content: '·';
	margin-right: 20px;
}

.course-card .text-link {
	margin-top: auto;
}

.progress-track {
	width: 100%;
	height: 5px;
	margin-top: auto;
	background: var(--stone-light);
}

.progress-track span {
	display: block;
	height: 100%;
	background: var(--forest);
}

.progress-label {
	margin: 7px 0 15px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.centered-action {
	margin: 48px 0 0;
	text-align: center;
}

.story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	align-items: center;
	gap: clamp(50px, 8vw, 110px);
}

.arch-image-frame {
	position: relative;
	padding: 18px 18px 58px;
	border: 1px solid var(--ink);
}

.arch-image-frame::before {
	content: '';
	position: absolute;
	top: -13px;
	left: -13px;
	z-index: -1;
	width: 75%;
	height: 65%;
	background: var(--stone-light);
}

.arch-image-frame img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	filter: grayscale(1) sepia(0.12);
}

.arch-image-frame figcaption {
	position: absolute;
	right: 24px;
	bottom: 17px;
	font-family: var(--display);
	font-size: 1rem;
	font-style: italic;
}

.story-copy .lead {
	margin-top: 28px;
	font-family: var(--display);
	font-size: 1.42rem;
	line-height: 1.4;
}

.story-copy > p:not(.eyebrow):not(.lead) {
	color: var(--muted);
}

.line-list {
	margin: 28px 0;
	padding: 0;
	list-style: none;
}

.line-list li {
	padding: 12px 0;
	border-top: 1px solid var(--line);
	font-size: 0.82rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.line-list li:last-child {
	border-bottom: 1px solid var(--line);
}

.process-grid,
.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article,
.value-grid article {
	padding: 36px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article:first-child,
.value-grid article:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article > span,
.value-grid article > span {
	display: block;
	margin-bottom: 50px;
	color: var(--stone);
	font-family: var(--display);
	font-size: 1.1rem;
}

.process-grid h3,
.value-grid h3 {
	font-size: 2.2rem;
}

.process-grid p,
.value-grid p {
	margin: 15px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.86rem;
}

.value-grid {
	grid-template-columns: repeat(3, 1fr);
	border-color: var(--line);
}

.value-grid article,
.value-grid article:first-child {
	border-color: var(--line);
}

.value-grid article > span,
.value-grid p {
	color: var(--muted);
}

.testimonial-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 850px);
	justify-content: center;
	gap: 38px;
}

.quote-mark {
	margin: -28px 0 0;
	font-family: var(--display);
	font-size: 8rem;
	line-height: 1;
}

.testimonial-inner blockquote p {
	font-family: var(--display);
	font-size: clamp(2.4rem, 4.5vw, 4.8rem);
	line-height: 1.08;
}

.testimonial-inner cite {
	display: block;
	margin-top: 28px;
	font-size: 0.69rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.academy-cta {
	position: relative;
	overflow: hidden;
	background: var(--forest);
	color: var(--white);
}

.academy-cta::after {
	content: '';
	position: absolute;
	right: -80px;
	bottom: -110px;
	width: 390px;
	height: 390px;
	border: 2px solid rgba(255, 255, 255, 0.08);
	border-radius: 50% 50% 0 0;
}

.cta-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 70px;
}

.cta-inner h2 {
	font-size: clamp(3rem, 5vw, 5.5rem);
}

.cta-inner p:last-child {
	max-width: 650px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.7);
}

.page-hero,
.dashboard-hero,
.lesson-header {
	position: relative;
	isolation: isolate;
	background: var(--ink);
	color: var(--white);
}

.page-hero {
	min-height: 500px;
	background: var(--ink) url('assets/images/academy-hero.png') center 42% / cover no-repeat;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(14, 15, 13, 0.96), rgba(14, 15, 13, 0.7) 58%, rgba(14, 15, 13, 0.32));
}

.page-hero-inner {
	display: grid;
	align-items: center;
	min-height: inherit;
	padding-block: 85px;
}

.page-hero-copy {
	max-width: 850px;
}

.page-hero h1,
.dashboard-hero h1,
.lesson-header h1 {
	font-size: clamp(3.8rem, 7vw, 7rem);
}

.page-hero-copy > p:last-child,
.dashboard-hero-inner > div > p:last-child {
	max-width: 680px;
	margin: 27px 0 0;
	color: rgba(255, 255, 255, 0.74);
}

.catalog-heading {
	max-width: 800px;
}

.course-hero {
	position: relative;
	isolation: isolate;
	min-height: 610px;
	background: var(--ink) var(--course-image) center / cover no-repeat;
	color: var(--white);
}

.course-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(9, 10, 9, 0.97) 0%, rgba(9, 10, 9, 0.84) 48%, rgba(9, 10, 9, 0.25) 100%);
}

.course-hero-inner {
	display: grid;
	align-items: center;
	min-height: inherit;
	padding-block: 90px;
}

.course-hero-copy {
	max-width: 780px;
}

.course-hero h1 {
	font-size: clamp(3.8rem, 7vw, 7rem);
}

.course-hero-copy > p:not(.eyebrow) {
	max-width: 680px;
	margin: 27px 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.08rem;
}

.course-layout,
.lesson-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: clamp(55px, 8vw, 100px);
}

.course-content > p,
.course-content > ul,
.course-content > ol {
	max-width: 760px;
}

.course-content > p:first-of-type {
	font-family: var(--display);
	font-size: 1.38rem;
	line-height: 1.45;
}

.course-content h2,
.lesson-content h2 {
	margin: 1.15em 0 0.4em;
	font-size: clamp(2.4rem, 4vw, 4rem);
}

.curriculum-section {
	margin-top: 80px;
}

.curriculum-list {
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--ink);
}

.curriculum-list li {
	display: grid;
	grid-template-columns: 50px 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 23px 0;
	border-bottom: 1px solid var(--line);
}

.lesson-number {
	font-family: var(--display);
	font-size: 1.2rem;
}

.curriculum-list strong {
	font-family: var(--display);
	font-size: 1.25rem;
	font-weight: 400;
}

.curriculum-list p {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 0.8rem;
}

.curriculum-list a,
.lesson-lock {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.curriculum-list .is-complete .lesson-number::after {
	content: ' ✓';
	color: var(--success);
}

.enrollment-card,
.lesson-status-card {
	position: sticky;
	top: 28px;
	padding: 34px;
	border: 1px solid var(--ink);
	background: var(--ivory);
}

.enrollment-card h2,
.lesson-status-card h2 {
	font-size: 2.35rem;
}

.enrollment-card > p:not(.card-kicker),
.lesson-status-card > p:not(.card-kicker) {
	margin: 17px 0 25px;
	color: var(--muted);
	font-size: 0.86rem;
}

.centered-link {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.progress-ring {
	position: relative;
	display: grid;
	place-items: center;
	width: 122px;
	height: 122px;
	margin: 0 auto 28px;
	border-radius: 50%;
	background: conic-gradient(var(--forest) calc(var(--progress) * 1%), var(--stone-light) 0);
}

.progress-ring::before {
	content: '';
	position: absolute;
	width: 94px;
	height: 94px;
	border-radius: 50%;
	background: var(--ivory);
}

.progress-ring span {
	position: relative;
	z-index: 1;
	font-family: var(--display);
	font-size: 1.55rem;
}

.course-quiz {
	margin-top: 80px;
	padding-top: 65px;
	border-top: 1px solid var(--ink);
}

.course-quiz.is-locked {
	opacity: 0.78;
}

.quiz-form fieldset {
	margin: 32px 0;
	padding: 28px;
	border: 1px solid var(--line);
}

.quiz-form legend {
	display: flex;
	gap: 15px;
	max-width: 90%;
	padding: 0 8px;
	font-family: var(--display);
	font-size: 1.35rem;
}

.quiz-form legend span {
	color: var(--sage);
}

.quiz-form label {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 10px;
	cursor: pointer;
}

.quiz-form label:hover {
	background: var(--ivory);
}

.quiz-form input {
	margin-top: 6px;
}

.lesson-header-inner,
.dashboard-hero-inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	min-height: 350px;
	padding-block: 75px;
}

.lesson-header h1 {
	max-width: 900px;
	font-size: clamp(3.1rem, 6vw, 5.8rem);
}

.light-link {
	color: var(--white);
}

.lesson-player-section {
	padding-block: 50px;
	background: #090a09;
}

.lesson-player {
	position: relative;
	max-width: 1100px;
	margin-inline: auto;
	background: #000;
}

.lesson-video {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
}

.video-placeholder {
	display: grid;
	place-items: center;
	min-height: 560px;
	padding: 50px;
	background: linear-gradient(rgba(15, 17, 15, 0.7), rgba(15, 17, 15, 0.88)), url('assets/images/academy-hero.png') center / cover;
	color: var(--white);
	text-align: center;
}

.video-placeholder img {
	margin: 0 auto 22px;
	filter: invert(1);
}

.video-placeholder h2 {
	font-size: 2.7rem;
}

.video-placeholder p {
	max-width: 580px;
	margin: 14px auto 0;
	color: rgba(255, 255, 255, 0.68);
}

.lesson-controls {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 70px;
	padding: 12px 16px;
	background: var(--ink-soft);
	color: var(--white);
}

.video-control {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: transparent;
	color: var(--white);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
}

.video-control:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.08);
}

.video-time {
	margin: 0 12px;
	font-variant-numeric: tabular-nums;
	font-size: 0.75rem;
}

.fullscreen-control {
	margin-left: auto;
}

.player-note {
	max-width: 1100px;
	margin: 13px auto 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.72rem;
}

.lesson-content {
	max-width: 780px;
}

.lesson-content > p:first-of-type {
	font-family: var(--display);
	font-size: 1.35rem;
}

.lesson-navigation {
	border-top: 1px solid var(--line);
	background: var(--ivory);
}

.lesson-navigation-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 135px;
}

.lesson-navigation a {
	display: grid;
	align-content: center;
	padding: 25px 0;
	text-decoration: none;
}

.lesson-navigation .next-lesson {
	padding-left: 30px;
	border-left: 1px solid var(--line);
	text-align: right;
}

.lesson-navigation a span {
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lesson-navigation a strong {
	font-family: var(--display);
	font-size: 1.25rem;
	font-weight: 400;
}

.locked-lesson,
.auth-required,
.empty-dashboard {
	max-width: 760px;
	padding: 55px;
	border: 1px solid var(--ink);
	background: var(--paper);
	text-align: center;
}

.locked-lesson,
.auth-required,
.empty-dashboard {
	margin-inline: auto;
}

.locked-lesson h2,
.auth-required h2,
.empty-dashboard h2 {
	font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.locked-lesson > p,
.auth-required > p,
.empty-dashboard > p {
	max-width: 580px;
	margin: 20px auto;
	color: var(--muted);
}

.locked-lesson .hero-actions,
.auth-required .hero-actions {
	justify-content: center;
}

.dashboard-courses .course-grid {
	margin-top: 45px;
}

.account-summary {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 70px;
}

.account-summary dl {
	margin: 0;
	border-top: 1px solid var(--ink);
}

.account-summary dl div {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

.account-summary dt {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.account-summary dd {
	margin: 0;
}

.auth-page {
	background: var(--paper);
}

.auth-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
	min-height: 760px;
}

.reverse-auth .auth-image {
	order: 2;
}

.auth-image {
	min-height: 760px;
	background: linear-gradient(rgba(24, 29, 25, 0.12), rgba(24, 29, 25, 0.3)), url('assets/images/course-gothic-geometry.png') center / cover no-repeat;
	filter: grayscale(0.85) sepia(0.1);
}

.signup-image {
	background-image: linear-gradient(rgba(24, 29, 25, 0.13), rgba(24, 29, 25, 0.28)), url('assets/images/course-preservation.png');
}

.forgot-image {
	background-image: linear-gradient(rgba(24, 29, 25, 0.18), rgba(24, 29, 25, 0.35)), url('assets/images/academy-hero.png');
}

.auth-form-column {
	display: grid;
	place-items: center;
	padding: 65px 50px;
	background: var(--ivory);
}

.auth-form-inner {
	width: min(100%, 520px);
}

.auth-form-inner h1 {
	font-size: clamp(3.4rem, 5vw, 5.5rem);
}

.auth-form-inner > p:not(.eyebrow):not(.form-switch) {
	margin: 20px 0 30px;
	color: var(--muted);
}

.academy-form {
	margin-top: 30px;
}

.academy-form > p,
.form-two-column > p,
.dayzy-contact-form .dayzy-form-field,
.dayzy-contact-form .dayzy-form-check {
	display: grid;
	gap: 7px;
}

.academy-form label,
.dayzy-contact-form .dayzy-form-field > span,
.dayzy-contact-form .dayzy-form-check > span {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.academy-form input[type='text'],
.academy-form input[type='email'],
.academy-form input[type='password'],
.dayzy-contact-form input,
.dayzy-contact-form select,
.dayzy-contact-form textarea {
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 0;
	background: var(--paper);
	color: var(--ink);
}

.academy-form input:focus,
.dayzy-contact-form input:focus,
.dayzy-contact-form select:focus,
.dayzy-contact-form textarea:focus {
	border-color: var(--forest);
	outline: 2px solid rgba(39, 68, 50, 0.17);
}

.form-two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.academy-form .form-check {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 0.78rem;
}

.form-check label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: inherit;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.form-consent {
	font-size: 0.75rem;
}

.form-switch {
	margin: 24px 0 0;
	font-size: 0.82rem;
	text-align: center;
}

.form-notice {
	margin: 22px 0;
	padding: 14px 16px;
	border-left: 4px solid;
	font-size: 0.84rem;
}

.form-notice-error {
	border-color: var(--error);
	background: #f8e8e5;
	color: #6f271f;
}

.form-notice-success {
	border-color: var(--success);
	background: #e5f1e9;
	color: #18442b;
}

.contact-page {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 780px;
}

.contact-visual {
	display: grid;
	align-items: start;
	padding-block: 90px;
	background: linear-gradient(rgba(245, 241, 229, 0.35), rgba(245, 241, 229, 0.55)), url('assets/images/course-accessibility.png') center / cover no-repeat;
}

.contact-visual .site-shell {
	width: min(560px, calc(100% - 70px));
}

.contact-visual h1 {
	font-size: clamp(4rem, 7vw, 7rem);
}

.contact-visual p:last-child {
	max-width: 520px;
	margin-top: 24px;
}

.contact-form-area {
	display: grid;
	place-items: center;
	padding: 80px clamp(35px, 6vw, 90px);
	background: var(--ivory);
}

.contact-form-inner {
	width: min(100%, 600px);
}

.dayzy-contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 17px;
	margin-top: 32px;
}

.dayzy-contact-form .dayzy-form-field:has(textarea),
.dayzy-contact-form .dayzy-form-check,
.dayzy-contact-form button,
.dayzy-contact-form .dayzy-form-message,
.dayzy-honeypot {
	grid-column: 1 / -1;
}

.paa-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.dayzy-contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.dayzy-contact-form button {
	min-height: 52px;
	border: 0;
	background: var(--forest);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.dayzy-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.entry-content {
	width: var(--narrow);
	margin-inline: auto;
}

.entry-content > * + * {
	margin-top: 1.5em;
}

.entry-content h2 {
	font-size: clamp(2.5rem, 4vw, 4rem);
}

.entry-content h3 {
	font-size: 2rem;
}

.entry-content a {
	color: var(--forest);
}

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

.archive-card {
	background: var(--paper);
	box-shadow: var(--shadow);
}

.archive-card > div {
	padding: 30px;
}

.archive-card h2 {
	font-size: 2.2rem;
}

.archive-card h2 a {
	text-decoration: none;
}

.archive-card p:not(.post-meta) {
	color: var(--muted);
}

.not-found-section {
	display: grid;
	align-items: center;
	min-height: 680px;
	background: linear-gradient(90deg, rgba(9, 10, 9, 0.97), rgba(9, 10, 9, 0.53)), url('assets/images/course-preservation.png') center / cover;
	color: var(--white);
}

.not-found-inner {
	padding-block: 80px;
}

.not-found-inner h1 {
	font-size: clamp(4rem, 8vw, 8rem);
}

.not-found-inner > p:last-of-type {
	max-width: 620px;
	margin: 25px 0 0;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer {
	background: #0c0d0b;
	color: rgba(255, 255, 255, 0.64);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.7fr 0.8fr 1.1fr;
	gap: 50px;
	padding-block: 78px;
}

.site-footer h2 {
	margin: 0 0 22px;
	color: var(--white);
	font-size: 1.35rem;
	letter-spacing: 0;
}

.site-footer p {
	font-size: 0.84rem;
}

.site-footer .academy-brand-link {
	margin-bottom: 20px;
	color: var(--white);
}

.site-footer .academy-brand-link img {
	filter: invert(1);
}

.footer-menu li + li {
	margin-top: 9px;
}

.footer-menu a,
.site-footer .text-link {
	font-size: 0.76rem;
	text-decoration: none;
}

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

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-block: 20px;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.7rem;
}

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

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 8px;
	border: 1px solid var(--line);
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--ink);
	color: var(--white);
}

@media (max-width: 1080px) {
	.header-inner {
		grid-template-columns: minmax(210px, 1fr) auto;
	}

	.header-account {
		display: none;
	}

	.primary-menu {
		gap: 20px;
	}

	.course-card {
		grid-template-columns: 1fr;
	}

	.course-card-image {
		min-height: 240px;
	}

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

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

@media (max-width: 980px) {
	.header-inner {
		grid-template-columns: 1fr auto;
		min-height: 92px;
	}

	.paa-js .site-menu-toggle {
		display: inline-flex;
	}

	.primary-navigation {
		position: static;
		grid-column: 1 / -1;
		display: block;
		width: 100vw;
		margin-left: calc((100vw - var(--shell)) / -2);
		padding: 22px max(24px, calc((100vw - 1180px) / 2));
		background: var(--ink);
		color: var(--white);
	}

	.paa-js .primary-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		width: auto;
		max-height: calc(100vh - 128px);
		margin-left: 0;
		overflow-y: auto;
	}

	.paa-js .menu-open .primary-navigation {
		display: block;
	}

	.primary-menu {
		display: block;
	}

	.primary-menu a {
		padding: 14px 6px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.primary-menu .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 0 20px;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-menu a:hover,
	.primary-menu .current-menu-item > a,
	.primary-menu .current_page_item > a {
		color: var(--stone-light);
	}

	.academy-hero {
		min-height: 650px;
	}

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

	.course-grid,
	.story-grid,
	.split-heading,
	.course-layout,
	.lesson-layout,
	.account-summary {
		grid-template-columns: 1fr;
	}

	.story-grid .arch-image-frame {
		max-width: 760px;
	}

	.split-heading {
		gap: 24px;
	}

	.enrollment-card,
	.lesson-status-card {
		position: static;
	}

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

	.auth-image,
	.reverse-auth .auth-image {
		order: 0;
		min-height: 360px;
	}

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

	.contact-visual {
		min-height: 520px;
	}

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

@media (max-width: 700px) {
	:root {
		--shell: min(100% - 30px, 1180px);
		--narrow: min(100% - 30px, 780px);
	}

	body {
		font-size: 16px;
	}

	.ribbon-inner {
		justify-content: center;
		min-height: 34px;
		text-align: center;
	}

	.ribbon-inner > p:first-child {
		display: none;
	}

	.header-inner {
		min-height: 82px;
	}

	.academy-brand-link img {
		width: 52px;
		height: 52px;
	}

	.academy-brand-link strong {
		font-size: 1.13rem;
	}

	.academy-brand-link small {
		font-size: 0.58rem;
	}

	.academy-hero {
		min-height: 620px;
		background-position: 58% 42%;
	}

	.academy-hero::before {
		background: linear-gradient(90deg, rgba(10, 12, 10, 0.94), rgba(10, 12, 10, 0.63));
	}

	.academy-hero-inner {
		align-items: end;
		padding-block: 70px;
	}

	.hero-copy h1 {
		font-size: clamp(3.25rem, 16vw, 5rem);
	}

	.hero-lead {
		font-size: 1rem;
	}

	.hero-actions {
		display: grid;
	}

	.hero-actions .button {
		width: 100%;
	}

	.proof-grid,
	.course-grid,
	.process-grid,
	.value-grid,
	.archive-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.proof-grid > div,
	.proof-grid > div:first-child {
		min-height: 90px;
		border-right: 1px solid rgba(255, 255, 255, 0.16);
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
		border-left: 1px solid rgba(255, 255, 255, 0.16);
	}

	.section {
		padding-block: 76px;
	}

	.section-heading h2,
	.story-copy h2,
	.course-content h2,
	.lesson-content h2,
	.auth-required h2,
	.empty-dashboard h2,
	.account-summary h2,
	.contact-form-inner h2 {
		font-size: clamp(2.65rem, 13vw, 4rem);
	}

	.course-card {
		min-height: 0;
	}

	.course-card-body {
		padding: 27px;
	}

	.arch-image-frame {
		padding: 10px 10px 50px;
	}

	.process-grid article,
	.process-grid article:first-child,
	.value-grid article,
	.value-grid article:first-child {
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
		border-left: 1px solid var(--line);
	}

	.section-ink .process-grid article,
	.section-ink .process-grid article:first-child {
		border-color: rgba(255, 255, 255, 0.2);
	}

	.process-grid article > span,
	.value-grid article > span {
		margin-bottom: 24px;
	}

	.testimonial-inner {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.quote-mark {
		font-size: 5.5rem;
	}

	.cta-inner {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.cta-inner .button {
		width: 100%;
	}

	.page-hero,
	.course-hero {
		min-height: 470px;
	}

	.page-hero h1,
	.course-hero h1,
	.dashboard-hero h1,
	.lesson-header h1 {
		font-size: clamp(3rem, 14vw, 4.6rem);
	}

	.curriculum-list li {
		grid-template-columns: 40px 1fr;
	}

	.curriculum-list li > a,
	.curriculum-list .lesson-lock {
		grid-column: 2;
	}

	.quiz-form fieldset {
		padding: 20px 14px;
	}

	.lesson-header-inner,
	.dashboard-hero-inner {
		display: grid;
		align-content: end;
		min-height: 310px;
		padding-block: 55px;
	}

	.video-placeholder {
		min-height: 320px;
		padding: 30px 20px;
	}

	.lesson-controls {
		flex-wrap: wrap;
	}

	.video-time {
		order: 3;
		width: 100%;
		margin: 4px 0 0;
		text-align: center;
	}

	.lesson-navigation-inner {
		grid-template-columns: 1fr;
	}

	.lesson-navigation .next-lesson {
		padding-left: 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.locked-lesson,
	.auth-required,
	.empty-dashboard {
		padding: 34px 22px;
	}

	.account-summary dl div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.auth-form-column {
		padding: 55px 20px;
	}

	.auth-image {
		min-height: 260px;
	}

	.form-two-column,
	.dayzy-contact-form {
		grid-template-columns: 1fr;
	}

	.dayzy-contact-form .dayzy-form-field,
	.dayzy-contact-form .dayzy-form-check,
	.dayzy-contact-form button,
	.dayzy-contact-form .dayzy-form-message {
		grid-column: auto;
	}

	.form-check {
		align-items: flex-start !important;
		flex-direction: column;
	}

	.contact-visual {
		min-height: 430px;
		padding-block: 55px;
	}

	.contact-form-area {
		padding: 60px 20px;
	}

	.footer-grid {
		gap: 36px;
		padding-block: 58px;
	}

	.footer-bottom-inner {
		flex-direction: column;
		gap: 6px;
	}
}

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

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

/* DAYZY EDITOR STYLES: BEGIN */
/* Desktop */
/* Tablet: max-width 1024px */
@media (max-width: 1024px) {
}
/* Mobile: max-width 767px */
@media (max-width: 767px) {
}
/* DAYZY EDITOR STYLES: END */
