/* ==========================================================================
   oglalapuppies. — "Red on Red" (Direction D)
   Every colour on this site is one of the tokens below. Contrast is value,
   not hue. Every image is a circle. Every streaming link is an icon button.
   ========================================================================== */

:root {
	--red-900: #1e0101;
	--red-800: #2a0202;
	--red-700: #3a0303;
	--red-600: #4a0101;
	--red-500: #6b0303;
	--red-400: #7a0505;
	--red-300: #8a0707;
	--coral:   #ff6a5a;
	--rose:    #ff9f94;
	--bone:    #ffd8d2;

	--nav-border:   rgba(255, 106, 90, 0.35);
	--card-border:  rgba(255, 159, 148, 0.30);
	--image-ring:   rgba(255, 159, 148, 0.45);
	--icon-border:  rgba(255, 216, 210, 0.35);
	--card-fill:    rgba(42, 2, 2, 0.34);
	--input-fill:   rgba(255, 216, 210, 0.07);

	--display: Raleway, "Helvetica Neue", Helvetica, sans-serif;
	--body: "Source Sans 3", "Source Sans Pro", Helvetica, sans-serif;
	--ease: cubic-bezier(.16, 1, .3, 1);
}

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

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
	margin: 0;
	padding: 0;
	background: var(--red-800);
	color: var(--bone);
	font-family: var(--body);
	font-size: 17px;
	font-weight: 300;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
	text-wrap: pretty;
	overflow-x: hidden;
}

a { color: var(--bone); text-decoration: none; }
a:hover { color: var(--coral); }
img { max-width: 100%; }
::selection { background: var(--coral); color: var(--red-800); }

:focus-visible {
	outline: 2px solid var(--coral);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: absolute;
	left: 50%;
	top: -100px;
	transform: translateX(-50%);
	z-index: 100;
	padding: 14px 24px;
	border-radius: 0 0 999px 999px;
	background: var(--coral);
	color: var(--red-800);
	font-family: var(--display);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .2em;
	text-transform: uppercase;
	transition: top .25s ease;
}
.skip-link:focus { top: 0; color: var(--red-800); }

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

/* --- type ---------------------------------------------------------------- */

.eyebrow {
	margin: 0 0 12px 0;
	font-family: var(--display);
	font-weight: 800;
	font-size: 11px;
	letter-spacing: .40em;
	text-transform: uppercase;
	color: var(--rose);
}
.eyebrow--coral { color: var(--coral); }

.page-title {
	margin: 0;
	font-family: var(--display);
	font-weight: 900;
	font-size: clamp(48px, 7.4vw, 124px);
	line-height: .90;
	letter-spacing: -.02em;
	text-transform: uppercase;
	animation: rise .9s var(--ease) both;
}
.page-title--lower { text-transform: lowercase; }

.section-title {
	margin: 0;
	font-family: var(--display);
	font-weight: 900;
	font-size: clamp(30px, 4vw, 58px);
	line-height: 1;
	text-transform: uppercase;
}

.sub-title {
	margin: 0 0 40px 0;
	text-align: center;
	font-family: var(--display);
	font-weight: 900;
	font-size: 22px;
	letter-spacing: .20em;
	text-transform: uppercase;
	color: var(--rose);
}
.sub-title--bone { color: var(--bone); }

.lead { font-size: 20px; }
.rule { height: 1px; width: 120px; margin: 20px auto 0 auto; background: var(--bone); transform-origin: center; }

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

.section { padding: 110px 32px; }
.section--head { padding: 150px 32px 70px 32px; text-align: center; }
.section--page { padding: 150px 32px 110px 32px; }
.shell { max-width: 1080px; margin: 0 auto; }
.shell--wide { max-width: 1180px; }
.shell--widest { max-width: 1240px; }
.shell--narrow { max-width: 780px; }
.centred { text-align: center; }

.band-700 { background: var(--red-700); }
.band-500 { background: var(--red-500); }
.band-300 { background: var(--red-300); }
.band-800 { background: var(--red-800); }
.band-story { background: linear-gradient(var(--red-600), var(--red-500)); }
.band-top   { background: radial-gradient(110% 70% at 50% 0%, var(--red-500), var(--red-800) 74%); }
.band-top-9a { background: radial-gradient(110% 70% at 50% 0%, var(--red-400), var(--red-800) 72%); }
.band-hero  { background: radial-gradient(120% 90% at 50% 12%, var(--red-400) 0%, var(--red-600) 48%, var(--red-800) 100%); }
.band-mni   { background: radial-gradient(90% 70% at 50% 45%, var(--red-300), var(--red-800) 78%); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head--tall { margin-bottom: 70px; }

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
}
.grid--video { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 36px; }
.grid--cards { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.grid--photos { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }

/* --- navigation ---------------------------------------------------------- */

.nav-wrap {
	position: fixed;
	top: 20px;
	left: 0;
	width: 100%;
	z-index: 60;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

.nav {
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	padding: 8px 10px;
	border-radius: 999px;
	background: rgba(42, 2, 2, .82);
	border: 1px solid var(--nav-border);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	font-family: var(--display);
	font-weight: 600;
	font-size: 11.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	max-width: calc(100% - 24px);
}

.nav__logo { display: flex; align-items: center; padding: 8px 14px; border-radius: 999px; }
.nav__logo img { height: 24px; width: auto; display: block; }

.nav__link {
	padding: 9px 15px;
	border-radius: 999px;
	white-space: nowrap;
	transition: background .25s ease, color .25s ease;
}
.nav__link:hover { background: rgba(255, 106, 90, .20); color: var(--bone); }
.nav__link--lower { text-transform: lowercase; letter-spacing: .13em; }
.nav__link[aria-current="page"] { background: rgba(255, 106, 90, .20); color: var(--coral); }

.nav__cta {
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--coral);
	color: var(--red-800);
	font-weight: 800;
	white-space: nowrap;
	transition: background .25s ease;
}
.nav__cta:hover { background: var(--bone); color: var(--red-800); }

/* mobile: logo + Menu + Contact stay in the bar, the rest moves to a sheet */
.nav__toggle {
	display: none;
	align-items: center;
	gap: 9px;
	padding: 10px 18px;
	border: 1px solid var(--icon-border);
	border-radius: 999px;
	background: none;
	color: var(--bone);
	font: inherit;
	letter-spacing: .18em;
	text-transform: uppercase;
	cursor: pointer;
}
.nav__toggle-bars { display: block; width: 15px; height: 9px; position: relative; }
.nav__toggle-bars::before,
.nav__toggle-bars::after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	height: 1.5px;
	background: var(--bone);
	transition: transform .25s ease;
}
.nav__toggle-bars::before { top: 0; }
.nav__toggle-bars::after { bottom: 0; }
[aria-expanded="true"] .nav__toggle-bars::before { transform: translateY(3.75px) rotate(45deg); }
[aria-expanded="true"] .nav__toggle-bars::after { transform: translateY(-3.75px) rotate(-45deg); }

.sheet-scrim {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(30, 1, 1, .72);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}
.sheet-scrim.is-open { opacity: 1; pointer-events: auto; }

.sheet {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 80;
	padding: 26px 22px calc(26px + env(safe-area-inset-bottom));
	background: var(--red-900);
	border-top: 1px solid var(--nav-border);
	border-radius: 22px 22px 0 0;
	transform: translateY(105%);
	transition: transform .4s var(--ease);
	visibility: hidden;
}
.sheet.is-open { transform: none; visibility: visible; }
.sheet__grip { width: 44px; height: 4px; margin: 0 auto 22px auto; border-radius: 999px; background: var(--card-border); }
.sheet__links { display: flex; flex-direction: column; gap: 4px; }
.sheet__links a {
	display: block;
	padding: 15px 18px;
	border-radius: 999px;
	font-family: var(--display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .18em;
	text-transform: uppercase;
	transition: background .25s ease;
}
.sheet__links a:hover,
.sheet__links a[aria-current="page"] { background: rgba(255, 106, 90, .16); }
.sheet__links a[aria-current="page"] { color: var(--coral); }
.sheet__links .is-lower { text-transform: lowercase; letter-spacing: .06em; font-size: 15px; }

@media (max-width: 900px) {
	.nav__link { display: none; }
	.nav__toggle { display: inline-flex; }
}

/* --- hero record --------------------------------------------------------- */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 150px 32px 90px 32px;
}

.record { position: relative; width: min(60vh, 420px, 64vw); aspect-ratio: 1; margin-bottom: 46px; }
.record__ring { position: absolute; border-radius: 50%; animation: ring 5s ease-in-out infinite; }
.record__ring--1 { inset: -9%; border: 1px solid var(--coral); }
.record__ring--2 { inset: -20%; border: 1px solid rgba(255, 106, 90, .4); animation-duration: 6.5s; animation-delay: .4s; }
.record__disc { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; animation: spin 46s linear infinite; }
.record__disc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.record__shadow {
	position: absolute; inset: 0; border-radius: 50%;
	box-shadow: inset 0 0 90px 20px rgba(42, 2, 2, .6);
	pointer-events: none;
}

.hero__title {
	margin: 0 0 26px 0;
	font-family: var(--display);
	font-weight: 900;
	font-size: clamp(58px, 9vw, 150px);
	line-height: .86;
	letter-spacing: -.02em;
	text-transform: lowercase;
	animation: rise 1s var(--ease) .1s both;
}
.hero__title--upper { text-transform: uppercase; }
.hero__lead { margin: 0 0 34px 0; max-width: 620px; font-size: 20px; animation: rise .9s var(--ease) .3s both; }
.hero .eyebrow { animation: fade .8s both; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; animation: rise .9s var(--ease) .45s both; }

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

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 26px;
	border-radius: 999px;
	border: 0;
	font-family: var(--display);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn--solid { background: var(--coral); color: var(--red-800); }
.btn--solid:hover { color: var(--red-800); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255, 106, 90, .35); }
.btn--ghost { border: 1.5px solid rgba(255, 216, 210, .4); color: var(--bone); }
.btn--ghost:hover { background: rgba(255, 216, 210, .12); color: var(--bone); transform: translateY(-3px); }
.btn--wide { padding: 16px 30px; letter-spacing: .20em; }
.btn .i { height: 15px; width: 17px; }

/* brand marks — inline sprite, see assets/icons.svg */
.i { height: 1em; width: 1.15em; fill: currentColor; display: block; flex: 0 0 auto; }
.i--footer { height: 17px; width: 19px; flex: 0 0 19px; color: var(--rose); }

/* the platform icon button — no streaming link is ever plain text */
.icons { display: flex; gap: 8px; }
.icons--centred { justify-content: center; }

.icon-btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--icon-border);
	color: var(--bone);
	transition: background .25s ease, color .25s ease, transform .25s ease;
}
.icon-btn:hover { background: var(--coral); color: var(--red-800); transform: translateY(-3px); }
.icon-btn .i { height: 17px; width: 20px; }
.icon-btn--sm { width: 44px; height: 44px; }
.icon-btn--xs { width: 40px; height: 40px; border-color: rgba(255, 216, 210, .3); }

/* --- release cards ------------------------------------------------------- */

.release { text-align: center; }
.release__art {
	width: min(300px, 80%);
	margin: 0 auto 26px auto;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid var(--image-ring);
	transition: transform .5s var(--ease), box-shadow .5s ease;
}
.release:hover .release__art { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(0, 0, 0, .4); }
.release__art--sm { width: min(280px, 78%); margin-bottom: 24px; border-color: rgba(255, 159, 148, .4); }
.release__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.release__title {
	margin: 0 0 8px 0;
	font-family: var(--display);
	font-weight: 900;
	font-size: 28px;
	text-transform: uppercase;
}
.release__title--lower { text-transform: lowercase; font-size: 26px; }
.release__blurb { margin: 0 0 20px 0; opacity: .8; }

/* --- single row ---------------------------------------------------------- */

.single-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	margin-bottom: 10px;
	border: 1px solid rgba(255, 159, 148, .26);
	border-radius: 999px;
	transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.single-row:hover { border-color: var(--rose); background: rgba(255, 106, 90, .1); transform: translateX(6px); }
.single-row__title {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(17px, 1.9vw, 24px);
	text-transform: lowercase;
}

/* --- chapter index ------------------------------------------------------- */

.chapters { position: relative; padding-left: 56px; }
.chapters__spine {
	position: absolute;
	left: 11px; top: 8px; bottom: 8px;
	width: 1px;
	background: var(--image-ring);
	transform-origin: top;
	animation: grow 1.4s var(--ease) both;
}
.chapter { position: relative; padding-bottom: 44px; }
.chapter__num {
	position: absolute;
	left: -51px; top: 14px;
	width: 23px; height: 23px;
	border-radius: 50%;
	border: 1px solid var(--rose);
	background: var(--red-600);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--display);
	font-weight: 800;
	font-size: 9px;
	color: var(--rose);
}
.chapter__card {
	border: 1px solid var(--card-border);
	border-radius: 14px;
	background: var(--card-fill);
	overflow: hidden;
	transition: border-color .3s ease;
}
.chapter__card:hover { border-color: var(--rose); }
.chapter__head {
	display: flex;
	align-items: center;
	gap: 22px;
	width: 100%;
	padding: 22px 26px;
	border: 0;
	background: none;
	color: var(--bone);
	font: inherit;
	text-align: left;
	cursor: pointer;
}
.chapter__cover {
	width: 74px; height: 74px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	flex: 0 0 auto;
	border: 1px solid var(--icon-border);
}
.chapter__meta { flex: 1; }
.chapter__title {
	display: block;
	font-family: var(--display);
	font-weight: 900;
	font-size: clamp(22px, 2.6vw, 34px);
	text-transform: lowercase;
	line-height: 1.05;
}
.chapter__tag { display: block; margin-top: 6px; font-size: 15.5px; opacity: .8; }
.chapter__cta {
	flex: 0 0 auto;
	font-family: var(--display);
	font-weight: 800;
	font-size: 10.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 216, 210, .4);
	border-radius: 999px;
	padding: 10px 18px;
	white-space: nowrap;
}
.chapter__cta::after { content: "Read"; }
[aria-expanded="true"] .chapter__cta::after { content: "Close"; }
.chapter__body { padding: 0 26px 26px 122px; animation: fade .5s both; }
.chapter__body[hidden] { display: none; }
.chapter__body p { margin: 0 0 22px 0; opacity: .9; }

/* --- coral callout ------------------------------------------------------- */

.callout { padding: 96px 32px; background: var(--coral); color: var(--red-800); }
.callout h2 {
	margin: 0;
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(21px, 2.6vw, 34px);
	line-height: 1.38;
}
.callout a { color: var(--red-800); border-bottom: 2px solid rgba(42, 2, 2, .5); }
.callout a:hover { color: var(--red-800); border-bottom-color: var(--red-800); }

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

.video__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	overflow: hidden;
	background: var(--red-600);
	border: 1px solid rgba(255, 216, 210, .24);
}
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__title {
	margin: 18px 0 6px 0;
	font-family: var(--display);
	font-weight: 800;
	font-size: 17.5px;
	text-transform: lowercase;
}
.video__blurb { margin: 0 0 10px 0; font-size: 15px; opacity: .8; }
.video__link {
	font-family: var(--display);
	font-weight: 800;
	font-size: 10.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--coral);
	border-bottom: 1px solid rgba(255, 106, 90, .45);
}

/* --- portraits ----------------------------------------------------------- */

.portrait {
	width: min(340px, 70%);
	margin: 0 auto 50px auto;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid var(--image-ring);
	animation: fade 1.4s both;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.portrait--9a { width: min(360px, 74%); margin-bottom: 44px; }

/* three equal medallions — the 9a gallery */
.medallion { aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 1px solid var(--image-ring); }
.medallion img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }

/* --- prose / cards ------------------------------------------------------- */

.prose { max-width: 760px; margin: 0 auto; font-size: 18.5px; }
.prose p { margin: 0 0 22px 0; }
.prose .lead-para { font-size: 25px; font-weight: 400; line-height: 1.42; text-align: center; margin-bottom: 28px; }
.prose .hair { height: 1px; width: 90px; margin: 0 auto 32px auto; background: var(--rose); }
.signoff {
	margin: 0;
	padding-top: 28px;
	border-top: 1px solid var(--icon-border);
	text-align: center;
	font-family: var(--display);
	font-weight: 800;
	font-size: 13.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.9;
	color: var(--rose);
}
.signoff span { color: var(--bone); }

/* a single sentence worth pulling out — not an eyebrow, so not uppercased */
.highlight {
	max-width: 720px;
	margin: 0 auto 40px auto;
	padding: 22px 26px;
	border-top: 1px solid var(--card-border);
	border-bottom: 1px solid var(--card-border);
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(17px, 1.9vw, 21px);
	line-height: 1.5;
	color: var(--coral);
}

.card {
	border: 1px solid var(--card-border);
	border-radius: 14px;
	padding: 26px;
	background: rgba(42, 2, 2, .3);
}
.card h3 {
	margin: 0 0 16px 0;
	font-family: var(--display);
	font-weight: 900;
	font-size: 11px;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--rose);
}
.card p { margin: 0; font-size: 15.5px; line-height: 1.9; }
.card .year { color: var(--bone); font-weight: 600; }

.frame {
	border: 1px solid var(--card-border);
	border-radius: 18px;
	background: var(--card-fill);
	padding: 60px 40px;
}

.pill {
	display: inline-block;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1px solid rgba(255, 216, 210, .4);
	font-family: var(--display);
	font-weight: 800;
	font-size: 11.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
}

/* --- contact panel ------------------------------------------------------- */

.panel {
	display: flex;
	flex-direction: column;
	gap: 18px;
	text-align: left;
	border: 1px solid var(--card-border);
	border-radius: 18px;
	padding: 34px;
	background: var(--card-fill);
}
.panel label {
	display: block;
	margin-bottom: 9px;
	font-family: var(--display);
	font-weight: 800;
	font-size: 10.5px;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--rose);
}
.panel input,
.panel textarea {
	width: 100%;
	background: var(--input-fill);
	border: 1px solid rgba(255, 216, 210, .28);
	border-radius: 10px;
	color: var(--bone);
	font-family: inherit;
	font-size: 17px;
	outline: none;
	transition: border-color .25s ease;
}
.panel input { height: 54px; padding: 0 16px; }
.panel textarea { padding: 14px 16px; resize: vertical; line-height: 1.5; }
.panel input:focus,
.panel textarea:focus { border-color: var(--coral); }
.panel input:user-invalid,
.panel textarea:user-invalid { border-color: var(--coral); }
.panel button { align-self: flex-start; padding: 17px 32px; letter-spacing: .2em; }
.panel .hp { position: absolute; left: -9999px; }

.form-note { margin: 18px 0 0 0; font-size: 15px; }
.form-note--error { color: var(--coral); }

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

.footer {
	padding: 90px 32px 36px 32px;
	background: var(--red-900);
	border-top: 1px solid rgba(255, 159, 148, .25);
}
.footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 22px;
	margin-bottom: 52px;
}
.footer__brand img { width: 120px; display: block; }
.footer__brand p { margin: 0; max-width: 420px; font-size: 16px; opacity: .75; }
.footer__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 36px;
	margin-bottom: 48px;
}
.footer__cols h4 {
	margin: 0 0 18px 0;
	font-family: var(--display);
	font-weight: 900;
	font-size: 10.5px;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--rose);
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { display: flex; align-items: center; gap: 13px; transition: transform .25s ease; }
.footer__links a:hover { transform: translateX(6px); }
.footer__links a:hover .i--footer { color: var(--coral); }
.footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 159, 148, .2);
	font-size: 13.5px;
	opacity: .7;
}
.footer__legal a { border-bottom: 1px dotted rgba(255, 216, 210, .45); }

/* --- motion -------------------------------------------------------------- */

@keyframes rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ring { 0%, 100% { transform: scale(1); opacity: .35; } 50% { transform: scale(1.06); opacity: .12; } }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes line { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Scroll entrances. JS adds .in-view; without JS everything is visible. */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; }
.js .reveal.in-view { opacity: 1; animation: rise .9s var(--ease) both; }
.js .rule.reveal.in-view { animation: line .8s ease-out both; }
.js .chapters__spine.reveal.in-view { animation: grow 1.4s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.record__disc,
	.record__ring,
	.chapters__spine { animation: none !important; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.js .reveal { opacity: 1; }
}

/* --- responsive ---------------------------------------------------------- */

@media (max-width: 760px) {
	.section { padding: 80px 22px; }
	.section--head { padding: 130px 22px 50px 22px; }
	.section--page { padding: 130px 22px 80px 22px; }
	.hero { padding: 130px 22px 70px 22px; }
	.callout { padding: 70px 22px; }
	.footer { padding: 70px 22px 30px 22px; }

	.chapters { padding-left: 40px; }
	.chapters__spine { left: 5px; }
	.chapter__num { left: -45px; }
	.chapter__head { flex-wrap: wrap; gap: 16px; padding: 18px 18px; }
	.chapter__cover { width: 58px; height: 58px; }
	.chapter__meta { flex: 1 1 60%; }
	.chapter__cta { flex: 0 0 auto; }
	.chapter__body { padding: 0 18px 22px 18px; }

	.single-row { flex-direction: column; align-items: flex-start; gap: 14px; border-radius: 18px; }
	.single-row:hover { transform: none; }

	.grid, .grid--video { gap: 44px; }
	.footer__legal { justify-content: center; text-align: center; }
	.panel { padding: 24px; }
	.prose .lead-para { font-size: 21px; }
}
