:root {
	--bg: #f7f3ec;
	--bg-soft: #fffaf2;
	--bg-card: rgba(255, 255, 255, 0.84);
	--bg-card-strong: rgba(255, 255, 255, 0.96);
	--border: rgba(26, 34, 53, 0.12);
	--border-strong: rgba(26, 34, 53, 0.22);
	--text: #111827;
	--muted: #536071;
	--muted-2: #7a8797;
	--accent: #b8842d;
	--accent-2: #3b82f6;
	--accent-3: #d9468f;
	--accent-4: #11a36a;
	--radius-sm: 14px;
	--radius: 24px;
	--radius-lg: 36px;
	--shadow: 0 24px 70px rgba(34, 42, 62, 0.12);
	--max: 1180px;
	--font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.tatyli-premium-light {
	margin: 0;
	font-family: var(--font);
	background:
		radial-gradient(circle at top left, rgba(139, 216, 255, 0.12), transparent 34rem),
		radial-gradient(circle at top right, rgba(255, 143, 189, 0.10), transparent 32rem),
		linear-gradient(180deg, #0a0e15 0%, var(--bg) 42%, #0b0d13 100%);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.65;
}

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

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

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

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

.container {
	width: min(100% - 32px, var(--max));
	margin-inline: auto;
}

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

.skip-link:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 14px;
	background: var(--text);
	color: #10131d;
	border-radius: 12px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(22px);
	background: rgba(12, 16, 24, 0.78);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 82px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(214, 179, 106, 1), rgba(255, 143, 189, 0.88));
	box-shadow: 0 14px 38px rgba(214, 179, 106, 0.22);
	color: #121722;
	font-weight: 900;
	font-size: 1.3rem;
}

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

.site-title,
.site-description {
	margin: 0;
}

.site-title {
	font-size: 1rem;
	font-weight: 850;
	letter-spacing: -0.02em;
}

.site-description {
	font-size: 0.78rem;
	color: var(--muted-2);
	margin-top: -2px;
}

.main-navigation {
	margin-left: auto;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	margin: 0;
}

.main-navigation a {
	display: inline-flex;
	padding: 10px 12px;
	border-radius: 999px;
	color: var(--muted);
	font-weight: 700;
	font-size: 0.9rem;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
}

.header-cta,
.button-primary,
.button-secondary,
.search-submit,
.newsletter-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	font-weight: 850;
	cursor: pointer;
	transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.header-cta,
.button-primary,
.newsletter-form button,
.search-submit {
	background: linear-gradient(135deg, var(--accent), #f6d990);
	color: #121722;
	box-shadow: 0 14px 34px rgba(214, 179, 106, 0.18);
}

.header-cta {
	padding: 10px 16px;
	font-size: 0.9rem;
}

.button-primary,
.button-secondary {
	padding: 13px 18px;
}

.button-secondary {
	border: 1px solid var(--border-strong);
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
}

.header-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.newsletter-form button:hover,
.search-submit:hover {
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	margin: 4px auto;
	border-radius: 999px;
}

.hero-section {
	padding: 76px 0 44px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.74fr);
	align-items: center;
	gap: 42px;
}

.section-eyebrow {
	margin: 0 0 10px;
	color: var(--accent);
	text-transform: uppercase;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.18em;
}

.hero-copy h1,
.archive-hero h1 {
	margin: 0;
	font-size: clamp(2.55rem, 6vw, 5.7rem);
	line-height: 0.94;
	letter-spacing: -0.075em;
	max-width: 920px;
}

.hero-copy > p:not(.section-eyebrow),
.archive-hero p,
.section-heading p,
.editorial-strip p,
.footer-brand p,
.footer-note p {
	color: var(--muted);
}

.hero-copy > p:not(.section-eyebrow) {
	font-size: 1.08rem;
	max-width: 670px;
	margin: 24px 0 0;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.hero-feature {
	min-height: 360px;
}

.featured-story-card,
.empty-state,
.newsletter-panel,
.editorial-strip,
.single-story,
.comments-area,
.post-navigation,
.story-card {
	border: 1px solid var(--border);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
	box-shadow: var(--shadow);
	border-radius: var(--radius-lg);
}

.featured-story-card {
	overflow: hidden;
	position: relative;
}

.featured-media {
	display: block;
	aspect-ratio: 1.12 / 1;
	background:
		linear-gradient(135deg, rgba(139, 216, 255, 0.22), rgba(255, 143, 189, 0.18)),
		#151b29;
}

.featured-media img,
.story-card-media img,
.single-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-story-content {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 24px;
	background: rgba(12, 16, 24, 0.72);
	backdrop-filter: blur(18px);
}

.featured-story-content h2 {
	font-size: clamp(1.35rem, 3vw, 2.05rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	margin: 8px 0;
}

.category-deck-section,
.latest-section,
.editorial-strip {
	padding: 44px 0;
}

.section-heading {
	margin-bottom: 24px;
}

.section-heading h2,
.newsletter-panel h2,
.editorial-strip h2,
.single-title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.7rem);
	letter-spacing: -0.065em;
	line-height: 0.98;
}

.section-heading.split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.section-heading.split > p,
.section-heading .search-form {
	max-width: 420px;
}

.category-deck {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 232px;
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 30px;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.17), transparent 15rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
	transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.category-card:nth-child(1),
.category-card:nth-child(2),
.category-card:nth-child(3) {
	grid-column: span 2;
}

.category-card:nth-child(n+4) {
	grid-column: span 3;
	min-height: 188px;
}

.category-card::after {
	content: "";
	position: absolute;
	inset: auto -18% -55% 35%;
	height: 180px;
	border-radius: 999px;
	filter: blur(12px);
	opacity: 0.42;
	background: var(--accent);
}

.category-card-2::after { background: var(--accent-2); }
.category-card-3::after { background: var(--accent-3); }
.category-card-4::after { background: var(--accent-4); }

.category-card:hover {
	transform: translateY(-6px);
	border-color: var(--border-strong);
	color: var(--text);
}

.category-icon {
	font-size: 2rem;
	position: relative;
	z-index: 1;
}

.category-name {
	position: relative;
	z-index: 1;
	display: block;
	font-size: clamp(1.45rem, 3vw, 2.15rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1;
	margin-top: 26px;
}

.category-description {
	position: relative;
	z-index: 1;
	color: var(--muted);
	font-size: 0.95rem;
	max-width: 380px;
	margin-top: 10px;
}

.category-arrow {
	position: absolute;
	right: 22px;
	top: 22px;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

.newsletter-panel {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 0.8fr);
	gap: 28px;
	align-items: center;
	padding: clamp(24px, 5vw, 48px);
	margin: 30px 0;
	background:
		radial-gradient(circle at 10% 10%, rgba(214, 179, 106, 0.18), transparent 22rem),
		radial-gradient(circle at 100% 0%, rgba(139, 216, 255, 0.16), transparent 22rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.newsletter-copy p:last-child {
	color: var(--muted);
	max-width: 600px;
}

.newsletter-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: rgba(12, 16, 24, 0.58);
}

.newsletter-form input,
.search-field {
	width: 100%;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.07);
	color: var(--text);
	border-radius: 999px;
	padding: 13px 16px;
	outline: 0;
}

.newsletter-form input:focus,
.search-field:focus {
	border-color: var(--accent);
}

.newsletter-form button,
.search-submit {
	padding: 13px 18px;
}

.newsletter-form small {
	grid-column: 1 / -1;
	color: var(--muted-2);
	padding: 0 7px 3px;
}

.search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.story-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.story-card {
	overflow: hidden;
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
	transition: transform 0.22s ease, border-color 0.22s ease;
}

.story-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-strong);
}

.story-card-media {
	display: block;
	aspect-ratio: 1.48 / 1;
	background:
		linear-gradient(135deg, rgba(214, 179, 106, 0.15), rgba(139, 216, 255, 0.12)),
		#151b29;
}

.media-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-size: 2rem;
	color: var(--accent);
}

.media-fallback.large {
	font-size: 4rem;
}

.story-card-body {
	padding: 20px;
}

.story-card-title {
	font-size: 1.24rem;
	line-height: 1.16;
	letter-spacing: -0.035em;
	margin: 10px 0 8px;
}

.story-card-excerpt {
	color: var(--muted);
	font-size: 0.95rem;
}

.story-card-excerpt p {
	margin-bottom: 0;
}

.category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.category-pills a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(214, 179, 106, 0.13);
	border: 1px solid rgba(214, 179, 106, 0.22);
	color: #f5d993;
	font-size: 0.75rem;
	font-weight: 850;
}

.post-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted-2);
	font-size: 0.84rem;
	font-weight: 700;
}

.empty-state {
	padding: 40px;
	text-align: center;
	color: var(--muted);
}

.empty-state-icon {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	margin: 0 auto 16px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--accent);
	font-size: 1.6rem;
}

.editorial-strip {
	margin: 34px auto 70px;
	padding: 34px;
}

.strip-grid {
	display: grid;
	grid-template-columns: 0.9fr 1fr;
	gap: 28px;
	align-items: center;
}

.archive-layout,
.single-layout {
	padding-bottom: 70px;
}

.archive-hero {
	padding: 70px 0 34px;
}

.archive-description {
	max-width: 720px;
	color: var(--muted);
}

.archive-content {
	padding-top: 12px;
}

.single-container {
	max-width: 890px;
	padding-top: 62px;
}

.single-story {
	padding: clamp(22px, 5vw, 56px);
}

.single-header {
	margin-bottom: 26px;
}

.single-title {
	margin-top: 12px;
	margin-bottom: 14px;
}

.single-featured-image {
	margin: 0 0 30px;
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.single-featured-image img {
	aspect-ratio: 16 / 9;
}

.entry-content {
	font-size: 1.06rem;
	color: #e7ebf3;
}

.entry-content a {
	color: #f5d993;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin-top: 1.6em;
}

.entry-content blockquote {
	margin-inline: 0;
	padding: 18px 22px;
	border-left: 4px solid var(--accent);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
}

.tag-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.tag-links a {
	padding: 8px 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--muted);
}

.post-navigation,
.comments-area {
	margin-top: 22px;
	padding: 24px;
}

.nav-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.nav-subtitle {
	display: block;
	color: var(--muted-2);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.nav-title {
	display: block;
	font-weight: 900;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	margin: 24px 4px 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border);
	color: var(--muted);
}

.page-numbers.current {
	background: var(--accent);
	color: #121722;
}

.site-footer {
	border-top: 1px solid var(--border);
	background: rgba(6, 8, 13, 0.78);
	padding: 44px 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.8fr 0.8fr;
	gap: 28px;
}

.footer-logo {
	font-size: 1.4rem;
	font-weight: 950;
	letter-spacing: -0.04em;
}

.footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 9px;
}

.footer-nav a,
.footer-bottom a {
	color: var(--muted);
}

.footer-note span,
.footer-widget-title {
	font-weight: 900;
	color: var(--text);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-top: 28px;
	margin-top: 30px;
	border-top: 1px solid var(--border);
	color: var(--muted-2);
	font-size: 0.9rem;
}

@media (max-width: 1020px) {
	.header-inner {
		min-height: 74px;
	}

	.nav-toggle {
		display: block;
		margin-left: auto;
	}

	.main-navigation {
		position: absolute;
		left: 16px;
		right: 16px;
		top: calc(100% + 10px);
		display: none;
		padding: 12px;
		border: 1px solid var(--border);
		border-radius: 22px;
		background: rgba(12, 16, 24, 0.96);
		box-shadow: var(--shadow);
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul {
		align-items: stretch;
		flex-direction: column;
	}

	.header-cta {
		display: none;
	}

	.hero-grid,
	.newsletter-panel,
	.strip-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.category-deck,
	.story-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.category-card,
	.category-card:nth-child(1),
	.category-card:nth-child(2),
	.category-card:nth-child(3),
	.category-card:nth-child(n+4) {
		grid-column: auto;
	}

	.section-heading.split {
		align-items: start;
		flex-direction: column;
	}
}

@media (max-width: 680px) {
	.container {
		width: min(100% - 24px, var(--max));
	}

	.hero-section {
		padding-top: 42px;
	}

	.category-deck,
	.story-grid,
	.nav-links {
		grid-template-columns: 1fr;
	}

	.newsletter-form,
	.search-form {
		grid-template-columns: 1fr;
		display: grid;
	}

	.featured-story-content {
		position: static;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
		border-bottom: 0;
	}

	.featured-media {
		aspect-ratio: 1.3 / 1;
	}

	.footer-bottom {
		flex-direction: column;
	}
}


/* Premium light refresh + aligned multi-row menu */
body.tatyli-premium-light {
	background:
		radial-gradient(circle at top left, rgba(184, 132, 45, 0.14), transparent 34rem),
		radial-gradient(circle at top right, rgba(59, 130, 246, 0.13), transparent 32rem),
		linear-gradient(180deg, #fffaf3 0%, #f6f0e7 48%, #eef4fb 100%);
	color: var(--text);
}

.site-header {
	background: rgba(255, 250, 242, 0.88);
	border-bottom: 1px solid rgba(26, 34, 53, 0.1);
	box-shadow: 0 16px 42px rgba(26, 34, 53, 0.08);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px 24px;
	min-height: 104px;
	padding: 14px 0 12px;
}

.site-branding {
	grid-column: 1;
	min-width: 0;
}

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

.brand-mark {
	background: linear-gradient(135deg, #d8a241, #f1c979);
	color: #111827;
	box-shadow: 0 14px 34px rgba(184, 132, 45, 0.22);
}

.main-navigation {
	grid-column: 1 / -1;
	grid-row: 2;
	margin-left: 0;
	padding-top: 12px;
	border-top: 1px solid rgba(26, 34, 53, 0.09);
}

.main-navigation ul {
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.main-navigation a {
	white-space: nowrap;
	padding: 10px 15px;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(26, 34, 53, 0.09);
	color: #39465a;
	box-shadow: 0 8px 22px rgba(26, 34, 53, 0.05);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	background: #111827;
	border-color: #111827;
	color: #ffffff;
}

.header-cta {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	background: linear-gradient(135deg, #111827, #334155);
	color: #ffffff;
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.16);
}

.button-primary,
.newsletter-form button,
.search-submit {
	background: linear-gradient(135deg, #111827, #334155);
	color: #ffffff;
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.15);
}

.button-secondary {
	background: rgba(255, 255, 255, 0.72);
	color: #111827;
	border-color: rgba(26, 34, 53, 0.16);
}

.featured-story-card,
.empty-state,
.newsletter-panel,
.editorial-strip,
.single-story,
.comments-area,
.post-navigation,
.story-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 239, 0.72));
	border-color: rgba(26, 34, 53, 0.1);
	box-shadow: var(--shadow);
}

.featured-media,
.story-card-media {
	background:
		linear-gradient(135deg, rgba(184, 132, 45, 0.13), rgba(59, 130, 246, 0.12)),
		#eef3f9;
}

.featured-story-content {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(26, 34, 53, 0.13);
	box-shadow: 0 18px 45px rgba(26, 34, 53, 0.12);
}

.category-card {
	background:
		radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.86), transparent 15rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 231, 0.76));
	box-shadow: 0 18px 48px rgba(26, 34, 53, 0.1);
}

.category-card:hover {
	color: var(--text);
	box-shadow: 0 24px 60px rgba(26, 34, 53, 0.15);
}

.category-description,
.hero-copy > p:not(.section-eyebrow),
.archive-hero p,
.section-heading p,
.editorial-strip p,
.footer-brand p,
.footer-note p,
.story-card-excerpt,
.empty-state,
.footer-nav a,
.footer-bottom a {
	color: var(--muted);
}

.category-arrow,
.empty-state-icon,
.page-numbers {
	background: rgba(17, 24, 39, 0.06);
}

.newsletter-panel {
	background:
		radial-gradient(circle at 10% 10%, rgba(184, 132, 45, 0.14), transparent 22rem),
		radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.11), transparent 22rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 231, 0.76));
}

.newsletter-form {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(26, 34, 53, 0.12);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.newsletter-form input,
.search-field {
	background: #ffffff;
	border-color: rgba(26, 34, 53, 0.1);
	color: var(--text);
}

.newsletter-form input::placeholder,
.search-field::placeholder {
	color: #8a96a8;
}

.category-pills a {
	background: rgba(184, 132, 45, 0.11);
	border-color: rgba(184, 132, 45, 0.2);
	color: #8a5c08;
}

.post-meta {
	color: var(--muted-2);
}

.entry-content {
	color: #334155;
}

.entry-content a {
	color: #8a5c08;
}

.entry-content blockquote {
	background: rgba(184, 132, 45, 0.08);
	color: var(--text);
}

.site-footer {
	background: rgba(255, 255, 255, 0.68);
	border-top: 1px solid rgba(26, 34, 53, 0.1);
}

.footer-grid {
	align-items: start;
}

.footer-nav ul {
	grid-template-columns: repeat(2, minmax(140px, 1fr));
	gap: 10px 18px;
}

.footer-nav a:hover,
.footer-bottom a:hover {
	color: var(--accent);
}

@media (max-width: 1020px) {
	.header-inner {
		display: flex;
		min-height: 74px;
		padding: 0;
	}

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

	.main-navigation {
		grid-column: auto;
		grid-row: auto;
		padding: 12px;
		border-top: 0;
		background: rgba(255, 250, 242, 0.98);
		box-shadow: 0 18px 48px rgba(26, 34, 53, 0.14);
	}

	.main-navigation ul {
		align-items: stretch;
		justify-content: flex-start;
		gap: 8px;
	}

	.main-navigation a {
		justify-content: center;
		width: 100%;
	}

	.nav-toggle {
		background: #ffffff;
		color: var(--text);
	}
}

@media (max-width: 680px) {
	.footer-nav ul {
		grid-template-columns: 1fr;
	}
}

/* V3 homepage polish: cleaner empty launch state + lighter mobile presentation */
body.tatyli-premium-light {
	background:
		radial-gradient(circle at top left, rgba(184, 132, 45, 0.10), transparent 32rem),
		radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 30rem),
		linear-gradient(180deg, #fffaf3 0%, #f8f3eb 50%, #f2f6fb 100%);
}

.hero-section {
	padding: 72px 0 34px;
}

.hero-grid:not(:has(.hero-feature)) {
	grid-template-columns: 1fr;
}

.hero-grid:not(:has(.hero-feature)) .hero-copy {
	max-width: 1080px;
}

.category-deck-section {
	padding-top: 64px;
}

.category-card {
	min-height: 214px;
}

.category-card:nth-child(n+4) {
	min-height: 174px;
}

.newsletter-panel {
	margin: 54px 0 38px;
}

.editorial-strip {
	margin-top: 48px;
}

.site-footer {
	background: rgba(255, 255, 255, 0.82);
}

@supports not selector(:has(*)) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid .hero-feature {
		max-width: 720px;
	}
}

@media (max-width: 680px) {
	.hero-section {
		padding: 46px 0 22px;
	}

	.hero-copy h1,
	.archive-hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.45rem);
		line-height: 0.96;
		letter-spacing: -0.07em;
	}

	.hero-actions {
		margin-top: 24px;
	}

	.category-deck-section {
		padding-top: 46px;
	}

	.section-heading h2,
	.newsletter-panel h2,
	.editorial-strip h2,
	.single-title {
		font-size: clamp(1.9rem, 10vw, 2.75rem);
		line-height: 1;
	}

	.category-card,
	.category-card:nth-child(n+4) {
		min-height: 170px;
		padding: 20px;
	}

	.category-name {
		font-size: 1.65rem;
		margin-top: 18px;
	}

	.newsletter-panel {
		margin: 40px 0 24px;
	}

	.editorial-strip {
		margin: 34px auto 48px;
		padding: 26px;
	}

	.site-footer {
		padding-top: 36px;
	}
}
