:root {
	/* Odessa limestone + manuscript ink + copper — not SaaS navy/red */
	--ink: #1c1a17;
	--ink-soft: #5a554c;
	--paper: #e6e9e2;
	--paper-2: #dce3dc;
	--paper-deep: #d2d8cf;
	--line: rgba(28, 26, 23, 0.16);
	--brand: #2a4038;
	--brand-deep: #1c2c26;
	--accent: #9b3b28;
	--accent-soft: #c56a4a;
	--sea: #3f6a74;
	--lamp: #b0892e;
	--white: #f7f6f1;
	--font-display: "Cormorant Garamond", "Palatino Linotype", "Book Antiqua", Georgia, serif;
	--font-body: "Karla", "Avenir Next", "Segoe UI", sans-serif;
	--wrap: min(68rem, calc(100% - 2.4rem));
	--header-h: 4.5rem;
	--radius: 0.15rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--ink);
	background-color: var(--paper);
	background-image:
		radial-gradient(rgba(28, 26, 23, 0.035) 0.7px, transparent 0.7px),
		linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
	background-size: 3px 3px, auto;
}

a {
	color: var(--sea);
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.18em;
}

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

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 100;
	padding: 0.55rem 0.8rem;
	background: var(--ink);
	color: var(--white);
}

.skip-link:focus {
	left: 0.75rem;
	top: 0.75rem;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--paper);
	border-bottom: 2px solid var(--brand);
	box-shadow: inset 0 -4px 0 var(--paper-deep);
}

.site-header__inner {
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.35rem 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: inherit;
	text-decoration: none;
	min-width: 0;
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1.5px solid var(--brand);
	background: var(--brand);
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 600;
	font-style: italic;
	transform: rotate(-3deg);
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand__name {
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-weight: 600;
	font-style: italic;
	color: var(--brand);
	letter-spacing: 0.01em;
}

.brand__tag {
	font-size: 0.78rem;
	color: var(--ink-soft);
	letter-spacing: 0.02em;
}

.primary-nav {
	margin-left: auto;
}

.primary-nav .menu,
.footer-nav .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem 1.05rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav .menu {
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.15rem 0.95rem;
}

.primary-nav .menu > .menu-item {
	position: relative;
}

.primary-nav .menu > .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0.35em;
	height: 0.35em;
	margin-left: 0.35em;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-0.12em) rotate(45deg);
	vertical-align: middle;
}

.primary-nav .menu > .menu-item-has-children {
	padding-bottom: 0.65rem;
	margin-bottom: -0.65rem;
}

.primary-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 14rem;
	max-width: min(22rem, 80vw);
	margin: 0;
	padding: 0.45rem 0;
	list-style: none;
	background: var(--paper);
	border: 1.5px solid var(--brand-deep);
	box-shadow: 3px 3px 0 var(--brand-deep);
	z-index: 40;
}

.primary-nav .sub-menu .menu-item {
	display: block;
}

.primary-nav .sub-menu a {
	display: block;
	padding: 0.45rem 0.9rem;
	font-size: 0.88rem;
	line-height: 1.35;
	color: var(--ink);
	text-decoration: none;
	white-space: normal;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu a:focus-visible {
	background: var(--paper-2);
	color: var(--accent);
	text-decoration: none;
}

.primary-nav .menu > .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu > .menu-item-has-children:focus-within > .sub-menu,
.primary-nav .menu > .menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.primary-nav a,
.footer-nav a {
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav .current-menu-item > a {
	color: var(--accent);
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.28em;
}

.footer-nav .menu {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
}

.footer-nav .sub-menu {
	list-style: none;
	margin: 0.2rem 0 0.45rem 0.85rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.footer-nav .sub-menu a {
	font-size: 0.86rem;
	opacity: 0.92;
}

.header-cta {
	flex-shrink: 0;
	padding: 0.5rem 0.95rem;
	background: var(--accent);
	color: var(--white) !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.88rem;
	border: 1.5px solid var(--brand-deep);
	box-shadow: 2px 2px 0 var(--brand-deep);
}

.header-cta:hover {
	background: var(--brand);
	transform: translate(1px, 1px);
	box-shadow: 1px 1px 0 var(--brand-deep);
}

.nav-toggle {
	display: none;
	margin-left: auto;
	border: 1.5px solid var(--brand);
	background: var(--white);
	color: var(--ink);
	padding: 0.45rem 0.7rem;
	cursor: pointer;
	font-weight: 600;
}

.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: min(86vh, 42rem);
	display: flex;
	align-items: stretch;
	color: var(--white);
	background: var(--brand-deep);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 72% 28%;
	filter: saturate(0.88) contrast(1.05);
}

.hero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			105deg,
			rgba(28, 44, 38, 0.94) 0%,
			rgba(28, 44, 38, 0.82) 38%,
			rgba(28, 44, 38, 0.42) 68%,
			rgba(28, 44, 38, 0.55) 100%
		),
		linear-gradient(0deg, rgba(28, 44, 38, 0.35), transparent 42%);
	pointer-events: none;
}

.hero__stage {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: flex-end;
	padding: clamp(5rem, 13vh, 7.5rem) 0 clamp(3rem, 8vh, 4.75rem);
}

.hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.75fr);
	gap: 2rem 3rem;
	align-items: end;
	width: var(--wrap);
}

.hero__copy {
	max-width: 38rem;
}

.hero__brand {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(3.2rem, 10vw, 6rem);
	font-weight: 600;
	font-style: italic;
	line-height: 0.88;
	letter-spacing: -0.02em;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.hero__title {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	font-weight: 500;
	line-height: 1.22;
	max-width: 22ch;
}

.hero__lead {
	margin: 0 0 1.5rem;
	color: rgba(250, 248, 243, 0.84);
	font-size: clamp(1rem, 1.8vw, 1.12rem);
	max-width: 34rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 0.9rem;
}

.hero__aside {
	justify-self: end;
	max-width: 15rem;
	padding: 1rem 0 0.25rem;
	border-top: 1px solid rgba(250, 248, 243, 0.35);
	transform: rotate(1.2deg);
}

.hero__aside-kicker {
	margin: 0 0 0.55rem;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: rgba(250, 248, 243, 0.7);
}

.hero__aside-quote {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-style: italic;
	line-height: 1.2;
	color: #f0d27a;
}

.hero__aside-note {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(250, 248, 243, 0.78);
}

.button {
	display: inline-block;
	padding: 0.8rem 1.1rem;
	border: 1.5px solid transparent;
	background: var(--accent);
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.22);
}

.button:hover {
	background: var(--white);
	color: var(--brand-deep);
	border-color: var(--brand-deep);
}

.button--ghost {
	background: transparent;
	border-color: rgba(250, 248, 243, 0.65);
	color: var(--white);
	box-shadow: none;
}

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

.section--product .button--ghost,
.page-hero .button--ghost,
.entry-content .button--ghost {
	border-color: var(--brand);
	color: var(--brand);
}

.section--product .button--ghost:hover,
.page-hero .button--ghost:hover,
.entry-content .button--ghost:hover {
	background: var(--brand);
	color: var(--white);
}

.section {
	padding: clamp(2.8rem, 7vw, 4.6rem) 0;
}

.section--band {
	background: var(--brand);
	color: var(--white);
	position: relative;
}

.section--band::before {
	content: "";
	position: absolute;
	inset: 0.65rem;
	border: 1px solid rgba(250, 248, 243, 0.22);
	pointer-events: none;
}

.section--band .section__label {
	color: #e8c56a;
}

.section--band .section__text {
	color: rgba(250, 248, 243, 0.84);
}

.section--band .button {
	position: relative;
	z-index: 1;
}

.section__label {
	margin: 0 0 0.35rem;
	color: var(--accent);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: none;
}

.section__title {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3.6vw, 2.65rem);
	font-weight: 600;
	line-height: 1.12;
	color: inherit;
}

.section__text {
	margin: 0 0 1.25rem;
	max-width: 36rem;
	color: var(--ink-soft);
}

.course-list {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
}

.course-list__item {
	border: 0;
}

.course-list__link {
	display: grid;
	grid-template-columns: 2.5rem minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 0.85rem;
	row-gap: 0.2rem;
	padding: 0.95rem 1rem 0.95rem 0.85rem;
	color: inherit;
	text-decoration: none;
	border-left: 3px solid var(--accent);
	background: rgba(250, 248, 243, 0.55);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.course-list__link:hover {
	background: var(--white);
	border-left-color: var(--brand);
}

.course-list__index {
	grid-row: 1 / span 2;
	align-self: start;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.25rem;
	color: var(--ink-soft);
	padding-top: 0.1rem;
}

.course-list__title {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--brand);
}

.course-list__excerpt {
	display: block;
	color: var(--ink-soft);
	font-size: 0.96rem;
}

.band {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2.5rem 3.5rem;
}

.split > div:last-child {
	padding-top: 1.5rem;
}

.text-link {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.22em;
	color: var(--brand);
}

.text-link:hover {
	color: var(--accent);
}

.news-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 0.85rem;
	margin: 1rem 0 0;
}

.news-filters__link {
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
	border-bottom: 1.5px solid transparent;
	padding-bottom: 0.1rem;
}

.news-filters__link:hover,
.news-filters__link:focus-visible,
.news-filters__link.is-active {
	color: var(--accent);
	border-bottom-color: var(--accent);
}

.news-item__cat {
	color: var(--accent);
	text-decoration: none;
	font-weight: 700;
}

.news-item__cat:hover,
.news-item__cat:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.post-meta__sep {
	margin: 0 0.25rem;
	opacity: 0.55;
}

.news-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.35rem 1.5rem;
	margin-top: 1.4rem;
	align-items: stretch;
}

.news-list--page {
	padding: 2rem 0 3.5rem;
	margin-top: 0;
}

.news-item {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	height: 100%;
	margin: 0;
	background: #faf8f3;
	border: 1.5px solid var(--brand-deep);
	box-shadow: 3px 3px 0 var(--brand-deep);
}

.news-item__media {
	display: block;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--paper-deep);
	aspect-ratio: 16 / 10;
	border: 0;
	border-bottom: 1.5px solid var(--brand-deep);
	transform: none;
}

.news-item__media--empty {
	display: none;
}

.news-item:not(:has(.news-item__media:not(.news-item__media--empty))) .news-item__body,
.news-item--text-only .news-item__body {
	padding-top: 1.15rem;
}

.news-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.03);
	display: block;
}

.news-item__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.35rem;
	min-width: 0;
	padding: 1rem 1.15rem 1.2rem;
	background: #faf8f3;
}

.news-item__body .post-meta {
	margin: 0;
}

.news-item__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.28rem;
	font-weight: 600;
	line-height: 1.22;
	min-height: calc(1.22em * 2);
}

.news-item__title a {
	color: var(--brand);
	text-decoration: none;
}

.news-item__title a:hover,
.news-item__title a:focus-visible {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.news-item__excerpt {
	margin: 0.15rem 0 0;
	color: var(--ink-soft);
	font-size: 0.94rem;
	line-height: 1.45;
	flex: 1 1 auto;
}

.news-item__more {
	display: inline-block;
	margin-top: auto;
	padding-top: 0.75rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--brand);
	text-decoration: none;
}

.news-item__more:hover,
.news-item__more:focus-visible {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.news-item h2,
.news-item h3 {
	margin: 0;
}

.post-featured {
	margin: 0 0 1.5rem;
}

.post-featured img {
	width: 100%;
	height: auto;
	border: 1.5px solid var(--line);
}

.post-meta {
	margin: 0 0 0.35rem;
	color: var(--ink-soft);
	font-size: 0.86rem;
	font-style: italic;
}

.page-hero {
	padding: clamp(2.4rem, 6vh, 3.6rem) 0 1.35rem;
	background:
		linear-gradient(180deg, var(--paper-2), var(--paper));
	border-bottom: 2px solid var(--brand);
}

.page-hero h1 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 5vw, 3.1rem);
	font-weight: 600;
	font-style: italic;
	color: var(--brand);
	line-height: 1.08;
	max-width: 18ch;
}

.breadcrumbs {
	margin: 0 0 0.85rem;
	padding: 0.2rem 0;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.92rem;
	color: var(--ink-soft);
}

.breadcrumbs__item:not(:last-child)::after {
	content: "/";
	margin-left: 0.45rem;
	margin-right: 0.35rem;
	color: var(--lamp);
	font-weight: 600;
}

.breadcrumbs a {
	color: var(--brand);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	font-weight: 600;
}

.breadcrumbs a:hover {
	color: var(--accent);
}

.breadcrumbs [aria-current="page"] {
	color: var(--ink);
	font-weight: 500;
}

.entry-content {
	padding: 2rem 0 3.5rem;
	max-width: 44rem;
}

.entry-content--wide {
	max-width: 52rem;
}

.entry-content--panel {
	max-width: 44rem;
	margin: 0 auto 3.25rem;
	padding: 1.5rem 1.6rem 1.75rem;
	background: #faf8f3;
	border: 1.5px solid var(--brand-deep);
	box-shadow: 3px 3px 0 var(--brand-deep);
}

.entry-content.entry-content--panel {
	padding: 1.5rem 1.6rem 1.75rem;
}

.page-hero--product .product-kicker {
	margin: 0 0 0.45rem;
	display: inline-block;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--accent);
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
}

.page-hero--product .product-lead {
	margin: 0.85rem 0 0;
	max-width: 36rem;
	color: var(--ink-soft);
	font-size: 1.06rem;
}

.page-hero--product .hero__actions {
	margin-top: 1.25rem;
}

.section--product {
	padding-top: clamp(2.4rem, 5vh, 3.4rem);
	background:
		linear-gradient(115deg, rgba(63, 106, 116, 0.1), transparent 48%),
		var(--paper-2);
	border-bottom: 1px solid var(--line);
}

.product-band {
	display: grid;
	grid-template-columns: 1.25fr 0.9fr;
	gap: 2rem 3rem;
	align-items: start;
}

.product-band__free {
	margin: 0 0 0.25rem;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-style: italic;
	color: var(--accent);
	font-weight: 600;
}

.product-band__card {
	padding: 1.1rem 1.1rem 0.4rem;
	border: 1.5px solid var(--brand);
	background: rgba(250, 248, 243, 0.65);
	transform: rotate(0.6deg);
}

.product-band__card-title {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-style: italic;
	color: var(--brand);
}

.product-band__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-band__list li {
	position: relative;
	padding: 0.55rem 0 0.55rem 1rem;
	border-bottom: 1px dashed var(--line);
	color: var(--ink-soft);
}

.product-band__list li:last-child {
	border-bottom: 0;
}

.product-band__list li::before {
	content: "–";
	position: absolute;
	left: 0;
	top: 0.5rem;
	color: var(--accent);
	font-weight: 700;
}

.lp-product {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--brand);
}

.lp-product__badge {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--accent);
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
}

.lp-product__lead {
	margin: 0 0 1rem;
	font-size: 1.06rem;
	color: var(--ink-soft);
}

.lp-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
	gap: 0.75rem 1rem;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.lp-meta li {
	padding: 0.65rem 0;
	border-top: 1px solid var(--line);
	font-size: 0.98rem;
}

.lp-meta li span {
	display: block;
	margin-bottom: 0.2rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.95rem;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ink-soft);
}

.lp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.lp-toc {
	margin: 0 0 1.25rem;
	padding: 1rem 0;
	border-top: 1px dashed var(--line);
	border-bottom: 1px dashed var(--line);
}

.lp-toc__label {
	margin: 0 0 0.5rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.05rem;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ink-soft);
	font-weight: 600;
}

.lp-toc ol {
	margin: 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.35rem;
}

.lp-toc a {
	font-weight: 600;
	color: var(--brand);
	text-decoration: none;
}

.lp-toc a:hover {
	color: var(--accent);
	text-decoration: underline;
}

.lp-doc {
	background: rgba(250, 248, 243, 0.72);
	border: 1.5px solid var(--line);
	padding: clamp(1.25rem, 3vw, 2rem);
	margin-bottom: 1.75rem;
}

.lp-doc--student {
	border-top: 3px solid var(--sea);
}

.lp-doc--break {
	page-break-before: always;
}

.lp-lines {
	margin: 0.55rem 0;
	letter-spacing: 0.02em;
	color: var(--ink-soft);
}

.lp-doc__head {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--brand);
}

.lp-doc__brand {
	margin: 0 0 0.4rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	letter-spacing: 0;
	text-transform: none;
	color: var(--sea);
	font-weight: 600;
}

.lp-doc__head h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3.5vw, 2.15rem);
	font-weight: 600;
	color: var(--brand);
	line-height: 1.15;
}

.lp-doc__sub {
	margin: 0.45rem 0 0;
	color: var(--ink-soft);
}

.lp-block {
	margin: 0 0 1.75rem;
}

.lp-block h3 {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--brand);
}

.lp-block h4 {
	margin: 1.1rem 0 0.45rem;
	font-size: 1.05rem;
	color: var(--ink);
}

.lp-reading {
	font-size: 1rem;
}

.lp-check {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-check li {
	padding: 0.35rem 0;
	border-bottom: 1px dashed var(--line);
}

.lp-doc__foot {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.entry-content .legacy-media {
	margin: 0 0 1.5rem;
}

.entry-content .legacy-media img {
	width: 100%;
	height: auto;
	border: 1.5px solid var(--line);
}

.entry-content .nabir-banner {
	display: grid;
	gap: 0.35rem;
	padding: 1.75rem 1.5rem;
	border: 1.5px solid var(--line);
	background:
		linear-gradient(135deg, rgba(122, 58, 42, 0.08), transparent 55%),
		var(--paper-2);
}

.entry-content .nabir-banner__eyebrow {
	margin: 0;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lamp);
	font-weight: 700;
}

.entry-content .nabir-banner__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--brand);
}

.entry-content .nabir-banner__sub {
	margin: 0;
	font-size: 1.05rem;
	color: var(--ink);
}

.site-footer {
	border-top: 2px solid var(--lamp);
	background: var(--brand-deep);
	color: rgba(250, 248, 243, 0.86);
}

.site-footer a {
	color: #e8d9a8;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav .current-menu-item > a {
	color: #fff8e7;
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.28em;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 2rem;
	padding: 2.5rem 0;
}

.site-footer__brand {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.85rem;
	font-style: italic;
	font-weight: 600;
	color: var(--white);
}

.site-footer__copy {
	margin: 0.45rem 0 0;
	color: rgba(250, 248, 243, 0.7);
	font-size: 0.95rem;
}

.site-footer__label {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.05rem;
	letter-spacing: 0;
	text-transform: none;
	color: #e8c56a;
}

.reveal {
	animation: rise 0.55s ease both;
	animation-delay: var(--delay, 0s);
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(0.45rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.25rem 0 1.75rem;
	font-size: 0.98rem;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--line);
	padding: 0.65rem 0.75rem;
	text-align: left;
	vertical-align: top;
}

.entry-content th {
	background: var(--paper-2);
	color: var(--brand);
	font-weight: 700;
}

.entry-content figure {
	margin: 1.5rem 0;
}

.entry-content figcaption {
	margin-top: 0.45rem;
	color: var(--ink-soft);
	font-size: 0.9rem;
	font-style: italic;
}

.entry-content code {
	font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
	font-size: 0.92em;
	background: var(--paper-2);
	padding: 0.08em 0.28em;
}

.entry-content blockquote {
	margin: 1.25rem 0;
	padding: 0.85rem 1rem;
	border-left: 3px solid var(--accent);
	background: rgba(250, 248, 243, 0.65);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.12rem;
}

.entry-content .button {
	margin-top: 0.5rem;
}

@media (max-width: 900px) {
	.hero__layout,
	.news-list,
	.split,
	.site-footer__grid,
	.product-band {
		grid-template-columns: 1fr;
	}

	.hero__aside {
		justify-self: start;
		max-width: 20rem;
		transform: none;
	}

	.news-item:nth-child(even) {
		margin-top: 0;
	}

	.split > div:last-child {
		padding-top: 0;
	}

	.entry-content table {
		display: block;
		overflow-x: auto;
	}
}

@media (max-width: 820px) {
	.nav-toggle {
		display: inline-block;
	}

	.primary-nav {
		display: none;
		width: 100%;
		order: 4;
		margin-left: 0;
	}

	.site-header__inner.is-open .primary-nav {
		display: block;
		padding-bottom: 0.85rem;
	}

	.site-header__inner {
		flex-wrap: wrap;
	}

	.primary-nav .menu {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: stretch;
		gap: 0.55rem;
	}

	.primary-nav .menu > .menu-item-has-children {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.primary-nav .menu > .menu-item-has-children > a::after {
		transform: translateY(-0.05em) rotate(45deg);
	}

	.primary-nav .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		max-width: none;
		margin: 0.35rem 0 0.15rem 0.75rem;
		padding: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
	}

	.primary-nav .menu > .menu-item-has-children.is-open > .sub-menu,
	.primary-nav .menu > .menu-item-has-children:focus-within > .sub-menu {
		display: flex;
		flex-direction: column;
		gap: 0.35rem;
	}

	.primary-nav .menu > .menu-item-has-children:hover > .sub-menu {
		display: none;
	}

	.primary-nav .menu > .menu-item-has-children.is-open:hover > .sub-menu,
	.primary-nav .menu > .menu-item-has-children.is-open > .sub-menu {
		display: flex;
	}

	.primary-nav .sub-menu a {
		padding: 0.2rem 0;
	}

	.header-cta {
		margin-left: 0;
	}
}

@media (max-width: 560px) {
	.hero__actions .button {
		width: 100%;
		text-align: center;
	}

	.hero__media img {
		object-position: 78% 22%;
	}

	.course-list__link {
		grid-template-columns: 2rem minmax(0, 1fr);
	}
}

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

	html {
		scroll-behavior: auto;
	}
}

@media print {
	.site-header,
	.site-footer,
	.nav-toggle,
	.header-cta,
	.no-print,
	.page-hero .hero__actions,
	.lp-actions {
		display: none !important;
	}

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

	.page-hero {
		padding: 1rem 0;
		background: none;
		border: 0;
	}

	.entry-content,
	.entry-content--wide {
		max-width: none;
		padding: 0;
	}

	.lp-doc {
		border: 0;
		padding: 0;
		margin: 0 0 1.5rem;
		background: transparent;
	}

	.lp-doc--break {
		page-break-before: always;
	}

	.lp-toc {
		display: none !important;
	}

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