/* All Things Baby — garden, cream, ivy, script. */

:root {
	--cream: #f6f0e6;
	--cream-deep: #efe4d4;
	--paper: #fffaf3;
	--ink: #2c3228;
	--ink-soft: #4d5546;
	--ivy: #3f5c3f;
	--ivy-deep: #2d442e;
	--leaf: #6b8a62;
	--blush: #e8cbb8;
	--blush-deep: #d4a48c;
	--stone: #c9b8a4;
	--line: rgba(44, 50, 40, 0.12);
	--shadow: 0 18px 50px rgba(45, 68, 46, 0.12);
	--radius: 22px;
	--serif: "Cormorant Garamond", Georgia, serif;
	--sans: "Source Sans 3", "Segoe UI", sans-serif;
	--script: "Alex Brush", cursive;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(1200px 500px at 10% -10%, rgba(232, 203, 184, 0.45), transparent 60%),
		radial-gradient(900px 400px at 100% 0%, rgba(107, 138, 98, 0.18), transparent 55%),
		var(--cream);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 1.05rem;
	line-height: 1.65;
}

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

a {
	color: var(--ivy);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--ivy-deep);
}

.wrap {
	width: min(1120px, calc(100% - 2.4rem));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -40px;
	background: var(--ivy);
	color: #fff;
	padding: 0.4rem 0.8rem;
	z-index: 100;
}

.skip-link:focus {
	top: 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(14px);
	background: rgba(246, 240, 230, 0.82);
	border-bottom: 1px solid var(--line);
}

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

.brand-link {
	text-decoration: none;
	color: var(--ink);
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand-script {
	font-family: var(--script);
	font-size: clamp(2rem, 3vw, 2.6rem);
	color: var(--ivy-deep);
}

.brand-byline {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.site-nav .menu {
	display: flex;
	gap: 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 550;
	font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav .current-menu-item a {
	color: var(--ivy);
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 42px;
	height: 42px;
	position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
	content: "";
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	position: absolute;
	left: 10px;
}

.nav-toggle-bar {
	top: 20px;
}

.nav-toggle-bar::before {
	top: -7px;
}

.nav-toggle-bar::after {
	top: 7px;
}

/* Hero */
.hero {
	padding: 3.5rem 0 2rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 3rem;
	align-items: center;
}

.eyebrow {
	margin: 0 0 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
	color: var(--leaf);
	font-weight: 600;
}

.hero-title {
	font-family: var(--script);
	font-size: clamp(3.4rem, 8vw, 6.2rem);
	font-weight: 400;
	line-height: 0.95;
	margin: 0 0 0.35rem;
	color: var(--ivy-deep);
}

.hero-host {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.35rem;
	margin: 0 0 1rem;
	color: var(--ink-soft);
}

.hero-lede {
	font-size: 1.12rem;
	max-width: 36rem;
	margin: 0 0 1.5rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 1.1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	padding: 0.8rem 1.35rem;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
}

.btn-primary {
	background: var(--ivy);
	color: #fff;
}

.btn-primary:hover {
	background: var(--ivy-deep);
	color: #fff;
}

.btn-ghost {
	background: transparent;
	color: var(--ivy-deep);
	box-shadow: inset 0 0 0 1.5px var(--ivy);
}

.listen-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.pill {
	text-decoration: none;
	color: var(--ink-soft);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.3rem 0.75rem;
	font-size: 0.85rem;
	background: rgba(255, 250, 243, 0.7);
}

.hero-art {
	position: relative;
}

.hero-art img {
	width: 100%;
	border-radius: 28px;
	box-shadow: var(--shadow);
	object-fit: cover;
	aspect-ratio: 1;
}

/* Sections */
.listen-section,
.episodes-section,
.notify-section,
.about-band {
	padding: 3rem 0;
}

.section-head h2,
.notify-section h2,
.about-band h2,
.entry-title {
	font-family: var(--serif);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	margin: 0 0 1.2rem;
	font-weight: 600;
}

.player-card {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1.6rem;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.3rem;
	box-shadow: var(--shadow);
	margin-bottom: 1.4rem;
}

.player-cover img {
	width: 100%;
	border-radius: 16px;
	aspect-ratio: 1;
	object-fit: cover;
}

.player-meta,
.episode-date {
	margin: 0 0 0.3rem;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--leaf);
}

.player-title,
.episode-row h3 {
	font-family: var(--serif);
	margin: 0 0 0.5rem;
	font-size: 1.7rem;
	line-height: 1.15;
}

.player-excerpt {
	margin: 0 0 1rem;
	color: var(--ink-soft);
}

.audio-wrap audio,
.episode-row audio {
	width: 100%;
	height: 42px;
}

.player-more {
	margin: 0.8rem 0 0;
	font-size: 0.92rem;
}

.spotify-embed-wrap {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.8rem;
}

.episode-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.episode-row {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 1.1rem 1.2rem;
}

.episode-row h3 {
	font-size: 1.35rem;
}

.episode-row p {
	margin: 0 0 0.8rem;
	color: var(--ink-soft);
}

/* Notify */
.notify-section {
	background:
		linear-gradient(180deg, rgba(232, 203, 184, 0.28), rgba(246, 240, 230, 0));
}

.notify-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
}

.notify-lede {
	max-width: 34rem;
	color: var(--ink-soft);
}

.notify-form {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.4rem;
	box-shadow: var(--shadow);
	display: grid;
	gap: 0.9rem;
}

.notify-form label span {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.3rem;
	color: var(--ink-soft);
}

.notify-form input[type="text"],
.notify-form input[type="email"] {
	width: 100%;
	border: 1px solid var(--stone);
	border-radius: 12px;
	padding: 0.75rem 0.85rem;
	font: inherit;
	background: #fff;
	color: var(--ink);
}

.notify-form input:focus {
	outline: 2px solid var(--leaf);
	outline-offset: 1px;
}

.hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.form-status {
	margin: 0;
	min-height: 1.3em;
	font-weight: 600;
}

.form-status.is-ok {
	color: var(--ivy);
}

.form-status.is-err {
	color: #8a3a2a;
}

.form-fineprint {
	margin: 0;
	font-size: 0.82rem;
	color: var(--ink-soft);
}

.about-band {
	padding-bottom: 4rem;
}

.about-grid p {
	max-width: 40rem;
}

.text-link {
	font-weight: 600;
}

/* Pages */
.page-shell {
	padding: 3.5rem 0 4.5rem;
}

.entry {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(1.4rem, 3vw, 2.4rem);
	box-shadow: var(--shadow);
}

.entry-content p {
	max-width: 42rem;
}

.entry-content {
	white-space: pre-wrap;
}

/* Footer */
.site-footer {
	background: var(--ivy-deep);
	color: #f4eadc;
	padding: 2.6rem 0 1.4rem;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2rem;
	padding-bottom: 1.6rem;
}

.site-footer .brand-script {
	color: #f6f0e6;
	margin: 0;
}

.footer-host,
.footer-tag {
	margin: 0.2rem 0 0;
	color: rgba(246, 240, 230, 0.78);
}

.footer-heading {
	margin: 0 0 0.5rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: var(--blush);
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links a,
.site-footer a {
	color: #f6f0e6;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-copy {
	border-top: 1px solid rgba(246, 240, 230, 0.15);
	padding-top: 1rem;
	font-size: 0.85rem;
	color: rgba(246, 240, 230, 0.7);
}

/* Responsive */
@media (max-width: 860px) {
	.hero-grid,
	.player-card,
	.notify-grid,
	.footer-inner {
		grid-template-columns: 1fr;
	}

	.hero-art {
		order: -1;
		max-width: 420px;
	}

	.nav-toggle {
		display: block;
	}

	.site-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--cream);
		border-bottom: 1px solid var(--line);
		padding: 0.6rem 1.2rem 1rem;
	}

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

	.site-nav .menu {
		flex-direction: column;
		gap: 0.6rem;
	}
}
