/* ==========================================================================
   Kamisaku Theme — Premium FANZA Affiliate
   ========================================================================== */

:root {
	--color-bg: #08080e;
	--color-surface: #12121c;
	--color-surface-2: #1a1a28;
	--color-border: #2a2a3d;
	--color-text: #e4e4ec;
	--color-text-muted: #8888a0;
	--color-accent: #c41e5a;
	--color-accent-hover: #d42a6a;
	--color-accent-glow: rgba(196, 30, 90, 0.25);
	--color-gold: #d4a853;
	--color-success: #2ecc71;
	--font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--container: 1200px;
	--header-h: 72px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.age-gate-active { overflow: hidden; }
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }

.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;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition);
	text-decoration: none;
	white-space: nowrap;
}

.btn--primary {
	background: linear-gradient(135deg, var(--color-accent), #a01848);
	color: #fff;
	box-shadow: 0 4px 16px var(--color-accent-glow);
}
.btn--primary:hover {
	background: linear-gradient(135deg, var(--color-accent-hover), #b01e50);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 24px var(--color-accent-glow);
}

.btn--ghost {
	background: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
}
.btn--ghost:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	background: rgba(196, 30, 90, 0.05);
}

.btn--lg { padding: 14px 36px; font-size: 16px; }
.btn--xl { padding: 18px 48px; font-size: 17px; width: 100%; }

/* ── Header ── */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(8, 8, 14, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: all var(--transition);
}

.site-header.is-scrolled {
	border-bottom-color: var(--color-border);
	background: rgba(8, 8, 14, 0.95);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--color-text);
}
.site-logo:hover { color: var(--color-text); }

.site-logo__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	background: linear-gradient(135deg, var(--color-accent), #8b1040);
	border-radius: var(--radius-sm);
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.site-logo__name {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}
.site-logo__tagline {
	display: block;
	font-size: 11px;
	color: var(--color-text-muted);
	font-weight: 400;
}

/* Nav */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
}

.nav-menu > li > a {
	display: block;
	padding: 8px 16px;
	color: var(--color-text-muted);
	font-size: 14px;
	font-weight: 500;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
	color: var(--color-text);
	background: var(--color-surface-2);
}

.nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 8px;
	box-shadow: var(--shadow-md);
	list-style: none;
}
.nav-menu .has-dropdown { position: relative; }
.nav-menu .has-dropdown:hover .sub-menu { display: block; }
.nav-menu .sub-menu a {
	display: block;
	padding: 8px 12px;
	color: var(--color-text-muted);
	font-size: 13px;
	border-radius: var(--radius-sm);
}
.nav-menu .sub-menu a:hover {
	color: var(--color-text);
	background: var(--color-surface-2);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.search-toggle,
.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text-muted);
	cursor: pointer;
	transition: all var(--transition);
}
.search-toggle:hover,
.menu-toggle:hover {
	color: var(--color-text);
	border-color: var(--color-accent);
}

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.menu-toggle span {
	display: block;
	width: 18px; height: 2px;
	background: currentColor;
	border-radius: 1px;
	transition: all var(--transition);
}
.menu-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.search-panel {
	padding: 16px 0;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
}
.search-form {
	display: flex;
	gap: 8px;
}
.search-form input[type="search"] {
	flex: 1;
	padding: 12px 16px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 15px;
	outline: none;
	transition: border-color var(--transition);
}
.search-form input[type="search"]:focus {
	border-color: var(--color-accent);
}
.search-form button {
	padding: 12px 24px;
	background: var(--color-accent);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	font-family: var(--font-sans);
	font-weight: 600;
	cursor: pointer;
	transition: background var(--transition);
}
.search-form button:hover { background: var(--color-accent-hover); }

/* ── Main Content offset ── */
.site-main { padding-top: var(--header-h); }

/* ── Hero ── */
.hero {
	position: relative;
	padding: 80px 0 60px;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(196, 30, 90, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(100, 30, 150, 0.08) 0%, transparent 50%),
		var(--color-bg);
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
}

.hero__label {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(196, 30, 90, 0.15);
	border: 1px solid rgba(196, 30, 90, 0.3);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-accent);
	margin-bottom: 20px;
}

.hero__title {
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 16px;
	background: linear-gradient(135deg, #fff 0%, #c8c8d8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__subtitle {
	font-size: 16px;
	color: var(--color-text-muted);
	max-width: 520px;
	margin-bottom: 32px;
	line-height: 1.8;
}

.hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero__stats {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.stat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 32px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	min-width: 140px;
}
.stat-card__number {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-accent);
}
.stat-card__label {
	font-size: 12px;
	color: var(--color-text-muted);
	margin-top: 4px;
}

/* ── Sections ── */
.section {
	padding: 64px 0;
}

.section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 36px;
	flex-wrap: wrap;
	gap: 12px;
}

.section__title {
	font-size: 26px;
	font-weight: 700;
}

.section__desc {
	color: var(--color-text-muted);
	font-size: 14px;
	margin-top: 4px;
}

.section__link {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-accent);
}
.section__link:hover { color: var(--color-accent-hover); }

.section--featured {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.section--cta { padding-bottom: 80px; }

/* ── Work List (text-only) ── */
.work-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.work-grid--featured { gap: 0; }

/* ── Work Card (text list item) ── */
.work-card {
	background: transparent;
	border-bottom: 1px solid var(--color-border);
	transition: all var(--transition);
}
.work-card:first-child {
	border-top: 1px solid var(--color-border);
}

.work-card:hover {
	background: var(--color-surface);
}

.work-card__link {
	display: block;
	padding: 20px 24px;
	color: inherit;
	text-decoration: none;
}
.work-card__link:hover { color: inherit; }

.work-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.work-card__meta-top {
	display: flex;
	align-items: center;
	gap: 8px;
}

.work-card__genre {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--color-accent);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.work-card__arrow {
	font-size: 16px;
	color: var(--color-text-muted);
	transition: transform var(--transition), color var(--transition);
}
.work-card:hover .work-card__arrow {
	transform: translateX(4px);
	color: var(--color-accent);
}

.work-card__title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	margin: 0 0 12px;
	color: var(--color-text);
	/* no line-clamp: show full title */
}

.work-card__footer {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.work-card__actress {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--color-text-muted);
}

.work-card__maker {
	font-size: 12px;
	color: var(--color-text-muted);
}

.work-card__release {
	font-size: 12px;
	color: var(--color-text-muted);
	margin-left: auto;
}

.badge {
	display: inline-block;
	padding: 3px 8px;
	font-size: 10px;
	font-weight: 700;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.badge--new {
	background: var(--color-accent);
	color: #fff;
}
.badge--rating {
	background: rgba(0, 0, 0, 0.7);
	color: var(--color-gold);
	backdrop-filter: blur(4px);
}
}

/* Stars */
.stars { display: inline-flex; gap: 1px; }
.star { font-size: 13px; }
.star--full { color: var(--color-gold); }
.star--half { color: var(--color-gold); opacity: 0.6; }
.star--empty { color: var(--color-border); }

/* ── Genre Pills ── */
.genre-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.genre-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 100px;
	color: var(--color-text-muted);
	font-size: 14px;
	font-weight: 500;
	transition: all var(--transition);
	text-decoration: none;
}
.genre-pill:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	background: rgba(196, 30, 90, 0.05);
}
.genre-pill--active {
	border-color: var(--color-accent);
	color: var(--color-accent);
	background: rgba(196, 30, 90, 0.1);
}

.genre-pill__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	background: var(--color-surface-2);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
}

/* ── CTA Banner ── */
.cta-banner {
	text-align: center;
	padding: 56px 32px;
	background:
		radial-gradient(ellipse at center, rgba(196, 30, 90, 0.1) 0%, transparent 70%),
		var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}
.cta-banner__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
}
.cta-banner__text {
	color: var(--color-text-muted);
	margin-bottom: 28px;
}

/* ── Archive Header ── */
.archive-header {
	padding: 48px 0 32px;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
}
.archive-header__title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
}
.archive-header__desc {
	color: var(--color-text-muted);
	font-size: 15px;
	margin-bottom: 24px;
}

.page-content { padding: 48px 0 80px; }

/* ── Single Work ── */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--color-text-muted);
	padding: 24px 0;
	flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current {
	color: var(--color-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 300px;
}

.work-single__layout {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.work-single__layout--no-image {
	grid-template-columns: 1fr;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.work-single__image {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--color-border);
}
.work-single__image img {
	width: 100%;
	border-radius: var(--radius-md);
}

.work-single__badges {
	position: absolute;
	top: 16px;
	left: 16px;
}

.work-single__genres {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.genre-tag {
	padding: 4px 12px;
	background: rgba(196, 30, 90, 0.12);
	border: 1px solid rgba(196, 30, 90, 0.25);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-accent);
	text-decoration: none;
	transition: all var(--transition);
}
.genre-tag:hover {
	background: rgba(196, 30, 90, 0.2);
	color: var(--color-accent-hover);
}

.work-single__title {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 12px;
}

.work-single__actress {
	font-size: 15px;
	color: var(--color-text-muted);
	margin-bottom: 16px;
}
.work-single__actress a { color: var(--color-text); font-weight: 500; }

.work-single__rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}
.work-single__rating-value {
	font-size: 14px;
	color: var(--color-gold);
	font-weight: 600;
}

.work-single__specs {
	margin-bottom: 32px;
}

.spec-row {
	display: flex;
	padding: 12px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 14px;
}
.spec-row dt {
	width: 120px;
	flex-shrink: 0;
	color: var(--color-text-muted);
	font-weight: 500;
}
.spec-row dd { flex: 1; }
.spec-row--price .work-single__price {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-gold);
}

.work-single__cta { margin-bottom: 16px; }

.btn--affiliate {
	background: linear-gradient(135deg, #e8384f, var(--color-accent));
	font-size: 17px;
	letter-spacing: 0.5px;
}
.btn--affiliate:hover {
	background: linear-gradient(135deg, #f04058, var(--color-accent-hover));
}

.work-single__cta-note {
	font-size: 12px;
	color: var(--color-text-muted);
	text-align: center;
	margin-top: 12px;
}

.work-single__review {
	padding: 40px 0;
	border-top: 1px solid var(--color-border);
}
.work-single__review-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
}
.work-single__excerpt {
	font-size: 16px;
	color: var(--color-text-muted);
	margin-bottom: 24px;
	padding: 16px 20px;
	background: var(--color-surface);
	border-left: 3px solid var(--color-accent);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry-content {
	font-size: 15px;
	line-height: 1.9;
}
.entry-content h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 40px 0 20px;
	padding: 10px 16px;
	border-left: 4px solid var(--color-accent);
	background: linear-gradient(90deg, rgba(196, 30, 90, 0.08) 0%, transparent 100%);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: #fff;
}
.entry-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 32px 0 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-border);
	color: #fff;
	position: relative;
}
.entry-content h3::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 40px;
	height: 1px;
	background: var(--color-accent);
}
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol {
	margin: 0 0 16px 20px;
}
.entry-content li { margin-bottom: 6px; }

/* Custom markup styles for API/LLM generated articles */
.entry-content mark {
	background: linear-gradient(transparent 50%, rgba(196, 30, 90, 0.35) 50%);
	color: #fff;
	padding: 0 2px;
	font-weight: 600;
}
.entry-content .article-em-red {
	color: #ff3344;
}
.entry-content .article-em-red strong {
	color: #ff3344;
	font-weight: 700;
}

.work-single__related {
	padding: 40px 0;
	border-top: 1px solid var(--color-border);
}
.work-single__related .section__title {
	margin-bottom: 28px;
}

/* ── Static Page ── */
.static-page__title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 32px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-border);
}

/* ── No Results / 404 ── */
.no-results {
	text-align: center;
	padding: 80px 24px;
}
.no-results h2 {
	font-size: 22px;
	margin-bottom: 12px;
}
.no-results p {
	color: var(--color-text-muted);
	margin-bottom: 28px;
}
.no-results__code {
	display: block;
	font-size: 80px;
	font-weight: 700;
	color: var(--color-accent);
	opacity: 0.3;
	line-height: 1;
	margin-bottom: 16px;
}
.no-results__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── Pagination ── */
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
}
.pagination .nav-links {
	display: flex;
	gap: 6px;
	align-items: center;
}
.pagination a, .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text-muted);
	font-size: 14px;
	font-weight: 500;
	transition: all var(--transition);
	text-decoration: none;
}
.pagination a:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}
.pagination .current {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
}

/* ── Footer ── */
.site-footer {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	padding: 56px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-text);
	text-decoration: none;
	margin-bottom: 12px;
}
.footer-logo:hover { color: var(--color-text); }

.footer-desc {
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.footer-nav h3, .footer-info h3 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--color-text);
}

.footer-menu {
	list-style: none;
}
.footer-menu li { margin-bottom: 8px; }
.footer-menu a {
	color: var(--color-text-muted);
	font-size: 14px;
	transition: color var(--transition);
}
.footer-menu a:hover { color: var(--color-accent); }

.footer-info p {
	font-size: 13px;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 8px;
}
.footer-age-notice {
	color: var(--color-accent) !important;
	font-weight: 600;
}

.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid var(--color-border);
	text-align: center;
}
.copyright {
	font-size: 13px;
	color: var(--color-text-muted);
}

/* ==========================================================================
   Age Gate
   ========================================================================== */
.age-gate {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-gate--leaving {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.age-gate__overlay {
	position: absolute;
	inset: 0;
	background: rgba(4, 4, 8, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.age-gate__content {
	position: relative;
	max-width: 480px;
	width: 90%;
	padding: 48px 40px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	text-align: center;
	box-shadow: var(--shadow-lg);
	animation: ageGateIn 0.5s ease;
}

@keyframes ageGateIn {
	from { opacity: 0; transform: translateY(20px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.age-gate__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px; height: 72px;
	margin: 0 auto 20px;
	background: rgba(196, 30, 90, 0.12);
	border-radius: 50%;
	color: var(--color-accent);
}

.age-gate__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
}

.age-gate__text {
	font-size: 15px;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 20px;
}

.age-gate__badge {
	display: inline-block;
	padding: 8px 24px;
	background: linear-gradient(135deg, var(--color-accent), #8b1040);
	border-radius: 100px;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 28px;
}

.age-gate__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.age-gate__yes { width: 100%; }
.age-gate__no { width: 100%; font-size: 14px; }

.age-gate__legal {
	font-size: 11px;
	color: var(--color-text-muted);
	line-height: 1.6;
	opacity: 0.7;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.work-single__layout {
		grid-template-columns: 300px 1fr;
		gap: 32px;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	:root { --header-h: 60px; }

	/* Optimize readability for short paragraphs on mobile */
	.entry-content p {
		margin-bottom: 12px;
		line-height: 1.75;
	}
	.entry-content h2 {
		font-size: 19px;
		margin: 32px 0 16px;
		padding: 8px 12px;
	}
	.entry-content h3 {
		font-size: 16px;
		margin: 28px 0 12px;
	}

	.menu-toggle { display: flex; }

	.main-nav {
		position: fixed;
		top: var(--header-h);
		left: 0; right: 0; bottom: 0;
		background: rgba(8, 8, 14, 0.98);
		backdrop-filter: blur(16px);
		padding: 24px;
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
	}
	.main-nav.is-open { transform: translateX(0); }

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}
	.nav-menu > li > a {
		padding: 14px 16px;
		font-size: 16px;
	}
	.nav-menu .sub-menu {
		position: static;
		display: block;
		background: transparent;
		border: none;
		box-shadow: none;
		padding: 0 0 0 16px;
	}

	.hero { padding: 48px 0 40px; }
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.hero__stats {
		flex-direction: row;
		justify-content: center;
	}
	.stat-card { flex: 1; padding: 16px; min-width: 0; }
	.stat-card__number { font-size: 22px; }

	.work-card__link {
		padding: 16px;
	}
	.work-card__title {
		font-size: 15px;
	}

	.work-single__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.work-single__image { max-width: 320px; margin: 0 auto; }

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.section { padding: 40px 0; }
	.archive-header { padding: 32px 0 24px; }

	.age-gate__content {
		padding: 36px 24px;
	}
}

@media (max-width: 480px) {
	.hero__actions { flex-direction: column; }
	.hero__actions .btn { width: 100%; }
	.hero__stats { flex-direction: column; }
}
