:root {
	--color-paper: #ffffff;
	--color-cream: #fff8e7;
	--color-ink: #2b2c2c;
	--color-muted: #757676;
	--color-line: rgba(43, 44, 44, 0.12);
	--color-accent: #ffce00;
	--color-accent-soft: #fff7d9;
	--color-sand: #f1e2ad;
	--shadow-soft: 0 18px 40px rgba(31, 25, 15, 0.08);
	--shadow-card: 0 24px 56px rgba(31, 25, 15, 0.11);
	--font-sans: brandon_grotesque, Arial, Helvetica, Geneva, sans-serif;
	--font-serif: gazpacho, Georgia, "Times New Roman", Times, sans-serif;
	--site-width: min(1180px, calc(100vw - 2rem));
	--narrow-width: min(760px, calc(100vw - 2rem));
	--transition-fast: 180ms ease;
	--transition-slow: 420ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--color-ink);
	background:
		radial-gradient(circle at top left, rgba(255, 206, 0, 0.16), transparent 34%),
		linear-gradient(180deg, rgba(255, 247, 217, 0.62), rgba(255, 255, 255, 0.96) 24rem),
		var(--color-paper);
	line-height: 1.65;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

a:hover,
a:focus-visible {
	color: #000;
}

p {
	margin: 0 0 1.1rem;
	color: var(--color-muted);
	font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--font-serif);
	color: var(--color-ink);
	font-weight: 700;
	letter-spacing: -0.04em;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

button,
input,
textarea,
select {
	font: inherit;
}

input,
textarea,
select {
	width: 100%;
	border: 1px solid var(--color-line);
	border-radius: 1rem;
	background: #fff;
	color: var(--color-ink);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-ink);
	box-shadow: 0 0 0 4px rgba(255, 206, 0, 0.16);
}

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

.narrow {
	width: var(--narrow-width);
	margin-left: auto;
	margin-right: auto;
}

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

.site-content {
	padding-bottom: 5rem;
}

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

.skip-link:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 100;
	width: auto;
	height: auto;
	padding: 0.85rem 1.1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: #fff;
	border-radius: 999px;
	box-shadow: var(--shadow-card);
}

.section-kicker,
.archive-hero__kicker,
.single-hero__eyebrow,
.newsletter-card__kicker,
.search-drawer__label,
.mobile-panel__label {
	margin: 0 0 0.9rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.section-title,
.archive-hero__title {
	font-size: clamp(2.1rem, 5vw, 3.5rem);
	line-height: 0.96;
}

.section-title--compact {
	font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.button,
.search-submit,
.comment-form .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 3.15rem;
	padding: 0 1.2rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	border: 1px solid transparent;
	cursor: pointer;
}

.button svg,
.search-submit svg,
.header-toggle svg,
.drawer-close svg,
.post-card__link svg,
.section-link svg {
	width: 1rem;
	height: 1rem;
	flex: none;
}

.button--primary,
.search-submit,
.comment-form .submit {
	background: var(--color-ink);
	color: #fff;
}

.button--ghost {
	background: transparent;
	color: var(--color-ink);
	border-color: var(--color-line);
}

.button--primary:hover,
.search-submit:hover,
.comment-form .submit:hover,
.button--ghost:hover,
.header-toggle:hover,
.drawer-close:hover,
.social-links__item:hover {
	transform: translateY(-1px);
}

.utility-bar {
	border-bottom: 1px solid var(--color-line);
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(10px);
}

.utility-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 48px;
}

.utility-nav {
	min-width: 0;
}

.utility-menu,
.footer-menu,
.primary-menu,
.mobile-menu,
.fallback-menu {
	list-style: none;
}

.utility-menu,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.utility-menu a,
.footer-menu a {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.social-links {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.social-links__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--color-line);
	box-shadow: 0 6px 16px rgba(31, 25, 15, 0.05);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid var(--color-line);
	background: rgba(255, 253, 250, 0.92);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
	min-height: 88px;
}

.site-header__brand {
	min-width: 0;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo-link img {
	max-height: 84px;
	width: auto;
}

.site-brand__text {
	display: inline-flex;
	flex-direction: column;
	gap: 0.35rem;
}

.site-brand__kicker {
	font-family: var(--font-serif);
	font-size: clamp(1.9rem, 3vw, 3.2rem);
	font-weight: 700;
	line-height: 0.92;
	text-transform: lowercase;
}

.site-brand__tagline {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.primary-nav {
	justify-self: center;
	min-width: 0;
}

.primary-menu,
.fallback-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.6rem;
}

.primary-menu > li,
.fallback-menu > li {
	position: relative;
}

.primary-menu a,
.fallback-menu a {
	position: relative;
	display: block;
	padding: 0.6rem 0;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.primary-menu > li > a::after,
.fallback-menu > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.12rem;
	width: 100%;
	height: 2px;
	background: var(--color-accent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform var(--transition-fast);
}

.primary-menu > li:hover > a::after,
.fallback-menu > li:hover > a::after,
.primary-menu > li > a:focus-visible::after,
.fallback-menu > li > a:focus-visible::after {
	transform: scaleX(1);
}

.primary-menu .menu-item-has-children > a {
	padding-right: 1rem;
}

.primary-menu .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0.05rem;
	width: 0.38rem;
	height: 0.38rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-62%) rotate(45deg);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: -1rem;
	display: grid;
	gap: 0.1rem;
	min-width: 240px;
	padding: 0.8rem;
	border: 1px solid var(--color-line);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow-soft);
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.65rem);
	transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.primary-menu .sub-menu a {
	padding: 0.65rem 0.75rem;
	border-radius: 0.9rem;
	font-size: 0.76rem;
	letter-spacing: 0.12em;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
	background: var(--color-cream);
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.header-toggle,
.drawer-close {
	display: inline-grid;
	place-items: center;
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 999px;
	border: 1px solid var(--color-line);
	background: #fff;
	color: var(--color-ink);
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(31, 25, 15, 0.05);
}

.header-toggle--mobile {
	display: none;
}

.site-overlay {
	position: fixed;
	inset: 0;
	z-index: 35;
	background: rgba(16, 14, 10, 0.42);
	backdrop-filter: blur(2px);
}

.search-drawer,
.mobile-panel {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 45;
	background: rgba(255, 253, 250, 0.98);
	border-bottom: 1px solid var(--color-line);
	box-shadow: var(--shadow-card);
}

.search-drawer {
	top: 89px;
}

.mobile-panel {
	top: 89px;
	max-height: calc(100vh - 89px);
	overflow: auto;
}

.search-drawer__inner,
.mobile-panel__inner {
	padding: 1.25rem 0 1.6rem;
}

.search-drawer__header,
.mobile-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.southern-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.search-field {
	flex: 1 1 280px;
	min-height: 3.25rem;
	padding: 0 1.15rem;
	border-radius: 999px;
}

.search-submit span {
	line-height: 1;
}

.mobile-menu,
.mobile-menu .sub-menu,
.mobile-menu .menu {
	display: grid;
	gap: 0.2rem;
}

.mobile-menu a,
.mobile-panel .fallback-menu a {
	display: block;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--color-line);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.mobile-menu .menu-item-has-children > a::before,
.mobile-panel .fallback-menu > li > a::before {
	display: none;
}

.mobile-menu .sub-menu {
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 1px solid var(--color-line);
}

.mobile-panel__search {
	margin: 1.5rem 0 1.3rem;
}

.mobile-panel__socials {
	margin-top: 1rem;
}

body.has-drawer {
	overflow: hidden;
}

.home-featured,
.home-latest,
.home-spotlight,
.category-band,
.press-strip,
.footer-cta,
.site-extras {
	padding: 4rem 0;
}

.home-featured {
	padding-top: 2.75rem;
}

.home-intro {
	padding: 3rem 0 4rem;
}

.section-title-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.section-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.post-grid {
	display: grid;
	gap: 1.5rem;
}

.post-grid--featured,
.post-grid--category {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.post-grid--latest {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem 1.5rem;
}

.post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.post-card__media {
	overflow: hidden;
	border-radius: 1.4rem;
	border: 1px solid rgba(43, 44, 44, 0.08);
	background: var(--color-cream);
	box-shadow: var(--shadow-soft);
}

.post-card__image {
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.post-card--feature-story .post-card__image {
	aspect-ratio: 1.45;
}

.post-card__media:hover .post-card__image,
.post-card__media:focus-visible .post-card__image {
	transform: scale(1.05);
}

.post-card__placeholder {
	display: grid;
	place-items: center;
	aspect-ratio: 5 / 6;
	padding: 1.5rem;
	background: linear-gradient(135deg, #fff7d9 0%, #ffffff 70%);
}

.post-card__placeholder img {
	width: min(8rem, 38%);
}

.post-card__body {
	padding: 1rem 0.1rem 0;
}

.post-card__eyebrow {
	display: inline-flex;
	margin-bottom: 0.75rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.post-card__title {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	line-height: 1.08;
}

.post-card__excerpt {
	margin-top: 0.85rem;
	max-width: 34ch;
}

.post-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 0.8rem;
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post-card--compact {
	display: grid;
	grid-template-columns: 106px 1fr;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid var(--color-line);
	border-radius: 1.45rem;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.post-card--compact .post-card__media {
	border-radius: 1rem;
	box-shadow: none;
}

.post-card--compact .post-card__image,
.post-card--compact .post-card__placeholder {
	aspect-ratio: 1;
}

.post-card--compact .post-card__body {
	padding: 0;
}

.post-card--compact .post-card__title {
	font-size: 1.05rem;
}

.post-card--compact .post-card__eyebrow {
	margin-bottom: 0.4rem;
}

.post-card--compact .post-card__link {
	display: none;
}

.post-card--feature-story {
	border: 1px solid var(--color-line);
	border-radius: 1.7rem;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-card);
}

.post-card--feature-story .post-card__media {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.post-card--feature-story .post-card__body {
	padding: 1.55rem;
}

.post-card--feature-story .post-card__title {
	font-size: clamp(2rem, 3vw, 2.75rem);
}

.home-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 1.75rem;
	align-items: stretch;
}

.home-intro__newsletter > .widget,
.footer-cta__inner > .widget,
.home-intro__story {
	height: 100%;
	padding: 2rem;
	border: 1px solid var(--color-line);
	border-radius: 1.9rem;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.newsletter-card,
.footer-cta__inner > .widget {
	max-width: 42rem;
}

.site-extra-card {
	height: 100%;
	padding: 2rem;
	border: 1px solid var(--color-line);
	border-radius: 1.9rem;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.site-extra-card .newsletter-card {
	max-width: none;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.site-extras__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 1.5rem;
}

.site-extras__grid + .site-extras__grid {
	margin-top: 1.5rem;
}

.site-extras__grid--secondary {
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.site-extra-stack {
	display: grid;
	gap: 1rem;
	margin-top: 1.25rem;
}

.site-extra-card--intro {
	background: linear-gradient(135deg, #fff 0%, #fff7d9 100%);
}

.site-extra-card--search p:last-of-type {
	margin-bottom: 1rem;
}

.newsletter-card__title {
	font-size: clamp(1.7rem, 3vw, 2.45rem);
	line-height: 0.98;
}

.newsletter-card__text {
	max-width: 34ch;
}

.home-intro__story {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: linear-gradient(135deg, #fff 0%, #fff7d9 100%);
}

.home-intro__title {
	margin-bottom: 1rem;
	font-size: clamp(2.5rem, 5vw, 4.2rem);
	line-height: 0.92;
	text-transform: lowercase;
}

.home-intro__text {
	max-width: 32ch;
	margin-bottom: 1.3rem;
	color: var(--color-ink);
}

.home-intro__mark {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: min(9rem, 28%);
	opacity: 0.95;
}

.home-latest .section-title,
.home-spotlight .section-title,
.category-band .section-title,
.related-posts .section-title {
	margin-bottom: 1.5rem;
}

.home-spotlight {
	background: linear-gradient(180deg, rgba(255, 206, 0, 0.1), transparent 65%);
}

.spotlight-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
	gap: 1.5rem;
	align-items: start;
}

.spotlight-grid__stack {
	display: grid;
	gap: 1rem;
}

.category-band--shaded {
	background: linear-gradient(180deg, rgba(244, 243, 241, 0.9), rgba(255, 253, 250, 0.3));
}

.archive-hero {
	padding: 3.3rem 0 1.75rem;
}

.archive-hero__description {
	max-width: 42rem;
	margin-top: 1rem;
}

.archive-grid {
	padding-bottom: 4rem;
}

.pagination,
.comments-pagination {
	margin-top: 2rem;
}

.nav-links,
.page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.page-numbers,
.page-links > a,
.page-links > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding: 0 0.9rem;
	border-radius: 999px;
	border: 1px solid var(--color-line);
	background: #fff;
	box-shadow: 0 6px 16px rgba(31, 25, 15, 0.04);
	font-size: 0.88rem;
	font-weight: 700;
}

.page-numbers.current,
.page-links > span {
	background: var(--color-ink);
	border-color: var(--color-ink);
	color: #fff;
}

.single-hero {
	padding: 3.2rem 0 2rem;
}

.single-hero__title {
	max-width: 14ch;
	margin-bottom: 1rem;
	font-size: clamp(2.7rem, 6vw, 5rem);
	line-height: 0.93;
}

.single-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.single-hero__media {
	margin-top: 1.65rem;
	overflow: hidden;
	border-radius: 1.9rem;
	border: 1px solid var(--color-line);
	box-shadow: var(--shadow-card);
}

.single-hero__media img {
	width: 100%;
	aspect-ratio: 1.45;
	object-fit: cover;
}

.single-hero--page .single-hero__title {
	max-width: none;
}

.single-hero--about {
	padding-bottom: 1rem;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
	gap: 2rem;
	align-items: start;
	padding-bottom: 4rem;
}

.article-layout__content {
	min-width: 0;
}

.article-layout__sidebar {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 1rem;
}

.article-layout__sidebar .widget {
	padding: 1.3rem;
	border: 1px solid var(--color-line);
	border-radius: 1.35rem;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.widget-title {
	margin-bottom: 0.85rem;
	font-size: 1.1rem;
}

.prose {
	font-size: 1.04rem;
}

.prose > * + * {
	margin-top: 1.2rem;
}

.prose h2,
.prose h3,
.prose h4 {
	margin-top: 2rem;
	line-height: 1.05;
}

.prose ul,
.prose ol {
	margin-left: 1.25rem;
}

.prose li + li {
	margin-top: 0.45rem;
}

.prose blockquote {
	margin: 2rem 0;
	padding: 1.4rem 1.5rem;
	border-left: 4px solid var(--color-accent);
	border-radius: 1.2rem;
	background: var(--color-accent-soft);
	color: var(--color-ink);
	font-family: var(--font-serif);
	font-size: 1.2rem;
}

.prose figure,
.prose .wp-block-image {
	margin-left: 0;
	margin-right: 0;
}

.prose img {
	border-radius: 1.4rem;
}

.entry-footer {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--color-line);
}

.post-tags a {
	display: inline-flex;
	margin: 0 0.45rem 0.45rem 0;
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.related-posts {
	padding-bottom: 5rem;
}

.about-story-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	gap: 2rem;
	padding-bottom: 2rem;
}

.about-story-layout__gallery {
	min-width: 0;
}

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

.about-gallery__item,
.about-gallery__swatch {
	overflow: hidden;
	border-radius: 1.4rem;
	border: 1px solid var(--color-line);
	background: var(--color-cream);
	box-shadow: var(--shadow-soft);
}

.about-gallery__item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.about-gallery__item--1,
.about-gallery__item--4 {
	transform: translateY(1rem);
}

.about-gallery__swatch {
	min-height: 170px;
}

.about-gallery__swatch--a {
	background: #deb18d;
}

.about-gallery__swatch--b {
	background: #b1b97e;
}

.about-gallery__swatch--c {
	background: #91acbc;
}

.about-gallery__swatch--d {
	background: linear-gradient(135deg, #fff7d9, #ffce00);
}

.recipe-index-search {
	margin-bottom: 1.5rem;
}

.taxonomy-chip-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 2rem;
}

.taxonomy-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0 1rem;
	border-radius: 999px;
	border: 1px solid var(--color-line);
	background: #fff;
	box-shadow: 0 8px 18px rgba(31, 25, 15, 0.04);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.taxonomy-chip--tag {
	background: var(--color-cream);
}

.taxonomy-index {
	display: grid;
	gap: 2rem;
	padding-bottom: 1rem;
}

.taxonomy-index__section {
	padding: 1.65rem;
	border: 1px solid var(--color-line);
	border-radius: 1.7rem;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow-soft);
}

.taxonomy-index__section .section-title {
	margin-bottom: 1.2rem;
}

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

.taxonomy-index__link {
	display: grid;
	gap: 0.45rem;
	padding: 1rem 1.05rem;
	border-radius: 1.2rem;
	background: var(--color-paper);
	border: 1px solid rgba(43, 44, 44, 0.08);
}

.taxonomy-index__link span {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	line-height: 1.08;
}

.taxonomy-index__link small {
	color: var(--color-muted);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.comments-area {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--color-line);
}

.comments-title {
	font-size: 1.75rem;
}

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

.comment-list .comment-body {
	padding: 1rem 1.15rem;
	border: 1px solid var(--color-line);
	border-radius: 1.2rem;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.comment-author .fn {
	font-style: normal;
	font-weight: 700;
}

.comment-metadata {
	margin: 0.45rem 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.comment-form {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.comment-form textarea {
	min-height: 10rem;
	padding: 0.85rem 1rem;
	border-radius: 1.2rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	min-height: 3rem;
	padding: 0 1rem;
}

.empty-state {
	max-width: 720px;
	margin: 0 auto;
	padding: 5rem 0;
	text-align: center;
}

.empty-state__actions {
	display: grid;
	gap: 1rem;
	justify-items: center;
	margin-top: 1.5rem;
}

.press-strip {
	border-top: 1px solid var(--color-line);
	background: linear-gradient(180deg, rgba(255, 206, 0, 0.08), rgba(255, 255, 255, 0.75));
}

.press-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.press-badges__item {
	display: inline-flex;
	align-items: center;
	min-height: 2.8rem;
	padding: 0 1rem;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(31, 25, 15, 0.04);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.footer-cta {
	padding-top: 2rem;
}

.footer-cta__inner {
	display: flex;
	justify-content: center;
}

.site-footer {
	padding-bottom: 2rem;
	background: linear-gradient(180deg, transparent, rgba(244, 243, 241, 0.8));
}

.footer-bottom {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) auto auto;
	gap: 2rem;
	align-items: start;
	padding-top: 2rem;
	border-top: 1px solid var(--color-line);
}

.footer-bottom__copy {
	max-width: 24rem;
	font-size: 0.84rem;
}

.footer-nav {
	min-width: 0;
}

.footer-socials {
	justify-content: flex-end;
}

.wp-caption,
.wp-block-image figcaption {
	margin-top: 0.65rem;
	font-size: 0.82rem;
	color: var(--color-muted);
	text-align: center;
}

.alignwide {
	width: min(1100px, 100%);
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 1120px) {
	.home-intro__inner,
	.spotlight-grid,
	.article-layout,
	.footer-bottom,
	.about-story-layout,
	.site-extras__grid,
	.site-extras__grid--secondary {
		grid-template-columns: 1fr;
	}

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

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

	.article-layout__sidebar {
		position: static;
	}

	.footer-socials {
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
		gap: 1rem;
		min-height: 80px;
	}

	.primary-nav {
		display: none;
	}

	.header-toggle--mobile {
		display: inline-grid;
	}

	.search-drawer,
	.mobile-panel {
		top: 81px;
	}

	.mobile-panel {
		max-height: calc(100vh - 81px);
	}

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

@media (max-width: 720px) {
	.utility-bar__inner {
		justify-content: center;
	}

	.utility-nav {
		display: none;
	}

	.home-featured,
	.home-latest,
	.home-spotlight,
	.category-band,
	.press-strip,
	.footer-cta {
		padding: 3rem 0;
	}

	.home-intro {
		padding: 2.5rem 0 3rem;
	}

	.home-intro__newsletter > .widget,
	.footer-cta__inner > .widget,
	.home-intro__story,
	.site-extra-card {
		padding: 1.6rem;
	}

	.single-hero {
		padding-top: 2.4rem;
	}
}

@media (max-width: 640px) {
	:root {
		--site-width: min(100vw - 1.25rem, 1180px);
		--narrow-width: min(100vw - 1.25rem, 760px);
	}

	.post-grid--featured,
	.post-grid--category,
	.post-grid--latest {
		grid-template-columns: 1fr;
	}

	.taxonomy-index__links {
		grid-template-columns: 1fr;
	}

	.post-card--compact {
		grid-template-columns: 92px 1fr;
	}

	.section-title-wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.southern-search-form,
	.empty-state__actions {
		grid-template-columns: 1fr;
	}

	.southern-search-form {
		flex-direction: column;
	}

	.button,
	.search-submit,
	.comment-form .submit {
		width: 100%;
	}

	.home-intro__mark {
		position: static;
		margin-top: 1rem;
		width: 6.5rem;
	}

	.social-links__item {
		width: 2.55rem;
		height: 2.55rem;
	}
}
