:root {
	--page-bg: #f2efe8;
	--page-bg-outer: #ebe5da;
	--surface: #fbf8f2;
	--surface-strong: #f6f0e5;
	--text: #1e1b17;
	--muted: #6b645b;
	--line: rgba(30, 27, 23, 0.12);
	--accent: #9a5b39;
	--accent-deep: #6f381d;
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-sm: 14px;
	--shadow-soft: 0 20px 60px rgba(30, 27, 23, 0.08);
	--font-display: "Inter", "Segoe UI", sans-serif;
	--font-body: "Inter", "Segoe UI", sans-serif;
	--hero-underlap: 136px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 36%), var(--page-bg);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.6;
}

body.single,
body.page:not(.is-homepage):not(.is-art-hub):not(.is-resource-hub) {
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.5), transparent 34%),
		var(--page-bg-outer);
}

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

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

.site-shell {
	min-height: 100vh;
}

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 40;
	padding: 0 20px;
	background:
		linear-gradient(90deg, rgba(14, 16, 18, 0.52), rgba(14, 16, 18, 0.72) 18%, rgba(14, 16, 18, 0.68) 78%, rgba(14, 16, 18, 0.44)),
		linear-gradient(to bottom, rgba(14, 16, 18, 0.62), rgba(14, 16, 18, 0.34), rgba(14, 16, 18, 0.06));
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

body.single .site-header,
body.page:not(.is-homepage):not(.is-art-hub):not(.is-resource-hub) .site-header {
	background: linear-gradient(to bottom, rgba(18, 20, 23, 0.72), rgba(18, 20, 23, 0.48), rgba(18, 20, 23, 0.18));
}

.site-header__surface {
	max-width: 1320px;
	margin: 0 auto;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-branding {
	max-width: 420px;
}

.site-title {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.62), 0 1px 2px rgba(0, 0, 0, 0.45);
}

.site-tagline {
	margin: 4px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.82rem;
	opacity: 1;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.58), 0 1px 2px rgba(0, 0, 0, 0.42);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.site-nav__panel {
	display: flex;
	align-items: center;
	gap: 18px;
}

.site-nav__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
}

.site-nav__toggle-line {
	display: block;
	width: 16px;
	height: 1.5px;
	background: currentColor;
	border-radius: 999px;
}

.site-nav__menu,
.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__menu > li {
	position: relative;
	list-style: none;
}

.site-nav__menu .sub-menu,
.site-nav__menu .children {
	display: none;
}

.site-nav__menu a,
.site-nav__utility {
	padding: 10px 0;
	font-size: 0.94rem;
	font-weight: 650;
	color: rgba(255, 255, 255, 0.98);
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.56), 0 1px 2px rgba(0, 0, 0, 0.38);
}

.site-nav__utility {
	padding-left: 18px;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.site-search {
	position: relative;
	display: flex;
	align-items: center;
}

.site-search__form {
	display: flex;
	align-items: center;
	gap: 0;
	width: 230px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	background: rgba(12, 14, 16, 0.24);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 34px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.site-search__input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 10px 14px;
	border: 0;
	background: transparent;
	color: #fff;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
}

.site-search__input::placeholder {
	color: rgba(255, 255, 255, 0.72);
}

.site-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	cursor: pointer;
}

.site-search__submit span {
	display: block;
	font-size: 1.1rem;
	line-height: 1;
}

.site-main {
	padding: 18px 20px 100px;
}

.site-main--front {
	padding-top: 0;
}

.hero,
.art-stage,
.section,
.site-footer__inner {
	max-width: 1320px;
	margin: 0 auto;
}

.hero__content,
.art-stage__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 520px;
	padding-top: 20px;
}

.eyebrow,
.content-card__eyebrow,
.hub-card__label {
	margin: 0 0 12px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.hero h1,
.art-stage h1,
.section-heading h1,
.section-heading h2,
.prose h1 {
	margin: 0;
	font-family: var(--font-display);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.hero h1,
.art-stage h1 {
	font-size: clamp(3.2rem, 5vw, 4.9rem);
	color: #fff;
	line-height: 1.02;
	max-width: 11ch;
}

.hero__lede,
.art-stage__text {
	max-width: 720px;
}

.hero__lede,
.art-stage__text p,
.content-card p,
.hub-card p,
.finder-callout p,
.prose {
	color: var(--muted);
	font-size: 1.03rem;
}

.hero .eyebrow {
	color: rgba(255, 255, 255, 0.66);
}

.hero__lede {
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.12rem;
	max-width: 34rem;
}

.hero {
	position: relative;
	margin-top: 0;
	margin-top: calc(-1 * var(--hero-underlap));
	padding-top: var(--hero-underlap);
	overflow: hidden;
	border-radius: 0 0 34px 34px;
	background:
		linear-gradient(90deg, rgba(8, 10, 12, 0.9) 0%, rgba(8, 10, 12, 0.56) 34%, rgba(8, 10, 12, 0.18) 58%, rgba(8, 10, 12, 0.08) 100%),
		var(--hero-image) center/cover;
	box-shadow: 0 28px 70px rgba(10, 12, 14, 0.18);
}

.hero__surface {
	position: relative;
	padding: 148px 34px 72px;
	min-height: 620px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 180ms ease, background-color 180ms ease;
}

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

.button--primary {
	background: #ef5b4f;
	color: #fff;
}

.button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: rgba(16, 18, 20, 0.22);
	color: #fff;
}

.section {
	padding: 18px 0 0;
}

.section--accent {
	padding: 36px;
	border-radius: 32px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(246, 240, 229, 0.86));
}

.section-card {
	padding: 18px 18px 24px;
	border: 1px solid rgba(30, 27, 23, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 12px 30px rgba(30, 27, 23, 0.06);
}

.section-card--narrow {
	max-width: 920px;
}

.related-writing {
	margin-top: 18px;
}

.explore-next {
	margin-top: 18px;
}

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

.explore-next__grid a {
	display: grid;
	gap: 8px;
	min-height: 132px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.58);
}

.explore-next__grid span {
	color: var(--accent-deep);
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.explore-next__grid strong {
	align-self: end;
	font-family: var(--font-display);
	font-size: 1.18rem;
	line-height: 1.12;
}

.section-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px 24px;
	margin-bottom: 28px;
}

.section-heading > :last-child:not(h1):not(h2):not(.eyebrow) {
	margin-left: auto;
}

.section-intro {
	width: 100%;
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 1.03rem;
	max-width: 42rem;
}

.section-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--accent-deep);
}

.section-link::after {
	content: '›';
	font-size: 1.1em;
	line-height: 1;
}

.breadcrumbs {
	max-width: 920px;
	margin: 18px auto 0;
	padding: 0 18px;
	color: var(--muted);
	font-size: 0.86rem;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.breadcrumbs li + li::before {
	content: '›';
	color: rgba(30, 27, 23, 0.36);
}

.breadcrumbs a {
	color: var(--accent-deep);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.18em;
}

.section-heading h2,
.section-heading h1,
.prose h1 {
	font-size: clamp(2rem, 4.4vw, 3.8rem);
}

.art-grid,
.content-grid,
.hub-grid {
	display: grid;
	gap: 24px;
}

.art-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 8px;
}

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

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

.art-card,
.content-card,
.hub-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}

.art-card__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
}

.art-card__media img,
.content-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.art-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(30, 27, 23, 0.48), rgba(30, 27, 23, 0.15));
	transition: opacity 220ms ease;
}

.art-card__caption {
	position: absolute;
	right: 20px;
	bottom: 18px;
	left: 20px;
	color: rgba(255, 255, 255, 0.82);
}

.art-card__caption h3 {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.18;
	font-weight: 650;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

.art-card:hover img,
.content-card:hover img {
	transform: scale(1.04);
}

.art-card:hover .art-card__overlay {
	opacity: 0.18;
}

.content-card__media {
	aspect-ratio: 1.35;
	overflow: hidden;
}

.content-card__body,
.hub-card {
	padding: 22px;
}

.content-card h3,
.hub-card h3,
.finder-callout h2 {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-size: 1.8rem;
	line-height: 1.05;
}

.art-stage {
	position: relative;
	overflow: hidden;
	padding-top: 132px;
	border-radius: 0 0 34px 34px;
	background:
		linear-gradient(90deg, rgba(8, 10, 12, 0.86) 0%, rgba(8, 10, 12, 0.52) 34%, rgba(8, 10, 12, 0.14) 100%),
	linear-gradient(135deg, rgba(112, 35, 20, 0.3), rgba(22, 25, 29, 0.4));
}

.art-hub-hero {
	max-width: 1320px;
	margin: 0 auto;
}

.resource-hub-hero {
	max-width: 1320px;
	margin: 0 auto;
}

.art-hub-hero__surface,
.resource-hub-hero__surface {
	position: relative;
	overflow: hidden;
	padding: 148px 34px 64px;
	border-radius: 0 0 34px 34px;
	background-position: center;
	background-size: cover;
	box-shadow: 0 28px 70px rgba(10, 12, 14, 0.18);
	min-height: 580px;
}

.art-hub-hero__content,
.resource-hub-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	max-width: 760px;
}

.art-hub-hero__content h1,
.resource-hub-hero__content h1 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(3rem, 5.2vw, 5.2rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: #fff;
	max-width: 10ch;
}

.resource-hub-hero__content h1 {
	max-width: 12ch;
}

.art-hub-hero .hero__actions,
.resource-hub-hero .hero__actions {
	gap: 10px;
}

.art-hub-hero .button,
.resource-hub-hero .button {
	padding: 12px 18px;
	white-space: nowrap;
}

@media (min-width: 761px) {
	.art-hub-hero .hero__actions,
	.resource-hub-hero .hero__actions {
		flex-wrap: nowrap;
	}
}

.resource-hub-statement .prose--hub {
	max-width: 900px;
}

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

.hub-route-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: var(--shadow-soft);
}

.hub-route-card__media {
	min-height: 240px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hub-route-card__body {
	padding: 22px;
}

.art-hub-styles {
	padding-top: 46px;
}

.art-hub-styles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.art-hub-style-card {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-soft);
	color: #fff;
	text-decoration: none;
}

.art-hub-style-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 320ms ease;
}

.art-hub-style-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(18, 16, 14, 0.72), rgba(18, 16, 14, 0.14) 62%),
		linear-gradient(135deg, rgba(0, 0, 0, 0.24), rgba(255, 255, 255, 0.06));
	transition: opacity 240ms ease;
}

.art-hub-style-card__title {
	position: absolute;
	right: 18px;
	bottom: 16px;
	left: 18px;
	z-index: 1;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 2rem);
	line-height: 1;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.art-hub-style-card:hover img,
.art-hub-style-card:focus-visible img {
	transform: scale(1.05);
}

.art-hub-style-card:hover .art-hub-style-card__overlay,
.art-hub-style-card:focus-visible .art-hub-style-card__overlay {
	opacity: 0.82;
}

.art-hub-styles__more {
	display: inline-flex;
	margin-top: 18px;
}

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

.art-card--hub .art-card__caption h3 {
	font-size: 1.14rem;
}

.prose--hub {
	max-width: none;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.prose--hub > * {
	max-width: 900px;
}

.art-stage__visual {
	position: relative;
	min-height: 480px;
	border-radius: 30px;
	overflow: hidden;
}

.art-stage__panel {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	animation: art-stage-fade 18s infinite;
	opacity: 0;
}

.art-stage__panel--one {
	background-image: linear-gradient(rgba(30, 27, 23, 0.14), rgba(30, 27, 23, 0.18)), url("https://images.unsplash.com/photo-1460661419201-fd4cecdf8a8b?auto=format&fit=crop&w=1200&q=80");
	animation-delay: 0s;
}

.art-stage__panel--two {
	background-image: linear-gradient(rgba(30, 27, 23, 0.14), rgba(30, 27, 23, 0.18)), url("https://images.unsplash.com/photo-1513364776144-60967b0f800f?auto=format&fit=crop&w=1200&q=80");
	animation-delay: 6s;
}

.art-stage__panel--three {
	background-image: linear-gradient(rgba(30, 27, 23, 0.14), rgba(30, 27, 23, 0.18)), url("https://images.unsplash.com/photo-1460661419201-fd4cecdf8a8b?auto=format&fit=crop&w=1200&q=80");
	animation-delay: 12s;
}

.finder-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.entry-hero {
	position: relative;
	max-width: 920px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 0;
	background: #121417;
	box-shadow: 0 28px 70px rgba(10, 12, 14, 0.18);
}

.entry-hero__media {
	position: relative;
	min-height: 440px;
}

.entry-hero__media--background {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.entry-hero__media img {
	width: 100%;
	height: 100%;
	min-height: 440px;
	object-fit: cover;
}

.entry-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 10, 12, 0.84) 0%, rgba(8, 10, 12, 0.48) 34%, rgba(8, 10, 12, 0.16) 60%, rgba(8, 10, 12, 0.12) 100%);
}

.entry-hero__content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	max-width: 620px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 134px 34px 34px;
}

.entry-hero--faa .entry-hero__content {
	justify-content: flex-end;
	padding: 34px 34px 42px;
}

.entry-hero--faa h1 {
	max-width: 12ch;
	text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.entry-hero--faa .eyebrow {
	color: rgba(255, 255, 255, 0.76);
}

.entry-hero .eyebrow {
	color: rgba(255, 255, 255, 0.66);
}

.entry-hero h1 {
	margin: 0;
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4.6vw, 4.4rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	max-width: 10ch;
	text-wrap: balance;
}

.entry-hero__title--compact {
	font-size: clamp(2.1rem, 3.8vw, 3.6rem);
}

.entry-hero__title--tight {
	font-size: clamp(1.55rem, 2.7vw, 2.5rem);
}

.entry-hero__title--ultra-tight {
	font-size: clamp(1.2rem, 2vw, 1.9rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.ar-faa-public-header {
	max-width: 840px;
	margin: 0 auto -132px;
	padding: 0 28px 28px;
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.ar-faa-public-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: var(--text);
	text-shadow: none;
}

.prose .ar-faa-public-artwork {
	margin-top: 0;
	position: relative;
	z-index: 1;
}

.prose .ar-wadm-hero .ar-wadm-public-title {
	display: block;
	margin: 14px 0 0;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.4vw, 2.1rem);
	line-height: 1.08;
	color: var(--text);
	text-align: center;
}

.prose {
	max-width: 920px;
	padding: 34px 0 42px;
	border-radius: 24px;
	background: rgba(251, 248, 242, 0.92);
	box-shadow: 0 16px 40px rgba(30, 27, 23, 0.06);
}

.entry-hero + .prose,
.entry-hero + .section-card,
.breadcrumbs + .prose,
.breadcrumbs + .section-card {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.prose > * {
	max-width: 840px;
	margin-right: auto;
	margin-left: auto;
}

.prose > .tag-row,
.prose > .featured-media,
.prose > .archive-description {
	max-width: 840px;
}

.prose a:not(.button):not(.art-card__link):not(.content-card):not(.hub-card):not(.hub-route-card) {
	color: var(--accent-deep);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.prose a:not(.button):not(.art-card__link):not(.content-card):not(.hub-card):not(.hub-route-card):hover,
.prose a:not(.button):not(.art-card__link):not(.content-card):not(.hub-card):not(.hub-route-card):focus-visible {
	color: var(--text);
	text-decoration-thickness: 0.12em;
}

.featured-media,
.archive-description,
.tag-row {
	margin-top: 22px;
}

.tag-row a {
	display: inline-block;
	margin: 0 10px 10px 0;
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
	font-size: 0.88rem;
}

.not-found-search {
	display: flex;
	gap: 12px;
	max-width: 840px;
	margin: 0 auto;
}

.not-found-search input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	font: inherit;
}

.site-footer {
	padding: 80px 20px 40px;
}

.site-edit-link {
	max-width: 1320px;
	margin: 18px auto 0;
	padding: 0 20px;
}

.pagination-wrap {
	margin-top: 28px;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
}

.pagination .page-numbers.current {
	background: rgba(30, 27, 23, 0.08);
	border-color: rgba(30, 27, 23, 0.14);
}

.site-edit-link a {
	display: inline-flex;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(30, 27, 23, 0.08);
	font-size: 0.92rem;
}

.site-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 0 0;
	border-top: 1px solid var(--line);
}

.site-footer__brand,
.site-footer__nav {
	flex: 1 1 0;
}

.site-footer__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.5rem;
}

.site-footer__text {
	margin-top: 6px;
	color: var(--muted);
}

.site-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.site-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	font-size: 0.84rem;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: 1320px;
	margin: 18px auto 0;
	padding-top: 18px;
	border-top: 1px solid rgba(30, 27, 23, 0.08);
}

.site-footer__copyright {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.site-footer__legal {
	display: flex;
	align-items: center;
	gap: 14px;
}

.site-footer__legal a {
	color: var(--muted);
	font-size: 0.92rem;
}

@keyframes art-stage-fade {
	0%,
	30% {
		opacity: 0;
	}
	10%,
	24% {
		opacity: 1;
	}
	34%,
	100% {
		opacity: 0;
	}
}

@media (max-width: 1100px) {
	.art-stage,
	.finder-callout,
	.site-header__inner,
	.site-footer__inner {
		grid-template-columns: 1fr;
		flex-direction: column;
	}

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

	.content-grid,
	.hub-grid,
	.hub-feature-grid,
	.art-hub-styles__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 760px) {
	.site-header {
		padding: 0 12px;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.site-main {
		padding: 18px 12px 80px;
	}

	.site-edit-link {
		padding: 0 12px;
	}

	.art-stage,
	.section--accent {
		padding: 24px;
		border-radius: 26px;
	}

	.art-hub-hero__surface,
	.resource-hub-hero__surface {
		padding: 108px 22px 34px;
		border-radius: 0 0 26px 26px;
		min-height: 380px;
	}

	.art-hub-hero__content h1,
	.resource-hub-hero__content h1 {
		font-size: clamp(2.15rem, 12vw, 3.4rem);
	}

	.hero__surface {
		padding: 108px 22px 34px;
		min-height: 420px;
	}

	.hero {
		--hero-underlap: 94px;
		border-radius: 0 0 26px 26px;
	}

	.entry-hero {
		border-radius: 0;
	}

	.entry-hero__media,
	.entry-hero__media img {
		min-height: 320px;
	}

	.entry-hero__content {
		padding: 24px;
	}

	.entry-hero--faa .entry-hero__content {
		padding: 24px 24px 30px;
	}

	.entry-hero h1 {
		font-size: 2.55rem;
		line-height: 1.02;
	}

	.entry-hero__title--compact {
		font-size: 2.2rem;
	}

	.entry-hero__title--tight {
		font-size: 1.82rem;
	}

	.entry-hero__title--ultra-tight {
		font-size: 1.45rem;
		line-height: 1.08;
	}

	.prose {
		padding: 24px 22px 30px;
		border-radius: 20px;
	}

	.section-card {
		padding: 18px;
		border-radius: 20px;
	}

	.art-stage h1,
	.hero h1 {
		font-size: clamp(2.15rem, 12vw, 3.4rem);
		max-width: 9ch;
	}

	.hero__lede,
	.art-stage__text p {
		font-size: 1rem;
		max-width: 26rem;
	}

	.hero__actions {
		gap: 10px;
		margin-top: 24px;
	}

	.button {
		width: 100%;
		padding: 12px 18px;
		font-size: 0.98rem;
	}

	.art-grid,
	.content-grid,
	.hub-grid,
	.hub-feature-grid,
	.art-hub-styles__grid,
	.explore-next__grid {
		grid-template-columns: 1fr;
	}

	.not-found-search {
		flex-direction: column;
	}

	.art-hub-artworks {
		grid-template-columns: 1fr;
	}

	.site-nav {
		position: static;
		display: flex;
		justify-content: flex-end;
		align-self: flex-start;
		margin-left: auto;
	}

	.site-header__inner {
		position: relative;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 14px;
		padding: 10px 0 9px;
	}

	.site-branding {
		max-width: min(260px, calc(100% - 64px));
	}

	.site-title {
		font-size: 1.42rem;
	}

	.site-tagline {
		display: block;
		margin-top: 2px;
		font-size: 0.72rem;
		line-height: 1.32;
		max-width: 22ch;
	}

	.site-nav__toggle {
		display: inline-flex;
		width: 40px;
		height: 40px;
		margin-left: auto;
	}

	.site-nav__panel {
		position: absolute;
		top: calc(100% + 6px);
		right: 0;
		left: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding: 16px;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 18px;
		background: rgba(16, 18, 20, 0.94);
		box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
	}

	.site-nav__panel.is-open {
		display: flex;
	}

	.site-nav__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.site-nav__menu a,
	.site-nav__utility {
		display: block;
		width: 100%;
		padding: 10px 0;
	}

	.site-nav__utility {
		padding-left: 0;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding-top: 16px;
	}

	.site-search {
		width: 100%;
	}

	.site-search__form {
		width: 100%;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
