/* Premium editorial layer — Netherlands build only */

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(232, 163, 23, 0.35);
  color: var(--text-muted);
  font-weight: 500;
}

.btn-ghost:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: none;
}

.logo-link .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.1rem;
}

.logo-link .logo-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-link .logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-meta {
  margin-bottom: 1.25rem;
}

.micro-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  transition: border-color 0.2s, transform 0.2s;
}

.fact-card:hover {
  border-color: rgba(232, 163, 23, 0.4);
  transform: translateY(-1px);
}

.fact-card .fact-icon {
  width: 18px;
  height: 18px;
  margin-bottom: 0.35rem;
  color: var(--accent-gold);
}

.fact-card .fact-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.fact-card .fact-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.editorial-figure {
  margin: 0;
  position: relative;
}

.editorial-figure::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius) + 4px);
  background: radial-gradient(ellipse at 50% 80%, rgba(232, 163, 23, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.editorial-figure img {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(232, 163, 23, 0.45);
  box-shadow:
    0 0 0 1px rgba(232, 163, 23, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(232, 163, 23, 0.06);
}

.editorial-figure figcaption {
  position: relative;
  z-index: 1;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.02em;
}

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2.5rem 0;
}

.toc-editorial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0 0 2.5rem;
}

.toc-editorial > h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-grid a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.toc-grid a:hover {
  background: var(--bg-elevated);
  border-color: var(--border);
  color: var(--accent-gold);
}

.toc-grid .toc-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.editorial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}

.editorial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  transition: border-color 0.2s;
}

.editorial-card:hover {
  border-color: rgba(232, 163, 23, 0.35);
}

.editorial-card .ec-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.editorial-card h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.editorial-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.editorial-card .ec-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.gallery-slide figure.editorial-figure img,
.content-figure.editorial-figure img,
.mobile-visual .editorial-figure img {
  border: 1px solid rgba(232, 163, 23, 0.35);
}

.page-header .micro-label {
  margin-bottom: 0.35rem;
}

.content-section > h2 {
  position: relative;
  padding-bottom: 0.5rem;
}

.content-section > h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent-gold);
  margin-top: 0.5rem;
  opacity: 0.6;
}

.editorial-note {
  border-left: 3px solid var(--accent-gold);
  padding: 0.85rem 1rem;
  margin: 1.25rem 0;
  background: rgba(232, 163, 23, 0.04);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .toc-grid {
    grid-template-columns: 1fr;
  }

  .editorial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-actions .btn-ghost {
    width: 100%;
  }
}
