:root {
	--bg: #f5f1ea;
	--bg-soft: #f9f7f2;
	--surface: rgba(255, 255, 255, 0.8);
	--surface-strong: #fffdf9;
	--text: #1f1f1b;
	--muted: #676154;
	--line: rgba(79, 66, 40, 0.16);
	--accent: #b88b4a;
	--accent-deep: #8f6934;
	--shadow: 0 24px 80px rgba(58, 42, 16, 0.12);
	--radius-lg: 32px;
	--radius-md: 22px;
	--radius-sm: 14px;
	--container: min(1160px, calc(100vw - 2rem));
	--narrow: min(780px, calc(100vw - 2rem));
	--font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
	--font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top right, rgba(184, 139, 74, 0.14), transparent 28%),
		linear-gradient(180deg, #fbf8f3 0%, var(--bg) 46%, #efe8dd 100%);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.65;
}

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

a {
	color: inherit;
}

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

.container {
	width: var(--container);
	margin: 0 auto;
}

.narrow {
	width: var(--narrow);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(18px);
	background: rgba(249, 247, 242, 0.82);
	border-bottom: 1px solid var(--line);
}

.header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	gap: 2rem;
}

.brand-mark {
	display: grid;
	gap: 0.15rem;
}

.brand-eyebrow,
.section-kicker,
.footer-kicker {
	margin: 0;
	color: var(--accent-deep);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.brand-title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	text-decoration: none;
}

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

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

.site-nav a {
	position: relative;
	text-decoration: none;
	font-weight: 600;
	color: var(--muted);
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.3rem;
	width: 100%;
	height: 2px;
	transform: scaleX(0);
	transform-origin: left;
	background: linear-gradient(90deg, var(--accent), transparent);
	transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after,
.site-nav .current_page_item a::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	width: 52px;
	height: 52px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.65);
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	margin: 5px auto;
}

.hero-section,
.content-section,
.band-section,
.page-hero {
	padding: clamp(2rem, 4.5vw, 3.5rem) 0;
}

.hero-grid,
.feature-grid,
.contact-layout,
.footer-grid {
	display: grid;
	gap: 2rem;
}

.hero-grid {
	grid-template-columns: 1.25fr 0.9fr;
	align-items: center;
}

.hero-copy h1,
.page-hero h1,
.site-footer h2,
.info-panel h2,
.post-card h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4.8rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.page-hero h1,
.site-footer h2,
.info-panel h2,
.post-card h2 {
	font-size: clamp(1.9rem, 3vw, 3rem);
	line-height: 1.04;
}

.hero-headline,
.lead {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	color: var(--muted);
}

blockquote {
	margin: 1.6rem 0;
	padding-left: 1rem;
	border-left: 3px solid var(--accent);
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	color: var(--accent-deep);
}

.hero-media {
	position: relative;
}

.portrait-card,
.feature-card,
.band-card,
.info-panel,
.post-card {
	background: var(--surface);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.portrait-card {
	padding: 1rem;
	transform: none;
}

.portrait-card img {
	width: 100%;
	border-radius: calc(var(--radius-lg) - 10px);
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.hero-badge {
	position: absolute;
	right: -1rem;
	bottom: 1rem;
	max-width: 240px;
	padding: 1rem 1.2rem;
	border-radius: var(--radius-md);
	background: linear-gradient(145deg, rgba(31, 31, 27, 0.92), rgba(64, 48, 22, 0.92));
	color: #f8f2e6;
	box-shadow: 0 16px 40px rgba(31, 31, 27, 0.24);
}

.hero-badge span {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(248, 242, 230, 0.72);
}

.hero-badge strong {
	display: block;
	margin-top: 0.4rem;
	font-size: 1rem;
	line-height: 1.4;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease;
}

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

.button-primary {
	background: linear-gradient(135deg, var(--accent), #d7b27b);
	color: #221b11;
}

.button-secondary {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--line);
}

.band-card {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 2rem;
	padding: clamp(1.8rem, 3vw, 3rem);
	background: linear-gradient(135deg, rgba(24, 24, 21, 0.95), rgba(77, 57, 29, 0.95));
	color: #fffaf2;
}

.service-list,
.check-list,
.timeline-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.service-list li,
.check-list li,
.timeline-list li {
	position: relative;
	padding-left: 1.5rem;
}

.service-list li::before,
.check-list li::before,
.timeline-list li::before {
	content: "";
	position: absolute;
	top: 0.72rem;
	left: 0;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px rgba(184, 139, 74, 0.14);
}

.feature-grid,
.contact-layout,
.footer-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.info-panel,
.post-card {
	padding: clamp(1.5rem, 3vw, 2.2rem);
}

.feature-card--image {
	padding: 0;
	overflow: hidden;
	min-height: 100%;
}

.feature-card--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 10% 20%, rgba(184, 139, 74, 0.16), transparent 24%);
	pointer-events: none;
}

.page-hero--soft {
	background: rgba(255, 255, 255, 0.28);
}

.profile-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 2rem;
}

.profile-aside {
	display: grid;
	gap: 1.5rem;
	align-content: start;
}

.profile-aside img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

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

.reference-section {
	margin-top: 1rem;
}

.reference-section__intro {
	margin-bottom: 0.75rem;
}

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

.reference-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 1.25rem;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 24px;
	box-shadow: 0 24px 80px rgba(58, 42, 16, 0.08);
	min-height: 100%;
}

.reference-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(184, 139, 74, 0.18), rgba(143, 105, 52, 0.18));
	color: var(--accent-deep);
	font-weight: 800;
	letter-spacing: 0.06em;
}

.reference-mark--logo {
	background: #ffffff;
	padding: 0.4rem;
	overflow: hidden;
}

.reference-mark--logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.reference-mark--logo.reference-mark--logo-cover img {
	object-fit: cover;
}

.reference-mark--logo.reference-mark--logo-cover {
	padding: 0;
}

.reference-mark--leaf {
	background: #dbeed6;
	padding: 0;
}

.reference-mark--leaf svg {
	width: 34px;
	height: 34px;
	display: block;
	margin: auto;
}

.reference-copy p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.45;
}

.contact-form {
	display: grid;
	gap: 0.9rem;
}

.contact-form label {
	font-weight: 700;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(79, 66, 40, 0.2);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.9);
	font: inherit;
}

.info-panel--accent {
	background: linear-gradient(160deg, rgba(36, 30, 18, 0.96), rgba(94, 70, 34, 0.96));
	color: #fff8ec;
}

.info-panel--accent .section-kicker {
	color: #e8c58f;
}

.notice-banner {
	margin-bottom: 1.2rem;
	padding: 1rem 1.2rem;
	border-radius: 18px;
}

.notice-banner--success {
	background: rgba(59, 130, 98, 0.14);
	color: #20523c;
}

.notice-banner--error {
	background: rgba(178, 62, 52, 0.12);
	color: #772a23;
}

.prose-block > *:first-child {
	margin-top: 0;
}

.prose-block > *:last-child {
	margin-bottom: 0;
}

.wp-editor-content .wp-block-group,
.wp-editor-content .wp-block-columns,
.wp-editor-content .wp-block-cover,
.wp-editor-content .wp-block-media-text {
	margin-bottom: 1.75rem;
}

.wp-editor-content .alignwide,
.wp-editor-content .alignfull {
	width: 100%;
	max-width: 100%;
}

.wp-editor-layout {
	width: var(--container);
}

.content-section--editor {
	padding-top: 0.5rem;
	padding-bottom: 4rem;
}

.content-section--editor .wp-editor-content > *:first-child {
	margin-top: 0;
	margin-block-start: 0;
}

.wp-editor-content .wp-block-button__link {
	border-radius: 999px;
	padding: 0.9rem 1.4rem;
	font-weight: 700;
}

.wp-editor-content .wp-block-image img,
.wp-editor-content .wp-block-cover,
.wp-editor-content .wp-block-gallery {
	border-radius: 24px;
	overflow: hidden;
}

.wp-editor-content .sc-card,
.sc-card {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 32px;
	box-shadow: 0 24px 80px rgba(58, 42, 16, 0.12);
}

.wp-editor-content .sc-mini-card,
.sc-mini-card {
	border-radius: 24px;
	padding: 1rem 1.25rem !important;
	width: 100%;
	max-width: none;
}

.wp-editor-content .sc-portrait img,
.sc-portrait img {
	width: 100%;
	border-radius: 32px;
	box-shadow: 0 24px 80px rgba(58, 42, 16, 0.12);
}

.wp-editor-content .sc-sticky-column,
.sc-sticky-column {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.wp-editor-content .sc-content-column,
.sc-content-column {
	display: grid;
	gap: 1rem;
}

.wp-editor-content .sc-content-column > .sc-card,
.sc-content-column > .sc-card {
	margin-bottom: 0 !important;
}

.wp-editor-content .sc-sticky-column > .sc-mini-card,
.sc-sticky-column > .sc-mini-card {
	align-self: start;
}

.wp-editor-content .sc-sticky-column > .wp-block-image,
.sc-sticky-column > .wp-block-image,
.wp-editor-content .sc-sticky-column > .sc-mini-card,
.sc-sticky-column > .sc-mini-card {
	width: 100%;
}

.wp-editor-content .wp-block-columns.alignwide:has(.sc-sticky-column),
.wp-block-columns.alignwide:has(.sc-sticky-column) {
	gap: 1.25rem;
}

.posts-list {
	display: grid;
	gap: 1.5rem;
}

.site-footer {
	padding: 3rem 0 4rem;
	border-top: 1px solid var(--line);
	background: rgba(251, 248, 243, 0.72);
}

.footer-legal-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu a {
	text-decoration: none;
	font-weight: 700;
	color: var(--muted);
}

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

.legal-stack {
	display: grid;
	gap: 0.5rem;
}

.page-hero--legal {
	padding-top: 1.25rem;
	padding-bottom: 0.75rem;
	background: transparent;
}

.page-hero--legal::before {
	display: none;
}

.content-section--legal {
	padding-top: 0.25rem;
	padding-bottom: 2.5rem;
}

.footer-contact a {
	text-decoration: none;
}

.footer-contact {
	justify-self: end;
	max-width: 320px;
	width: 100%;
}

@media (max-width: 920px) {
	.hero-grid,
	.feature-grid,
	.contact-layout,
	.footer-grid,
	.footer-legal-row,
	.profile-layout,
	.band-card,
	.card-grid,
	.reference-grid {
		grid-template-columns: 1fr;
	}

	.hero-badge {
		position: static;
		margin-top: 1rem;
		max-width: none;
	}

	.hero-section,
	.content-section,
	.band-section,
	.page-hero {
		padding: 2.5rem 0;
	}

	.band-card,
	.feature-card,
	.info-panel,
	.post-card,
	.reference-card {
		padding: 1.2rem;
	}

	.profile-layout,
	.contact-layout,
	.footer-grid,
	.card-grid,
	.reference-grid,
	.legal-stack,
	.wp-editor-content .wp-block-columns,
	.wp-editor-content .wp-block-group,
	.wp-editor-content .wp-block-cover,
	.wp-editor-content .wp-block-media-text {
		gap: 0.85rem;
		margin-bottom: 0.85rem;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 0.75rem);
		right: 1rem;
		left: 1rem;
		padding: 1rem;
		border-radius: 24px;
		background: rgba(251, 248, 243, 0.98);
		border: 1px solid var(--line);
		box-shadow: var(--shadow);
		display: none;
	}

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

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

	.menu-toggle {
		display: block;
	}
}

@media (max-width: 640px) {
	.header-bar {
		gap: 1rem;
	}

	.hero-copy h1,
	.page-hero h1,
	.site-footer h2,
	.info-panel h2,
	.post-card h2 {
		word-break: break-word;
	}

	.container,
	.narrow {
		width: min(100vw - 1.25rem, var(--container));
	}
}
