/*
Theme Name: Suikerooms
Theme URI: https://suikerooms.nl
Author: Suikerooms.nl
Author URI: https://suikerooms.nl
Description: Custom theme voor Suikerooms.nl
Version: 1.0.0
Text Domain: suikerooms
*/

/* ═══════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A67C2E;
  --dark: #1A1A1A;
  --dark-soft: #2A2A2A;
  --dark-card: #222222;
  --cream: #F5F0E8;
  --text-light: #D4CFC5;
  --text-muted: #8A8578;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

a { transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.4s ease;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--text-light); font-weight: 400; }

.nav-menu { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-menu li { list-style: none; }

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a { color: var(--gold); }

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* Nav right wrapper */
.nav-right { display: flex; align-items: center; gap: 2rem; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.25);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(201,168,76,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.divider-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 2rem 0;
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   HERO — Homepage
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(166,124,46,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ornament::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  border: 1px solid rgba(201,168,76,0.04);
  border-radius: 50%;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  animation: fadeDown 0.8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s ease both 0.15s;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
  animation: fadeUp 0.9s ease both 0.3s;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease both 0.45s;
}

/* ═══════════════════════════════════════
   PAGE HERO — Inner pages
   ═══════════════════════════════════════ */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  position: relative; z-index: 2;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  position: relative; z-index: 2;
  animation: fadeUp 0.8s ease both;
}

.page-hero h1 em { font-style: italic; color: var(--gold); }

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  position: relative; z-index: 2;
  animation: fadeUp 0.8s ease both 0.15s;
}

.page-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative; z-index: 2;
  animation: fadeUp 0.8s ease both 0.3s;
}

.page-meta .dot { opacity: 0.4; }

/* ═══════════════════════════════════════
   ARTICLE CONTENT — Wrapper for the_content()
   ═══════════════════════════════════════ */
.article-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin: 4rem 0 1.5rem;
  padding-top: 2rem;
}

.article-content h2 em { font-style: italic; color: var(--gold); }

.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin: 2.5rem 0 1rem;
}

.article-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.article-content strong { color: var(--cream); font-weight: 600; }

.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201,168,76,0.3);
}

.article-content a:hover { text-decoration-color: var(--gold); }

/* ═══════════════════════════════════════
   CONTENT COMPONENTS — Used via HTML in editor
   ═══════════════════════════════════════ */

/* ─── Table of Contents ─── */
.toc-box {
  padding: 2.5rem;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  margin-bottom: 2rem;
}

.toc-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.toc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.toc-list { list-style: none; counter-reset: toc; }
.toc-list li { counter-increment: toc; margin-bottom: 0.6rem; }

.toc-list li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  line-height: 1.5;
}

.toc-list li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(201,168,76,0.4);
  flex-shrink: 0;
  min-width: 22px;
}

.toc-list li a:hover { color: var(--gold); }

/* ─── Highlight Box ─── */
.highlight-box {
  padding: 2rem 2.2rem;
  background: rgba(201,168,76,0.04);
  border-left: 3px solid var(--gold);
  margin: 2.5rem 0;
}

.highlight-box p { color: var(--text-light); font-size: 1rem; margin-bottom: 0.5rem; }
.highlight-box p:last-child { margin-bottom: 0; }
.highlight-box strong { color: var(--gold); }

/* ─── Content Image ─── */
.content-image { margin: 2.5rem 0; }

.content-image img {
  width: 100%;
  border: 1px solid rgba(201,168,76,0.1);
}

.content-image figcaption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
  font-style: italic;
}

/* ─── Comparison Table ─── */
.comparison-table-wrap { margin: 2.5rem 0; overflow-x: auto; }

.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }

.comparison-table thead th {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 2px solid rgba(201,168,76,0.2);
  font-size: 0.92rem;
}

.comparison-table tbody td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(201,168,76,0.06);
  color: var(--text-muted);
  vertical-align: top;
}

.comparison-table tbody tr:hover td { background: rgba(201,168,76,0.03); }
.comparison-table .label-cell { color: var(--cream); font-weight: 500; }

/* ─── Info Cards Grid ─── */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.info-card {
  padding: 2rem;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.3s;
}

.info-card:hover { border-color: rgba(201,168,76,0.2); }

.info-card-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; }

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.info-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 0; }

/* ─── Kenmerken Cards (3 col) ─── */
.kenmerken-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.kenmerk-card {
  padding: 2.5rem 2rem;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.kenmerk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.kenmerk-card:hover::before { opacity: 1; }
.kenmerk-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.kenmerk-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }

.kenmerk-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.kenmerk-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ─── Quote Block ─── */
.content-quote {
  margin: 3rem 0;
  padding: 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  position: relative;
}

.content-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  position: absolute;
  top: -0.2rem; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.content-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.content-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Numbered List ─── */
.numbered-list { margin: 2rem 0; counter-reset: nlist; list-style: none; }

.numbered-list li {
  counter-increment: nlist;
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.numbered-list li::before {
  content: counter(nlist, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(201,168,76,0.3);
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
  min-width: 36px;
}

.numbered-list li div h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.numbered-list li div p { font-size: 0.98rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.7; }

/* ─── Steps ─── */
.stappen-list { display: flex; flex-direction: column; margin: 2.5rem 0; }

.stap-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  align-items: start;
}

.stap-item:last-child { border-bottom: none; }

.stap-nummer {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201,168,76,0.2);
  font-weight: 700;
  line-height: 1;
}

.stap-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.stap-content p { color: var(--text-muted); line-height: 1.8; font-size: 0.98rem; }

/* ─── Site Cards (reviews) ─── */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.site-card {
  padding: 2rem;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.site-card:hover { border-color: rgba(201,168,76,0.25); }

.site-card-header { display: flex; justify-content: space-between; align-items: center; }

.site-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 500;
}

.site-rating { color: var(--gold); font-size: 0.9rem; font-weight: 600; }
.site-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

.site-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.3rem; }

.site-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Internal Link Cards ─── */
.internal-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 3rem 0;
}

.internal-link-card {
  display: block;
  padding: 1.5rem 1.8rem;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.internal-link-card:hover { border-color: var(--gold); transform: translateY(-2px); text-decoration: none; }

.internal-link-card .link-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.internal-link-card .link-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.3;
}

.internal-link-card .link-arrow { display: block; margin-top: 0.8rem; color: var(--gold); font-size: 0.85rem; }

/* ─── CTA Box ─── */
.cta-box {
  margin: 3.5rem 0;
  padding: 3rem;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FAQ Accordion ─── */
.faq-list, .article-faq { margin: 2.5rem 0; }

.faq-item { border-bottom: 1px solid rgba(201,168,76,0.08); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  padding: 1.3rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.3rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* ─── Sections with backgrounds ─── */
.section-dark { background: var(--dark); padding: 6rem 2rem; }

.section-soft {
  background: var(--dark-soft);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.section-cta {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.08);
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
}

.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── Two-column grid ─── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.grid-2col-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }

.grid-2col-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border: 1px solid rgba(201,168,76,0.1);
}

.gold-frame {
  position: absolute;
  top: -12px; right: -12px; bottom: 12px; left: 12px;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.06);
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }

.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }

.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.8rem; }

.blog-card-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1.2rem;
  transition: gap 0.3s ease;
}

.blog-card-link:hover { gap: 0.8rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: var(--dark);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .kenmerken-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,26,26,0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .nav-menu.active { display: flex; }
  .hamburger { display: flex; }

  .nav-right { gap: 0; }
  .btn-nav-cta { font-size: 0.75rem; padding: 0.5rem 1rem; }

  .hero { padding: 7rem 1.5rem 3rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .article-content { padding: 0 1.5rem 4rem; }
  .section-dark, .section-soft, .section-cta { padding: 4rem 1.5rem; }

  .grid-2col { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-2col-image { max-height: 400px; }
  .kenmerken-grid, .blog-grid { grid-template-columns: 1fr; }
  .sites-grid, .info-cards, .internal-links { grid-template-columns: 1fr; }

  .stap-item { grid-template-columns: 50px 1fr; gap: 1.5rem; }
  .stap-nummer { font-size: 2.2rem; }

  .page-meta { flex-wrap: wrap; gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}
