:root {
	--ink: #1c1410;
	--ink-muted: #4a3d35;
	--paper: #faf7f2;
	--paper-2: #f0ebe3;
	--accent: #c45c2a;
	--accent-soft: #e8a078;
	--accent-dark: #8a3d18;
	--card: #ffffff;
	--ring: rgba(196, 92, 42, 0.45);
	--shadow: 0 12px 40px rgba(28, 20, 16, 0.12);
	--shadow-sm: 0 4px 16px rgba(28, 20, 16, 0.08);
	--radius-lg: 20px;
	--radius-md: 14px;
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "DM Sans", system-ui, sans-serif;
	--content-max: 1120px;
}

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

html {
	scroll-behavior: smooth;
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
}

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

a {
	color: var(--accent-dark);
	text-underline-offset: 3px;
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 100;
}

.skip-link:focus {
	position: fixed;
	left: 1rem;
	top: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--card);
	color: var(--ink);
	border-radius: 8px;
	box-shadow: var(--shadow);
	overflow: visible;
}

.hero {
	position: relative;
	min-height: min(72vh, 640px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(2rem, 5vw, 4rem) 1.25rem;
	background-color: var(--ink);
	background-image: linear-gradient(
			165deg,
			rgba(28, 20, 16, 0.72) 0%,
			rgba(28, 20, 16, 0.55) 45%,
			rgba(28, 20, 16, 0.75) 100%
		),
		url("images/hero.jpg");
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: 40rem;
}

.hero h1 {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 6vw, 3.75rem);
	font-weight: 600;
	font-variation-settings: "SOFT" 40, "WONK" 1;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__tagline {
	margin: 0 0 1.75rem;
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	opacity: 0.92;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: lowercase;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.6rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	background: var(--accent-soft);
	border: none;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
	color: var(--ink);
	background: #f4c4a8;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn:focus-visible {
	outline: 3px solid var(--ring);
	outline-offset: 3px;
}

.wrap {
	width: min(100% - 2rem, var(--content-max));
	margin-inline: auto;
}

main {
	padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section-head {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 600;
	color: var(--accent-dark);
	letter-spacing: -0.01em;
}

.section-head--inverse {
	color: #fff;
	margin-bottom: 0.75rem;
}

.lead {
	margin: 0;
	font-size: 1.05rem;
	color: var(--ink-muted);
}

.grid {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 860px) {
	.grid--split {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	.grid--split .span-full {
		grid-column: 1 / -1;
	}
}

.card {
	background: var(--card);
	border-radius: var(--radius-lg);
	padding: clamp(1.35rem, 3vw, 1.85rem);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(28, 20, 16, 0.06);
}

.card--accent {
	background: linear-gradient(145deg, #fff8f3 0%, #fff 55%);
	border-color: rgba(196, 92, 42, 0.12);
}

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

.genres li {
	padding: 0.45rem 1rem;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	color: var(--ink);
	background: var(--paper-2);
	border-radius: 999px;
	border: 1px solid rgba(28, 20, 16, 0.08);
}

.genres-note {
	margin: 1.1rem 0 0;
	font-style: italic;
	color: var(--accent-dark);
	text-align: center;
}

.figure {
	margin: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.figure img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.figure figcaption {
	padding: 0.5rem 0.75rem 0;
	font-size: 0.8rem;
	color: var(--ink-muted);
}

.members {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem;
}

.member {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.35rem 1rem;
	background: var(--card);
	border-radius: var(--radius-md);
	border: 1px solid rgba(28, 20, 16, 0.08);
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.member:hover {
	transform: translateY(-4px);
	border-color: rgba(196, 92, 42, 0.25);
	box-shadow: var(--shadow);
}

.member__icon {
	width: 52px;
	height: 52px;
	margin-bottom: 0.85rem;
	color: var(--accent);
}

.member__name {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
}

.member__role {
	margin: 0.25rem 0 0;
	font-size: 0.9rem;
	color: var(--ink-muted);
}

.prose {
	margin: 0;
	color: var(--ink-muted);
}

.prose + .prose {
	margin-top: 1rem;
}

.contact-block {
	text-align: center;
	padding: clamp(1.5rem, 3vw, 2rem);
	background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
	border-radius: var(--radius-lg);
	color: #fff;
	box-shadow: var(--shadow);
}

.contact-block a {
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration-thickness: 2px;
}

.contact-block a:hover {
	color: #ffe8d9;
}

.contact-block a:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
	border-radius: 4px;
}

.site-footer {
	padding: 2rem 1rem;
	text-align: center;
	font-size: 0.85rem;
	color: var(--ink-muted);
	background: var(--paper-2);
	border-top: 1px solid rgba(28, 20, 16, 0.06);
}

.site-footer a {
	color: var(--ink-muted);
}
