/* ── Self-hosted fonts ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-mono-v16-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-mono-v16-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/merriweather-v33-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/merriweather-v33-latin-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/merriweather-v33-latin-regular.woff2') format('woff2');
}

/* HvL Theme v2.6.9 — Hans van Leeuwen */

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

:root {
  --bg: #FFFFFF;
  --ink: #0F0E0C;
  --muted: #9A9690;
  --accent: #8C1010;
  --corn: #E8C547;
  --terra: #C4623A;
  --line: rgba(26,24,20,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'DM Mono', monospace;
}

@media (max-width: 768px) {
  :root { --muted: #7A7570; }
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── Cursor ── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px; height: 8px;
  background: var(--cursor-color, var(--ink));
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  opacity: 0;
}
.cursor.hovering {
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--cursor-color, var(--ink));
  transition: none;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }

.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: lowercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-lang {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 4px 10px;
  transition: all 0.3s;
}
.nav-lang:hover { border-color: var(--ink); color: var(--ink); }

/* ── Home ── */
.home-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
}

.home-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.home-title em { font-style: italic; color: var(--muted); }

.tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.tag-card {
  position: relative;
  height: 180px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: opacity 0.3s;
}

.tag-card[href*="poetry"]   { background: var(--tag-poetry, rgba(196,98,58,0.08)); }
.tag-card[href*="essay"]    { background: var(--tag-essay, rgba(232,197,71,0.10)); }
.tag-card[href*="sketch"]   { background: var(--tag-sketch, rgba(26,24,20,0.04)); }
.tag-card[href*="graphics"] { background: var(--tag-graphics, rgba(140,16,16,0.06)); }
.tag-card[href*="songs"]    { background: var(--tag-songs, rgba(232,197,71,0.08)); }
.tag-card[href*="writings"] { background: var(--tag-writings, rgba(196,98,58,0.06)); }

.tag-card:hover { opacity: 0.8; }

.tag-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: opacity 0.4s, transform 0.6s ease;
}

.tag-card-label {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.tag-card-count {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── Emanations listing ── */
.listing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.listing-header-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  padding-top: 96px;
  border-right: 1px solid var(--line);
  min-height: 200px;
}

.listing-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: lowercase;
  margin-bottom: 16px;
  position: static;
}

.listing-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  min-height: 2lh;
}
.listing-title em { font-style: italic; color: var(--muted); }

.listing-header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px;
  padding-top: 96px;
  min-height: 200px;
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag-filter {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-transform: lowercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
}
.tag-filter:hover, .tag-filter.active {
  border-color: var(--accent);
  color: var(--accent);
}

.listing-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* Featured article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}

.featured-image {
  height: 480px;
  background: var(--bg);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg);
  transition: transform 0.6s ease;
}
.featured-article:hover .featured-image img { transform: scale(1.03); }

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  border-left: 1px solid var(--line);
}

.featured-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: lowercase;
  margin-bottom: 16px;
}

.featured-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
  display: block;
}

.featured-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  margin-top: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  transition: border-color 0.3s;
}
.featured-link:hover { border-bottom-color: var(--accent); }

/* Articles grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  display: block;
  overflow: hidden;
}
.article-card:nth-child(3n) { border-right: none; }

.article-thumb {
  height: 240px;
  overflow: hidden;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg);
  transition: transform 0.6s ease;
}
.article-card:hover .article-thumb img { transform: scale(1.03); }

.article-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg);
}

.article-body { padding: 28px 32px; }

.article-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: lowercase;
  margin-bottom: 10px;
  display: block;
}

.article-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.article-date {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── Single article ── */
.article-wrap { padding-top: 120px; }

.article-hero {
  height: 60vh;
  background: var(--bg);
  overflow: hidden;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

.article-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 64px 48px;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}

.article-aside { display: flex; flex-direction: column; gap: 24px; }

.article-aside-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: lowercase;
}

.article-aside-value {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.article-aside-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.article-tag-chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s;
  text-transform: lowercase;
}
.article-tag-chip:hover { border-color: var(--accent); }

.article-title-large {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.article-title-large em { font-style: italic; color: var(--muted); }

.symbol { font-size: 0.6em; vertical-align: middle; }

/* ── Article content ── */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px;
}

.article-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 1.6em;
}

.article-content h2 { font-size: 28px; font-weight: 300; margin: 2em 0 0.6em; }
.article-content h3 { font-size: 22px; font-weight: 300; margin: 2em 0 0.6em; }
.article-content h4, .article-content h5 { font-size: 16px; font-weight: 400; margin: 1.6em 0 0.4em; letter-spacing: 0.02em; }

.article-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
  transition: border-color 0.3s;
}
.article-content a:hover { border-color: var(--ink); }

.article-content a img,
.article-content a.glightbox { border-bottom: none; }

.article-content blockquote {
  border-left: 1px solid var(--accent);
  padding-left: 24px;
  margin: 2em 0;
  color: var(--muted);
  font-style: italic;
}

.article-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 2em 0;
  margin-bottom: 0;
}

/* ── Poetry ── */
.article-content.poetry p {
  margin-bottom: 0.3em;
  line-height: 1.5;
  white-space: pre-line;
}
.article-content.poetry p + p { margin-top: 0.8em; }
.article-content.poetry strong { font-weight: 600; }

/* ── Essay body ── */
.essay-body {
  max-width: 660px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}

.essay-body p,
.essay-body li,
.essay-body blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 1.4em;
}

.essay-body h2,
.essay-body h3,
.essay-body h4,
.essay-body h5 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin: 2em 0 0.6em;
  color: var(--ink);
}

.essay-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
}

.essay-body blockquote {
  border-left: 1px solid var(--accent);
  padding-left: 24px;
  color: var(--muted);
  font-style: italic;
}

/* ── Sketch caption ── */
.sketch-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: right;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ── Essay aside image ── */
.essay-aside-image {
  height: auto;
  overflow: visible;
}

@media (min-width: 769px) {
  .article-two-col-wrap .article-content.essay-aside-image {
    padding: 64px 0 0 0;
  }
}

.essay-aside-image a {
  display: block;
  width: 100%;
  border-bottom: none;
  margin-bottom: 0;
}

.essay-aside-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--bg);
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}

/* ── Two column layout ── */
.article-two-col-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 40vh;
  border-bottom: 1px solid var(--line);
}

.article-two-col-wrap .article-aside {
  padding: 64px 48px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-two-col-wrap .article-content {
  padding: 64px 48px;
  max-width: none;
  margin: 0;
}

/* ── Mobile meta bar ── */
.article-meta-mobile { display: none; }
.two-col-aside { display: flex; }

.article-meta-back {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  margin-right: 4px;
  transition: color 0.3s;
}
.article-meta-back:hover { color: var(--ink); }

.article-meta-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: lowercase;
  opacity: 0.7;
}

.article-meta-date {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.article-meta-divider {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  opacity: 0.5;
}

/* ── Article nav ── */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.article-nav-item {
  padding: 40px 48px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.3s;
}
.article-nav-item:first-child { border-right: 1px solid var(--line); }
.article-nav-item:hover { background: color-mix(in srgb, var(--ink) 4%, transparent); }

.article-nav-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: lowercase;
  margin-bottom: 8px;
}

.article-nav-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* ── Like button ── */
.aside-like {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aside-like-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.like-btn,
.sporen-row {
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.3s, color 0.3s;
}

.deel-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  color: var(--accent);
  cursor: pointer;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.3s, color 0.3s;
}

.like-btn {
  animation: likePulse 3s ease-in-out infinite;
}

.like-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  animation: none;
}

.deel-btn:hover {
  border-color: var(--accent);
}

.sporen-row:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.like-btn:disabled,
.sporen-row:disabled {
  cursor: default;
}

.like-btn.liked {
  border-color: var(--line);
  color: var(--muted);
  animation: none;
}

.like-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: lowercase;
  transition: color 0.3s;
}

.deel-btn .like-label { color: var(--accent); }

.like-btn:hover:not(:disabled) .like-label { color: var(--accent); }

.sporen-row:hover:not(:disabled) .like-label { color: var(--accent); }

.like-btn.liked .like-label { color: var(--muted); }

.like-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

/* ── Theme switcher ── */
#theme-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.theme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s, transform 0.3s;
  padding: 0;
}
.theme-dot:hover { opacity: 0.7; transform: scale(1.2); }
.theme-dot.active { opacity: 1; transform: scale(1.2); }
.theme-dot[data-theme="light"] { background: #8C1010; }
.theme-dot[data-theme="dark"]  { background: #0F0E0C; }
.theme-dot[data-theme="warm"]  { background: #B85530; }
.theme-dot[data-theme="mono"]  { background: #FFFFFF; border: 1px solid var(--muted); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer span, footer a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: lowercase;
  text-decoration: none;
}
footer a:hover { color: var(--ink); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes likePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.85); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; min-height: 90px; }
  .nav-links { gap: 20px; }
  .theme-dot { width: 16px; height: 16px; }

  .home-wrap { padding: 100px 24px 60px; }

  .listing-header { grid-template-columns: 1fr; }
  .listing-header-left { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 24px; padding-top: 100px; min-height: auto; }
  .listing-header-right { padding: 32px 24px; min-height: auto; }

  .featured-article { grid-template-columns: 1fr; }
  .featured-image { height: 300px; }
  .featured-content { border-left: none; border-top: 1px solid var(--line); padding: 32px 24px; }

  .articles-grid { grid-template-columns: 1fr; }
  .article-card { border-right: none; }

  .article-wrap { padding-top: 100px; }

  .article-header { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .article-content { padding: 48px 24px; }

  /* Two col layout on mobile */
  .article-two-col-wrap { grid-template-columns: 1fr; min-height: 0; }
  .article-two-col-wrap .article-aside { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 24px; }
  .article-two-col-wrap .article-content { padding: 0 24px 32px; }

  /* Hide desktop aside, show mobile meta */
  .two-col-aside { display: none !important; }
  .article-meta-mobile {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 32px 24px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.08em;
  }

  /* Nav side by side on mobile */
  .article-nav {
    display: flex;
    flex-direction: row;
  }
  .article-nav-item { padding: 24px; flex: 1; }
  .article-nav-item:first-child { border-right: 1px solid var(--line); border-bottom: none; }

  footer { padding: 20px 24px; flex-direction: column; gap: 8px; }

  /* Essay body mobile */
  .essay-body { padding: 16px 24px 60px; }
  .essay-body p,
  .essay-body li,
  .essay-body blockquote { font-size: 15px; }
}

/* ── Mobile like button ── */
.mobile-like-wrap {
  display: none;
}

.mobile-like-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .mobile-like-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 32px 24px;
    border-top: 1px solid var(--line);
  }

  .mobile-actions-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .sporen-group {
    display: flex;
    flex-direction: column;
  }
}

/* ── Mobile like/sporen button visibility ── */
@media (max-width: 768px) {
  .mobile-like-wrap .like-btn,
  .mobile-like-wrap .sporen-row {
    border-color: var(--muted);
  }
}



/* ── Privacy page ── */
.privacy-content {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 48px 80px;
  position: relative;
  z-index: 1;
}

.privacy-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.privacy-content h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--muted);
  margin: 2em 0 0.6em;
}

.privacy-content p,
.privacy-content li {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 1em;
}

.privacy-content ul {
  list-style: none;
  padding: 0;
}

.privacy-content ul li::before {
  content: '— ';
  color: var(--muted);
}

.privacy-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
}

.privacy-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 100px 24px 60px;
  }
}

/* ── Footer privacy link ── */
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-icon-link {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.3s;
  text-decoration: none;
}
.footer-icon-link:hover { color: var(--ink); }

/* ── Share button ── */
.deel-wrap {
  position: relative;
  display: inline-flex;
}

.deel-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
  max-width: min(220px, calc(100vw - 48px));
  z-index: 50;
}

.deel-feedback {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: lowercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.deel-feedback.visible {
  opacity: 1;
}

.deel-panel.open {
  display: flex;
}

.deel-option {
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: left;
  padding: 5px 6px;
  cursor: pointer;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.3s;
}

.deel-option:hover {
  color: var(--accent);
}



/* ── Sporen ── */
.sporen-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sporen-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.sporen-display {
  display: none;
  font-family: var(--mono);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--muted);
  min-height: 1.5em;
  margin-top: 8px;
  max-width: min(320px, calc(100vw - 48px));
}

.sporen-display:not([hidden]) {
  display: grid;
}

.sporen-layer {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 1.6s ease;
  white-space: normal;
  overflow-wrap: break-word;
}

.sporen-layer.visible {
  opacity: 1;
}

.sporen-panel {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.sporen-panel:not([hidden]) {
  display: flex;
}

.sporen-input {
  flex: 1;
  min-width: 0;
  font-family: var(--mono);
  font-size: 11px;
  border: 1px solid var(--line);
  padding: 6px 8px;
  background: var(--bg);
  color: var(--ink);
}

.sporen-input:focus {
  outline: none;
  border-color: var(--accent);
}

.sporen-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.sporen-send {
  border: 1px solid var(--line);
  background: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: lowercase;
  padding: 6px 12px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.sporen-send:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sporen-feedback {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: lowercase;
  white-space: nowrap;
}
