/* ============================================================
   Ναυπακτία press - Editorial newspaper UI
   Classical masthead, paper tones, restrained accent
   ============================================================ */

:root {
	/* Brand (navy retained for links / institutional) */
	--blue:       #0c3569;
	--blue-dark:  #14120f;
	--blue-deep:  #0e0c0a;
	--blue-mid:   #1a4d7a;
	--blue-light: #7eb8d9;
	--blue-50:    #eef4f8;
	--blue-100:   #dce8f0;

	/* Accent: warm print red / seal */
	--accent:     #b45309;
	--accent-deep:#92400e;
	--red:        #9f1239;

	/* Paper & ink */
	--ink:        #14120f;
	--ink-2:      #292524;
	--ink-3:      #57534e;
	--ink-4:      #78716c;
	--ink-5:      #d6d3d1;
	--line:       #e7e5e4;
	--line-soft:  #f5f5f4;
	--bg:         #fdfcfa;
	--bg-soft:    #faf8f5;
	--bg-section: #f4f1eb;

	/* Typography */
	--font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-serif: 'Source Serif 4', 'Georgia', serif;
	--font-display: 'Newsreader', 'Source Serif 4', Georgia, serif;

	/* Layout */
	--max:        1180px;
	--bar-h:      72px;

	--shadow-xs:  0 1px 2px rgba(20, 18, 15, 0.04);
	--shadow-sm:  0 2px 10px rgba(20, 18, 15, 0.06);
	--shadow:     0 12px 40px rgba(20, 18, 15, 0.08);
	--shadow-lg:  0 24px 64px rgba(20, 18, 15, 0.12);

	--ease:       cubic-bezier(0.16, 1, 0.3, 1);
	--t:          260ms var(--ease);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-2);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'kern' 1, 'liga' 1;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-mid); }
em, i { font-style: italic; }
::selection { background: var(--ink); color: #fdfcfa; }

.skiplink {
	position: absolute; left: -9999px; top: 8px;
	padding: 8px 16px; background: var(--ink); color: #fff;
	z-index: 10000; border-radius: 4px;
}
.skiplink:focus { left: 8px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.text-center { text-align: center; }

/* Reveal-on-scroll */
[data-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   STICKY TOP BAR - masthead band
   ============================================================ */
.top-bar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--blue-dark);
	color: #faf8f5;
	border-bottom: 3px double rgba(250, 248, 245, 0.22);
	box-shadow: 0 1px 0 rgba(0,0,0,0.35);
}
.top-bar-inner {
	display: grid;
	grid-template-columns: auto 1fr auto auto auto;
	gap: 20px;
	align-items: center;
	min-height: var(--bar-h);
	padding: 10px 26px;
	font-family: var(--font-sans);
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
	height: 46px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	border-radius: 2px;
}

.top-bar-info {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.np-mark {
	display: block;
	width: 1px;
	height: 28px;
	background: linear-gradient(180deg, transparent, rgba(180, 83, 9, 0.85), transparent);
	flex-shrink: 0;
}
.np-text { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.np-label {
	font-size: 10px; font-weight: 600;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: rgba(250, 248, 245, 0.55);
	line-height: 1;
	font-family: var(--font-sans);
}
.np-show {
	font-size: 14px; font-weight: 600;
	color: rgba(250, 248, 245, 0.95);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 320px;
	letter-spacing: 0.02em;
	font-family: var(--font-display);
	font-variant-numeric: tabular-nums;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: #faf8f5;
	color: var(--blue-dark);
	border: 1px solid rgba(250, 248, 245, 0.35);
	border-radius: 2px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: background var(--t), border-color var(--t), color var(--t);
	flex-shrink: 0;
	box-shadow: none;
	text-decoration: none;
	font-family: var(--font-sans);
}
.cta-btn:hover {
	transform: none;
	box-shadow: none;
	background: #fff;
	color: var(--ink);
	border-color: #fff;
}
.cta-btn-icon {
	display: inline-flex;
	width: 28px; height: 28px;
	align-items: center;
	justify-content: center;
	background: var(--blue-dark);
	color: #faf8f5;
	border-radius: 2px;
	border: 1px solid rgba(250, 248, 245, 0.12);
}
.cta-btn-icon svg { width: 12px; height: 12px; }

.issue-badge {
	display: flex;
	align-items: baseline;
	gap: 6px;
	color: rgba(250, 248, 245, 0.92);
	padding: 6px 12px;
	background: transparent;
	border: 1px solid rgba(250, 248, 245, 0.2);
	border-radius: 2px;
	font-weight: 600;
	flex-shrink: 0;
	font-family: var(--font-sans);
}
.issue-badge-label {
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(250, 248, 245, 0.45);
	font-weight: 600;
}
.issue-badge-num {
	font-size: 16px;
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.02em;
	font-variant-numeric: tabular-nums;
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid rgba(250, 248, 245, 0.2);
	color: #faf8f5;
	width: 42px; height: 42px;
	border-radius: 2px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background var(--t), border-color var(--t);
}
.nav-toggle:hover { background: rgba(250, 248, 245, 0.08); }

/* ============================================================
   NEWS TICKER - "Live on air" pattern for press headlines
   Pulls latest from lepantortv.gr via api/news.php (PHP-side
   atom feed scrape). Falls back to static dateline strip if
   fetch fails. Marquee animation, hover-to-pause.
   ============================================================ */
.news-ticker {
	display: flex;
	align-items: stretch;
	background: var(--bg-section);
	border-bottom: 1px solid var(--line);
	font-family: var(--font-sans);
	overflow: hidden;
	min-height: 36px;
}

.ticker-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	background: var(--accent);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}
.ticker-label::after {
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	width: 0;
	height: 0;
	border-left: 10px solid var(--accent);
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	z-index: -1;
}
.ticker-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
	animation: ticker-pulse 1.6s ease-in-out infinite;
	flex-shrink: 0;
}
@keyframes ticker-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: 0.45; transform: scale(0.7); }
}

.ticker-viewport {
	flex: 1;
	overflow: hidden;
	position: relative;
	padding-left: 18px;
	mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 32px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 32px), transparent 100%);
}
.ticker-track {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	white-space: nowrap;
	animation: ticker-scroll 65s linear infinite;
	will-change: transform;
	padding-right: 64px;
}
.news-ticker:hover .ticker-track,
.ticker-track:focus-within {
	animation-play-state: paused;
}
@keyframes ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.ticker-item {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink-2);
	letter-spacing: 0.01em;
	line-height: 1;
	padding: 11px 0;
	max-width: 64ch;
	overflow: hidden;
	text-overflow: ellipsis;
}
a.ticker-item {
	color: var(--ink-2);
	text-decoration: none;
	transition: color 180ms ease;
}
a.ticker-item:hover { color: var(--accent); }
.ticker-item-fallback {
	color: var(--ink-4);
	font-weight: 600;
	letter-spacing: 0.12em;
	font-size: 11px;
	text-transform: uppercase;
}
.ticker-sep {
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0.55;
	flex-shrink: 0;
}
.ticker-item-date {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.06em;
	margin-right: 8px;
	text-transform: uppercase;
}

.ticker-source {
	display: none;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	font-size: 11px;
	font-weight: 600;
	color: var(--ink-4);
	border-left: 1px solid var(--line);
	background: var(--bg);
	text-decoration: none;
	flex-shrink: 0;
	letter-spacing: 0.02em;
	transition: color 180ms ease, background 180ms ease;
}
.ticker-source:hover { color: var(--accent); background: var(--bg-section); }
.ticker-source svg { opacity: 0.6; }

@media (min-width: 720px) {
	.ticker-source { display: inline-flex; }
}

@media (max-width: 480px) {
	.ticker-label { padding: 7px 12px; font-size: 9px; letter-spacing: 0.18em; }
	.ticker-label::after { border-top-width: 16px; border-bottom-width: 16px; }
	.ticker-viewport { padding-left: 14px; }
	.ticker-item { font-size: 12px; max-width: none; }
	.ticker-track { animation-duration: 45s; }
}

@media (prefers-reduced-motion: reduce) {
	.ticker-track {
		animation: none;
		flex-wrap: wrap;
		white-space: normal;
		padding-right: 0;
	}
	.ticker-dot { animation: none; opacity: 0.85; }
}

/* ============================================================
   MAIN NAV
   ============================================================ */
.nav-main {
	background: var(--bg);
	border-bottom: 1px solid var(--ink);
	position: sticky;
	top: var(--bar-h);
	z-index: 99;
	font-family: var(--font-sans);
}
.nav-main ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}
.nav-main a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 14px 20px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ink-3);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
	transition: color var(--t), border-color var(--t), background var(--t);
}
.nav-main a:hover {
	color: var(--ink);
	border-bottom-color: var(--accent);
	background: var(--bg-soft);
}
.nav-main .nav-ext a { color: var(--ink-4); letter-spacing: 0.04em; }
.nav-main .nav-ext a:hover { color: var(--ink); background: transparent; }
.nav-main .nav-ext a svg { opacity: 0.5; }

/* ============================================================
   HERO - full-bleed cover photo
   ============================================================ */
.hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(600px, 88vh, 800px);
	display: flex;
	align-items: center;
	background: var(--blue-deep);
	color: #faf8f5;
}
.hero-photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 28%;
	opacity: 0;
	transition: opacity 800ms var(--ease);
	transform: scale(1.04);
	filter: grayscale(0.25) contrast(1.05) blur(6px);
}
.hero-photo.is-loaded { opacity: 0.38; }
.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(14, 12, 10, 0.55) 0%, rgba(14, 12, 10, 0.82) 45%, rgba(14, 12, 10, 0.94) 100%);
}
.hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 88px 26px;
	display: grid;
	grid-template-columns: minmax(260px, 320px) 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
}

/* Cover - print frame */
.hero-cover {
	display: block;
	position: relative;
	cursor: zoom-in;
	text-decoration: none;
}
.hero-cover-frame {
	position: relative;
	aspect-ratio: 0.71 / 1;
	width: 100%;
	background: #1c1917;
	overflow: hidden;
	border-radius: 0;
	box-shadow:
		0 0 0 1px rgba(250, 248, 245, 0.12),
		0 24px 48px -12px rgba(0, 0, 0, 0.55),
		12px 12px 0 0 rgba(0, 0, 0, 0.2);
	transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
}
.hero-cover:hover .hero-cover-frame {
	transform: translateY(-4px);
	box-shadow:
		0 0 0 1px rgba(250, 248, 245, 0.18),
		0 32px 64px -16px rgba(0, 0, 0, 0.6),
		14px 14px 0 0 rgba(0, 0, 0, 0.22);
}
.hero-cover-img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.hero-cover-skeleton {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, #292524 25%, #3f3a36 50%, #292524 75%);
	background-size: 200% 100%;
	animation: shimmer 1.6s infinite linear;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.hero-cover-zoom {
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 40px; height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 18, 15, 0.75);
	color: #faf8f5;
	border-radius: 2px;
	border: 1px solid rgba(250, 248, 245, 0.15);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .25s, transform .25s var(--ease);
}
.hero-cover:hover .hero-cover-zoom { opacity: 1; transform: translateY(0); }

/* Hero content */
.hero-content { max-width: 560px; }
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 600;
	font-family: var(--font-sans);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(250, 248, 245, 0.65);
	margin-bottom: 20px;
}
.hero-kicker {
	padding: 4px 10px;
	border: 1px solid rgba(180, 83, 9, 0.55);
	color: rgba(250, 230, 200, 0.95);
	letter-spacing: 0.14em;
	font-weight: 600;
}
.hero-eyebrow-sub {
	color: rgba(250, 248, 245, 0.75);
	letter-spacing: 0.12em;
	font-weight: 500;
}
.hero-eyebrow-divider {
	width: 28px; height: 1px;
	background: rgba(250, 248, 245, 0.28);
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 1.35rem + 3.2vw, 3.85rem);
	font-weight: 700;
	margin: 0 0 22px;
	color: #faf8f5;
	letter-spacing: -0.02em;
	line-height: 1.08;
}
.hero-title-pre {
	display: block;
	font-size: 0.46em;
	font-weight: 500;
	color: rgba(250, 248, 245, 0.62);
	letter-spacing: 0.04em;
	margin-bottom: 10px;
	font-style: italic;
	font-family: var(--font-serif);
}
.hero-title-show {
	display: block;
	font-weight: 800;
}

.hero-meta {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 26px;
	padding: 12px 0;
	border-top: 1px solid rgba(250, 248, 245, 0.18);
	border-bottom: 1px solid rgba(250, 248, 245, 0.18);
}
.hero-meta-item {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
}
.hmi-label {
	font-size: 9px;
	font-weight: 600;
	font-family: var(--font-sans);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(250, 248, 245, 0.45);
}
.hmi-value {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	color: #faf8f5;
	font-variant-numeric: tabular-nums;
}
.hero-meta-divider {
	width: 1px; height: 26px;
	background: rgba(250, 248, 245, 0.15);
}

.hero-lede {
	font-size: 18px;
	color: rgba(250, 248, 245, 0.78);
	margin: 0 0 28px;
	line-height: 1.65;
	max-width: 520px;
	font-family: var(--font-serif);
}

.hero-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	font-family: var(--font-sans);
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 13px;
	border: 0;
	transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
}
.btn:hover { transform: none; text-decoration: none; }
.btn-primary {
	background: #faf8f5;
	color: var(--blue-dark);
	border: 1px solid #faf8f5;
}
.btn-primary:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost {
	background: transparent;
	color: #faf8f5;
	border: 1px solid rgba(250, 248, 245, 0.35);
}
.btn-ghost:hover { background: rgba(250, 248, 245, 0.08); border-color: rgba(250, 248, 245, 0.55); color: #faf8f5; }
.btn-outline {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--ink-5);
}
.btn-outline:hover { background: var(--ink); color: #faf8f5; border-color: var(--ink); }
.btn-big { padding: 15px 26px; font-size: 13px; font-weight: 600; }
.btn-icon {
	display: inline-flex;
	width: 26px; height: 26px;
	align-items: center;
	justify-content: center;
	background: var(--blue-dark);
	color: #faf8f5;
	border-radius: 2px;
	border: 1px solid rgba(250, 248, 245, 0.12);
}
.btn-icon svg { width: 12px; height: 12px; }

/* Scroll indicator */
.hero-scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: rgba(250, 248, 245, 0.4);
	width: 38px; height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(250, 248, 245, 0.2);
	border-radius: 2px;
	transition: color var(--t), border-color var(--t), background var(--t);
	animation: none;
}
.hero-scroll:hover {
	color: #faf8f5;
	border-color: rgba(250, 248, 245, 0.45);
	background: rgba(250, 248, 245, 0.06);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 88px 0; }
.section-manifesto {
	background: var(--bg-section);
	padding: 72px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.section-archive { background: var(--bg); }
.section-about { background: var(--bg-soft); }
.section-points { background: var(--bg); }
.section-contact { background: var(--blue-deep); color: rgba(250, 248, 245, 0.88); }

.section-head {
	max-width: 680px;
	margin: 0 auto 56px;
	text-align: center;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
}
.section-contact .section-head { border-bottom-color: rgba(250, 248, 245, 0.12); }
.section-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	font-family: var(--font-sans);
	color: var(--accent-deep);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 12px;
	position: relative;
	padding: 0 8px;
}
.section-eyebrow::before,
.section-eyebrow::after { display: none; }
.section-contact .section-eyebrow { color: rgba(214, 180, 140, 0.9); }

.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 1.25rem + 2vw, 2.85rem);
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 14px;
	letter-spacing: -0.02em;
	line-height: 1.12;
}
.section-contact .section-title { color: #faf8f5; }
.section-desc {
	color: var(--ink-3);
	font-size: 17px;
	margin: 0;
	line-height: 1.65;
	font-family: var(--font-serif);
}
.section-contact .section-desc { color: rgba(250, 248, 245, 0.68); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto-inner {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}
.manifesto-quote {
	width: 36px; height: 30px;
	color: var(--accent);
	margin: 0 auto 24px;
	opacity: .75;
}
.manifesto-text {
	font-family: var(--font-display);
	font-size: clamp(1.65rem, 1.1rem + 2.2vw, 2.65rem);
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	color: var(--ink);
	letter-spacing: -0.02em;
}
.manifesto-text em {
	font-style: italic;
	font-weight: 700;
	color: var(--blue-mid);
}
.manifesto-sub {
	margin: 20px auto 0;
	max-width: 560px;
	font-size: 17px;
	color: var(--ink-3);
	line-height: 1.65;
	font-family: var(--font-serif);
}
.manifesto-meta {
	margin-top: 28px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 600;
	font-family: var(--font-sans);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-4);
}
.manifesto-meta strong { color: var(--ink); font-weight: 700; }
.manifesto-dot {
	width: 4px; height: 4px;
	border-radius: 50%;
	background: var(--ink-5);
}

/* ============================================================
   ARCHIVE - featured + grid (producer-card hover pattern)
   ============================================================ */
.archive-featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-bottom: 56px;
}
.featured-skeleton {
	aspect-ratio: 0.95 / 1;
	background: linear-gradient(90deg, var(--bg-soft) 25%, var(--line) 50%, var(--bg-soft) 75%);
	background-size: 200% 100%;
	animation: shimmer 1.6s infinite linear;
	border-radius: 0;
	border: 1px solid var(--line);
}
.cover-skeleton {
	aspect-ratio: 0.71 / 1;
	background: linear-gradient(90deg, var(--bg-soft) 25%, var(--line) 50%, var(--bg-soft) 75%);
	background-size: 200% 100%;
	animation: shimmer 1.6s infinite linear;
	border-radius: 0;
	border: 1px solid var(--line);
}

.cover-card {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	background: var(--ink);
	cursor: zoom-in;
	box-shadow: 0 1px 0 rgba(20, 18, 15, 0.06);
	transition: transform 280ms var(--ease), box-shadow var(--t);
	border: 1px solid var(--line);
	padding: 0;
	font: inherit;
	color: inherit;
	text-align: left;
	display: block;
	aspect-ratio: 0.71 / 1;
}
.cover-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: var(--ink-5);
}
.cover-card-photo {
	position: absolute;
	inset: 0;
}
.cover-card-photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 800ms var(--ease), filter var(--t);
}
.cover-card:hover .cover-card-photo img {
	transform: scale(1.06);
	filter: brightness(0.78);
}
.cover-card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	background: linear-gradient(180deg, transparent 35%, rgba(14, 12, 10, 0.92) 100%);
	color: #faf8f5;
	transition: padding var(--t);
}
.cover-card:hover .cover-card-overlay { padding-bottom: 24px; }
.cover-card-date {
	font-size: 10px;
	font-weight: 600;
	font-family: var(--font-sans);
	color: rgba(250, 220, 190, 0.95);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 6px;
	font-variant-numeric: tabular-nums;
}
.cover-card-title {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 700;
	color: #faf8f5;
	margin: 0;
	line-height: 1.28;
	letter-spacing: -0.01em;
}

/* Featured (bigger) variant */
.cover-card.is-featured { aspect-ratio: 0.95 / 1; border-radius: 0; }
.cover-card.is-featured .cover-card-overlay { padding: 28px; }
.cover-card.is-featured .cover-card-date { margin-bottom: 8px; }
.cover-card.is-featured .cover-card-title { font-size: 22px; line-height: 1.22; }
.cover-card.is-featured .cover-card-tag {
	display: inline-block;
	background: transparent;
	color: #faf8f5;
	padding: 3px 8px;
	border: 1px solid rgba(250, 248, 245, 0.35);
	font-size: 9px;
	font-weight: 600;
	font-family: var(--font-sans);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 10px;
	width: max-content;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 24px;
}

.archive-error {
	grid-column: 1 / -1;
	text-align: center;
	padding: 48px;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 0;
	color: var(--ink-3);
	font-family: var(--font-serif);
}

/* ============================================================
   ABOUT - text + stats
   ============================================================ */
.about-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(48px, 7vw, 96px);
	align-items: start;
}
.about-lead {
	font-family: var(--font-serif);
	font-size: 21px;
	line-height: 1.55;
	color: var(--ink);
	margin: 0 0 20px;
	font-weight: 600;
}
.about-text p {
	font-size: 16px;
	line-height: 1.75;
	color: var(--ink-3);
	margin: 0 0 18px;
	font-family: var(--font-serif);
}
.about-text strong { color: var(--ink); font-weight: 600; }
.about-text a { color: var(--blue); }
.about-text a strong { color: var(--blue); }

.about-stats {
	background: var(--bg);
	border: 1px solid var(--ink);
	border-radius: 0;
	padding: 0;
	box-shadow: 4px 4px 0 rgba(20, 18, 15, 0.06);
}
.stat {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--line);
}
.stat:last-child { border-bottom: 0; }
.stat-num {
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
	min-width: 72px;
}
.stat-num span {
	font-size: .55em;
	font-weight: 600;
	color: var(--ink-4);
	margin-left: 2px;
	vertical-align: top;
}
.stat-num-day {
	font-style: italic;
	color: var(--accent-deep);
}
.stat-label {
	font-size: 13px;
	font-weight: 500;
	font-family: var(--font-sans);
	color: var(--ink-3);
	line-height: 1.55;
}
.stat-label strong { color: var(--ink); font-weight: 700; }

@media (max-width: 900px) {
	.about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   POINTS OF SALE - icon cards
   ============================================================ */
.points-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.point-card {
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 0;
	padding: 28px 24px;
	transition: border-color var(--t), box-shadow var(--t);
	position: relative;
	overflow: hidden;
}
.point-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 2px;
	background: var(--accent-deep);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 400ms var(--ease);
}
.point-card:hover {
	transform: none;
	box-shadow: 6px 6px 0 rgba(20, 18, 15, 0.05);
	border-color: var(--ink-5);
}
.point-card:hover::before { transform: scaleX(1); }
.point-icon {
	width: 44px; height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	background: var(--bg-section);
	border-radius: 0;
	border: 1px solid var(--line);
	margin-bottom: 16px;
}
.point-icon svg { width: 20px; height: 20px; }
.point-label {
	font-size: 10px;
	font-weight: 600;
	font-family: var(--font-sans);
	color: var(--ink-4);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.point-title {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 8px;
	line-height: 1.25;
	letter-spacing: -0.015em;
}
.point-desc {
	font-size: 15px;
	color: var(--ink-3);
	margin: 0;
	line-height: 1.6;
	font-family: var(--font-serif);
}
.point-desc a { color: var(--blue); border-bottom: 1px solid currentColor; }

/* ============================================================
   CONTACT - dark
   ============================================================ */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	margin-bottom: 56px;
}
.contact-card {
	background: rgba(250, 248, 245, 0.03);
	border: 1px solid rgba(250, 248, 245, 0.12);
	border-radius: 0;
	padding: 28px 24px;
	transition: border-color var(--t), background var(--t);
}
.contact-card:hover {
	border-color: rgba(250, 248, 245, 0.28);
	background: rgba(250, 248, 245, 0.05);
	transform: none;
}
.contact-icon {
	width: 42px; height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(214, 180, 140, 0.95);
	margin-bottom: 16px;
	border: 1px solid rgba(250, 248, 245, 0.15);
	border-radius: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
	font-size: 10px;
	font-weight: 600;
	font-family: var(--font-sans);
	color: rgba(250, 248, 245, 0.45);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.contact-value {
	color: #faf8f5;
	margin: 0 0 4px;
	font-size: 15px;
	line-height: 1.55;
	font-family: var(--font-display);
	font-weight: 600;
}
.contact-value a { color: #faf8f5; border-bottom: 1px solid rgba(250, 248, 245, 0.25); }
.contact-value a:hover { border-bottom-color: rgba(214, 180, 140, 0.9); color: rgba(250, 230, 200, 1); }
.contact-note {
	color: rgba(250, 248, 245, 0.48);
	font-size: 13px;
	margin: 4px 0 0;
	font-family: var(--font-sans);
}

.socials {
	display: flex;
	gap: 10px;
	justify-content: center;
}
.social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border-radius: 0;
	background: transparent;
	border: 1px solid rgba(250, 248, 245, 0.18);
	color: rgba(250, 248, 245, 0.65);
	transition: border-color var(--t), color var(--t), background var(--t);
}
.social svg { width: 18px; height: 18px; }
.social:hover {
	background: rgba(250, 248, 245, 0.1);
	border-color: rgba(250, 248, 245, 0.35);
	color: #faf8f5;
	transform: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
	background: #0c0b09;
	color: rgba(250, 248, 245, 0.55);
	padding: 56px 0 24px;
	border-top: 3px double rgba(250, 248, 245, 0.12);
	font-family: var(--font-sans);
}
.footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.footer-logo {
	height: 52px;
	width: auto;
	max-width: 200px;
	margin-bottom: 14px;
	border-radius: 2px;
}
.footer-brand p {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(250, 248, 245, 0.48);
	max-width: 280px;
	font-family: var(--font-serif);
}
.footer-nav h4,
.footer-stamp h4 {
	color: #faf8f5;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-nav li { margin-bottom: 8px; }
.footer-nav a {
	color: rgba(250, 248, 245, 0.55);
	font-size: 14px;
}
.footer-nav a:hover { color: #faf8f5; }
.footer-stamp p { margin: 0 0 6px; }
.footer-year {
	font-family: var(--font-display);
	font-size: 32px;
	color: #faf8f5;
	letter-spacing: -0.02em;
	line-height: 1;
}
.footer-year strong { font-weight: 800; }
.footer-year sup {
	font-size: 0.42em;
	font-weight: 500;
	color: rgba(214, 180, 140, 0.95);
	margin-left: 2px;
}
.footer-year-note {
	font-size: 12px;
	color: rgba(250, 248, 245, 0.4);
	font-family: var(--font-serif);
}
.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(250, 248, 245, 0.08);
	text-align: center;
	color: rgba(250, 248, 245, 0.32);
	font-size: 11px;
	letter-spacing: 0.06em;
	font-family: var(--font-sans);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
body.is-lb-open { overflow: hidden; }
.lightbox {
	position: fixed; inset: 0;
	z-index: 200;
	background: rgba(12, 11, 9, 0.97);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 80px;
	animation: lb-fade .25s ease-out;
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox[hidden] { display: none; }
.lb-figure {
	margin: 0;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.lb-figure img {
	max-width: 100%;
	max-height: calc(100vh - 160px);
	object-fit: contain;
	box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.65);
	background: #1c1917;
	border-radius: 0;
	border: 1px solid rgba(250, 248, 245, 0.08);
}
.lb-caption {
	font-size: 12px;
	font-weight: 500;
	font-family: var(--font-sans);
	color: rgba(250, 248, 245, 0.55);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.lb-close, .lb-prev, .lb-next {
	position: absolute;
	background: rgba(250, 248, 245, 0.06);
	border: 1px solid rgba(250, 248, 245, 0.15);
	color: #faf8f5;
	width: 44px; height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--t), border-color var(--t), transform var(--t);
	border-radius: 0;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
	background: rgba(250, 248, 245, 0.12);
	border-color: rgba(250, 248, 245, 0.35);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lb-next:hover { transform: translateY(-50%) translateX(2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.top-bar-inner { gap: 14px; padding: 10px 20px; }
	.np-show { max-width: 200px; }
	.brand-logo { height: 42px; }
	.section { padding: 72px 0; }
}

@media (max-width: 768px) {
	.container { padding: 0 20px; }
	.top-bar-inner { grid-template-columns: auto 1fr auto auto; gap: 10px; padding: 10px 18px; }
	.top-bar-info { display: none; }
	.issue-badge { display: none; }
	.cta-btn-text { display: none; }
	.cta-btn { padding: 0; width: 42px; height: 42px; justify-content: center; }
	.cta-btn-icon { width: 28px; height: 28px; }
	.cta-btn-icon svg { width: 14px; height: 14px; }

	.nav-toggle { display: inline-flex; width: 44px; height: 44px; }
	.nav-main {
		position: fixed;
		top: var(--bar-h);
		left: 0; right: 0; bottom: 0;
		background: var(--bg);
		transform: translateX(100%);
		transition: transform 320ms var(--ease);
		z-index: 98;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.nav-main.is-open { transform: translateX(0); }
	.nav-main ul { flex-direction: column; padding: 20px; }
	.nav-main a {
		padding: 18px 12px;
		border-bottom: 1px solid var(--line);
		min-height: 44px;
		font-size: 16px;
		width: 100%;
	}

	.hero { min-height: 0; }
	/* Mobile hero: text first, image, buttons last.
	   Using display: flex on .hero-inner + display: contents on
	   .hero-content lets us reorder the sibling .hero-cover into
	   the middle of the content children via `order`. */
	.hero-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 48px 20px 64px;
		gap: 24px;
	}
	.hero-content { display: contents; }
	.hero-eyebrow  { order: 1; justify-content: center; margin-bottom: 0; }
	.hero-title    { order: 2; margin-bottom: 0; }
	.hero-meta     { order: 3; margin-bottom: 0; }
	.hero-lede     { order: 4; margin-bottom: 0; max-width: 540px; }
	.hero-cover    { order: 5; max-width: 260px; width: 100%; margin: 8px auto; }
	.hero-actions  { order: 6; width: 100%; max-width: 360px; }
	.hero-scroll { display: none; }
	.hero-meta {
		justify-content: center;
		padding: 14px 0;
		gap: 14px;
	}
	.hero-lede { margin-left: auto; margin-right: auto; }
	.hero-actions {
		justify-content: center;
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}
	.hero-actions .btn { width: 100%; justify-content: center; min-height: 48px; }

	.section { padding: 64px 0; }
	.section-head { margin-bottom: 40px; }
	.section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }

	.archive-featured { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
	.archive-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
	.cover-card.is-featured .cover-card-overlay { padding: 22px; }
	.cover-card.is-featured .cover-card-title { font-size: 19px; }
	.cover-card-title { font-size: 14px; }
	.cover-card-overlay { padding: 16px; }

	.about-grid { gap: 36px; }
	.points-grid { gap: 12px; }
	.point-card { padding: 24px 22px; }
	.point-icon { width: 42px; height: 42px; }
	.point-title { font-size: 18px; }

	.contact-grid { gap: 12px; margin-bottom: 40px; }
	.contact-card { padding: 24px 22px; min-height: auto; }
	.contact-value { font-size: 15px; }

	.footer { padding: 48px 0 24px; }
	.footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer-brand { grid-column: 1 / -1; text-align: center; }
	.footer-brand p { max-width: 100%; margin: 0 auto; }
	.footer-logo { margin-left: auto; margin-right: auto; }

	.lightbox { padding: 60px 12px 80px; }
	.lb-figure img { max-height: calc(100vh - 200px); }
	.lb-prev { left: 8px; width: 40px; height: 40px; }
	.lb-next { right: 8px; width: 40px; height: 40px; }
	.lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
	.lb-caption { font-size: 11px; text-align: center; padding: 0 12px; }
}

@media (max-width: 480px) {
	.container { padding: 0 16px; }
	.top-bar-inner { padding: 8px 14px; gap: 8px; }
	.brand-logo { height: 36px; max-width: 160px; }

	.section { padding: 56px 0; }
	.section-head { margin-bottom: 32px; }
	.section-eyebrow::before, .section-eyebrow::after { display: none; }
	.section-eyebrow { padding: 0; }

	.hero-inner { padding: 36px 16px 56px; gap: 28px; }
	.hero-title { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
	.hero-title-pre { font-size: 0.48em; }
	.hero-cover { max-width: 220px; }
	.hero-meta {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding: 16px 0;
	}
	.hero-meta-divider { display: none; }
	.hero-meta-item { flex-direction: row; align-items: baseline; gap: 6px; }
	.hmi-label { font-size: 9px; }
	.hmi-value { font-size: 15px; }
	.hero-lede { font-size: 15px; }

	.archive-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.cover-card-overlay { padding: 12px; }
	.cover-card-title { font-size: 12px; }
	.cover-card-date { font-size: 10px; margin-bottom: 4px; }

	.about-stats { padding: 4px 0; }
	.stat { padding: 18px 22px; gap: 16px; }
	.stat-num { font-size: 36px; min-width: 64px; }

	.footer-inner { grid-template-columns: 1fr; text-align: center; }
	.footer-nav ul { display: inline-block; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ============================================================
   CONSENT MODAL - Δήλωση Συμμόρφωσης (ΕΕ) 2018/334
   First-visit centered modal, persisted in localStorage.
   ============================================================ */
.np-consent-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(20, 18, 15, 0.72);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 1;
	transition: opacity 200ms ease;
	font-family: var(--font-sans);
}
.np-consent-backdrop[hidden] { display: none !important; }
.np-consent-backdrop.is-leaving { opacity: 0; }
body.np-consent-locked { overflow: hidden; }

.np-consent {
	background: var(--bg);
	color: var(--ink-2);
	max-width: 540px;
	width: 100%;
	max-height: calc(100vh - 40px);
	border-radius: 6px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform: translateY(0) scale(1);
	transition: transform 240ms var(--ease);
}
.np-consent-backdrop.is-leaving .np-consent { transform: translateY(20px) scale(0.97); }

.np-consent-header {
	padding: 28px 28px 18px;
	text-align: center;
	border-bottom: 1px solid var(--line);
}
.np-consent-greeting {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--ink-3);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.np-consent-title {
	font-family: var(--font-display, var(--font-serif));
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.np-consent-body {
	flex: 1;
	overflow-y: auto;
	padding: 22px 28px;
	-webkit-overflow-scrolling: touch;
}

.np-consent-bullets {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.np-consent-bullet {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 14px;
	align-items: flex-start;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink-2);
}
.np-consent-bullet-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--blue-50);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.np-consent-details {
	border-top: 1px solid var(--line);
	padding-top: 14px;
	margin-top: 14px;
}
.np-consent-details summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: var(--ink);
	font-size: 14px;
	padding: 4px 0;
	user-select: none;
	-webkit-user-select: none;
}
.np-consent-details summary::-webkit-details-marker { display: none; }
.np-consent-details summary::after {
	content: '▾';
	color: var(--ink-3);
	transition: transform 200ms ease;
	font-size: 0.85em;
}
.np-consent-details[open] summary::after { transform: rotate(180deg); }
.np-consent-details summary:hover { color: var(--blue); }

.np-consent-legal {
	margin-top: 14px;
	padding: 16px 18px;
	background: var(--bg-section);
	border-radius: 4px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--ink-2);
	font-family: var(--font-serif);
}
.np-consent-legal h4 {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 10px;
	letter-spacing: 0;
}
.np-consent-legal p { margin: 0 0 10px; }
.np-consent-legal p:last-child { margin-bottom: 0; }
.np-consent-legal a { color: var(--blue); border-bottom: 1px solid currentColor; }

.np-consent-prefs {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
}
.np-consent-prefs[hidden] { display: none; }
.np-consent-pref {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}
.np-consent-pref:last-child { border-bottom: 0; }
.np-consent-pref-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 2px;
}
.np-consent-pref-desc {
	font-size: 12px;
	color: var(--ink-3);
	line-height: 1.5;
}
.np-consent-toggle {
	position: relative;
	width: 40px;
	height: 22px;
	background: var(--ink-5);
	border-radius: 999px;
	cursor: pointer;
	transition: background var(--t);
	flex-shrink: 0;
}
.np-consent-toggle::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	transition: transform var(--t);
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.np-consent-toggle.is-on {
	background: var(--blue);
}
.np-consent-toggle.is-on::after {
	transform: translateX(18px);
}
.np-consent-toggle.is-locked {
	cursor: not-allowed;
	opacity: 0.65;
}

.np-consent-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 16px 28px 24px;
	border-top: 1px solid var(--line);
	background: var(--bg);
}
.np-consent-btn {
	padding: 12px 20px;
	font: inherit;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	border-radius: 4px;
	border: 1px solid var(--line);
	background: var(--bg);
	color: var(--ink-2);
	cursor: pointer;
	transition: background var(--t), border-color var(--t), color var(--t);
}
.np-consent-btn:hover { background: var(--bg-section); border-color: var(--ink-5); color: var(--ink); }
.np-consent-btn-primary {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}
.np-consent-btn-primary:hover {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
}

@media (max-width: 540px) {
	.np-consent-header { padding: 22px 20px 14px; }
	.np-consent-title { font-size: 19px; }
	.np-consent-body { padding: 18px 20px; }
	.np-consent-actions { padding: 14px 20px 20px; grid-template-columns: 1fr; }
}
